/* About pages (about-training / about-body-feedback / about-certification / about-inner-orgasm / about-muscle-massage) */

/* ===== Professional Training (about-training.html) ===== */
body.page-about-training { background: var(--color-black); }

.at-hero__title { font-size: 1.6rem; font-weight: 500; letter-spacing: 0.15em; line-height: 1.6; margin-bottom: 16px; }
.at-hero__lead { color: var(--color-text-muted); max-width: 500px; }

.at-section-head { text-align: center; margin-bottom: 40px; }
.at-section-head__title { font-size: 1.2rem; font-weight: 500; letter-spacing: 0.12em; }

.at-instructors { padding: 60px 20px; max-width: 800px; margin: 0 auto; }
.at-instructors__list { display: flex; flex-direction: column; gap: 24px; }
.at-instructor-card {
  position: relative;
  overflow: hidden;
  background: var(--color-card);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 28px 28px 24px;
  transition: border-color 0.3s ease;
}
.at-instructor-card:hover { border-color: var(--color-border-gold); }
.at-instructor-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--color-gold) 0%, transparent 100%);
}
.at-instructor-card__photo {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 2 / 3;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-dark-grey), var(--color-card));
  border: 1px solid var(--color-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.at-instructor-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.at-instructor-card__photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--color-text-muted); }
.at-instructor-card__photo-placeholder svg { opacity: 0.6; }
.at-instructor-card__photo-placeholder span { font-size: 0.62rem; letter-spacing: 0.25em; }
.at-instructor-card__tag-row { margin-bottom: 16px; }
.at-instructor-card__name { font-size: 1.1rem; font-weight: 500; letter-spacing: 0.08em; margin-bottom: 4px; }
.at-instructor-card__role { font-size: 0.75rem; color: var(--color-gold); margin-bottom: 12px; font-weight: 400; }
.at-instructor-card__scope {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  margin-bottom: 16px;
  background: rgba(201, 169, 110, 0.06);
  border-radius: 8px;
  border: 1px solid var(--color-border-gold);
}
.at-instructor-card__scope-label { font-size: 0.6rem; color: var(--color-text-muted); font-weight: 500; letter-spacing: 0.08em; }
.at-instructor-card__scope-value { font-size: 0.7rem; color: var(--color-gold-light); }
.at-instructor-card__desc { font-size: 0.78rem; color: var(--color-text-muted); line-height: 2; font-weight: 300; }

.at-philosophy { padding: 60px 20px 80px; border-top: 1px solid var(--color-border); }
.at-philosophy__inner { max-width: 600px; margin: 0 auto; text-align: center; }
.at-philosophy__text { font-size: 0.82rem; color: var(--color-text-muted); line-height: 2.4; font-weight: 300; }
.at-philosophy__text .accent { color: var(--color-gold-light); }
.at-philosophy__text .spaced { margin-top: 12px; }
.at-philosophy__text .spaced-lg { margin-top: 16px; }

.at-back { text-align: center; padding: 0 20px 60px; }

/* ===== Personal Body Report (about-body-feedback.html) ===== */
body.page-about-body-feedback { background: var(--color-black); }

.abf-hero { padding: 100px 0 80px; background-image: url('../../img/muscle/marble-dark.jpg'); }
.abf-hero .marble-section__overlay { background: rgba(12, 12, 12, 0.82); }
.abf-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.abf-hero__lead { font-size: 0.85rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; max-width: 600px; margin: 0 auto; }

.abf-intro { padding: 80px 0; }
.abf-intro__inner { max-width: 800px; margin: 0 auto; }
.abf-intro__text { font-size: 0.85rem; color: var(--color-text-cream); line-height: 2.3; font-weight: 300; }

