/*
Theme Name: Academista
Theme URI: https://academista.net/
Description: Custom theme for Academista - all-inclusive hair restoration, Istanbul.
Author: Academista
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: academista
*/

/* ============================================================================
   ACADEMISTA — Design System v2 "Elegant Heritage"
   Deep ink-navy · warm ivory · champagne gold · Playfair Display + Manrope

   BUILD RULES (unchanged — see strategy/05-prototype-plan.md)
   - Flexbox only. No CSS Grid. Maps 1:1 to Elementor flex containers.
   - .row gap is ZERO; spacing lives in .col padding.
   - All colour/type values are custom properties -> Elementor Global Colors/Fonts.
   - Card images: fixed height + object-fit:cover -> Elementor Image widget Height.
   ========================================================================= */

/* ---------- 1. TOKENS ---------------------------------------------------- */
:root {
  /* Colour */
  --ink:        #10161F;
  --ink-2:      #1B2532;
  --navy:       #16202E;
  --navy-deep:  #0E1621;
  --slate:      #5A6472;
  --slate-2:    #8A93A0;
  --line:       #E6E1D4;
  --line-2:     #EFEBE1;
  --paper:      #FFFFFF;
  --ivory:      #F8F5EE;
  --ivory-2:    #F1ECE0;
  --gold:       #A98736;
  --gold-deep:  #8C6D25;
  --gold-light: #CBB268;
  --gold-pale:  #F1E8D2;
  /* aliases kept for component compatibility */
  --accent:      var(--gold);
  --accent-dark: var(--gold-deep);
  --accent-soft: var(--gold-pale);
  --warm:        #9A6B2F;
  --warm-soft:   #F7EFDE;

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md:   1.1875rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  2.9rem;
  --fs-4xl:  3.8rem;

  /* Space */
  --sp-1: 0.5rem;  --sp-2: 0.75rem; --sp-3: 1rem;    --sp-4: 1.5rem;
  --sp-5: 2rem;    --sp-6: 2.75rem; --sp-7: 4rem;    --sp-8: 5.5rem;
  --sp-9: 7.5rem;

  --container: 1180px;
  --container-narrow: 800px;
  --radius: 3px;
  --radius-lg: 5px;
  --shadow: 0 1px 2px rgba(16,22,31,.04), 0 6px 22px rgba(16,22,31,.06);
  --shadow-lift: 0 3px 8px rgba(16,22,31,.07), 0 18px 44px rgba(16,22,31,.12);
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- 2. RESET ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* keep anchor targets clear of the sticky header */
[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration: none; transition: color .16s var(--ease); }
a:hover { color: var(--ink); }
h1,h2,h3,h4,h5 { margin: 0 0 var(--sp-3); font-family: var(--font-display); font-weight: 600;
  line-height: 1.16; letter-spacing: -0.01em; color: var(--ink); }
h1 em, h2 em { font-style: italic; color: var(--gold); font-weight: 500; }
p { margin: 0 0 var(--sp-3); }
ul, ol { margin: 0 0 var(--sp-3); padding-left: 1.15rem; }
li { margin-bottom: var(--sp-1); }
button { font-family: inherit; font-size: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- 3. LAYOUT PRIMITIVES  (-> Elementor containers) -------------- */
.section { padding: var(--sp-7) 0; position: relative; }
@media (min-width: 1024px) { .section { padding: 4.75rem 0; } }
.section--tight { padding: var(--sp-6) 0; }
@media (min-width: 1024px) { .section--tight { padding: var(--sp-7) 0; } }
.section--alt  { background: var(--ivory); }
.section--dark {
  background:
    radial-gradient(900px 480px at 82% -10%, rgba(203,178,104,.13), transparent 60%),
    linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: #C5CCD6;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #F7F4EC; }
.section--accent { background: var(--gold-pale); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-4); }
.container--narrow { max-width: var(--container-narrow); }

/* Row = flex container. GAP IS ZERO BY DESIGN. Spacing goes in .col padding. */
.row { display: flex; flex-wrap: wrap; gap: 0; margin: 0 calc(var(--sp-3) * -1); align-items: stretch; }
.row--center  { align-items: center; }
.row--middle  { justify-content: center; }
.row--between { justify-content: space-between; }

.col     { flex: 1 1 100%; max-width: 100%; padding: var(--sp-3); min-width: 0; }
.col-6   { flex: 1 1 100%; max-width: 100%; padding: var(--sp-3); min-width: 0; }
.col-4   { flex: 1 1 100%; max-width: 100%; padding: var(--sp-3); min-width: 0; }
.col-3   { flex: 1 1 50%;  max-width: 50%;  padding: var(--sp-3); min-width: 0; }
.col-8   { flex: 1 1 100%; max-width: 100%; padding: var(--sp-3); min-width: 0; }
.col-5   { flex: 1 1 100%; max-width: 100%; padding: var(--sp-3); min-width: 0; }
.col-7   { flex: 1 1 100%; max-width: 100%; padding: var(--sp-3); min-width: 0; }

@media (min-width: 768px) {
  .col-6 { flex-basis: 50%;     max-width: 50%; }
  .col-4 { flex-basis: 33.333%; max-width: 33.333%; }
  .col-3 { flex-basis: 25%;     max-width: 25%; }
}
@media (min-width: 1024px) {
  .col-8 { flex-basis: 66.666%; max-width: 66.666%; }
  .col-5 { flex-basis: 41.666%; max-width: 41.666%; }
  .col-7 { flex-basis: 58.333%; max-width: 58.333%; }
  .col-9 { flex-basis: 75%;     max-width: 75%; }
}
.col-9 { flex: 1 1 100%; max-width: 100%; padding: var(--sp-3); min-width: 0; }

/* ---------- 4. TYPOGRAPHY ------------------------------------------------ */
.h1, h1 { font-size: clamp(2.3rem, 5.4vw, var(--fs-4xl)); }
.h2, h2 { font-size: clamp(1.85rem, 3.7vw, var(--fs-3xl)); }
.h3, h3 { font-size: clamp(1.35rem, 2.3vw, var(--fs-xl)); }
.h4, h4 { font-size: var(--fs-lg); }

.eyebrow {
  display: block; font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: var(--sp-3);
}
.section--dark .eyebrow { color: var(--gold-light); }

/* Chapter mark — the narrative connector used across the whole site */
.chapter { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.chapter__num { font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.6rem; color: var(--gold); line-height: 1; }
.chapter__rule { flex: 0 0 52px; height: 1px; background: var(--gold-light); }
.chapter__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-deep); }
.section--dark .chapter__label { color: var(--gold-light); }
.section--dark .chapter__rule { background: rgba(203,178,104,.5); }

.lede { font-size: var(--fs-md); line-height: 1.65; color: var(--slate); }
.section--dark .lede { color: #A7B0BC; }
.small { font-size: var(--fs-sm); color: var(--slate); }
.tiny  { font-size: var(--fs-xs); color: var(--slate-2); line-height: 1.55; }
.mono-num { font-variant-numeric: tabular-nums; }
.text-center { text-align: center; }
.measure { max-width: 68ch; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }

.section-head { max-width: 780px; margin-bottom: var(--sp-5); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .chapter { justify-content: center; }
.section-head p:last-child { margin-bottom: 0; }

.divider-gold { width: 64px; height: 2px; background: var(--gold-light); border: 0; margin: var(--sp-6) auto; }

/* ---------- 5. BUTTONS  (-> Elementor Button widget) --------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 700;
  letter-spacing: .03em; line-height: 1.2; padding: 1.05em 1.9em;
  border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-align: center;
  transition: background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(135deg, #C9AC5E, var(--gold));
  color: #14100a; border-color: rgba(140,109,37,.4);
  box-shadow: 0 2px 10px rgba(169,135,54,.28);
}
.btn--primary:hover { background: linear-gradient(135deg, #BFa050, var(--gold-deep)); color: #fff;
  box-shadow: 0 4px 16px rgba(140,109,37,.35); }
.btn--dark { background: var(--ink); color: #F1E8D2; border-color: var(--ink); }
.btn--dark:hover { background: #000; color: var(--gold-light); }
.btn--outline { background: transparent; color: var(--ink); border-color: #C9C2AF; }
.btn--outline:hover { border-color: var(--gold-deep); color: var(--gold-deep); background: rgba(241,232,210,.35); }
.btn--ghost-light { background: transparent; color: #F1E8D2; border-color: rgba(203,178,104,.45); }
.btn--ghost-light:hover { background: rgba(203,178,104,.12); color: #fff; border-color: var(--gold-light); }
.btn--lg { font-size: var(--fs-base); padding: 1.15em 2.3em; }
.btn--block { display: flex; width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.link-arrow { display: inline-flex; align-items: center; gap: .45em; font-weight: 700;
  font-size: var(--fs-sm); color: var(--gold-deep); letter-spacing: .02em; }
.link-arrow svg { transition: transform .18s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }
.link-arrow:hover { color: var(--ink); }

/* ---------- 6. HEADER ---------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(253,252,248,.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: var(--sp-4); }

.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo__crown { height: 42px; width: auto; display: block; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__mark { font-family: var(--font-display); font-size: 1.32rem; font-weight: 700;
  letter-spacing: .06em; color: var(--ink); line-height: 1; }
.logo__sub { font-size: .53rem; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; white-space: nowrap; }

.nav { display: none; }
@media (min-width: 1024px) { .nav { display: flex; align-items: center; gap: 1.45rem; } }
.nav a { font-size: var(--fs-sm); font-weight: 600; color: var(--ink-2); white-space: nowrap;
  padding: .45em 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold-deep); border-bottom-color: var(--gold-light); }

/* Dropdowns & mega menu */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: .35rem; }
.nav-item > a svg { color: var(--gold); transition: transform .18s var(--ease); }
.nav-item:hover > a svg, .nav-item:focus-within > a svg { transform: rotate(180deg); }
.drop {
  position: absolute; top: 100%; left: -14px; min-width: 232px; z-index: 120;
  background: var(--paper); border: 1px solid var(--line); border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow-lift);
  padding: .55rem 0; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav-item:hover .drop, .nav-item:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: .55rem 1.3rem; font-size: .875rem; font-weight: 600;
  color: var(--ink-2); border-bottom: 0; white-space: nowrap; }
.drop a:hover { background: var(--ivory); color: var(--gold-deep); border-bottom: 0; }
.drop__all { border-top: 1px solid var(--line-2) !important; margin-top: .4rem; padding-top: .8rem !important;
  color: var(--gold-deep) !important; }
.mega__label { display: block; padding: .5rem 1.3rem .3rem; font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }

.drop--mega { display: flex; padding: 0; min-width: 560px; left: 50%; transform: translate(-50%, 10px); }
.drop--mega .mega__left + .mega__left { border-left: 1px solid var(--line-2); }
.nav-item:hover .drop--mega, .nav-item:focus-within .drop--mega { transform: translate(-50%, 0); }
.mega__left { flex: 1 1 auto; padding: .8rem 0; }
.mega__media { flex: 0 0 260px; background: var(--ivory); border-left: 1px solid var(--line);
  padding: 1.3rem 1.1rem; display: flex; flex-direction: column; justify-content: flex-start; }
.mega__pair { display: flex; gap: 6px; margin-bottom: .7rem; }
.mega__pair figure { margin: 0; flex: 1 1 50%; min-width: 0; }
.mega__pair img { width: 100%; height: 120px; object-fit: cover; border-radius: 2px; }
.mega__pair figcaption { font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate-2); padding-top: .3rem; }
.mega__media p { font-size: var(--fs-xs); color: var(--slate); margin: 0; line-height: 1.5; }

