/*
Theme Name:   Beauty Talent Co Child
Description:  Child theme for Astra — The Beauty Talent Co.
Author:       Francois Van Der Elst
Template:     astra
Version:      0.37.0
Text Domain:  beauty-talent-co-child
*/

/* ============================================================
   IMAGE PLACEHOLDERS / PALETTE
   ============================================================ */
:root {
  --img-hero:      url("https://beautytalentco.com/wp-content/uploads/2026/06/home-header-3.webp");
  --img-cta:       url("https://beautytalentco.com/wp-content/uploads/2026/06/home-lighting.webp");

  /* Palette */
  --brown-dark:   #130f0e;
  --bg-shell:     #3a3128;
  --cream:        #f4efe7;
  --cream-2:      #efe8dc;
  --paper:        #fbf8f2;
  --ink:          #2a2521;
  --ink-soft:     #6f665b;
  --warm-mid:     #4a3d33;
  --warm-deep:    #211e1a;
  --warm-cta:     #2c2520;
  --line-warm:    #dacfbe;
  --gold:         #a6817a;
  --gold-dark:    #8a6d3f;
  --muted:        #b7ac9c;
  --img-tile:     #f5f6f0;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  background: var(--bg-shell);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
}

/* Global H2 size */
h2 { font-size: clamp(40px, 6vw, 64px) !important; }