.abf-timeline { padding: 80px 0; background: var(--color-charcoal); }
.abf-timeline__inner { max-width: 800px; margin: 0 auto; }
.abf-timeline__step { position: relative; display: flex; gap: 24px; align-items: flex-start; padding-bottom: 40px; }
.abf-timeline__step::before {
  content: "";
  position: absolute;
  left: 35px; top: 70px;
  width: 1px;
  height: calc(100% - 40px);
  background: var(--color-border-gold);
}
.abf-timeline__step:last-child { padding-bottom: 0; }
.abf-timeline__step:last-child::before { display: none; }
.abf-timeline__marker {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--color-dark-grey);
  border: 2px solid var(--color-border-gold);
}
.abf-timeline__marker--final {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  border-color: var(--color-gold);
}
.abf-timeline__marker span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-gold);
  text-align: center;
  line-height: 1.2;
}
.abf-timeline__marker--final span { color: var(--color-black); }
.abf-timeline__body { padding-top: 10px; }
.abf-timeline__title { font-size: 0.9rem; font-weight: 500; color: var(--color-gold-light); margin-bottom: 8px; }
.abf-timeline__desc { font-size: 0.8rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; white-space: pre-line; }

.abf-contents { padding: 80px 0; }
.abf-contents__inner { max-width: 800px; margin: 0 auto; }
.abf-contents__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .abf-contents__grid { grid-template-columns: repeat(2, 1fr); } }
.abf-content-card { padding: 28px 24px; }
.abf-content-card__title { font-size: 0.9rem; font-weight: 500; color: var(--color-gold-light); margin-bottom: 12px; }
.abf-content-card__desc { font-size: 0.78rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; white-space: pre-line; }

.abf-recommend { padding: 80px 0; background-image: url('../../img/muscle/marble-elegant.jpg'); }
.abf-recommend .marble-section__overlay { background: rgba(12, 12, 12, 0.88); }
.abf-recommend__inner { max-width: 600px; margin: 0 auto; }
.abf-recommend__list { display: flex; flex-direction: column; gap: 16px; }
.abf-recommend-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: rgba(34, 34, 34, 0.8);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  backdrop-filter: blur(4px);
}
.abf-recommend-item__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  display: flex; align-items: center; justify-content: center;
}
.abf-recommend-item__text { font-size: 0.8rem; color: var(--color-text-cream); font-weight: 400; }

.abf-terms { padding: 60px 0; }
.abf-terms__inner { max-width: 600px; margin: 0 auto; }
.abf-terms__box { background: rgba(201, 169, 110, 0.06); border-radius: 16px; padding: 28px; border: 1px solid var(--color-border-gold); }
.abf-terms__label { font-size: 0.75rem; color: var(--color-gold); font-weight: 500; margin-bottom: 8px; }
.abf-terms__text { font-size: 0.78rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; }
.abf-terms__note { color: var(--color-text-muted); }

.abf-cta { background: var(--color-charcoal); }

/* ===== Certification Program (about-certification.html) ===== */
body.page-about-certification { background: var(--color-black); }

.ac-hero { padding: 100px 0 80px; background-image: url('../../img/muscle/marble-elegant.jpg'); }
.ac-hero .marble-section__overlay { background: rgba(12, 12, 12, 0.82); }
.ac-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.ac-hero__lead { font-size: 0.85rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; max-width: 600px; margin: 0 auto; }

.ac-section-head__note { font-size: 0.82rem; color: var(--color-text-muted); font-weight: 300; margin-bottom: 40px; }

.ac-domains { padding: 80px 0; background: var(--color-charcoal); }
.ac-domains__inner { max-width: 900px; margin: 0 auto; }
.ac-domains__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .ac-domains__grid { grid-template-columns: repeat(2, 1fr); } }
.ac-domain-card { background: var(--color-dark-grey); border-radius: 20px; padding: 32px 28px; border: 1px solid var(--color-border); }
/* Numerals in this heading ("4つの認定領域") use lining figures so the Cormorant
   "4" sits on the baseline like the Japanese glyphs (old-style figures dip below). */