/* ---------- CASE CARD (one component: gallery, homepage, technique pages) -- */
.case-card { display: flex; flex-direction: column; height: 100%; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; color: inherit;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease); }
.case-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-lift);
  transform: translateY(-3px); color: inherit; }
.case-card__media { display: flex; background: var(--ivory-2); }
.case-card__half { position: relative; flex: 1 1 50%; max-width: 50%; min-width: 0; overflow: hidden; }
.case-card__half + .case-card__half { border-left: 1px solid var(--gold-light); }
.case-card__half img { width: 100%; height: 240px; object-fit: cover; display: block;
  transition: transform .45s var(--ease); }
.case-card:hover .case-card__half img { transform: scale(1.045); }
.case-card__tag { position: absolute; left: 9px; bottom: 9px; font-size: .6rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase; color: #fff;
  background: rgba(16,22,31,.66); padding: .35em .7em; border-radius: 2px; }
.case-card__half--after .case-card__tag { background: rgba(140,109,37,.88); }
.case-card__body { padding: 1.3rem 1.4rem 1.45rem; display: flex; flex-direction: column; flex-grow: 1; }
.case-card__tech { font-size: .67rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: .5rem; }
.case-card__name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600;
  color: var(--ink); line-height: 1.2; margin: 0 0 .4rem; }