/* Neutralise Astra wrappers (safety — child templates already replace them) */
#page, #content, .site, .site-content, .ast-container,
.entry-content, .ast-article-single {
  background: transparent !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.page {
  width: 100%;
  margin: 0 auto;
  background: var(--bg-shell);
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
}

.rule {
  display: inline-block;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s ease, background .25s ease, color .25s ease, transform .25s ease;
  border: 1px solid transparent;
  background: none;
}
.btn:hover { opacity: .82; }
.btn--solid   { background: var(--paper); color: var(--ink); }
.btn--ghost-l { border-color: rgba(251,248,242,0.55); color: var(--paper); }
.btn--ghost-l6{ border-color: rgba(251,248,242,0.6);  color: var(--paper); }
/* Thin-line arrow icon inside buttons (inherits text colour) */
.btn-ico { display: inline-flex; width: 13px; height: 13px; flex: 0 0 auto; transition: transform .25s ease; }
.btn-ico svg { width: 100%; height: 100%; display: block; }
.btn:hover .btn-ico { transform: translate(2px, -2px); }

/* ---------- Scroll reveals: mask / fade / zoom-blur ---------- */
.reveal-img { transition: clip-path 1.05s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal-img.reveal-hidden { clip-path: inset(100% 0 0 0); }
.reveal-img.is-in { clip-path: inset(0 0 0 0); }

.reveal-fade { transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal-fade.reveal-hidden { opacity: 0; transform: translateY(50px); }
.reveal-fade.is-in { opacity: 1; transform: translateY(0); }

.reveal-zoom { transition: transform 1.5s cubic-bezier(0.22, 0.61, 0.36, 1), filter 1.4s ease, opacity 1.2s ease; }
.reveal-zoom.reveal-hidden { transform: scale(1.12); filter: blur(16px); opacity: 0; }
.reveal-zoom.is-in { transform: scale(1); filter: blur(0); opacity: 1; }

/* Pure-CSS zoom + un-blur on load (no JS, for above-the-fold hero images) */
@keyframes zoomBlurIn {
  from { transform: scale(1.12); filter: blur(16px); opacity: 0; }
  to   { transform: scale(1);    filter: blur(0);    opacity: 1; }
}
.zoom-in-load { animation: zoomBlurIn 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
@media (prefers-reduced-motion: reduce) { .zoom-in-load { animation: none; } }

/* Candidates row — stagger the three, one after the next */
.sv-cand__row .sv-cand__item:nth-child(2) { transition-delay: 0.2s; }
.sv-cand__row .sv-cand__item:nth-child(3) { transition-delay: 0.4s; }

[data-float] { will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .reveal-img.reveal-hidden, .reveal-fade.reveal-hidden, .reveal-zoom.reveal-hidden {
    clip-path: none; opacity: 1; transform: none; filter: none;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 80px;
}
.header__left  { display: flex; justify-content: flex-start; }
.header__right { display: flex; justify-content: flex-end; }
.pill {
  border: 1px solid var(--brown-dark);
  border-radius: 999px;
  padding: 11px 20px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--brown-dark);
  white-space: nowrap;
  cursor: pointer;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}
.pill:hover { background: var(--brown-dark); color: var(--paper); }
.logo { justify-self: center; }
.logo img { height: 53px; width: auto; display: block; }
.menu-icon {
  width: 34px; height: 18px;
  display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between;
  background: none; border: none; padding: 0; cursor: pointer;
}
.menu-icon span {
  display: block; height: 2px; background: var(--brown-dark); border-radius: 1px;
  transition: width .4s cubic-bezier(0.22,0.61,0.36,1), transform .4s cubic-bezier(0.22,0.61,0.36,1);
  transform-origin: right center;
}
.menu-icon span:nth-child(1) { width: 100%; }
.menu-icon span:nth-child(2) { width: 78%; }
.menu-icon span:nth-child(3) { width: 52%; }
/* Hover: lines align to full width with a subtle stagger */
.menu-icon:hover span { width: 100%; }
.menu-icon:hover span:nth-child(2) { transition-delay: .04s; }
.menu-icon:hover span:nth-child(3) { transition-delay: .08s; }
.menu-icon:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }

/* ============================================================
   FULL-SCREEN MENU OVERLAY
   ============================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--brown-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 80px 28px 48px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .5s ease, visibility 0s linear .5s;
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .5s ease, visibility 0s;
}

/* Close button (×) */
.menu-close {
  position: absolute;
  top: 30px; right: 80px;
  width: 32px; height: 32px;
  background: none; border: none; padding: 0; cursor: pointer;
}
.menu-close span {
  position: absolute; top: 50%; left: 0;
  width: 100%; height: 2px; background: var(--paper); border-radius: 1px;
  transition: background .25s ease;
}
.menu-close span:nth-child(1) { transform: translateY(-50%) rotate(45deg); }
.menu-close span:nth-child(2) { transform: translateY(-50%) rotate(-45deg); }
.menu-close:hover span { background: var(--gold); }
.menu-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 8px; }

/* Big centered links */
.menu-overlay__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.menu-overlay__links li {
  overflow: hidden;
}
.menu-overlay__links a {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.12;
  color: var(--paper);
  transform: translateY(110%);
  opacity: 0;
  transition: transform .7s cubic-bezier(0.22,0.61,0.36,1), opacity .7s ease, color .25s ease;
}
.menu-overlay__links a:hover { color: var(--gold); }
.menu-overlay.is-open .menu-overlay__links a { transform: translateY(0); opacity: 1; }
.menu-overlay.is-open .menu-overlay__links li:nth-child(1) a { transition-delay: .12s; }
.menu-overlay.is-open .menu-overlay__links li:nth-child(2) a { transition-delay: .18s; }
.menu-overlay.is-open .menu-overlay__links li:nth-child(3) a { transition-delay: .24s; }
.menu-overlay.is-open .menu-overlay__links li:nth-child(4) a { transition-delay: .30s; }
.menu-overlay.is-open .menu-overlay__links li:nth-child(5) a { transition-delay: .36s; }

/* Contact + social footer of the overlay */
.menu-overlay__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transition: opacity .6s ease .45s;
}
.menu-overlay.is-open .menu-overlay__foot { opacity: 1; }
.menu-overlay__contact, .menu-overlay__social {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.menu-overlay__foot a { color: var(--paper); transition: color .25s ease; }
.menu-overlay__foot a:hover { color: var(--gold); }
.menu-overlay__foot .sep { color: var(--muted); opacity: .6; }

/* Lock scroll when menu open */
body.menu-open { overflow: hidden; }

/* Footer links hover */
.footer__col .item a { transition: color .25s ease; }
.footer__col .item a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .menu-close { right: 28px; }
  .menu-overlay { gap: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .menu-overlay__links a { transform: none; opacity: 1; transition: color .25s ease; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 836px;
  display: flex;
  flex-direction: column;
  padding: 0 80px 32px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; left: 0; right: 0; top: -20%; height: 140%; z-index: 0;
  background: var(--img-hero) center/cover no-repeat, var(--bg-shell);
  will-change: transform;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(58,53,47,0.45) 0%, rgba(58,53,47,0.28) 18%, rgba(58,53,47,0) 58%);
}
.hero__meta {
  position: relative; z-index: 1;
  padding-top: 16px;
}
.hero__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.5px;
  color: rgba(251,248,242,0.82);
}
.hero__meta-row span:nth-child(1) { letter-spacing: 0.22em; }
.hero__meta-row span:nth-child(2) { letter-spacing: 0.3em; }
.hero__meta-row span:nth-child(3) { letter-spacing: 0.22em; }
.hero__meta-line {
  margin-top: 14px;
  height: 1px;
  background: rgba(251,248,242,0.28);
}
.hero__body {
  position: relative; z-index: 1;
  margin-top: auto;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.hero__kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(251,248,242,0.9);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--paper);
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.9;
  max-width: 1022px;
}
.hero__title em { font-style: italic; }
/* masked per-letter reveal */
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.hero__title .ch {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.hero__title.in .ch { transform: translateY(0); }
.hero__title .ch--it { font-style: italic; }

/* Generic masked per-letter reveal — applies to ANY [data-reveal] heading */
[data-reveal] .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
[data-reveal] .ch {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
[data-reveal].in .ch { transform: translateY(0); }
[data-reveal] .ch--it { font-style: italic; }
.hero__buttons { display: flex; gap: 14px; padding-top: 16px; flex-wrap: wrap; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--cream);
  border-top: 1px solid var(--line-warm);
  border-bottom: 1px solid var(--line-warm);
  height: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 28px;
  padding-right: 28px;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
}
.marquee i {
  font-style: normal;
  font-size: 14px;
  color: var(--gold);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  z-index: 2;
  background: #FFFDF9;
  display: flex;
  justify-content: center;
  padding: 96px 80px;
}
.about__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 1100px;
}
.about__photo {
  position: absolute;
  right: 6%;
  bottom: -56px;            /* bleeds into the band below */
  width: clamp(220px, 21vw, 300px);
  z-index: 1;               /* sits behind the copy */
  pointer-events: none;
  will-change: transform;
}
.about__photo img { width: 100%; height: auto; display: block; }
.about__eyebrow { letter-spacing: 0.24em; }
.about__lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.2;
  color: var(--ink);
  max-width: 924px;
}
.about__text {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 458px;
}
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  transition: gap .25s ease;
}
.link-underline:hover { gap: 18px; }
.link-underline .lbl { font-weight: 500; font-size: 11px; letter-spacing: 0.2em; }
.link-underline .arr { font-size: 14px; }