.ac-domains .section-header__title { font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1; }
.ac-domain-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ac-domain-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.ac-domain-card__icon svg { width: 22px; height: 22px; color: var(--color-text-cream); }
.ac-domain-card__title { font-size: 0.95rem; font-weight: 500; color: var(--color-gold-light); }
.ac-domain-card__eng { font-family: var(--font-display); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--color-text-muted); text-transform: uppercase; }
.ac-domain-card__desc { font-size: 0.8rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; margin-bottom: 16px; white-space: pre-line; }
.ac-domain-card__checks { border-top: 1px solid var(--color-border); padding-top: 16px; }
.ac-domain-card__checks-label { font-size: 0.65rem; color: var(--color-text-muted); letter-spacing: 0.1em; margin-bottom: 10px; }
.ac-check-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.ac-check-item:last-child { margin-bottom: 0; }
.ac-check-item__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--color-gold); flex-shrink: 0; }
.ac-check-item__text { font-size: 0.75rem; color: var(--color-text-cream); font-weight: 300; }

.ac-levels { padding: 80px 0; }
.ac-levels__inner { max-width: 700px; margin: 0 auto; }
.ac-levels__card { padding: 40px 32px; border-radius: 20px; }
.ac-levels__intro { font-size: 0.82rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; margin-bottom: 24px; }
.ac-levels__list { display: flex; flex-direction: column; gap: 16px; }
.ac-level-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--color-dark-grey);
  border: 1px solid var(--color-border);
}
/* Rank medallions: a luxury metal ladder — obsidian black-gold (top) > gold > silver > bronze. */
.ac-level-row__badge {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.25);
}
.ac-level-row__badge span { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
/* Expert — most premium: obsidian base with a bright gold rim and glowing gold grade. */
.ac-level-row__badge--sp {
  background: radial-gradient(circle at 32% 26%, #4a3a22, var(--color-rank-expert-hi) 48%, var(--color-rank-expert-lo));
  border: 1px solid var(--color-gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 169, 110, 0.25), inset 0 1px 2px rgba(223, 192, 138, 0.3);
}
.ac-level-row__badge--sp span { color: var(--color-gold-light); text-shadow: 0 0 6px rgba(201, 169, 110, 0.5); }
.ac-level-row__badge--s { background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark)); }
.ac-level-row__badge--s span { color: var(--color-light-text); }
.ac-level-row__badge--a { background: linear-gradient(135deg, var(--color-rank-silver-hi), var(--color-rank-silver-lo)); }
.ac-level-row__badge--a span { color: var(--color-light-text); }
.ac-level-row__badge--b { background: linear-gradient(135deg, var(--color-rank-bronze-hi), var(--color-rank-bronze-lo)); }
.ac-level-row__badge--b span { color: var(--color-light-text); }
.ac-level-row__name { font-size: 0.82rem; font-weight: 500; margin-bottom: 2px; }
.ac-level-row__name--sp { color: var(--color-gold-light); }
.ac-level-row__name--gold { color: var(--color-gold); }
.ac-level-row__name--muted { color: #a09070; }
.ac-level-row__desc { font-size: 0.72rem; color: var(--color-text-muted); font-weight: 300; }
.ac-levels__footnote { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 20px; line-height: 1.8; font-weight: 300; }

.ac-why { padding: 80px 0; }
.ac-why__inner { max-width: 800px; margin: 0 auto; }
.ac-why__text { font-size: 0.85rem; color: var(--color-text-cream); line-height: 2.3; font-weight: 300; }

.ac-cta { background-image: url('../../img/muscle/marble-dark.jpg'); }
.ac-cta .final-cta__overlay { background: rgba(12, 12, 12, 0.88); }
.ac-cta__title { font-size: 1.3rem; margin-bottom: 24px; }
.ac-cta__text { font-size: 0.85rem; color: var(--color-text-cream); line-height: 2.3; font-weight: 300; }
.ac-cta .final-cta__actions { margin-top: 40px; }

/* ===== Inner Orgasm Development (about-inner-orgasm.html) ===== */
body.page-about-inner-orgasm { background: var(--color-black); }

.aio-hero { padding: 100px 0 80px; background-image: url('../../img/muscle/marble-elegant.jpg'); }
.aio-hero .marble-section__overlay { background: rgba(12, 12, 12, 0.82); }
.aio-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.aio-hero__lead { font-size: 0.85rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; max-width: 600px; margin: 0 auto; }

.aio-intro { padding: 80px 0; }
.aio-intro__inner { max-width: 800px; margin: 0 auto; }
.aio-intro__card { padding: 40px 32px; border-radius: 20px; }
.aio-intro__text { font-size: 0.85rem; color: var(--color-text-cream); line-height: 2.3; font-weight: 300; }

.aio-approach { padding: 80px 0; background: var(--color-charcoal); }
.aio-approach__inner { max-width: 800px; margin: 0 auto; }
.aio-approach__list { display: flex; flex-direction: column; gap: 24px; }
.aio-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--color-dark-grey);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--color-border);
}
.aio-step__marker { flex-shrink: 0; text-align: center; min-width: 70px; }
.aio-step__num { font-family: var(--font-display); font-size: 0.65rem; letter-spacing: 0.15em; color: var(--color-gold); display: block; }
.aio-step__line { width: 1px; height: 40px; background: var(--color-border-gold); margin: 8px auto 0; }
.aio-step__title { font-size: 0.9rem; font-weight: 500; margin-bottom: 10px; color: var(--color-gold-light); }
.aio-step__desc { font-size: 0.8rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; white-space: pre-line; }