.case-card__meta { font-size: var(--fs-xs); color: var(--slate); margin: 0 0 1.1rem; line-height: 1.55; }
.case-card__cta { margin-top: auto; display: inline-flex; align-items: center; gap: .45em;
  font-size: var(--fs-sm); font-weight: 700; color: var(--gold-deep); }
.case-card__cta svg { transition: transform .18s var(--ease); }
.case-card:hover .case-card__cta svg { transform: translateX(3px); }

/* Gallery filters */
.filter-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: var(--sp-5); }
.fbtn { padding: .55em 1.25em; border: 1px solid #C9C2AF; background: var(--paper);
  border-radius: 100px; font-family: var(--font-body); font-size: .875rem; font-weight: 700;
  color: var(--slate); cursor: pointer; transition: all .16s var(--ease); }
.fbtn:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.fbtn.is-active { background: var(--ink); color: #F1E8D2; border-color: var(--ink); }
.gallery-empty { border: 1px dashed #C9BE9E; border-radius: var(--radius-lg); background: var(--paper);
  padding: var(--sp-5); text-align: center; color: var(--slate); font-size: var(--fs-sm); }
.gallery-empty a { font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: var(--sp-2); }
.header-actions .btn { display: none; white-space: nowrap; padding: 1.05em 1.4em; }
@media (min-width: 1024px) { .header-actions .btn { display: inline-flex; } }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; background: none; border: 1px solid var(--line);
  border-radius: var(--radius);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; height: 1.5px; width: 100%; background: var(--ink);
  transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 78px 0 0; background: var(--ivory); z-index: 99;
  padding: var(--sp-5) var(--sp-4) var(--sp-8); overflow-y: auto;
  transform: translateX(100%); transition: transform .25s var(--ease); visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
@media (min-width: 1024px) { .mobile-nav { display: none; } }
.mobile-nav a { display: block; padding: var(--sp-3) 0; font-size: var(--fs-lg);
  font-family: var(--font-display); font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: var(--sp-4); font-family: var(--font-body); border-bottom: 0; }
.mobile-nav__label { display: block; margin-top: var(--sp-4); padding-bottom: .2rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); }