/* ============================================================
   WORK HEADER
   ============================================================ */
.workhead {
  background: var(--cream-2);
  min-height: 280px;
  display: flex;
  gap: 80px;
  align-items: flex-end;
  padding: 96px 80px;
}
.workhead__eyebrow { display: flex; align-items: center; gap: 18px; color: var(--ink-soft); }
.workhead__eyebrow .rule { width: 46px; }
.workhead__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.04;
  color: var(--ink);
  margin-top: 28px;
  max-width: 760px;
}
.workhead__title em { font-style: italic; }
.workhead__right {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  text-align: right;
  max-width: 400px;
}

/* ============================================================
   SPLIT SECTIONS (For Brands / For Candidates)
   ============================================================ */
.split {
  background: #161616;
  min-height: 720px;
  display: flex;
  align-items: stretch;
}
.split__text {
  flex: 0 0 50%;
  max-width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px;
  gap: 48px;
}
.split__head { display: flex; flex-direction: column; gap: 16px; }
.split__eyebrow { display: flex; align-items: center; gap: 18px; color: var(--paper); }
.split__eyebrow .eyebrow { color: var(--paper); }
.split__eyebrow .rule { width: 46px; }
.split__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.04;
  color: var(--paper);
}
.split__title em { font-style: italic; }
.split__foot { display: flex; flex-direction: column; gap: 24px; }
.split__text p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(251,248,242,0.92);
  max-width: 510px;
}
.split__media {
  position: relative;
  overflow: hidden;
  flex: 0 0 50%;
  max-width: 50%;
  min-width: 0;
  align-self: stretch;
  background: var(--img-tile);
  min-height: 720px;
}
.split__media img {
  position: absolute;
  top: -12%; left: 0;
  width: 100%; height: 124%;
  object-fit: cover;
  will-change: transform;
}

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers {
  background: #2C190C;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 96px 80px;
}
.numbers__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.numbers__eyebrow { display: flex; align-items: center; gap: 14px; color: var(--muted); }
.numbers__eyebrow .rule { width: 28px; }
.numbers__eyebrow .eyebrow { color: var(--muted); letter-spacing: 0.22em; }
.numbers__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 32px) !important;
  line-height: 1.2;
  color: var(--paper);
  text-align: right;
  max-width: 720px;
}
.numbers__title em { font-style: italic; }
.stats { display: flex; }
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 36px;
}
.stat + .stat { border-left: 1px solid #3a352f; }
.stat:first-child { padding-left: 0; }
.stat b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 84px;
  line-height: 1;
  color: var(--paper);
}
.stat span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 120px 80px;
  overflow: hidden;
}
.cta__bg {
  position: absolute; left: 0; right: 0; top: -12%; height: 124%; z-index: 0;
  background: var(--img-cta) center/cover no-repeat, var(--warm-cta);
  will-change: transform;
}
.cta__bg::after { content:""; position:absolute; inset:0; background: rgba(255,253,249,0.30); }
.cta__eyebrow, .cta__title, .cta__text, .cta__btn { position: relative; z-index: 1; }
.cta__eyebrow { display: flex; align-items: center; gap: 18px; color: #2A2521; }
.cta__eyebrow .eyebrow { color: #2A2521; }
.cta__eyebrow .rule { width: 46px; }
.cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 1.08;
  color: #2A2521;
  max-width: 592px;
}
.cta__title em { font-style: italic; }
.cta__text {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(42,37,33,0.86);
  max-width: 520px;
}
.cta__btn { padding-top: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--warm-deep);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 80px 80px 32px;
}
.footer__top {
  display: flex;
  gap: 60px;
  border-bottom: 1px solid #3a352f;
  padding-bottom: 48px;
}
.footer__col { flex: 1; }
.footer__label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--muted);
}
.footer__brand-line {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.08;
  color: var(--paper);
  margin-top: 20px;
}
.footer__col p + p { margin-top: 14px; }
.footer__col .item {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--paper);
  margin-top: 14px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .header, .hero, .about, .workhead, .numbers, .cta, .footer { padding-left: 28px; padding-right: 28px; }
  .split__text { padding: 48px 28px; flex-basis: auto; max-width: 100%; }
  .split, .split--rev { flex-direction: column; }
  .split--rev .split__media { order: -1; }
  .split__media { flex-basis: auto; max-width: 100%; min-height: 380px; height: 380px; }
  .split__media img { height: 124%; }
  .workhead { flex-direction: column; align-items: flex-start; gap: 32px; }
  .workhead__right { margin-left: 0; text-align: left; }
  .numbers__head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .numbers__title { text-align: left; }
  .stats { flex-wrap: wrap; gap: 32px 0; }
  .stat { flex: 0 0 50%; }
  .stat:nth-child(3) { padding-left: 0; border-left: none; }
  .footer__top { flex-direction: column; gap: 32px; }
  /* About photo drops below the copy on small screens */
  .about { flex-direction: column; align-items: center; }
  .about__photo {
    position: static;
    width: clamp(200px, 60vw, 280px);
    margin-top: 40px;
    transform: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  .marquee__track { animation: none; }
  .about__photo { transform: none !important; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ---- Founder hero ---- */
.ab-hero { background: var(--paper); padding: 130px 80px 110px; }
.ab-hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 72px; align-items: center;
  max-width: 1320px; margin: 0 auto;
}
.ab-hero__eyebrow { display: flex; align-items: center; gap: 18px; color: var(--ink-soft); margin-bottom: 30px; }
.ab-hero__eyebrow .rule { width: 46px; }
.ab-hero__name {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(52px, 6vw, 96px); line-height: 0.98; color: var(--ink);
}
.ab-hero__role {
  font-family: var(--sans); font-weight: 500; font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 24px;
}
.ab-hero__photo {
  position: relative; aspect-ratio: 4 / 5;
  overflow: visible;
}
.ab-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-photo-ph {
  position: absolute; inset: 0; border: 1px solid var(--line-warm);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 28px; color: var(--ink-soft);
}
.ab-photo-ph svg { width: 34px; height: 34px; stroke: var(--ink-soft); opacity: .6; }
.ab-photo-ph span { font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; line-height: 1.6; max-width: 260px; }

/* ---- Sticky-overlap stack (desktop): My Story pins, The Journey scrolls over it ---- */
@media (min-width: 901px) {
  .ab-stack { position: relative; }
  .ab-stack .ab-story {
    position: sticky;
    top: 0;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .ab-stack .ab-story__inner { width: 100%; }
  .ab-stack .ab-timeline {
    position: relative;
    z-index: 2;               /* scrolls up and paints over the pinned story */
  }
}

/* ---- My story ---- */
.ab-story { background: #FFFDF9; padding: 110px 80px; }
.ab-story__inner {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px;
  max-width: 1280px; margin: 0 auto;
}
.ab-story__eyebrow { display: flex; align-items: center; gap: 18px; color: var(--ink-soft); margin-bottom: 24px; }
.ab-story__eyebrow .rule { width: 46px; }
.ab-story__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5vw, 64px); line-height: 1.05; color: var(--ink);
}
.ab-story__body p {
  font-family: var(--sans); font-size: 16px; line-height: 1.85;
  color: var(--ink-soft); max-width: 640px;
}
.ab-story__body p + p { margin-top: 24px; }

/* ---- Career timeline ---- */
.ab-timeline { background: var(--cream-2); padding: 110px 80px; }
.ab-timeline__inner { max-width: 1280px; margin: 0 auto; }
.ab-timeline__eyebrow { display: flex; align-items: center; gap: 18px; color: var(--ink-soft); margin-bottom: 24px; }
.ab-timeline__eyebrow .rule { width: 46px; }
.ab-timeline__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px); line-height: 1.05; color: var(--ink); max-width: 700px;
}
.ab-tl { margin-top: 56px; border-top: 1px solid var(--line-warm); }
.ab-tl__row {
  display: grid; grid-template-columns: 150px 1.5fr 1.4fr 1fr;
  gap: 32px; align-items: baseline;
  padding: 30px 8px; border-bottom: 1px solid var(--line-warm);
  transition: background .3s ease, padding-left .3s ease;
}
.ab-tl__row:hover { background: rgba(166,129,122,0.06); padding-left: 18px; }
.ab-tl__date { font-family: var(--sans); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; color: var(--gold); }
.ab-tl__company { font-family: var(--serif); font-size: 24px; line-height: 1.2; color: var(--ink); }
.ab-tl__role { font-family: var(--sans); font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.ab-tl__loc { font-family: var(--sans); font-size: 12px; letter-spacing: 0.08em; color: var(--ink-soft); text-align: right; }

/* ---- Testimonials ---- */
.ab-quotes { background: #FFFDF9; padding: 110px 80px; }
.ab-quotes__inner { max-width: 1200px; margin: 0 auto; }
.ab-quotes__eyebrow { justify-content: center; }
.ab-quotes__title { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 4.4vw, 60px); text-align: center; color: var(--ink); }
.ab-quotes__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 60px; }
.ab-quote {
  background: var(--paper); border: 1px solid var(--line-warm);
  padding: 48px; display: flex; flex-direction: column; gap: 26px;
}
.ab-quote__mark { font-family: var(--serif); font-size: 64px; line-height: 0.4; color: var(--gold); height: 28px; }
.ab-quote__text { font-family: var(--serif); font-weight: 400; font-size: 23px; line-height: 1.5; color: var(--ink); }
.ab-quote__by { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }

@media (max-width: 900px) {
  .ab-hero, .ab-story, .ab-timeline, .ab-quotes { padding-left: 28px; padding-right: 28px; }
  .ab-hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .ab-hero__photo { aspect-ratio: 4 / 5; max-width: 420px; }
  .ab-story__inner { grid-template-columns: 1fr; gap: 28px; }
  .ab-tl__row {
    grid-template-columns: 1fr; gap: 6px; padding: 24px 0;
  }
  .ab-tl__row:hover { padding-left: 0; }
  .ab-tl__loc { text-align: left; }
  .ab-quotes__grid { grid-template-columns: 1fr; gap: 24px; }
  .ab-quote { padding: 36px 28px; }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--block { background: var(--gold); color: var(--paper); border-radius: 0; }
.btn--block:hover { opacity: 1; background: var(--gold-dark); }

/* ---- Hero (asymmetric, image-led) ---- */
.sv-hero { background: var(--paper); padding: 120px 80px 100px; }
.sv-hero__inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; }
.sv-hero__meta { display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--sans); font-weight: 500; font-size: 10.5px; letter-spacing: 0.22em; color: var(--ink-soft); margin-bottom: 28px; }
.sv-hero__eyebrow { display: flex; align-items: center; gap: 18px; color: var(--ink-soft); margin-bottom: 26px; }
.sv-hero__eyebrow .rule { width: 46px; }
.sv-hero__title { font-family: var(--serif); font-weight: 400; font-size: clamp(46px, 5.4vw, 84px); line-height: 0.98; color: var(--ink); }
.sv-hero__title em { font-style: italic; }
.sv-hero__body { font-family: var(--sans); font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 520px; margin-top: 30px; }
.sv-hero__media { position: relative; aspect-ratio: 4 / 5; overflow: visible; }
.sv-hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---- For Brands + steps (airy editorial) ---- */
.sv-brands { background: #FFFDF9; padding: 120px 80px; }
.sv-brands__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; }
.sv-brands__head { position: sticky; top: 120px; }
.sv-brands__eyebrow { display: flex; align-items: center; gap: 18px; color: var(--ink-soft); margin-bottom: 24px; }
.sv-brands__eyebrow .rule { width: 46px; }
.sv-brands__title { font-family: var(--serif); font-weight: 400; line-height: 1.04; color: var(--ink); }
.sv-brands__body { font-family: var(--sans); font-size: 16px; line-height: 1.75; color: var(--ink-soft); max-width: 380px; margin-top: 24px; }
.sv-steps { display: flex; flex-direction: column; }
.sv-step { display: grid; grid-template-columns: 96px 1fr; gap: 32px; align-items: baseline; padding: 36px 0; border-top: 1px solid var(--line-warm); transition: padding-left .35s ease; }
.sv-step:last-child { border-bottom: 1px solid var(--line-warm); }
.sv-step:hover { padding-left: 14px; }
.sv-step__num { font-family: var(--serif); font-weight: 300; font-size: 56px; line-height: 0.9; color: var(--gold); }
.sv-step__title { font-family: var(--serif); font-weight: 300; font-size: 30px; line-height: 1.15; color: var(--ink); }
.sv-step__desc { font-family: var(--sans); font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin-top: 10px; max-width: 520px; }