.aio-types { padding: 80px 0; }
.aio-types__inner { max-width: 800px; margin: 0 auto; }
.aio-types__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .aio-types__grid { grid-template-columns: repeat(2, 1fr); } }
.aio-type-card { padding: 28px 24px; text-align: center; }
.aio-type-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--color-gold); margin-bottom: 12px; }
.aio-type-card__desc { font-size: 0.78rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; white-space: pre-line; }

.aio-faq { padding: 80px 0; background: var(--color-charcoal); }
.aio-faq__inner { max-width: 700px; margin: 0 auto; }
.aio-faq__list { display: flex; flex-direction: column; gap: 16px; }
.aio-faq-card { background: var(--color-dark-grey); border-radius: 14px; padding: 24px; border: 1px solid var(--color-border); }
.aio-faq-card__q { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.aio-faq-card__a { display: flex; align-items: flex-start; gap: 12px; margin-left: 4px; }
.aio-faq-card__avatar {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}
.aio-faq-card__avatar--q { background: rgba(201, 169, 110, 0.15); color: var(--color-gold); }
.aio-faq-card__avatar--a { background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold)); color: var(--color-black); }
.aio-faq-card__question { font-size: 0.82rem; color: var(--color-text-white); font-weight: 500; }
.aio-faq-card__answer { font-size: 0.8rem; color: var(--color-text-cream); line-height: 2; font-weight: 300; white-space: pre-line; }

.aio-cta { background-image: url('../../img/muscle/marble-dark.jpg'); }
.aio-cta .final-cta__overlay { background: rgba(12, 12, 12, 0.85); }

/* ===== Muscle Massage (about-muscle-massage.html) ===== */
body.page-about-muscle-massage { background: var(--color-black); }