/* ---------- 7. HERO (dark, gold glow) ------------------------------------ */
.hero {
  background:
    radial-gradient(1100px 560px at 78% -12%, rgba(203,178,104,.16), transparent 62%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 90%);
  color: #C5CCD6; padding: 3rem 0 0; overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding-top: 3.5rem; } }
.hero h1 { color: #F7F4EC; margin-bottom: var(--sp-4); }
.hero__lede { font-size: var(--fs-md); color: #A7B0BC; margin-bottom: var(--sp-4); max-width: 33em; }
.hero .eyebrow { color: var(--gold-light); }
.hero .tiny { color: #7C8794; }

/* Cut-out hero figure (patient on transparent background) */
.hero-figure { position: relative; display: flex; align-items: flex-end; justify-content: center;
  min-height: 440px; }
.hero-figure::before { content: ""; position: absolute; z-index: 0; bottom: 34px;
  width: 330px; height: 330px; border-radius: 50%; border: 1px solid rgba(203,178,104,.30); }
.hero-figure__glow { position: absolute; z-index: 0; bottom: -10px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(203,178,104,.26), rgba(203,178,104,0) 62%); }
.hero-figure img { position: relative; z-index: 2; width: auto; max-width: 100%;
  height: 470px; object-fit: contain; object-position: bottom;
  filter: drop-shadow(0 26px 44px rgba(0,0,0,.5));
  -webkit-mask-image: linear-gradient(to bottom, #000 86%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 86%, transparent 100%); }
.hero-figure__badge { position: absolute; z-index: 3; right: 0; bottom: 86px;
  background: rgba(16,22,31,.72); border: 1px solid rgba(203,178,104,.4);
  border-radius: 100px; padding: .55em 1.15em; font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); white-space: nowrap; }
@media (max-width: 1023px) {
  .hero-figure { min-height: 360px; margin-top: var(--sp-5); }
  .hero-figure img { height: 380px; }
  .hero-figure::before { width: 260px; height: 260px; }
  .hero-figure__glow { width: 360px; height: 360px; }
  .hero-figure__badge { right: 50%; transform: translateX(50%); }
}

/* Offset gold picture frame */
.frame { position: relative; display: block; }
.frame img { position: relative; z-index: 1; width: 100%; object-fit: cover;
  border-radius: 2px; box-shadow: var(--shadow-lift); }
.frame::before { content: ""; position: absolute; z-index: 0;
  top: 18px; right: -16px; bottom: -16px; left: 18px;
  border: 1px solid var(--gold-light); border-radius: 2px; pointer-events: none; }
.frame-cap { font-size: var(--fs-xs); color: var(--slate-2); line-height: 1.55;
  margin-top: var(--sp-4); }
.hero .frame-cap, .section--dark .frame-cap { color: #7C8794; }

/* Inclusions bar under hero */
.incl-bar { margin-top: var(--sp-6); border-top: 1px solid rgba(203,178,104,.28);
  background: rgba(255,255,255,.025); }
.incl-bar .row { margin: 0; }
.incl-col { flex: 1 1 50%; max-width: 50%; padding: 0; min-width: 0; }
@media (min-width: 768px)  { .incl-col { flex-basis: 33.333%; max-width: 33.333%; } }
@media (min-width: 1024px) { .incl-col { flex-basis: 16.666%; max-width: 16.666%; } }
.incl { display: flex; align-items: center; gap: .6rem; padding: 1.1rem 1rem;
  border-right: 1px solid rgba(203,178,104,.14); min-height: 100%; }
.incl svg { flex-shrink: 0; color: var(--gold-light); }
.incl span { font-size: .8rem; font-weight: 700; letter-spacing: .05em; color: #DCD4BE;
  line-height: 1.3; text-transform: uppercase; }

/* ---------- 8. CARDS ----------------------------------------------------- */
.card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
a.card, .card--link { color: inherit; height: 100%; }
a.card:hover, .card--link:hover { border-color: var(--gold-light); box-shadow: var(--shadow-lift);
  transform: translateY(-3px); color: inherit; }
.card__media { overflow: hidden; background: var(--ivory-2); position: relative; }
.card__media img { width: 100%; height: 240px; object-fit: cover; transition: transform .45s var(--ease); }
a.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: var(--sp-5) var(--sp-4); display: flex; flex-direction: column; flex-grow: 1; }
.card__body h3 { font-size: 1.35rem; margin-bottom: var(--sp-2); }
.card__body p  { font-size: var(--fs-sm); color: var(--slate); }
.card__body > :last-child { margin-bottom: 0; }
.card__foot { margin-top: auto; padding-top: var(--sp-3); }

.card--flat { border-color: var(--line-2); background: var(--ivory); }
.card--pad { padding: var(--sp-5); }
.card--gold { border-top: 3px solid var(--gold); }

/* Meta list used on case cards */
.meta-list { display: flex; flex-wrap: wrap; gap: var(--sp-1) var(--sp-4); list-style: none;
  padding: 0; margin: 0 0 var(--sp-3); }
.meta-list li { margin: 0; font-size: var(--fs-xs); color: var(--slate); }
.meta-list strong { display: block; color: var(--ink); font-size: var(--fs-base);
  font-weight: 600; font-family: var(--font-display); font-variant-numeric: tabular-nums; }

/* ---------- 9. FEATURE / ICON BOX  (-> Elementor Icon Box) --------------- */
.feature { display: flex; gap: var(--sp-3); align-items: flex-start; }
.feature__icon { flex-shrink: 0; width: 46px; height: 46px; display: flex; align-items: center;
  justify-content: center; border-radius: 50%; background: var(--gold-pale);
  color: var(--gold-deep); border: 1px solid rgba(169,135,54,.25); }
.section--dark .feature__icon { background: rgba(203,178,104,.12); color: var(--gold-light);
  border-color: rgba(203,178,104,.3); }
.feature__body h3 { font-size: var(--fs-md); margin-bottom: var(--sp-1); }
.feature__body p { font-size: var(--fs-sm); color: var(--slate); margin-bottom: 0; }
.section--dark .feature__body p { color: #A7B0BC; }

/* ---------- 10. HONESTY CALLOUT ------------------------------------------ */
.callout {
  border-left: 2px solid var(--gold); background: var(--warm-soft);
  padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-5); border-radius: 0 var(--radius) var(--radius) 0;
}
.callout h3 { font-size: var(--fs-md); margin-bottom: var(--sp-2); color: #6E5320; }
.callout p:last-child { margin-bottom: 0; }
.callout p { font-size: var(--fs-sm); color: #6B5426; }

.callout--accent { border-left-color: var(--gold-deep); background: var(--gold-pale); }
.callout--accent h3 { color: #6E5320; }
.callout--accent p { color: #6B5426; }

/* ---------- 11. STEPS / TIMELINE ----------------------------------------- */
.steps { list-style: none; padding: 0; margin: 0; }
.step { display: flex; gap: var(--sp-4); padding: var(--sp-4) 0; border-top: 1px solid var(--line);
  margin: 0; }
.step:first-child { border-top: 0; padding-top: 0; }
.step__num { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold-deep); display: flex; align-items: center;
  justify-content: center; font-weight: 600; font-size: var(--fs-md);
  font-family: var(--font-display); font-variant-numeric: tabular-nums; background: transparent; }
.step__body { flex-grow: 1; }
.step__body h3 { font-size: var(--fs-md); margin-bottom: .25rem; }
.step__time { display: inline-block; font-size: var(--fs-xs); font-weight: 700; color: var(--gold-deep);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--sp-1); }
.step__body p { font-size: var(--fs-sm); color: var(--slate); margin-bottom: 0; }
.section--dark .step { border-top-color: rgba(255,255,255,.1); }
.section--dark .step__body p { color: #A7B0BC; }
.section--dark .step__num { border-color: var(--gold-light); color: var(--gold-light); }
.section--dark .step__time { color: var(--gold-light); }

/* ---------- 12. TABLES --------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--paper); }
table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); min-width: 560px; }
caption { text-align: left; padding: var(--sp-3) var(--sp-4); font-size: var(--fs-xs);
  color: var(--slate); border-bottom: 1px solid var(--line); background: var(--ivory); }
th, td { padding: var(--sp-3) var(--sp-4); text-align: left; border-bottom: 1px solid var(--line-2);
  vertical-align: top; }
thead th { background: var(--ivory); font-weight: 700; color: var(--ink); font-size: var(--fs-xs);
  letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid var(--line);
  font-family: var(--font-body); }
tbody tr:last-child td { border-bottom: 0; }
td.num, th.num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.table-price { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600;
  color: var(--ink); font-variant-numeric: tabular-nums; }

/* ---------- 13. ACCORDION ------------------------------------------------ */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  display: flex; width: 100%; align-items: flex-start; justify-content: space-between;
  gap: var(--sp-3); padding: var(--sp-4) 0; background: none; border: 0; text-align: left;
  font-family: var(--font-display); font-size: var(--fs-md); font-weight: 600; color: var(--ink);
  line-height: 1.35;
}
.accordion__trigger:hover { color: var(--gold-deep); }
.accordion__icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 4px; position: relative; }
.accordion__icon::before, .accordion__icon::after {
  content: ""; position: absolute; background: var(--gold); transition: transform .2s var(--ease);
}
.accordion__icon::before { top: 9px; left: 0; width: 20px; height: 1.5px; }
.accordion__icon::after  { left: 9px; top: 0; width: 1.5px; height: 20px; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: scaleY(0); }
.accordion__panel { display: none; padding: 0 0 var(--sp-4); }
.accordion__panel.is-open { display: block; }
.accordion__panel p { font-size: var(--fs-sm); color: var(--slate); max-width: 64ch; }
.accordion__panel p:last-child { margin-bottom: 0; }

/* ---------- 14. BEFORE / AFTER PAIR -------------------------------------- */
.ba-pair { display: flex; flex-wrap: wrap; gap: 0; margin: 0 -6px; }
.ba-pair__item { flex: 1 1 50%; max-width: 50%; padding: 0 6px; min-width: 0; }
.ba-figure { margin: 0; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--paper); }
.ba-figure img { width: 100%; height: 300px; object-fit: cover; background: var(--ivory-2); }
@media (min-width: 768px) { .ba-figure img { height: 400px; } }
.ba-figure figcaption { padding: var(--sp-2) var(--sp-3); font-size: var(--fs-xs);
  font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--slate);
  border-top: 1px solid var(--line-2); background: var(--paper); }
.ba-figure--after figcaption { color: var(--gold-deep); }

/* ---------- 15. QUOTE ---------------------------------------------------- */
.quote { position: relative; padding-left: var(--sp-5); }
.quote::before { content: "\201C"; position: absolute; left: -6px; top: -22px;
  font-family: var(--font-display); font-size: 5rem; line-height: 1; color: var(--gold-light);
  opacity: .85; }
.quote__text { font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.45rem; line-height: 1.5; color: var(--ink); margin-bottom: var(--sp-4); }
.section--dark .quote__text { color: #F1EDE2; }
.quote__cite { display: flex; align-items: center; gap: var(--sp-3); font-style: normal; }
.quote__cite img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--gold-light); }
.quote__name { font-size: var(--fs-sm); font-weight: 700; color: var(--ink); display: block; }
.section--dark .quote__name { color: #F1EDE2; }
.quote__role { font-size: var(--fs-xs); color: var(--slate-2); }

/* ---------- 16. SPEC STRIP (procedure at-a-glance) ----------------------- */
.spec-strip { display: flex; flex-wrap: wrap; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); }
.spec { flex: 1 1 50%; min-width: 0; padding: var(--sp-4); border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2); }
@media (min-width: 768px) { .spec { flex: 1 1 33.333%; } }
@media (min-width: 1024px) { .spec { flex: 1; border-bottom: 0; } }
.spec__label { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--slate-2); margin-bottom: .3rem; }
.spec__value { display: block; font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 600; color: var(--ink); line-height: 1.25; }