/* ---- Roles we source (warm cream, editorial) ---- */
.sv-roles { background: #ece4d8; padding: 110px 80px; }
.sv-roles__inner { max-width: 1280px; margin: 0 auto; }
.sv-roles__eyebrow { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.sv-roles__eyebrow .rule { width: 46px; background: var(--gold); opacity: 0.7; }
.sv-roles__eyebrow .eyebrow { color: var(--gold); }
.sv-roles__title { font-family: var(--serif); font-weight: 400; line-height: 1.05; color: var(--ink); }
.sv-roles__grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.sv-role__label {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-weight: 200; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.sv-role__label::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.7; }
.sv-role__list { list-style: none; margin: 0; padding: 0; }
.sv-role__list li {
  font-family: var(--serif); font-size: 23px; color: var(--ink);
  padding: 18px 0; border-bottom: 1px solid var(--line-warm); list-style: none;
}
.sv-role__list li:first-child { border-top: 1px solid var(--line-warm); }

/* ---- Brand logo strip (after philosophy) ---- */
.sv-logos { background: var(--paper); padding: 26px 80px 56px; }
.sv-logos__row { max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px 48px; }
.sv-logos__row span { font-family: var(--sans); font-weight: 500; font-size: 15px; letter-spacing: 0.1em; color: var(--ink); opacity: 0.75; white-space: nowrap; }

/* ---- Philosophy (statement + 2 images) ---- */
.sv-philo { background: var(--paper); padding: 120px 80px; }
.sv-philo__inner { max-width: 1180px; margin: 0 auto; }
.sv-philo__eyebrow { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 30px; }
.sv-philo__statement { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 4vw, 56px); line-height: 1.18; color: var(--ink); max-width: 22ch; }
.sv-philo__statement em { font-style: italic; }
.sv-philo__media { max-width: 1180px; margin: 80px auto 0; display: grid; grid-template-columns: 0.7fr 1.5fr 1fr; gap: 32px; align-items: start; }
.sv-philo__note { font-family: var(--sans); font-size: 13px; line-height: 1.65; color: var(--ink-soft); max-width: 210px; }
.sv-philo__img { overflow: hidden; }
.sv-philo__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sv-philo__img--lg { aspect-ratio: 4 / 5; }
.sv-philo__img--sm { aspect-ratio: 3 / 4; margin-top: 70px; }

/* ---- Candidates: full-bleed band + oversized word ---- */
.sv-candband { position: relative; height: 480px; overflow: hidden; }
.sv-candband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sv-candband__word { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); margin: 0; font-family: var(--serif); font-weight: 400; font-size: 340px; line-height: 1; color: #F5F6F0; white-space: nowrap; pointer-events: none; will-change: transform; }

/* ---- For candidates (floating image + centered statement + image row) ---- */
.sv-cand { background: var(--cream-2); padding: 0 80px 120px; display: flex; flex-direction: column; align-items: center; }
.sv-cand__float { width: 482px; max-width: 72%; aspect-ratio: 482 / 426; overflow: hidden; margin-top: -90px; position: relative; z-index: 2; }
.sv-cand__float img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sv-cand__inner { max-width: 1080px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; padding-top: 50px; }
.sv-cand__eyebrow { display: flex; align-items: center; gap: 16px; justify-content: center; color: var(--ink-soft); }
.sv-cand__eyebrow .rule { width: 46px; }
.sv-cand__title { font-family: var(--serif); font-weight: 400; line-height: 1.04; color: var(--ink); max-width: 18ch; }
.sv-cand__title em { font-style: italic; }
.sv-cand__body { font-family: var(--sans); font-size: 16px; line-height: 1.75; color: var(--ink-soft); max-width: 600px; }
.sv-cand .btn { margin-top: 6px; }
.sv-cand__row { width: 100%; max-width: 960px; margin: 38px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: left; }
.sv-cand__item figure { aspect-ratio: 300 / 360; overflow: hidden; margin-bottom: 16px; }
.sv-cand__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sv-cand__cap { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

/* ---- Fees (image left, divider, text + solid button — fees.png) ---- */
.sv-fees { background: var(--paper); padding: 150px 0; overflow: hidden; }
.sv-fees__inner { display: flex; align-items: center; gap: 56px; }
.sv-fees__text { flex: 0 0 auto; width: 40%; max-width: 480px; display: flex; flex-direction: column; gap: 18px; padding-left: max(80px, calc((100vw - 1280px) / 2)); }
.sv-fees__eyebrow { display: flex; align-items: center; gap: 16px; color: var(--ink-soft); }
.sv-fees__eyebrow .rule { width: 46px; }
.sv-fees__title { font-family: var(--serif); font-weight: 400; line-height: 1.04; color: var(--ink); }
.sv-fees__title em { font-style: italic; }
.sv-fees__body { font-family: var(--sans); font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 384px; }
.sv-fees__text .btn { margin-top: 12px; align-self: flex-start; }
.sv-fees__imgs { flex: 1; position: relative; height: 640px; }
.sv-fees__imgs img { position: absolute; object-fit: cover; top: 0; }
.sv-fees__imgs .sm { right: -110px; top: 40px; width: 34%; height: 82%; }
.sv-fees__imgs .big { right: 26%; width: 60%; height: 100%; }

/* ---- Brands we work with (scattered collage + logo wall — OUR WORLD.png) ---- */
.sv-world { background: var(--paper); padding: 150px 0; overflow: hidden; }
.sv-world__inner { display: flex; align-items: center; gap: 56px; }
.sv-world__imgs { flex: 1; position: relative; height: 640px; }
.sv-world__imgs img { position: absolute; object-fit: cover; top: 0; }
.sv-world__imgs .sm { left: -110px; top: 40px; width: 34%; height: 82%; }
.sv-world__imgs .big { left: 26%; width: 60%; height: 100%; }
.sv-world__head { flex: 0 0 auto; width: 40%; max-width: 480px; display: flex; flex-direction: column; gap: 18px; padding-right: max(80px, calc((100vw - 1280px) / 2)); }
.sv-world__eyebrow { display: flex; align-items: center; gap: 16px; color: var(--ink-soft); }
.sv-world__eyebrow .rule { width: 46px; background: currentColor; opacity: 0.5; }
.sv-world__eyebrow .eyebrow { color: var(--ink-soft); }
.sv-world__title { font-family: var(--serif); font-weight: 400; line-height: 1.04; color: var(--ink); }
.sv-world__title em { font-style: italic; }
.sv-world__body { font-family: var(--sans); font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 384px; margin: 0; }

@media (max-width: 900px) {
  .sv-hero, .sv-brands, .sv-roles, .sv-philo, .sv-logos, .sv-fees, .sv-world { padding-left: 28px; padding-right: 28px; }
  .sv-hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .sv-hero__media { aspect-ratio: 4 / 5; max-width: 460px; }
  .sv-philo__media { grid-template-columns: 1fr 1fr; gap: 18px; }
  .sv-philo__note { grid-column: 1 / -1; max-width: none; margin-bottom: 4px; }
  .sv-philo__img--sm { margin-top: 0; }
  .sv-logos__row { justify-content: center; gap: 20px 30px; }
  .sv-brands__inner { grid-template-columns: 1fr; gap: 44px; }
  .sv-brands__head { position: static; }
  .sv-roles__grid { grid-template-columns: 1fr; gap: 40px; }
  .sv-candband { height: 300px; }
  .sv-candband__word { font-size: clamp(90px, 30vw, 160px); }
  .sv-cand { padding: 0 28px 80px; }
  .sv-cand__float { margin-top: -60px; max-width: 84%; }
  .sv-cand__row { grid-template-columns: 1fr; gap: 28px; max-width: 420px; }
  .sv-fees, .sv-world { padding: 80px 0; }
  .sv-fees__inner { flex-direction: column; gap: 40px; }
  .sv-world__inner { flex-direction: column-reverse; gap: 40px; }
  .sv-fees__text, .sv-world__head { flex-basis: auto; width: 100%; max-width: 100%; padding-left: 28px; padding-right: 28px; }
  .sv-fees__imgs, .sv-world__imgs { width: 100%; height: auto; display: flex; flex-direction: column; gap: 14px; }
  .sv-fees__imgs img, .sv-world__imgs img { position: static; width: 100%; height: auto; top: auto; left: auto; right: auto; }
}

/* ============================================================
   WORK WITH ME PAGE
   ============================================================ */

/* ---- Hero ---- */
/* Image-backed page header (Work With Me / Contact) */
.wm-hero, .ct-hero {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 130px 80px 90px;
  background: var(--paper);
}
.wm-hero__bg, .ct-hero__bg { position: absolute; inset: 0; z-index: 0; }
.wm-hero__bg img, .ct-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ct-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(251,248,242,0.30); }
.wm-hero__inner, .ct-hero__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.wm-hero__eyebrow { display: flex; align-items: center; gap: 18px; justify-content: center; color: var(--ink-soft); margin-bottom: 28px; }
.wm-hero__eyebrow .rule { width: 46px; }
.wm-hero__title { font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 6.5vw, 96px); line-height: 0.98; color: var(--ink); }
.wm-hero__body { font-family: var(--sans); font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 620px; margin-top: 28px; }

