/* =============================================================================
   Editorial Pages — bespoke components for ABOUT and SERVICES
   Shares the home DNA (tokens from home.css :root, font vars, gold accent,
   scroll-reveal from interior-editorial.css) but introduces NEW, fit-for-
   purpose layouts rather than reusing the home page section components.

   ABOUT   : long-form feature  — prefix .a*
   SERVICES: capabilities document — prefix .s*
   ============================================================================= */

/* ─────────────────────────────────────────────────────────────────────────
   ABOUT — Long-form feature
   ───────────────────────────────────────────────────────────────────────── */

/* --- Opening masthead (typographic, no hero image) --- */
.amast {
  background: var(--cream);
  padding: 11.5rem 3rem 4.5rem;
  border-bottom: 1px solid var(--warm-gray);
}
.amast__inner { max-width: 1180px; margin: 0 auto; }

.amast__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 3.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.amast__top .gold { color: var(--gold); }

.amast__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.amast__lead em { font-style: italic; color: var(--gold); }

.amast__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  align-items: baseline;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--warm-gray);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.amast__byline strong { color: var(--black); font-weight: 500; }

/* --- Full-bleed photographic plate --- */
.aplate { background: var(--cream); padding: 0; }
.aplate__img {
  display: block;
  width: 100%;
  height: clamp(320px, 52vw, 640px);
  object-fit: cover;
  background: var(--warm-gray);
}
.aplate__cap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 3rem 0;
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* --- Dossier sidebar + narrative --- */
.adoss {
  background: var(--cream);
  padding: 6.5rem 3rem;
  border-bottom: 1px solid var(--warm-gray);
}
.adoss__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 5rem;
  align-items: start;
}
.adoss__aside { position: sticky; top: 7rem; }

.adoss__portrait {
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(135deg, #ddd8cc 0 14px, #d6d0c2 14px 28px);
  border: 1px solid var(--warm-gray);
  display: flex;
  align-items: flex-end;
  padding: 0.9rem;
  margin-bottom: 1.6rem;
}
.adoss__portrait span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #897f6a;
}

.adoss__row {
  padding: 1rem 0;
  border-top: 1px solid var(--warm-gray);
}
.adoss__row:first-of-type { border-top: 0; padding-top: 0; }
.adoss__k {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.adoss__v {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--black);
}

.adoss__body { max-width: 42rem; }
.adoss__h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0 0 1.6rem;
}
.adoss__body p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  color: #3a3a34;
  margin: 0 0 1.35rem;
}
.adoss__body p:last-child { margin-bottom: 0; }
.adoss__body strong { font-weight: 500; color: var(--black); }
.adoss__body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 3.7em;
  line-height: 0.72;
  float: left;
  margin: 0.06em 0.14em 0 0;
  color: var(--gold);
}

/* --- Independence manifesto --- */
.acom {
  background: var(--cream-mid);
  padding: 7rem 3rem;
  border-bottom: 1px solid var(--warm-gray);
}
.acom__inner { max-width: 1180px; margin: 0 auto; }
.acom__label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin: 0 0 2.8rem;
}
.acom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  border-top: 1px solid var(--warm-gray);
  padding-top: 2.8rem;
}
.acom__stmt {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  line-height: 1.08;
  color: var(--black);
  margin: 0 0 0.9rem;
}
.acom__stmt .g { color: var(--gold); }
.acom__note {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--mid-gray);
  margin: 0;
}
.acom__foot {
  max-width: 46rem;
  margin: 3rem 0 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  color: var(--black);
}

/* --- Region knowledge breakdown --- */
.areg {
  background: var(--cream);
  padding: 6.5rem 3rem;
  border-bottom: 1px solid var(--warm-gray);
}
.areg__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 5rem;
  align-items: start;
}
.areg__h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  color: var(--black);
  margin: 0 0 1.2rem;
  max-width: 12ch;
}
.areg__lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid-gray);
  margin: 0;
  max-width: 26rem;
}
.areg__note {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--warm-gray);
}
.areg__note:first-child { border-top: 0; padding-top: 0; }
.areg__nk {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.2rem;
}
.areg__nv {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.6;
  color: #3a3a34;
}