/* Procedure menu list (homepage) */
.proc-list { border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--paper); overflow: hidden; box-shadow: var(--shadow); }
.proc-row { display: flex; align-items: center; gap: var(--sp-3);
  padding: 1.05rem 1.35rem; border-bottom: 1px solid var(--line-2); color: inherit;
  position: relative; transition: background-color .18s var(--ease); }
.proc-row:last-child { border-bottom: 0; }
.proc-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--gold); transform: scaleY(0); transition: transform .18s var(--ease); }
.proc-row:hover { background: var(--ivory); color: inherit; }
.proc-row:hover::before { transform: scaleY(1); }
.proc-row__num { font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.1rem; color: var(--gold); width: 2.1rem; flex-shrink: 0; }
.proc-row__body { flex: 1 1 auto; min-width: 0; padding-right: var(--sp-2); }
.proc-row__body h3 { font-size: 1.2rem; margin: 0 0 .15rem; }
.proc-row__body p { font-size: var(--fs-xs); color: var(--slate); margin: 0; line-height: 1.45; }
.proc-row__price { text-align: right; flex-shrink: 0; }
.proc-row__price strong { display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 1.15rem; color: var(--ink); white-space: nowrap; }
.proc-row__price span { font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate-2); }
.proc-row > svg { flex-shrink: 0; color: var(--gold-deep);
  transition: transform .18s var(--ease); }