.amm-hero { padding: 100px 0 80px; background-image: url('../../img/muscle/muscle-back.jpg'); }
.amm-hero .marble-section__overlay { background: rgba(12, 12, 12, 0.78); }
.amm-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.amm-hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-white);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.amm-hero__lead {
  font-size: 0.85rem;
  color: var(--color-text-cream);
  line-height: 2.2;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.amm-section-head__subtitle {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 24px;
}

.amm-courses { padding: 80px 0; background: var(--color-charcoal); }
.amm-courses__inner { max-width: 800px; margin: 0 auto; }
.amm-callout {
  font-size: 0.95rem;
  color: var(--color-gold);
  font-weight: 500;
  line-height: 2;
  margin-bottom: 24px;
  padding: 20px 24px;
  background: rgba(201, 169, 110, 0.06);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 8px 8px 0;
}
.amm-text { font-size: 0.85rem; color: var(--color-text-cream); line-height: 2.2; margin-bottom: 16px; font-weight: 300; }
.amm-text--accent { font-size: 0.92rem; color: var(--color-gold); line-height: 2.2; font-weight: 400; margin-bottom: 40px; }

.amm-course-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .amm-course-grid { grid-template-columns: repeat(3, 1fr); } }
.amm-course-card { background: var(--color-dark-grey); }
.amm-course-card--featured { border-color: var(--color-gold-dark); }
.amm-course-card--featured::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold));
}
.amm-course-card__badge { position: absolute; top: 16px; right: 16px; }
.amm-course-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  color: var(--color-gold-light);
}
.amm-course-card__sub { font-size: 0.65rem; color: var(--color-text-muted); letter-spacing: 0.08em; margin-bottom: 8px; }
.amm-course-card__desc { font-size: 0.75rem; color: var(--color-text-muted); line-height: 1.8; font-weight: 300; margin-top: 8px; }

.amm-senses { padding: 80px 0; }
.amm-senses__inner { max-width: 800px; margin: 0 auto; }
.amm-senses__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .amm-senses__grid { grid-template-columns: repeat(2, 1fr); } }
.amm-sense-card { padding: 24px 20px; }
.amm-sense-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.amm-sense-card__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.amm-sense-card__icon svg {
  width: 20px; height: 20px;
  color: var(--color-text-cream);
}
.amm-sense-card__name { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; }
.amm-sense-card__eng { font-size: 0.6rem; color: var(--color-text-muted); margin-left: 8px; letter-spacing: 0.1em; }
.amm-sense-card__desc { font-size: 0.75rem; color: var(--color-text-muted); line-height: 1.9; font-weight: 300; }

.amm-codev { padding: 80px 0; background: var(--color-charcoal); }
.amm-codev__inner { max-width: 800px; margin: 0 auto; }
.amm-codev-card {
  position: relative;
  overflow: hidden;
  padding: 40px 32px;
  background: var(--color-dark-grey);
  border-radius: 20px;
  border: 1px solid var(--color-border-gold);
}
.amm-codev-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
}
.amm-codev__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 768px) { .amm-codev__grid { grid-template-columns: auto 1fr; } }
.amm-codev__avatar-wrap { text-align: center; }
.amm-codev__avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}
.amm-codev__avatar span { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--color-black); }
.amm-codev__name { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; margin-bottom: 4px; }
.amm-codev__role { font-size: 0.65rem; color: var(--color-gold); letter-spacing: 0.1em; }
.amm-codev__title { font-size: 1rem; font-weight: 500; margin-bottom: 12px; letter-spacing: 0.05em; line-height: 1.6; }
.amm-codev__text { font-size: 0.8rem; color: var(--color-text-cream); line-height: 2.1; font-weight: 300; margin-bottom: 12px; }
.amm-codev__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.amm-codev__co-badge { display: inline-block; margin-bottom: 16px; }

.amm-voice { padding: 80px 0; }
.amm-voice__inner { max-width: 600px; margin: 0 auto; }
.amm-voice__list { display: flex; flex-direction: column; gap: 24px; text-align: left; }
.amm-voice-card { padding: 28px; }
.amm-voice-card__quote {
  font-size: 0.82rem;
  color: var(--color-text-cream);
  line-height: 2;
  font-weight: 300;
  white-space: pre-line;
  font-style: italic;
  margin-bottom: 12px;
}
.amm-voice-card__author { font-size: 0.7rem; color: var(--color-text-muted); text-align: right; }

.amm-cta { background-image: url('../../img/muscle/marble-dark.jpg'); }
.amm-cta .final-cta__overlay { background: rgba(12, 12, 12, 0.85); }