/* --- Working together — engagement modes --- */
.amodes {
  background: var(--white);
  padding: 6.5rem 3rem;
  border-bottom: 1px solid var(--warm-gray);
}
.amodes__inner { max-width: 1180px; margin: 0 auto; }
.amodes__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem 3rem;
  margin-bottom: 1rem;
}
.amodes__label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin: 0;
}
.amodes__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.2;
  color: var(--black);
  margin: 0;
  max-width: 22ch;
}
.amodes__list { margin-top: 2.5rem; border-top: 1px solid var(--warm-gray); }
.amodes__item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: baseline;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--warm-gray);
}
.amodes__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}
.amodes__t {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
  line-height: 1.15;
  color: var(--black);
  margin: 0;
}
.amodes__d {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--mid-gray);
  margin: 0;
}
.amodes__foot {
  margin: 2.5rem 0 0;
  max-width: 44rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #3a3a34;
}
.amodes__foot strong { color: var(--black); font-weight: 500; }


/* ─────────────────────────────────────────────────────────────────────────
   SERVICES — Capabilities document (intentionally photo-light)
   ───────────────────────────────────────────────────────────────────────── */

/* --- Opening: lead + table of contents --- */
.smast {
  background: var(--cream);
  padding: 11.5rem 3rem 4.5rem;
  border-bottom: 1px solid var(--warm-gray);
}
.smast__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 5rem;
  align-items: end;
}
.smast__kicker {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.6rem;
}
.smast__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0;
  max-width: 16ch;
}
.smast__lead em { font-style: italic; color: var(--gold); }

.smast__toc-label {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin: 0 0 0.4rem;
}
.smast__toc { display: block; }
.smast__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: baseline;
  padding: 1rem 0;
  border-top: 1px solid var(--warm-gray);
  text-decoration: none;
  color: var(--black);
  transition: padding-left 0.25s ease;
}
.smast__link:last-child { border-bottom: 1px solid var(--warm-gray); }
.smast__link:hover { padding-left: 0.5rem; }
.smast__link .n { font-family: var(--font-display); font-size: 0.95rem; color: var(--gold); }
.smast__link .t {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.1;
  transition: color 0.2s ease;
}
.smast__link:hover .t { color: var(--gold); }
.smast__link .meta {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  white-space: nowrap;
}

/* --- Service entry --- */
.sentry {
  padding: 5.5rem 3rem;
  border-bottom: 1px solid var(--warm-gray);
  background: var(--cream);
}
.sentry--alt { background: var(--white); }
.sentry__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 4rem;
  align-items: start;
}
.sentry__media { margin: 0; }
.sentry__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--warm-gray);
}
/* Alternating rows place the image on the right */
.sentry--alt .sentry__content { order: 1; }
.sentry--alt .sentry__media { order: 2; }
.sentry__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 0.78;
  color: transparent;
  -webkit-text-stroke: 1px #cbc3af;
  text-stroke: 1px #cbc3af;
  margin: 0 0 1rem;
  display: block;
}
.sentry__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0 0 1.2rem;
}
.sentry__lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #3a3a34;
  margin: 0;
  max-width: 32rem;
}
.sentry__caps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
}
.sentry__caps li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.4rem;
  border-top: 1px solid var(--warm-gray);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.45;
  color: #3a3a34;
}
.sentry__caps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.18rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

/* --- Billing statement --- */
.sbill {
  background: var(--cream-mid);
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--warm-gray);
}
.sbill__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}
.sbill__label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.4rem;
}
.sbill__stmt {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.22;
  color: var(--black);
  margin: 0 0 1.1rem;
  max-width: 22ch;
}
.sbill__note {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid-gray);
  margin: 0;
  max-width: 40rem;
}