.proc-row:hover > svg { transform: translateX(3px); }

/* Stats */
.stat { text-align: left; }
.stat__num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600;
  color: var(--gold); line-height: 1.1; display: block; }
.stat__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--slate); }
.section--dark .stat__label { color: #A7B0BC; }

/* ---------- 17. FORM ----------------------------------------------------- */
.form-field { margin-bottom: var(--sp-4); }
.form-field label { display: block; font-size: var(--fs-sm); font-weight: 700; color: var(--ink);
  margin-bottom: .35rem; }
.form-field .hint { display: block; font-size: var(--fs-xs); color: var(--slate); margin-bottom: .5rem;
  font-weight: 400; }
.form-field input[type="text"], .form-field input[type="email"], .form-field input[type="number"],
.form-field select, .form-field textarea {
  width: 100%; padding: .85em 1em; font-family: inherit; font-size: var(--fs-base);
  color: var(--ink); background: var(--paper); border: 1px solid #CFC9B8;
  border-radius: var(--radius); transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-pale);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.upload-zone { border: 1px dashed #C9BE9E; border-radius: var(--radius-lg); background: var(--ivory);
  padding: var(--sp-5) var(--sp-4); text-align: center; }
.upload-zone p { font-size: var(--fs-sm); color: var(--slate); margin-bottom: var(--sp-2); }
.upload-zone p:last-child { margin-bottom: 0; }
.choice-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.choice { display: inline-flex; align-items: center; gap: .5em; padding: .7em 1.1em;
  border: 1px solid #CFC9B8; border-radius: var(--radius); font-size: var(--fs-sm);
  cursor: pointer; background: var(--paper); transition: border-color .16s var(--ease); }
.choice:hover { border-color: var(--gold); }
.choice input { accent-color: var(--gold-deep); margin: 0; }

/* ---------- 18. STICKY MOBILE CTA ---------------------------------------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; gap: 1px;
  background: var(--line); border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(16,22,31,.12);
}
@media (min-width: 1024px) { .mobile-cta { display: none; } }
.mobile-cta a { flex: 1 1 50%; display: flex; align-items: center; justify-content: center; gap: .5em;
  padding: 1.05em .5em; font-size: var(--fs-sm); font-weight: 700; background: var(--paper);
  color: var(--ink); }
.mobile-cta a.is-primary { background: linear-gradient(135deg, #C9AC5E, var(--gold)); color: #14100a; }
body { padding-bottom: 60px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

/* ---------- 19. FOOTER --------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: #97A2AF; padding: var(--sp-8) 0 var(--sp-5);
  font-size: var(--fs-sm); border-top: 1px solid rgba(203,178,104,.35); }
.site-footer h4 { color: var(--gold-light); font-family: var(--font-body); font-size: var(--fs-xs);
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--sp-3); }
.site-footer a { color: #B7C0CC; display: block; padding: .3em 0; }
.site-footer a.logo { display: flex; padding: 0; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom { margin-top: var(--sp-6); padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { font-size: var(--fs-xs); color: #74808E; margin-bottom: var(--sp-2); }

/* ---------- 20. UTILITIES ------------------------------------------------ */
.breadcrumb { font-size: var(--fs-xs); color: var(--slate-2); padding: var(--sp-3) 0; }
.breadcrumb a { color: var(--slate-2); }
.breadcrumb a:hover { color: var(--gold-deep); }
.divider { height: 1px; background: var(--line); border: 0; margin: var(--sp-6) 0; }
.tag { display: inline-block; padding: .35em .8em; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; border-radius: 100px;
  background: var(--gold-pale); color: var(--gold-deep); }
.tag--neutral { background: var(--ivory-2); color: var(--slate); }
.placeholder { background: var(--warm-soft); color: #6E5320; padding: .1em .45em;
  border-radius: 2px; font-size: .9em; font-weight: 700; border: 1px dashed #CDB177; }
.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 1.8rem; margin-bottom: var(--sp-2);
  font-size: var(--fs-sm); color: var(--slate); }
.checklist li::before { content: ""; position: absolute; left: 0; top: .48em; width: 14px; height: 8px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg); }
.section--dark .checklist li { color: #A7B0BC; }
.section--dark .checklist li::before { border-color: var(--gold-light); }
.crosslist { list-style: none; padding: 0; }
.crosslist li { position: relative; padding-left: 1.8rem; margin-bottom: var(--sp-2);
  font-size: var(--fs-sm); color: var(--slate); }
.crosslist li::before { content: "\00d7"; position: absolute; left: .25rem; top: -.08em;
  color: var(--slate-2); font-size: 1.3em; line-height: 1.4; }
/* ---------- 20b. REVIEW PLATFORM PANELS ---------------------------------- */
.rev-panel { display: flex; flex-direction: column; height: 100%; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-4) var(--sp-4) var(--sp-5); }
.rev-panel__head { display: flex; align-items: center; gap: .7rem; margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-3); border-bottom: 1px solid var(--line-2); }
.rev-panel__head svg { flex-shrink: 0; }
.rev-panel__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.rev-slot { flex-grow: 1; display: flex; align-items: center; justify-content: center;
  min-height: 132px; border: 1px dashed #C9BE9E; border-radius: var(--radius);
  background: var(--ivory); padding: var(--sp-4); text-align: center; }