/* ---- Form sections ---- */
.wm-formsec { padding: 100px 80px; }
.wm-formsec--brands { background: #FFFDF9; }
.wm-formsec--cand { background: var(--cream-2); }
.wm-formsec__inner { max-width: 880px; margin: 0 auto; }
.wm-formsec__eyebrow { display: flex; align-items: center; gap: 18px; color: var(--ink-soft); margin-bottom: 20px; }
.wm-formsec__eyebrow .rule { width: 46px; }
.wm-formsec__title { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.05; color: var(--ink); }
.wm-formsec__body { font-family: var(--sans); font-size: 16px; line-height: 1.75; color: var(--ink-soft); max-width: 600px; margin-top: 18px; }

/* ---- Form ---- */
.wm-form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 32px; margin-top: 48px; }
.wm-field { display: flex; flex-direction: column; gap: 9px; }
.wm-field--full { grid-column: 1 / -1; }
.wm-field label { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.wm-field .wm-opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); }
.wm-field input,
.wm-field select,
.wm-field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid var(--line-warm);
  padding: 11px 0; outline: none; border-radius: 0;
  transition: border-color .25s ease;
}
.wm-field input:focus,
.wm-field select:focus,
.wm-field textarea:focus { border-color: var(--gold); }
.wm-field textarea { resize: vertical; min-height: 96px; }
.wm-field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236f665b' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px;
}
.wm-form .btn { grid-column: 1 / -1; justify-self: start; margin-top: 10px; }