/* --- Process timeline --- */
.sproc {
  background: var(--white);
  padding: 6.5rem 3rem;
  border-bottom: 1px solid var(--warm-gray);
}
.sproc__inner { max-width: 940px; margin: 0 auto; }
.sproc__head { margin-bottom: 3rem; }
.sproc__label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin: 0 0 1rem;
}
.sproc__h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  color: var(--black);
  margin: 0;
  max-width: 20ch;
}
.sproc__steps { position: relative; }
.sproc__steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--warm-gray);
}
.sproc__step {
  position: relative;
  padding: 0 0 2.4rem 4rem;
}
.sproc__step:last-child { padding-bottom: 0; }
.sproc__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  background: var(--white);
}
.sproc__t {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  color: var(--black);
  margin: 0.3rem 0 0.5rem;
}
.sproc__x {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid-gray);
  margin: 0;
  max-width: 40rem;
}


/* ─────────────────────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .amast, .smast { padding: 8.5rem 1.5rem 3.5rem; }
  .amast__lead { max-width: none; }

  .aplate__cap { padding: 0.9rem 1.5rem 0; }

  .adoss, .acom, .areg, .amodes { padding: 4.5rem 1.5rem; }
  .adoss__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .adoss__aside { position: static; }
  .adoss__portrait { max-width: 260px; }

  .acom__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .acom__grid > .acom__item { padding-bottom: 1.8rem; border-bottom: 1px solid var(--warm-gray); }
  .acom__grid > .acom__item:last-child { border-bottom: 0; padding-bottom: 0; }

  .areg__inner { grid-template-columns: 1fr; gap: 2rem; }

  .amodes__item { grid-template-columns: 44px 1fr; gap: 0.4rem 1.2rem; }
  .amodes__d { grid-column: 2; }

  .smast__inner { grid-template-columns: 1fr; gap: 2.8rem; align-items: start; }
  .sentry { padding: 4rem 1.5rem; }
  .sentry__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .sentry__num { font-size: clamp(3.5rem, 16vw, 5rem); }
  .sentry--alt .sentry__content,
  .sentry--alt .sentry__media { order: 0; }
  .sentry__media img { aspect-ratio: 3 / 2; }

  .sbill { padding: 4.5rem 1.5rem; }
  .sbill__inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .sbill__label { padding-top: 0; }

  .sproc { padding: 4.5rem 1.5rem; }
}

@media (max-width: 560px) {
  .sentry__caps { grid-template-columns: 1fr; gap: 0; }
  .amast__top { flex-direction: column; gap: 0.5rem; }
}


/* ─────────────────────────────────────────────────────────────────────────
   FAQ — editorial Q&A document   (prefix .faqh / .faq)
   ───────────────────────────────────────────────────────────────────────── */
.faqh {
  background: var(--cream);
  padding: 11.5rem 3rem 4.5rem;
  border-bottom: 1px solid var(--warm-gray);
}
.faqh__inner { max-width: 1180px; margin: 0 auto; }
.faqh__kicker {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.6rem;
}
.faqh__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0;
  max-width: 20ch;
}

.faq { background: var(--cream); padding: 2rem 3rem 6.5rem; }
.faq__inner { max-width: 1180px; margin: 0 auto; }
.faq__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 2.5rem;
  padding: 2.8rem 0;
  border-top: 1px solid var(--warm-gray);
}
.faq__item:last-child { border-bottom: 1px solid var(--warm-gray); }
.faq__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  padding-top: 0.35rem;
}
.faq__q {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.18;
  color: var(--black);
  margin: 0 0 1.1rem;
  max-width: 30ch;
}
.faq__a p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: #3a3a34;
  margin: 0 0 1.1rem;
  max-width: 44rem;
}
.faq__a p:last-child { margin-bottom: 0; }
.faq__a a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--warm-gray);
}
.faq__a a:hover { border-color: var(--gold); }
.faq__a ul { list-style: none; margin: 0 0 1.1rem; padding: 0; max-width: 44rem; }
.faq__a li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.3rem;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.6;
  color: #3a3a34;
}
.faq__a li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 5px;
  height: 1px;
  background: var(--gold);
}