.rev-slot p { font-size: var(--fs-xs); color: var(--slate); margin: 0; line-height: 1.6; }
.rev-panel__foot { margin-top: var(--sp-3); }

/* ---------- 21. TOPBAR (contact strip above header) ----------------------- */
.topbar { background: var(--navy-deep); border-bottom: 1px solid rgba(203,178,104,.2);
  font-size: var(--fs-xs); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3); min-height: 40px; flex-wrap: wrap; padding: .3rem 0; }
.topbar a { display: inline-flex; align-items: center; gap: .45rem; color: #C2C9D2;
  font-weight: 600; letter-spacing: .02em; }
.topbar a:hover { color: var(--gold-light); }
.topbar a svg { color: var(--gold-light); flex-shrink: 0; }
.topbar__contact { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.topbar__social { display: flex; align-items: center; gap: var(--sp-2); }
.topbar__social a { width: 28px; height: 28px; justify-content: center;
  border: 1px solid rgba(203,178,104,.35); border-radius: 50%; }
.topbar__social a:hover { background: rgba(203,178,104,.15); }

/* ---------- 22. JOURNEY STEPPER (dark sections) --------------------------- */
.jstep { display: flex; flex-direction: column; height: 100%; }
.jstep__track { display: flex; align-items: center; margin-bottom: var(--sp-4); }
.jstep__line { flex: 1 1 auto; height: 1px; background: rgba(203,178,104,.35); }
.jstep:first-child .jstep__line:first-child { opacity: 0; }
.jstep:last-child  .jstep__line:last-child  { opacity: 0; }
.jstep__dot { flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, #C9AC5E, var(--gold));
  color: #14100a; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem;
  display: flex; align-items: center; justify-content: center; margin: 0 10px;
  box-shadow: 0 0 0 7px rgba(203,178,104,.12); }
.jstep__card { flex-grow: 1; background: rgba(255,255,255,.035);
  border: 1px solid rgba(203,178,104,.22); border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-4) var(--sp-5); text-align: left;
  transition: border-color .2s var(--ease), background-color .2s var(--ease); }