/* Honeypot — visually hidden */
.wm-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Notices */
.wm-notice { margin-top: 28px; padding: 16px 20px; font-family: var(--sans); font-size: 14.5px; line-height: 1.6; border-radius: 4px; }
.wm-notice--success { background: rgba(124,172,143,0.16); border: 1px solid rgba(124,172,143,0.5); color: #2f5a40; }
.wm-notice--error { background: rgba(184,108,74,0.12); border: 1px solid rgba(184,108,74,0.4); color: #7a3a1f; }

/* ---- FAQ ---- */
.wm-faq { background: var(--paper); padding: 110px 80px; }
.wm-faq__inner { max-width: 960px; margin: 0 auto; }
.wm-faq__eyebrow { display: flex; align-items: center; gap: 18px; color: var(--ink-soft); margin-bottom: 20px; }
.wm-faq__eyebrow .rule { width: 46px; }
.wm-faq__title { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.05; color: var(--ink); margin-bottom: 40px; }
.wm-faq__item { border-top: 1px solid var(--line-warm); }
.wm-faq__item:last-child { border-bottom: 1px solid var(--line-warm); }
.wm-faq__trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 0; text-align: left;
  font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 2.6vw, 28px); color: var(--ink);
}
.wm-faq__icon { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.wm-faq__icon::before,
.wm-faq__icon::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--gold); transition: transform .3s ease; }
.wm-faq__icon::before { width: 16px; height: 1.5px; transform: translate(-50%,-50%); }
.wm-faq__icon::after { width: 1.5px; height: 16px; transform: translate(-50%,-50%); }
.wm-faq__trigger[aria-expanded="true"] .wm-faq__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.wm-faq__body p { padding: 0 60px 30px 0; font-family: var(--sans); font-size: 16px; line-height: 1.75; color: var(--ink-soft); max-width: 760px; }