/* ─────────────────────────────────────────────────────────────────────────
   CONTACT — editorial   (prefix .cmast / .cbody / .cdetail)
   ───────────────────────────────────────────────────────────────────────── */
.cmast {
  background: var(--cream);
  padding: 11.5rem 3rem 0;
}
.cmast__inner { max-width: 1180px; margin: 0 auto; }
.cmast__kicker {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.6rem;
}
.cmast__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0;
  max-width: 18ch;
}
.cmast__intro { margin: 2.2rem 0 0; max-width: 40rem; }
.cmast__intro p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid-gray);
  margin: 0;
}

.cbody { background: var(--cream); padding: 4rem 3rem 7rem; }
.cbody__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 5rem;
  align-items: start;
  border-top: 1px solid var(--warm-gray);
  padding-top: 4rem;
}
.cbody__label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.6rem;
}
.cbody__list { list-style: none; margin: 0; padding: 0; }
.cbody__list li {
  position: relative;
  padding: 1rem 0 1rem 1.4rem;
  border-top: 1px solid var(--warm-gray);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.3;
  color: var(--black);
}
.cbody__list li:first-child { border-top: 0; }
.cbody__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
}
.cbody__list li:first-child::before { top: 0.5rem; }

.cdetail { padding: 1.2rem 0; border-top: 1px solid var(--warm-gray); }
.cdetail:first-child { border-top: 0; padding-top: 0; }
.cdetail__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.cdetail__value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--black);
  text-decoration: none;
}
a.cdetail__value { transition: color 0.2s ease; }
a.cdetail__value:hover { color: var(--gold); }


@media (max-width: 900px) {
  .faqh { padding: 8.5rem 1.5rem 3.5rem; }
  .faq { padding: 1.5rem 1.5rem 4.5rem; }
  .faq__item { grid-template-columns: 1fr; gap: 0.9rem; padding: 2.2rem 0; }
  .faq__num { padding-top: 0; }

  .cmast { padding: 8.5rem 1.5rem 0; }
  .cbody { padding: 3rem 1.5rem 5rem; }
  .cbody__inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 2.5rem; }
}


/* ─────────────────────────────────────────────────────────────────────────
   ABOUT — hero with image (text + contained photo at the top)
   ───────────────────────────────────────────────────────────────────────── */
.amast--hero { padding-bottom: 5.5rem; }
.amast__inner--hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 4.5rem;
  align-items: center;
}
.amast__text { min-width: 0; }
.amast--hero .amast__lead { max-width: 16ch; }
.amast__media { margin: 0; }
.amast__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 540px;
  object-fit: cover;
  background: var(--warm-gray);
}
.amast__cap {
  margin: 0.8rem 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ─────────────────────────────────────────────────────────────────────────
   ABOUT — heritage band
   ───────────────────────────────────────────────────────────────────────── */
.aher {
  background: var(--cream-mid);
  padding: 7rem 3rem;
  border-bottom: 1px solid var(--warm-gray);
}
.aher__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 5rem;
  align-items: start;
}
.aher__label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.4rem;
}
.aher__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  color: var(--black);
  margin: 0;
  max-width: 14ch;
}
.aher__body p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  color: #3a3a34;
  margin: 0 0 1.35rem;
  max-width: 42rem;
}
.aher__body p:last-child { margin-bottom: 0; }
.aher__body strong { font-weight: 500; color: var(--black); }
.aher__body em { font-style: italic; color: var(--gold); }

@media (max-width: 900px) {
  .amast__inner--hero { grid-template-columns: 1fr; gap: 2.2rem; }
  .amast--hero .amast__lead { max-width: none; }
  .amast__media img { aspect-ratio: 3 / 2; max-height: 360px; }

  .aher { padding: 4.5rem 1.5rem; }
  .aher__inner { grid-template-columns: 1fr; gap: 1.6rem; }
}