.jstep:hover .jstep__card { border-color: rgba(203,178,104,.5); background: rgba(255,255,255,.055); }
.jstep__day { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-light); border: 1px solid rgba(203,178,104,.4);
  border-radius: 100px; padding: .3em .9em; margin-bottom: var(--sp-3); }
.jstep__card h3 { font-size: 1.3rem; color: #F7F4EC; margin-bottom: var(--sp-2); }
.jstep__card p { font-size: var(--fs-sm); color: #A7B0BC; margin: 0; }

/* ---------- 23. WHATSAPP FLOAT (with typing indicator) -------------------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 96;
  width: 58px; height: 58px; display: block; }
.wa-circle { position: absolute; inset: 0; z-index: 1; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(16,22,31,.28);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
  animation: wa-pulse 2.6s infinite; }
.wa-float:hover .wa-circle { transform: scale(1.07); box-shadow: 0 8px 26px rgba(16,22,31,.34); }
.wa-bubble { position: absolute; right: 43px; bottom: 43px; z-index: 2;
  background: #fff; border: 1px solid rgba(16,22,31,.12);
  border-radius: 16px 16px 3px 16px; padding: 10px 13px;
  display: flex; align-items: center; gap: 5px;
  box-shadow: 0 6px 18px rgba(16,22,31,.28); }
.wa-bubble i { width: 7px; height: 7px; border-radius: 50%; background: #6B7480;
  animation: wa-typing 1.3s infinite; }
.wa-bubble i:nth-child(2) { animation-delay: .18s; }
.wa-bubble i:nth-child(3) { animation-delay: .36s; }
@keyframes wa-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 18px rgba(16,22,31,.28), 0 0 0 0 rgba(37,211,102,.45); }
  70%  { box-shadow: 0 4px 18px rgba(16,22,31,.28), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 18px rgba(16,22,31,.28), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-bubble i, .wa-circle { animation: none !important; }
}
@media (max-width: 1023px) { .wa-float { bottom: 76px; right: 16px; width: 52px; height: 52px; }
  .wa-bubble { right: 39px; bottom: 39px; } }

/* ---------- 24. FOOTER CONTACT & SOCIAL ----------------------------------- */
.footer-contact { list-style: none; padding: 0; margin: 0 0 var(--sp-3); }
.footer-contact li { margin: 0 0 .4rem; }
.footer-contact a { display: inline-flex !important; align-items: center; gap: .55rem;
  color: #DCD4BE; font-weight: 600; white-space: nowrap; font-size: .875rem; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact svg { color: var(--gold-light); flex-shrink: 0; }
.social-row { display: flex; gap: var(--sp-2); margin-top: var(--sp-3); }
.social-row a { display: inline-flex !important; width: 40px; height: 40px; padding: 0 !important;
  align-items: center; justify-content: center; border: 1px solid rgba(203,178,104,.4);
  border-radius: 50%; color: var(--gold-light) !important; }
.social-row a:hover { background: var(--gold); color: #14100a !important; border-color: var(--gold); }

/* Accent CTA section */
.section--accent h1 em, .section--accent h2 em { color: var(--gold-deep); }
.section--accent .lede { color: #6B5F45; }
.section--accent .tiny { color: #8A7B58; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: var(--sp-3); top: var(--sp-3); z-index: 200; background: var(--gold-deep);
  color: #fff; padding: .75em 1.25em; border-radius: var(--radius); }

/* Legacy compatibility (v1 classes still present on some pages) */
.hero-strip { border-top: 1px solid var(--line); background: var(--ivory); }
.hero-strip .row { margin: 0 -1px; }
.hero-strip .col-3 { padding: var(--sp-4) var(--sp-3); border-left: 1px solid var(--line);
  flex-basis: 50%; max-width: 50%; }
@media (min-width: 768px) { .hero-strip .col-3 { flex-basis: 25%; max-width: 25%; } }
.strip-item { display: flex; flex-direction: column; gap: .2em; }
.strip-item__label { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-deep); }
.strip-item__value { font-size: var(--fs-sm); font-weight: 600; color: var(--ink-2); line-height: 1.4; }
.hero__media { position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ivory-2); box-shadow: var(--shadow-lift); }
.hero__media img { width: 100%; height: 340px; object-fit: cover; object-position: center 28%; }
@media (min-width: 768px)  { .hero__media img { height: 440px; } }
@media (min-width: 1024px) { .hero__media img { height: 520px; } }
.hero__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--sp-5) var(--sp-4) var(--sp-3);
  background: linear-gradient(to top, rgba(14,22,33,.9), rgba(14,22,33,0));
  color: #fff; font-size: var(--fs-xs); line-height: 1.45; z-index: 2;
}