/* ---- Guarantee ---- */
.wm-guarantee { background: #2C190C; padding: 110px 80px; }
.wm-guarantee__inner { max-width: 820px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.wm-guarantee__eyebrow { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 18px; }
.wm-guarantee__eyebrow .rule { width: 28px; background: var(--muted); }
.wm-guarantee__eyebrow .eyebrow { color: var(--muted); }
.wm-guarantee__title { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5vw, 72px); line-height: 1.04; color: var(--paper); }
.wm-guarantee__body { font-family: var(--sans); font-size: 16px; line-height: 1.75; color: rgba(251,248,242,0.82); max-width: 600px; margin-top: 22px; }

@media (max-width: 760px) {
  .wm-hero, .wm-formsec, .wm-faq, .wm-guarantee { padding-left: 28px; padding-right: 28px; }
  .wm-form { grid-template-columns: 1fr; gap: 22px; }
  .wm-faq__body p { padding-right: 0; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ct-hero__inner { max-width: 900px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.ct-hero__eyebrow { display: flex; align-items: center; gap: 18px; justify-content: center; color: var(--ink-soft); margin-bottom: 28px; }
.ct-hero__eyebrow .rule { width: 46px; }
.ct-hero__title { font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 6vw, 88px); line-height: 0.98; color: var(--ink); }
.ct-hero__body { font-family: var(--sans); font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 640px; margin-top: 28px; }

.ct-main { background: #FFFDF9; padding: 100px 80px 120px; }
.ct-main__inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; }

/* Details */
.ct-details__eyebrow { display: flex; align-items: center; gap: 18px; color: var(--ink-soft); margin-bottom: 28px; }
.ct-details__eyebrow .rule { width: 46px; }
.ct-details__list { display: flex; flex-direction: column; }
.ct-details__list li { display: flex; flex-direction: column; gap: 6px; padding: 20px 0; border-bottom: 1px solid var(--line-warm); }
.ct-details__list li:first-child { border-top: 1px solid var(--line-warm); }
.ct-details__label { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.ct-details__value { font-family: var(--serif); font-size: 22px; color: var(--ink); transition: color .25s ease; }
a.ct-details__value:hover { color: var(--gold); }

/* Form wrap */
.ct-formwrap__eyebrow { display: flex; align-items: center; gap: 18px; color: var(--ink-soft); margin-bottom: 18px; }
.ct-formwrap__eyebrow .rule { width: 46px; }
.ct-formwrap__title { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; color: var(--ink); }
.ct-formwrap .wm-form { margin-top: 36px; }

@media (max-width: 900px) {
  .ct-hero, .ct-main { padding-left: 28px; padding-right: 28px; }
  .ct-main__inner { grid-template-columns: 1fr; gap: 56px; }
}
