/* ════════════════════════════════════════════════════════════════════
   ETERNAL HAIR & ESTHETICS — Global Stylesheet
   Brand       : Dark / institutional expression (see branding.md §10)
   Token source: branding.md — update tokens here whenever brand changes
   GHL slot    : Global Custom CSS
   Structure   : Tokens → Reset → Typography → Layout → Components
                 → Responsive → GHL Mobile Fallbacks → Reduced Motion
═══════════════════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────────────────── */
:root{
  /* surfaces */
  --ehe-bg:           #0A0A0A;
  --ehe-bg-elev:      #141414;
  --ehe-bg-card:      #161616;

  /* brand */
  --ehe-gold:         #C9A86A;   /* primary accent */
  --ehe-gold-soft:    #E2CFA8;   /* soft tint behind portraits */
  --ehe-gold-deep:    #9A7C44;   /* hover / pressed */

  /* type */
  --ehe-text:         #FFFFFF;
  --ehe-text-body:    #E8E8E8;
  --ehe-text-muted:   #B8B8B8;
  --ehe-text-dim:     #888888;

  /* lines */
  --ehe-line:         rgba(255,255,255,0.10);
  --ehe-line-strong:  rgba(255,255,255,0.20);

  /* type families */
  --ehe-serif:        'Playfair Display', Georgia, 'Times New Roman', serif;
  --ehe-sans:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* radii / shadow */
  --ehe-radius:       4px;
  --ehe-radius-pill:  999px;
  --ehe-shadow-soft:  0 30px 60px rgba(0,0,0,0.4);

  /* spacing scale (rem) */
  --ehe-space-1:  0.25rem;
  --ehe-space-2:  0.5rem;
  --ehe-space-3:  0.75rem;
  --ehe-space-4:  1rem;
  --ehe-space-5:  1.25rem;
  --ehe-space-6:  1.5rem;
  --ehe-space-8:  2rem;
  --ehe-space-10: 2.5rem;
  --ehe-space-12: 3rem;
  --ehe-space-16: 4rem;
  --ehe-space-20: 5rem;
  --ehe-space-24: 6rem;

  /* layout */
  --ehe-maxw:         1180px;
  --ehe-pad:          24px;

  /* nav · glass-on-scroll (tune intensity here) */
  --ehe-nav-glass:    rgba(10,10,10,0.72);      /* scrolled translucent bg */
  --ehe-nav-blur:     12px;                     /* backdrop blur amount */
  --ehe-nav-hairline: rgba(201,168,106,0.28);   /* gold hairline when scrolled */
}

/* ─── RESET ───────────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--ehe-bg);
  color:var(--ehe-text-body);
  font-family:var(--ehe-sans);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
button{font-family:inherit}

/* skip link for a11y */
.ehe-skip{
  position:absolute;left:-9999px;top:0;background:var(--ehe-gold);color:#000;
  padding:8px 14px;font-weight:600;z-index:100;
}
.ehe-skip:focus{left:8px;top:8px}

/* ─── TYPOGRAPHY ──────────────────────────────────────────────────── */
.ehe-eyebrow{
  display:inline-block;
  font-family:var(--ehe-sans);
  font-size:11px;font-weight:600;
  text-transform:uppercase;letter-spacing:0.22em;
  color:var(--ehe-gold);
  margin-bottom:var(--ehe-space-4);
}
.ehe-h1{
  font-family:var(--ehe-serif);font-weight:500;
  font-size:clamp(40px,6vw,68px);
  line-height:1.05;letter-spacing:-0.01em;
  color:var(--ehe-text);
  margin:0;
}
.ehe-h2{
  font-family:var(--ehe-serif);font-weight:500;
  font-size:clamp(28px,3.6vw,44px);
  line-height:1.15;letter-spacing:-0.005em;
  color:var(--ehe-text);
  margin:0 0 var(--ehe-space-6);
}
.ehe-h3{
  font-family:var(--ehe-serif);font-weight:500;
  font-size:clamp(20px,2.2vw,26px);
  line-height:1.2;
  color:var(--ehe-gold);
  margin:0 0 var(--ehe-space-3);
}
.ehe-h4{
  font-family:var(--ehe-sans);font-weight:600;
  font-size:15px;
  letter-spacing:0.02em;
  color:var(--ehe-text);
  margin:0 0 var(--ehe-space-2);
}
.ehe-lead{
  font-size:18px;line-height:1.6;color:var(--ehe-text-body);
  margin:0 0 var(--ehe-space-4);
}
.ehe-p{margin:0 0 var(--ehe-space-4);color:var(--ehe-text-body)}
.ehe-p:last-child{margin-bottom:0}

/* ─── LAYOUT ──────────────────────────────────────────────────────── */
.ehe-wrap{max-width:var(--ehe-maxw);margin:0 auto;padding:0 var(--ehe-pad)}
/* Explicit dark backgrounds on the page shell + every section
   (body bg can be overridden by parent containers when the markup is
   pasted into GHL or any third-party builder, so sections set their
   own bg defensively rather than inheriting from body) */
main, #main-content{background:var(--ehe-bg)}
.ehe-section{padding:var(--ehe-space-20) 0;background:var(--ehe-bg)}
.ehe-section--pad-sm{padding:var(--ehe-space-12) 0}
.ehe-section--elev{background:var(--ehe-bg-elev)}
.ehe-divider{height:1px;background:var(--ehe-line);max-width:var(--ehe-maxw);margin:0 auto}
/* Anchor offset — accounts for the sticky nav so section anchors
   land below the nav bar, not hidden behind it */
section[id]{scroll-margin-top:90px}

/* ─── BUTTONS ─────────────────────────────────────────────────────── */
.ehe-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--ehe-sans);
  font-size:13px;font-weight:600;
  letter-spacing:0.16em;text-transform:uppercase;
  padding:16px 30px;border-radius:var(--ehe-radius-pill);
  border:1.5px solid transparent;cursor:pointer;
  transition:transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.ehe-btn--primary{
  background:var(--ehe-gold);color:#0A0A0A;
}
.ehe-btn--primary:hover{background:var(--ehe-gold-soft);transform:translateY(-1px)}
.ehe-btn--ghost{
  background:transparent;color:var(--ehe-text);border-color:var(--ehe-line-strong);
}
.ehe-btn--ghost:hover{border-color:var(--ehe-gold);color:var(--ehe-gold)}
.ehe-btn--small{padding:13px 28px;font-size:11px}

/* ─── SHARED FORM COMPONENT ───────────────────────────────────────────
   Field-level styles used by every form on the site (contact page,
   homepage offer form, …). Page-specific layout/wrappers live in each
   page's CSS. Markup + JS pattern: see the form-builder standard. */
.ctc-form{display:flex;flex-direction:column;gap:var(--ehe-space-5)}
.ctc-form[hidden]{display:none} /* display:flex above would otherwise defeat the hidden attr on success */
.ctc-field{display:flex;flex-direction:column;gap:var(--ehe-space-2)}
.ctc-label{
  font-family:var(--ehe-sans);
  font-size:12px;font-weight:600;
  letter-spacing:0.12em;text-transform:uppercase;
  color:var(--ehe-text-muted);
}
.ctc-req{color:var(--ehe-gold);margin-left:2px}
.ctc-input{
  font-family:var(--ehe-sans);
  font-size:15px;
  color:var(--ehe-text);
  background:var(--ehe-bg);
  border:1px solid var(--ehe-line-strong);
  border-radius:var(--ehe-radius);
  padding:14px 16px;
  width:100%;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease;
  min-height:44px; /* min touch target */
}
.ctc-input::placeholder{color:var(--ehe-text-dim)}
.ctc-input:hover{border-color:rgba(201,168,106,0.35)}
.ctc-input:focus{
  border-color:var(--ehe-gold);
  box-shadow:0 0 0 3px rgba(201,168,106,0.18);
}
.ctc-input.is-error{
  border-color:#e05252;
  box-shadow:0 0 0 3px rgba(224,82,82,0.15);
}
.ctc-textarea{resize:vertical;min-height:130px}
/* Mobile: 16px inputs so iOS doesn't zoom */
@media(max-width:1023px){
  .ctc-input,.ctc-select{font-size:16px}
  .ctc-select{padding-top:16px;padding-bottom:16px;min-height:52px}
}
.--mobile .ctc-input,.--mobile .ctc-select{font-size:16px}
.--mobile .ctc-select{padding-top:16px;padding-bottom:16px;min-height:52px}
/* Select / dropdown */
.ctc-select{
  appearance:none;-webkit-appearance:none;
  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='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:40px;
  cursor:pointer;
}
.ctc-select option{background:var(--ehe-bg);color:var(--ehe-text)}
.ctc-select optgroup{color:var(--ehe-text-dim);font-size:11px;letter-spacing:0.06em}
/* "Other" reveal field — smooth slide */
.ctc-other-wrap{overflow:hidden;animation:ctcSlideDown .2s ease}
.ctc-other-wrap[hidden]{display:none}
@keyframes ctcSlideDown{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
.ctc-error{
  font-size:12px;color:#e05252;
  min-height:16px;line-height:1.4;display:block;
}
.ctc-required-note{font-size:12px;color:var(--ehe-text-dim);margin:0}
/* Submit button + disabled state */
.ctc-submit{
  width:100%;justify-content:center;margin-top:var(--ehe-space-2);
  transition:opacity .25s ease,background .25s ease,transform .25s ease;
}
.ctc-submit:disabled{
  opacity:.38;cursor:not-allowed;transform:none;
  background:var(--ehe-gold-deep);
  pointer-events:none;
}
/* Success state */
.ctc-success{
  display:flex;flex-direction:column;align-items:center;text-align:center;
  padding:var(--ehe-space-12) var(--ehe-space-6);
  gap:var(--ehe-space-4);
}
.ctc-success[hidden]{display:none}
.ctc-success-icon{width:52px;height:52px;color:var(--ehe-gold);stroke:var(--ehe-gold)}
.ctc-success-title{
  font-family:var(--ehe-serif);font-weight:500;
  font-size:clamp(22px,2.5vw,28px);
  color:var(--ehe-text);margin:0;
}
.ctc-success-body{
  font-size:15px;line-height:1.7;
  color:var(--ehe-text-muted);margin:0;max-width:340px;
}
/* Honeypot — off-screen, NOT display:none (bots must see it) */
.ctc-hp{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
@media(prefers-reduced-motion:reduce){
  .ctc-input,.ctc-submit{transition:none}
}

/* ─── TOP UTILITY BAR ─────────────────────────────────────────────── */
.ehe-utilbar{
  background:var(--ehe-bg-elev);
  border-bottom:1px solid var(--ehe-line);
  font-size:12px;
}
.ehe-utilbar-inner{
  display:flex;align-items:center;justify-content:space-between;gap:var(--ehe-space-6);
  padding:12px var(--ehe-pad);max-width:var(--ehe-maxw);margin:0 auto;
}
.ehe-utilbar-left{display:flex;align-items:center;gap:var(--ehe-space-6)}
.ehe-utilbar-right{display:flex;align-items:center;gap:var(--ehe-space-4);flex-wrap:wrap}
.ehe-logo{
  display:inline-flex;align-items:center;line-height:1;
}
.ehe-logo img{
  height:53px;width:auto;display:block;
}

.ehe-socials{display:flex;gap:10px}
.ehe-socials a{
  width:26px;height:26px;border-radius:999px;border:1px solid var(--ehe-line-strong);
  display:inline-flex;align-items:center;justify-content:center;color:var(--ehe-text-muted);
  font-size:11px;transition:all .25s ease;
}
.ehe-socials a:hover{color:var(--ehe-gold);border-color:var(--ehe-gold)}
.ehe-socials svg{width:13px;height:13px;fill:currentColor;display:block}

.ehe-utilbar-phone{color:var(--ehe-text);font-weight:500;display:inline-flex;align-items:center;gap:8px}
.ehe-utilbar-phone::before{content:"☎";color:var(--ehe-gold)}

/* ─── MAIN NAV ────────────────────────────────────────────────────── */
/* Unwrap the #site-nav injection box so the sticky nav sticks against
   <body>, not the short wrapper (which only spans utilbar + nav and would
   release the nav immediately). Lets the utility bar scroll away while the
   main nav stays pinned. */
#site-nav{display:contents}
.ehe-nav{
  background:var(--ehe-bg);
  border-bottom:1px solid var(--ehe-line);
  z-index:40;
  transition:background .3s ease, backdrop-filter .3s ease,
             box-shadow .3s ease, border-color .3s ease;
}
/* Pinned state · JS-driven fixed positioning (GHL-robust replacement for
   position:sticky — sticky dies inside GHL's short section/column wrappers,
   fixed does not). Toggled by the header inline script; a spacer preserves
   layout when the nav leaves flow. */
.ehe-nav.is-pinned{position:fixed;top:0;left:0;right:0}
/* Scrolled state · frosted glass + gold hairline (toggled by eheInitNav) */
.ehe-nav.is-scrolled{
  background:var(--ehe-nav-glass);
  -webkit-backdrop-filter:blur(var(--ehe-nav-blur)) saturate(120%);
  backdrop-filter:blur(var(--ehe-nav-blur)) saturate(120%);
  border-bottom-color:var(--ehe-nav-hairline);
  box-shadow:0 8px 30px rgba(0,0,0,0.35);
}
.ehe-nav-inner{
  display:flex;align-items:center;justify-content:center;gap:var(--ehe-space-6);
  padding:14px var(--ehe-pad);max-width:var(--ehe-maxw);margin:0 auto;
  transition:padding .3s ease;
}
.ehe-nav.is-scrolled .ehe-nav-inner{padding-top:10px;padding-bottom:10px} /* subtle shrink */
/* In-nav logo · hidden on desktop, used as the mobile header logo
   so it sits on the same row as the hamburger */
.ehe-nav-logo{
  display:none;align-items:center;line-height:1;
}
.ehe-nav-logo img{
  height:37px;width:auto;display:block; /* mobile header logo (−20% from desktop) */
}

/* Centered section header utility (eyebrow + h2 stack) */
.ehe-section-header{text-align:center;margin-bottom:var(--ehe-space-8)}
.ehe-section-header .ehe-h2{margin-bottom:var(--ehe-space-2)}
/* Optional subtitle beneath the H2 in a section header */
.ehe-section-sub{font-size:17px;line-height:1.65;color:var(--ehe-text-muted);max-width:600px;margin:0 auto}
.ehe-nav-list{
  list-style:none;margin:0;padding:0;
  display:flex;align-items:center;gap:var(--ehe-space-6);flex-wrap:wrap;
  font-size:13px;font-weight:500;
}
.ehe-nav-list a{
  color:var(--ehe-text-body);padding:8px 4px;letter-spacing:0.04em;
  border-bottom:1.5px solid transparent;transition:all .2s ease;
}
.ehe-nav-list a:hover{color:var(--ehe-gold);border-bottom-color:var(--ehe-gold)}
.ehe-nav-list a.is-active{color:var(--ehe-gold);border-bottom-color:var(--ehe-gold)}

/* Hamburger toggle (mobile only — animates to X when open) */
.ehe-nav-toggle{
  display:none;align-items:center;justify-content:center;
  background:transparent;border:1px solid var(--ehe-line-strong);border-radius:4px;
  width:42px;height:42px;padding:0;cursor:pointer;
  position:relative;
}
.ehe-nav-toggle:hover{border-color:var(--ehe-gold)}
.ehe-nav-toggle span{
  display:block;width:18px;height:1.5px;background:var(--ehe-text);
  position:absolute;left:50%;transform:translateX(-50%);
  transition:all .25s ease;
}
.ehe-nav-toggle span:nth-child(1){top:13px}
.ehe-nav-toggle span:nth-child(2){top:50%;margin-top:-0.75px}
.ehe-nav-toggle span:nth-child(3){bottom:13px}
.ehe-nav.is-open .ehe-nav-toggle span:nth-child(1){
  top:50%;margin-top:-0.75px;transform:translateX(-50%) rotate(45deg);background:var(--ehe-gold);
}
.ehe-nav.is-open .ehe-nav-toggle span:nth-child(2){opacity:0}
.ehe-nav.is-open .ehe-nav-toggle span:nth-child(3){
  bottom:auto;top:50%;margin-top:-0.75px;transform:translateX(-50%) rotate(-45deg);background:var(--ehe-gold);
}

/* Mobile-only extras inside the hamburger dropdown
   (socials + phone + Book Appointment button) */
.ehe-nav-extras{display:none}

/* ─── DROPDOWN NAVIGATION ─────────────────────────────────────────
   Desktop: shows on hover (CSS only).
   Mobile:  shows on click via .is-open class (JS toggle).
   2-column layout for menus with 8+ items.
──────────────────────────────────────────────────────────────────── */
.ehe-dropdown{position:relative}

/* Trigger link: adds chevron arrow */
.ehe-dropdown-trigger{
  display:inline-flex;align-items:center;gap:5px;
  cursor:default;
}
.ehe-chevron{
  font-size:9px;color:var(--ehe-text-dim);
  transition:transform .2s ease,color .2s ease;
  display:inline-block;line-height:1;
}
.ehe-dropdown:hover .ehe-chevron,
.ehe-dropdown.is-open .ehe-chevron{
  transform:rotate(180deg);color:var(--ehe-gold);
}

/* Dropdown panel (hidden by default) */
.ehe-dropdown-menu{
  display:none;
  position:absolute;top:100%;left:50%;
  transform:translateX(-50%);
  min-width:220px;
  background:var(--ehe-bg-elev);
  border:1px solid var(--ehe-line);
  border-top:2px solid var(--ehe-gold);
  border-radius:0 0 var(--ehe-radius) var(--ehe-radius);
  box-shadow:0 16px 40px rgba(0,0,0,0.5);
  list-style:none;margin:0;padding:var(--ehe-space-2) 0;
  z-index:50;
}
/* Invisible bridge fills the 8px gap between the trigger and menu so
   the mouse can travel down without losing the :hover state */
.ehe-dropdown-menu::before{
  content:'';position:absolute;top:-8px;left:0;right:0;height:8px;
}

/* 2-column layout for large menus */
.ehe-dropdown-menu--2col{
  min-width:380px;
  display:none;
  grid-template-columns:1fr 1fr;
  padding:var(--ehe-space-2);gap:0;
}

/* Show on hover — desktop only.
   Animated reveal: menus stay laid out but fade + slide in (opacity/transform),
   so they ease open instead of snapping. Mobile keeps the display-toggle path
   below (the static accordion relies on display:none→block). */
@media(min-width:1024px){
  .ehe-dropdown>.ehe-dropdown-menu{
    display:block;opacity:0;visibility:hidden;pointer-events:none;
    transform:translateX(-50%) translateY(-6px);
    transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .ehe-dropdown>.ehe-dropdown-menu--2col{display:grid}
  /* :is() folds the hover (mouse) and .is-open (JS click) reveal paths into one */
  :is(.ehe-dropdown:hover,.ehe-dropdown.is-open)>.ehe-dropdown-menu{
    opacity:1;visibility:visible;pointer-events:auto;
    transform:translateX(-50%) translateY(0);
  }
  /* Light item stagger on reveal */
  .ehe-dropdown>.ehe-dropdown-menu li{
    opacity:0;transform:translateY(-4px);
    transition:opacity .2s ease, transform .2s ease;
  }
  :is(.ehe-dropdown:hover,.ehe-dropdown.is-open)>.ehe-dropdown-menu li{opacity:1;transform:translateY(0)}
  :is(.ehe-dropdown:hover,.ehe-dropdown.is-open)>.ehe-dropdown-menu li:nth-child(2){transition-delay:.03s}
  :is(.ehe-dropdown:hover,.ehe-dropdown.is-open)>.ehe-dropdown-menu li:nth-child(3){transition-delay:.06s}
  :is(.ehe-dropdown:hover,.ehe-dropdown.is-open)>.ehe-dropdown-menu li:nth-child(4){transition-delay:.09s}
  :is(.ehe-dropdown:hover,.ehe-dropdown.is-open)>.ehe-dropdown-menu li:nth-child(n+5){transition-delay:.12s}
}

/* Show on .is-open (JS click) — both breakpoints */
.ehe-dropdown.is-open>.ehe-dropdown-menu{display:block!important}
.ehe-dropdown.is-open>.ehe-dropdown-menu--2col{display:grid!important}

/* Respect reduced-motion — keep the glass/reveal states, drop the easing */
@media (prefers-reduced-motion: reduce){
  .ehe-nav,.ehe-nav-inner,.ehe-dropdown-menu,.ehe-dropdown-menu li{transition:none!important}
}

/* Dropdown items */
.ehe-dropdown-menu li>a{
  display:block;padding:9px 16px;
  font-size:12px;font-weight:500;letter-spacing:0.03em;
  color:var(--ehe-text-muted);
  white-space:nowrap;
  transition:color .15s ease,background .15s ease;
  border-bottom:none!important;
}
.ehe-dropdown-menu li>a:hover{
  color:var(--ehe-gold);
  background:rgba(201,168,106,0.07);
}
/* First item = section link (slightly bolder) */
.ehe-dropdown-menu li.ehe-dropdown-section>a{
  color:var(--ehe-text);font-weight:600;font-size:13px;
  border-bottom:1px solid var(--ehe-line)!important;
  margin-bottom:var(--ehe-space-1);
}
.ehe-dropdown-menu li.ehe-dropdown-section>a:hover{
  color:var(--ehe-gold);background:rgba(201,168,106,0.07);
}

/* ─── MOBILE DROPDOWN ─────────────────────────────────────────────
   Inside the hamburger menu: accordion-style, no absolute position.
──────────────────────────────────────────────────────────────────── */
@media(max-width:1023px){
  .ehe-dropdown-menu,
  .ehe-dropdown-menu--2col{
    position:static!important;transform:none!important;
    min-width:0!important;width:100%;
    grid-template-columns:1fr!important;
    box-shadow:none!important;border:0!important;border-radius:0!important;
    background:rgba(201,168,106,0.04);
    border-left:3px solid var(--ehe-gold)!important;
    padding:0!important;
  }
  .ehe-dropdown-menu li>a{
    padding:11px var(--ehe-pad) 11px calc(var(--ehe-pad) + 12px);
    white-space:normal;font-size:13px;
    border-bottom:1px solid var(--ehe-line)!important;
  }
  .ehe-dropdown-menu li.ehe-dropdown-section>a{
    border-bottom:1px solid var(--ehe-line)!important;margin-bottom:0;
  }
  /* Trigger acts as a tappable link row on mobile */
  .ehe-dropdown-trigger{display:flex;justify-content:space-between;width:100%}
}

/* GHL .--mobile fallback */
.--mobile .ehe-dropdown-menu,
.--mobile .ehe-dropdown-menu--2col{
  position:static!important;transform:none!important;
  min-width:0!important;width:100%;grid-template-columns:1fr!important;
  box-shadow:none!important;border:0!important;border-radius:0!important;
  background:rgba(201,168,106,0.04);
  border-left:3px solid var(--ehe-gold)!important;
  padding:0!important;
}
.--mobile .ehe-dropdown-trigger{display:flex;justify-content:space-between;width:100%}
.--mobile .ehe-dropdown-menu li>a{
  padding:11px var(--ehe-pad) 11px calc(var(--ehe-pad) + 12px);
  white-space:normal;border-bottom:1px solid var(--ehe-line)!important;
}
/* Reduced motion */
@media(prefers-reduced-motion:reduce){
  .ehe-chevron{transition:none}
}

/* ─── HERO ────────────────────────────────────────────────────────── */
.ehe-hero{
  background:radial-gradient(ellipse at top,#1a1410 0%,var(--ehe-bg) 60%);
  padding:var(--ehe-space-16) 0 var(--ehe-space-12);
  position:relative;overflow:hidden;
}
.ehe-hero::before{
  /* faint gold horizon */
  content:"";position:absolute;left:0;right:0;top:0;height:1px;
  background:linear-gradient(to right,transparent,var(--ehe-gold),transparent);
  opacity:.4;
}
.ehe-hero-inner{
  max-width:var(--ehe-maxw);margin:0 auto;padding:0 var(--ehe-pad);
  display:flex;flex-direction:column;align-items:center;text-align:center;
  gap:var(--ehe-space-8);
}
.ehe-hero-copy{max-width:760px;display:flex;flex-direction:column;align-items:center;gap:var(--ehe-space-3)}
.ehe-hero-sub{
  font-size:15px;letter-spacing:0.08em;text-transform:uppercase;
  color:var(--ehe-text-muted);
  margin:0;
}
.ehe-hero-meta{
  display:flex;align-items:center;gap:var(--ehe-space-3);
  font-size:12px;color:var(--ehe-text-muted);letter-spacing:0.06em;
  margin-top:var(--ehe-space-2);
}
.ehe-hero-meta span{display:inline-flex;align-items:center;gap:6px}
.ehe-hero-meta .dot{width:3px;height:3px;background:var(--ehe-gold);border-radius:50%}
.ehe-hero-cta{margin-top:var(--ehe-space-4);display:flex;gap:14px;flex-wrap:wrap;justify-content:center}

/* ─── BEFORE / AFTER SLIDER ───────────────────────────────────────── */
.ehe-ba{
  position:relative;width:100%;max-width:1100px;margin:0 auto;
  aspect-ratio:16/10;overflow:hidden;
  border-radius:var(--ehe-radius);
  background:#000;cursor:ew-resize;user-select:none;touch-action:none;
  box-shadow:var(--ehe-shadow-soft);
  border:1px solid var(--ehe-line);
}
.ehe-ba-img{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
}
.ehe-ba-img--after{clip-path:inset(0 0 0 50%)}
.ehe-ba-tag{
  position:absolute;top:18px;
  background:rgba(10,10,10,0.85);color:var(--ehe-gold);
  padding:6px 14px;font-size:10px;letter-spacing:0.24em;font-weight:600;
  border:1px solid var(--ehe-gold);border-radius:2px;
}
.ehe-ba-tag--before{left:18px}
.ehe-ba-tag--after{right:18px}
.ehe-ba-handle{
  position:absolute;top:0;bottom:0;left:50%;width:2px;background:var(--ehe-gold);
  transform:translateX(-1px);pointer-events:none;
  box-shadow:0 0 12px rgba(201,168,106,0.6);
}
.ehe-ba-grip{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:54px;height:54px;border-radius:50%;
  background:rgba(10,10,10,0.85);border:2px solid var(--ehe-gold);
  display:flex;align-items:center;justify-content:center;color:var(--ehe-gold);
  font-size:18px;font-weight:600;pointer-events:none;
}
.ehe-ba-hint{
  position:absolute;bottom:14px;left:50%;transform:translateX(-50%);
  color:var(--ehe-text-muted);font-size:10px;letter-spacing:0.2em;text-transform:uppercase;
  background:rgba(10,10,10,0.7);padding:6px 12px;border-radius:999px;
}

/* Compact variant — fills a results-grid card, smaller chrome */
.ehe-ba--compact{
  max-width:none;margin:0;width:100%;height:100%;aspect-ratio:auto;
  border:none;border-radius:0;box-shadow:none;
}
.ehe-ba--compact .ehe-ba-tag{
  padding:5px 12px;font-size:9px;letter-spacing:0.16em;
}
.ehe-ba--compact .ehe-ba-tag--before{top:10px;left:10px}
.ehe-ba--compact .ehe-ba-tag--after{top:10px;right:10px}
.ehe-ba--compact .ehe-ba-grip{
  width:36px;height:36px;font-size:14px;
}

/* ─── CONTENT SECTIONS ────────────────────────────────────────────── */
.ehe-prose{max-width:760px;margin:0 auto}
.ehe-prose .ehe-p{font-size:17px;line-height:1.75;color:var(--ehe-text-body)}

/* ─── ABOUT SECTION ──────────────────────────────────────────────── */
.ehe-about-grid{
  display:grid;gap:var(--ehe-space-8);align-items:center;
  grid-template-columns:1fr;
}
.ehe-about-pill{
  display:inline-flex;align-items:center;
  border:1px solid var(--ehe-gold);color:var(--ehe-gold);
  padding:6px 16px;border-radius:var(--ehe-radius-pill);
  font-size:11px;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;
  margin-bottom:var(--ehe-space-4);
  background:rgba(201,168,106,0.06);
}
.ehe-about-text .ehe-h2{margin-bottom:var(--ehe-space-4)}
.ehe-about-body{font-size:17px;line-height:1.75;color:var(--ehe-text-body);margin:0 0 var(--ehe-space-6)}
.ehe-about-readmore{
  color:var(--ehe-gold);font-weight:500;
  text-decoration:underline;text-underline-offset:4px;text-decoration-thickness:1px;
  cursor:pointer;background:transparent;border:none;
  font-family:inherit;font-size:inherit;padding:0;margin-left:4px;
}
.ehe-about-readmore:hover{color:var(--ehe-gold-soft)}
.ehe-about-extra{
  display:none;font-size:17px;line-height:1.75;color:var(--ehe-text-body);
  margin:0 0 var(--ehe-space-6);
}
.ehe-about-extra.is-open{display:block}
.ehe-about-extra p{margin:0}

.ehe-about-media{display:flex;flex-direction:column;gap:var(--ehe-space-3)}
.ehe-about-feature{
  width:100%;aspect-ratio:4/3;object-fit:cover;
  border-radius:var(--ehe-radius);
  box-shadow:var(--ehe-shadow-soft);
  border:1px solid var(--ehe-line);
  transition:opacity .2s ease;
}
.ehe-about-feature.is-swapping{opacity:0}
.ehe-about-thumbs{
  display:grid;grid-template-columns:repeat(3,1fr);gap:var(--ehe-space-3);
}
.ehe-about-thumb{
  width:100%;aspect-ratio:4/3;object-fit:cover;
  border-radius:var(--ehe-radius);
  border:1px solid var(--ehe-line);
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  cursor:pointer;
}
.ehe-about-thumb:hover{transform:translateY(-2px);border-color:var(--ehe-gold)}
.ehe-about-thumb:focus-visible{
  outline:none;border-color:var(--ehe-gold);
  box-shadow:0 0 0 3px rgba(201,168,106,0.35);
}

/* ─── SPLIT LAYOUT ────────────────────────────────────────────────── */
/* Two-column section with optional gold offset rectangle behind portrait */
.ehe-split{
  display:grid;gap:var(--ehe-space-12);align-items:center;
  grid-template-columns:1fr;
}
.ehe-split--text-img .ehe-split-text{order:1}
.ehe-split--text-img .ehe-split-img{order:2}
.ehe-split--img-text .ehe-split-text{order:2}
.ehe-split--img-text .ehe-split-img{order:1}

.ehe-portrait{
  position:relative;aspect-ratio:4/5;width:100%;max-width:520px;margin:0 auto;
}
.ehe-portrait-img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  border-radius:var(--ehe-radius);
  z-index:2;
  filter:contrast(1.08) brightness(0.9) saturate(0.82) sepia(0.14);
  transition:filter .4s ease;
}
.ehe-portrait:hover .ehe-portrait-img{
  filter:contrast(1.05) brightness(0.95) saturate(0.9) sepia(0.08);
}
.ehe-portrait::before{
  /* gold offset rectangle — recurring brand motif on dark expression */
  content:"";position:absolute;
  width:78%;height:78%;
  background:var(--ehe-gold);
  border-radius:var(--ehe-radius);
  z-index:1;
}
.ehe-portrait--bl::before{bottom:-22px;left:-22px}
.ehe-portrait--br::before{bottom:-22px;right:-22px}
.ehe-portrait--tr::before{top:-22px;right:-22px}

/* ─── FEATURE BLOCKS (Why Choose / Symptoms) ──────────────────────── */
.ehe-symptom{margin-bottom:var(--ehe-space-6)}
.ehe-symptom:last-child{margin-bottom:0}
.ehe-symptom-title{
  font-family:var(--ehe-sans);font-weight:600;
  font-size:15px;color:var(--ehe-text);
  letter-spacing:0.02em;margin:0 0 var(--ehe-space-2);
  display:flex;align-items:center;gap:10px;
}
.ehe-symptom-title::before{
  content:"";display:inline-block;width:24px;height:1.5px;background:var(--ehe-gold);
}
.ehe-symptom-body{font-size:15px;color:var(--ehe-text-muted);line-height:1.7;margin:0}

/* ─── TREATMENT LIST ──────────────────────────────────────────────── */
.ehe-treatments{
  display:grid;grid-template-columns:1fr;gap:var(--ehe-space-3);
  list-style:none;margin:0;padding:0;
}
.ehe-treatment{
  display:grid;grid-template-columns:auto 1fr;gap:var(--ehe-space-4);
  padding:var(--ehe-space-4) 0;
  border-bottom:1px solid var(--ehe-line);
}
.ehe-treatment:last-child{border-bottom:none}
.ehe-treatment-marker{
  width:34px;height:34px;border-radius:50%;
  background:transparent;border:1.5px solid var(--ehe-gold);
  color:var(--ehe-gold);
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--ehe-serif);font-size:14px;font-weight:600;
  flex-shrink:0;
}
.ehe-treatment-name{
  display:inline;font-weight:600;color:var(--ehe-gold);
  margin-right:6px;
}
.ehe-treatment-desc{
  display:inline;color:var(--ehe-text-body);font-size:15px;line-height:1.7;
}

/* ─── GOOGLE MAPS SECTION ─────────────────────────────────────────── */
.ehe-map{
  position:relative;width:100%;
  aspect-ratio:21/9;
  border-radius:var(--ehe-radius);
  overflow:hidden;
  border:1px solid var(--ehe-line);
  box-shadow:var(--ehe-shadow-soft);
  background:var(--ehe-bg-elev);
}
.ehe-map-frame{
  position:absolute;inset:0;width:100%;height:100%;border:0;
  /* Dark-mode the embedded Google Map to match the brand */
  filter:invert(0.9) hue-rotate(180deg) saturate(0.8);
}
.ehe-map-card{
  position:absolute;top:18px;left:18px;
  background:rgba(10,10,10,0.95);
  border:1px solid var(--ehe-gold);
  border-radius:var(--ehe-radius);
  padding:18px 20px;
  max-width:300px;
  box-shadow:0 12px 30px rgba(0,0,0,0.5);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.ehe-map-card-title{
  font-family:var(--ehe-serif);font-weight:500;
  color:var(--ehe-text);font-size:18px;margin:0 0 6px;line-height:1.2;
}
.ehe-map-card-title em{font-style:italic;color:var(--ehe-gold)}
.ehe-map-card-address{
  color:var(--ehe-text-muted);font-size:13px;margin:0 0 12px;line-height:1.55;
}
.ehe-map-card-rating{
  display:flex;align-items:center;gap:6px;
  font-size:12px;color:var(--ehe-text-muted);margin:0 0 12px;
}
.ehe-map-card-rating .stars{color:var(--ehe-gold);letter-spacing:1px}
.ehe-map-card-link{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--ehe-gold);font-size:11px;font-weight:600;
  letter-spacing:0.16em;text-transform:uppercase;
  border-top:1px solid var(--ehe-line);padding-top:12px;width:100%;
  transition:color .25s ease;
}
.ehe-map-card-link:hover{color:var(--ehe-gold-soft)}
.ehe-map-card-link::after{content:"→";font-size:14px}

/* ─── MEET THE TEAM ───────────────────────────────────────────────── */
.ehe-team-intro{
  max-width:680px;margin:0 auto;
  font-size:16px;line-height:1.7;color:var(--ehe-text-muted);
}
.ehe-team-card{
  background:var(--ehe-bg-elev);
  border:1px solid var(--ehe-line);
  border-radius:var(--ehe-radius);
  padding:var(--ehe-space-8);
  display:flex;flex-direction:column;gap:var(--ehe-space-6);
}
.ehe-team-names{
  display:flex;flex-direction:column;gap:var(--ehe-space-6);
  border-bottom:1px solid var(--ehe-line);
  padding-bottom:var(--ehe-space-6);
}
.ehe-team-name{
  display:block;text-align:left;
  background:transparent;border:0;cursor:pointer;
  padding:0 0 0 var(--ehe-space-6);
  color:var(--ehe-text-dim);
  font-family:inherit;
  position:relative;
  transition:color .25s ease;
}
.ehe-team-name strong{
  display:block;
  font-family:var(--ehe-serif);font-weight:500;font-size:19px;
  letter-spacing:0.01em;margin-bottom:4px;
  transition:color .25s ease;
}
.ehe-team-name span{
  display:block;font-size:12px;letter-spacing:0.06em;
}
.ehe-team-name:hover{color:var(--ehe-text-muted)}
.ehe-team-name.is-active{color:var(--ehe-text)}
.ehe-team-name.is-active strong{color:var(--ehe-gold)}
.ehe-team-name.is-active::before{
  content:"";position:absolute;
  left:0;top:11px;width:14px;height:1.5px;background:var(--ehe-gold);
}
.ehe-team-detail{position:relative;min-height:280px}
.ehe-team-content{display:none;gap:var(--ehe-space-6)}
.ehe-team-content.is-active{
  display:grid;grid-template-columns:1fr;
  animation:eheTeamFade .35s ease;
}
@keyframes eheTeamFade{
  from{opacity:0;transform:translateY(6px)}
  to{opacity:1;transform:translateY(0)}
}
.ehe-team-photo{
  width:100%;max-width:340px;
  aspect-ratio:1/1;object-fit:cover;
  border-radius:var(--ehe-radius);
  border:1px solid var(--ehe-line);
}
.ehe-team-bio p{
  font-size:14px;line-height:1.75;color:var(--ehe-text-body);
  margin:0 0 var(--ehe-space-3);
}
.ehe-team-bio p:last-child{margin-bottom:0}

/* Desktop: side-by-side names + detail; detail is photo + bio columns */
@media (min-width:1024px){
  .ehe-team-card{
    display:grid;
    grid-template-columns:240px 1fr;
    gap:var(--ehe-space-12);
    padding:var(--ehe-space-12);
    align-items:start;
  }
  .ehe-team-names{
    border-bottom:0;padding-bottom:0;
    border-right:1px solid var(--ehe-line);
    padding-right:var(--ehe-space-6);
  }
  .ehe-team-content.is-active{
    grid-template-columns:auto 1fr;
    gap:var(--ehe-space-8);
    align-items:start;
  }
}
.--mobile .ehe-team-names{border-right:0;padding-right:0;border-bottom:1px solid var(--ehe-line);padding-bottom:var(--ehe-space-6)}
.--mobile .ehe-team-content.is-active{grid-template-columns:1fr}

/* ─── HAIR LOSS SERVICES (tabbed pills) ───────────────────────────── */
.ehe-services-header{
  display:flex;justify-content:space-between;align-items:flex-start;
  gap:var(--ehe-space-6);margin-bottom:var(--ehe-space-8);
  flex-wrap:wrap;
}
.ehe-services-title{flex:1;min-width:280px;max-width:760px}
.ehe-services-title .ehe-h2{margin:0 0 var(--ehe-space-3)}
.ehe-services-sub{
  font-size:16px;line-height:1.7;color:var(--ehe-text-muted);
  margin:0;
}
.ehe-services-pill{
  display:inline-flex;align-items:center;
  background:rgba(201,168,106,0.06);
  border:1px solid var(--ehe-gold);
  border-radius:var(--ehe-radius-pill);
  padding:8px 18px;
  font-size:11px;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;
  color:var(--ehe-gold);
  white-space:nowrap;flex-shrink:0;
}

.ehe-services-tabs{
  display:flex;flex-wrap:wrap;gap:var(--ehe-space-2);
  margin-bottom:var(--ehe-space-6);
  align-items:center;
}
.ehe-services-tab{
  display:inline-flex;align-items:center;
  font-family:var(--ehe-sans);font-size:13px;font-weight:600;
  letter-spacing:0.06em;
  padding:12px 22px;border-radius:var(--ehe-radius-pill);
  border:1.5px solid transparent;
  background:transparent;color:var(--ehe-gold);
  cursor:pointer;transition:all .25s ease;
  white-space:nowrap;
}
.ehe-services-tab:hover{background:rgba(201,168,106,0.10)}
.ehe-services-tab.is-active{
  background:var(--ehe-gold);color:#0A0A0A;
}
.ehe-services-more{
  margin-left:auto;
  font-size:13px;font-weight:500;color:var(--ehe-text-muted);
  letter-spacing:0.04em;display:inline-flex;align-items:center;gap:8px;
  padding:12px 8px;
  transition:color .25s ease;
}
.ehe-services-more:hover{color:var(--ehe-gold)}
.ehe-services-more::after{content:"→";font-size:14px}

.ehe-services-panel{
  background:var(--ehe-bg-elev);
  border:1px solid var(--ehe-line);
  border-radius:var(--ehe-radius);
  padding:var(--ehe-space-8);
  min-height:140px;
}
.ehe-services-content{display:none}
.ehe-services-content.is-active{display:block}
.ehe-services-content h3{
  font-family:var(--ehe-serif);font-size:24px;font-weight:500;
  color:var(--ehe-gold);margin:0 0 var(--ehe-space-3);
}
.ehe-services-content p{
  font-size:16px;line-height:1.7;color:var(--ehe-text-body);margin:0;
}

/* CTA button flex group (generic — used in banners and hero) */
.ehe-cta-actions{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;margin-top:var(--ehe-space-6)}
/* Gallery link beneath results grid */
.ehe-results-gallery-cta{margin-top:var(--ehe-space-5)}

/* ─── CTA BANNER ──────────────────────────────────────────────────── */
.ehe-cta-banner{
  background:linear-gradient(180deg,var(--ehe-bg-elev),var(--ehe-bg));
  border-top:1px solid var(--ehe-line);
  border-bottom:1px solid var(--ehe-line);
  text-align:center;
  padding:var(--ehe-space-16) var(--ehe-pad);
}
.ehe-cta-banner-inner{max-width:680px;margin:0 auto}
.ehe-cta-banner .ehe-lead{margin-bottom:var(--ehe-space-8)}

/* ─── PROVEN RESULTS ──────────────────────────────────────────────── */
.ehe-results{
  position:relative;
  padding:var(--ehe-space-20) 0;
  background:radial-gradient(ellipse at top,#1a1410 0%,var(--ehe-bg) 65%);
}
.ehe-results-wrap{position:relative;z-index:2}

.ehe-results-card{
  background:var(--ehe-bg-elev);
  border:1px solid var(--ehe-gold);
  border-radius:var(--ehe-radius);
  padding:var(--ehe-space-12) var(--ehe-space-8);
  box-shadow:var(--ehe-shadow-soft);
}
@media (min-width:1024px){
  .ehe-results-card{padding:var(--ehe-space-16) var(--ehe-space-12)}
}

.ehe-results-header{
  display:grid;grid-template-columns:1fr;
  gap:var(--ehe-space-6);margin-bottom:var(--ehe-space-12);
}
@media (min-width:880px){
  .ehe-results-header{grid-template-columns:1fr 1.1fr;gap:var(--ehe-space-12);align-items:start}
}
.ehe-results-pill{
  display:inline-flex;align-items:center;
  background:rgba(201,168,106,0.06);
  border:1px solid var(--ehe-gold);
  border-radius:var(--ehe-radius-pill);
  padding:8px 18px;
  font-size:11px;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;
  color:var(--ehe-gold);
  margin-bottom:var(--ehe-space-4);
}
.ehe-results-header-title .ehe-h2{margin:0}
.ehe-results-body{
  font-size:15px;line-height:1.75;color:var(--ehe-text-body);
  margin:0;
}
.ehe-results-extra{
  display:none;font-size:15px;line-height:1.75;color:var(--ehe-text-body);
  margin-top:var(--ehe-space-3);
}
.ehe-results-extra.is-open{display:block}
.ehe-results-extra p{margin:0}

/* 4-card before/after grid */
.ehe-results-grid{
  display:grid;gap:var(--ehe-space-4);
  grid-template-columns:1fr;
  margin-bottom:var(--ehe-space-8);
}
@media (min-width:560px){
  .ehe-results-grid{grid-template-columns:repeat(2,1fr)}
}
@media (min-width:1024px){
  .ehe-results-grid{grid-template-columns:repeat(4,1fr)}
}

/* Slider variant — 2×2 of wide landscape cards (overrides the 4-up grid).
   Must follow the base .ehe-results-grid rules so it wins at ≥1024px. */
.ehe-results-grid--slider{grid-template-columns:1fr}
@media (min-width:560px){
  .ehe-results-grid--slider{grid-template-columns:repeat(2,1fr)}
}
@media (min-width:1024px){
  .ehe-results-grid--slider{grid-template-columns:repeat(2,1fr)}
}
.ehe-results-grid--slider .ehe-result-card{aspect-ratio:4/3}

.ehe-result-card{
  position:relative;
  border-radius:var(--ehe-radius);
  overflow:hidden;
  border:1px solid var(--ehe-line);
  aspect-ratio:2/3;
  background:#000;
}
.ehe-result-img{
  width:100%;height:100%;object-fit:cover;
  display:block;
}
.ehe-result-tag{
  position:absolute;left:50%;transform:translateX(-50%);
  background:rgba(10,10,10,0.85);color:var(--ehe-gold);
  padding:5px 14px;font-size:10px;letter-spacing:0.18em;font-weight:600;
  border:1px solid var(--ehe-gold);border-radius:2px;
  z-index:2;
}
.ehe-result-tag--before{top:10px}
.ehe-result-tag--after{bottom:10px}

.ehe-results-cta{text-align:center}

/* ─── FAQ · accordion (native <details>) ──────────────────────────── */
.ehe-faq{max-width:820px;margin:0 auto}
.ehe-faq-item{
  background:var(--ehe-bg-elev);
  border:1px solid var(--ehe-line);
  border-radius:var(--ehe-radius);
  margin-bottom:var(--ehe-space-2);
  overflow:hidden;
  transition:border-color .25s ease;
}
.ehe-faq-item[open]{border-color:var(--ehe-gold)}
.ehe-faq-item summary{
  list-style:none;cursor:pointer;
  padding:18px var(--ehe-space-6);
  display:flex;justify-content:space-between;align-items:center;gap:var(--ehe-space-4);
  font-family:var(--ehe-sans);font-size:15px;font-weight:600;
  color:var(--ehe-text);
  transition:color .25s ease;
}
.ehe-faq-item summary:hover{color:var(--ehe-gold)}
.ehe-faq-item summary::-webkit-details-marker{display:none}
.ehe-faq-item summary::after{
  content:"+";font-size:24px;font-weight:300;
  color:var(--ehe-gold);
  flex-shrink:0;line-height:1;
  transition:transform .3s ease;
}
.ehe-faq-item[open] summary::after{transform:rotate(45deg)}
.ehe-faq-body{
  padding:var(--ehe-space-4) var(--ehe-space-6) var(--ehe-space-6);
  color:var(--ehe-text-muted);
  font-size:14px;line-height:1.7;
  border-top:1px dashed var(--ehe-line);
}
.ehe-faq-footer{
  text-align:center;
  margin-top:var(--ehe-space-8);
  font-size:14px;color:var(--ehe-text-muted);
}
.ehe-faq-footer a{
  color:var(--ehe-gold);font-weight:600;
  text-decoration:underline;text-underline-offset:3px;
  margin-left:6px;
}
.ehe-faq-footer a:hover{color:var(--ehe-gold-soft)}

/* ─── FOOTER ──────────────────────────────────────────────────────── */
.ehe-footer{
  background:var(--ehe-bg);
  padding:var(--ehe-space-16) 0 var(--ehe-space-8);
  text-align:center;
  border-top:1px solid var(--ehe-line);
}
.ehe-footer-logo{
  font-family:var(--ehe-serif);font-weight:500;
  font-size:38px;letter-spacing:0.02em;color:var(--ehe-text);
  margin-bottom:var(--ehe-space-4);line-height:1;
}
.ehe-footer-logo em{font-style:italic;color:var(--ehe-gold)}
.ehe-footer-logo-sub{
  font-family:var(--ehe-sans);font-size:11px;letter-spacing:0.4em;
  color:var(--ehe-text-muted);margin-bottom:var(--ehe-space-8);
}
.ehe-footer-logo-img{
  height:52px;width:auto;display:block;
  margin-bottom:var(--ehe-space-6);
}
.ehe-footer-meta{
  font-size:14px;color:var(--ehe-text-body);
  margin-bottom:var(--ehe-space-6);line-height:2;
}
.ehe-footer-socials{
  display:flex;justify-content:center;gap:var(--ehe-space-3);
  margin-bottom:var(--ehe-space-8);
}
.ehe-footer-socials a{
  width:36px;height:36px;border-radius:50%;
  border:1px solid var(--ehe-line-strong);color:var(--ehe-text-muted);
  display:inline-flex;align-items:center;justify-content:center;font-size:13px;
  transition:all .25s ease;
}
.ehe-footer-socials a:hover{color:var(--ehe-gold);border-color:var(--ehe-gold)}
.ehe-footer-socials svg{width:16px;height:16px;fill:currentColor;display:block}
.ehe-footer-legal{
  border-top:1px solid var(--ehe-line);padding-top:var(--ehe-space-6);
  font-size:11px;color:var(--ehe-text-dim);letter-spacing:0.04em;
  display:flex;justify-content:space-between;align-items:center;gap:var(--ehe-space-4);
  flex-wrap:wrap;
  max-width:var(--ehe-maxw);margin:0 auto;padding-left:var(--ehe-pad);padding-right:var(--ehe-pad);
}

/* ─── FLOATING BOOK APPOINTMENT CTA ──────────────────────────────── */
.ehe-floating{
  position:fixed;
  left:50%;bottom:20px;
  z-index:60;
  max-width:calc(100vw - 32px);
  display:flex;justify-content:center;flex-wrap:wrap;gap:12px;
  /* Hidden on all screen sizes until scrolled — JS adds .is-visible */
  opacity:0;
  transform:translateX(-50%) translateY(16px);
  pointer-events:none;
  transition:opacity .4s ease, transform .4s ease;
}
.ehe-floating.is-visible{
  opacity:1;
  transform:translateX(-50%) translateY(0);
  pointer-events:auto;
}
.ehe-floating-btn{
  background:var(--ehe-gold);color:#0A0A0A;
  padding:14px 28px;border-radius:var(--ehe-radius-pill);
  font-size:12px;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  box-shadow:0 8px 24px rgba(201,168,106,0.35), 0 12px 30px rgba(0,0,0,0.4);
  transition:transform .25s ease, background .25s ease;
  white-space:nowrap;
  position:relative;overflow:hidden;
}
/* Gold shimmer sweep — luxurious, minimal */
.ehe-floating-btn::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(108deg,transparent 30%,rgba(255,255,255,0.22) 50%,transparent 70%);
  transform:translateX(-100%);
  pointer-events:none;
}
@media (prefers-reduced-motion:no-preference){
  .ehe-floating-btn::after{animation:eheGoldShimmer 3s ease-in-out infinite}
}
@keyframes eheGoldShimmer{
  0%  {transform:translateX(-100%)}
  28% {transform:translateX(100%)}
  100%{transform:translateX(100%)}
}
.ehe-floating-btn:hover{background:var(--ehe-gold-soft);transform:translateY(-2px)}
.ehe-floating-btn svg{width:14px;height:14px;display:block;flex-shrink:0}
.ehe-floating-lbl-sm{display:none} /* short offer label — shown on mobile only */
/* Secondary (ghost) floating button — used beside a primary CTA */
.ehe-floating-btn--ghost{
  background:rgba(20,20,20,0.85);color:var(--ehe-gold);
  border:1px solid var(--ehe-gold);
  -webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);
}
.ehe-floating-btn--ghost:hover{background:rgba(32,32,32,0.92);color:var(--ehe-gold-soft);transform:translateY(-2px)}
.ehe-floating-btn--ghost::after{display:none} /* no gold shimmer on the secondary */

/* ─── RESPONSIVE ──────────────────────────────────────────────────── */
@media (min-width:1024px){
  .ehe-split{grid-template-columns:1fr 1fr;gap:var(--ehe-space-16)}
  .ehe-treatments{grid-template-columns:1fr}
  .ehe-about-grid{grid-template-columns:1fr 1.1fr;gap:var(--ehe-space-16)}
}
@media (max-width:1023px){
  .ehe-utilbar{display:none}
  .ehe-nav-inner{justify-content:space-between;padding:12px var(--ehe-pad)}
  .ehe-nav-logo{display:flex;flex-direction:column}
  .ehe-nav-toggle{display:flex}
  .ehe-map{aspect-ratio:4/3}
  .ehe-map-card{
    top:12px;left:12px;right:12px;max-width:none;padding:14px 16px;
  }
  .ehe-map-card-title{font-size:16px}
  .ehe-map-card-address{font-size:12px}
  .ehe-nav-list{
    display:none;
    position:absolute;left:0;right:0;top:100%;z-index:39;
    background:var(--ehe-bg-elev);
    border-top:1px solid var(--ehe-line);
    border-bottom:1px solid var(--ehe-line);
    flex-direction:column;flex-wrap:nowrap;
    padding:0;gap:0;font-size:14px;
    max-height:calc(100vh - 60px);overflow-y:auto;
    box-shadow:0 12px 30px rgba(0,0,0,0.4);
  }
  .ehe-nav.is-open .ehe-nav-list{display:flex}
  .ehe-nav-list li{width:100%}
  .ehe-nav-list a{
    display:block;width:100%;padding:14px var(--ehe-pad);
    border-bottom:1px solid var(--ehe-line);
    border-bottom-color:var(--ehe-line);
    letter-spacing:0.04em;
  }
  .ehe-nav-list a:hover{
    background:rgba(201,168,106,0.08);
    border-bottom-color:var(--ehe-line);
  }
  .ehe-nav-list a.is-active{
    background:rgba(201,168,106,0.12);
    border-bottom-color:var(--ehe-line);
  }
  .ehe-utilbar-right{display:none}
  .ehe-utilbar-inner{flex-direction:row;justify-content:flex-start;align-items:center}
  .ehe-nav-list .ehe-nav-extras{
    display:flex;flex-direction:column;align-items:center;
    gap:var(--ehe-space-4);
    padding:var(--ehe-space-6) var(--ehe-pad);
    background:var(--ehe-bg);
    border-bottom:0;
  }
  .ehe-nav-list .ehe-nav-extras-socials a,
  .ehe-nav-list .ehe-nav-extras-phone{
    width:auto;padding:0;border-bottom:0;background:transparent;
  }
  .ehe-nav-extras-socials{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
  .ehe-nav-extras-socials a{
    width:36px;height:36px;border-radius:999px;
    border:1px solid var(--ehe-line-strong);
    display:inline-flex !important;align-items:center;justify-content:center;
    color:var(--ehe-text-muted);font-size:13px;
    transition:all .25s ease;
  }
  .ehe-nav-extras-socials a:hover{color:var(--ehe-gold);border-color:var(--ehe-gold);background:transparent}
  .ehe-nav-extras-phone{
    color:var(--ehe-text) !important;
    font-weight:500;font-size:16px;
    display:inline-flex !important;align-items:center;gap:8px;
  }
  .ehe-nav-extras-phone::before{content:"☎";color:var(--ehe-gold)}
  .ehe-nav-list .ehe-nav-extras-cta{
    width:100%;max-width:280px;
    padding:14px 28px !important;
    border-bottom:0 !important;
  }
  .ehe-section{padding:var(--ehe-space-12) 0}
  .ehe-portrait::before{width:70%;height:70%}
  .ehe-portrait--bl::before,.ehe-portrait--br::before{bottom:-12px}
  .ehe-portrait--bl::before{left:-12px}
  .ehe-portrait--br::before{right:-12px}
  .ehe-footer-legal{flex-direction:column;text-align:center}
  .ehe-footer-logo-img{margin-left:auto;margin-right:auto} /* center footer logo on mobile */
  /* Floating dock — keep both CTAs on ONE row, primary (Claim) on the right */
  .ehe-floating{flex-wrap:nowrap;flex-direction:row-reverse;gap:8px}
  .ehe-floating-btn{padding:11px 13px;font-size:10px;letter-spacing:0.05em;gap:6px;white-space:nowrap}
  .ehe-floating-btn svg{width:13px;height:13px}
  .ehe-floating-lbl-lg{display:none}
  .ehe-floating-lbl-sm{display:inline}
}

/* ─── GHL MOBILE PREVIEW FALLBACKS (.--mobile class) ─────────────── */
.--mobile .ehe-split{grid-template-columns:1fr}
.--mobile .ehe-utilbar-inner{flex-direction:column;align-items:flex-start}
.--mobile .ehe-section{padding:var(--ehe-space-12) 0}
.--mobile .ehe-nav-inner{justify-content:space-between;padding:12px var(--ehe-pad)}
.--mobile .ehe-nav-toggle{display:flex}
.--mobile .ehe-nav-list{
  display:none;position:absolute;left:0;right:0;top:100%;z-index:39;
  background:var(--ehe-bg-elev);border-top:1px solid var(--ehe-line);
  flex-direction:column;padding:0;gap:0;
}
.--mobile .ehe-nav.is-open .ehe-nav-list{display:flex}
.--mobile .ehe-nav-list a{display:block;width:100%;padding:14px var(--ehe-pad);border-bottom:1px solid var(--ehe-line)}
.--mobile .ehe-utilbar{display:none}
.--mobile .ehe-nav-logo{display:flex;flex-direction:column}
.--mobile .ehe-map{aspect-ratio:4/3}
.--mobile .ehe-map-card{top:12px;left:12px;right:12px;max-width:none;padding:14px 16px}
.--mobile .ehe-utilbar-right{display:none}
.--mobile .ehe-nav-list .ehe-nav-extras{
  display:flex;flex-direction:column;align-items:center;
  gap:var(--ehe-space-4);padding:var(--ehe-space-6) var(--ehe-pad);
  background:var(--ehe-bg);border-bottom:0;
}
.--mobile .ehe-nav-extras-socials{display:flex;gap:10px;justify-content:center}
.--mobile .ehe-nav-extras-socials a{
  width:36px;height:36px;border-radius:999px;border:1px solid var(--ehe-line-strong);
  display:inline-flex !important;align-items:center;justify-content:center;padding:0;border-bottom:0;
}
.--mobile .ehe-nav-list .ehe-nav-extras-cta{width:100%;max-width:280px;padding:14px 28px !important;border-bottom:0 !important}
/* Always show floating CTA in GHL preview mode (no real scroll events) */
.--mobile .ehe-floating{opacity:1;transform:translateX(-50%) translateY(0);pointer-events:auto;flex-wrap:nowrap;flex-direction:row-reverse;gap:8px}
.--mobile .ehe-floating-btn{padding:11px 13px;font-size:10px;letter-spacing:0.05em;gap:6px;white-space:nowrap}
.--mobile .ehe-floating-btn svg{width:13px;height:13px}
.--mobile .ehe-floating-lbl-lg{display:none}
.--mobile .ehe-floating-lbl-sm{display:inline}

/* ─── REDUCED MOTION ──────────────────────────────────────────────── */
@media (prefers-reduced-motion:reduce){
  *{transition:none !important;animation:none !important}
  html{scroll-behavior:auto}
}

/* ─── TIMELINE STRIP ──────────────────────────────────────────────
   Horizontal 4-step progress strip used on DFI, Male, Female,
   SmartGraft pages. Steps connected by a gold line.
──────────────────────────────────────────────────────────────────── */
.ehe-timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  position:relative;
  margin:var(--ehe-space-12) 0 0;
}
.ehe-timeline::before{
  content:"";position:absolute;
  top:22px;left:calc(12.5%);right:calc(12.5%);
  height:1.5px;background:var(--ehe-gold);opacity:0.4;
  pointer-events:none;
}
.ehe-timeline-step{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;gap:var(--ehe-space-3);
  padding:0 var(--ehe-space-2);
}
.ehe-timeline-num{
  width:44px;height:44px;border-radius:50%;
  border:1.5px solid var(--ehe-gold);
  background:var(--ehe-bg);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--ehe-serif);font-size:16px;font-weight:500;
  color:var(--ehe-gold);
  position:relative;z-index:1;
  flex-shrink:0;
}
.ehe-timeline-label{
  font-size:13px;font-weight:600;
  color:var(--ehe-text);
  letter-spacing:0.02em;
}
.ehe-timeline-sub{
  font-size:12px;color:var(--ehe-text-muted);
  line-height:1.5;
}
@media (max-width:1023px){
  .ehe-timeline{grid-template-columns:1fr 1fr;gap:var(--ehe-space-6)}
  .ehe-timeline::before{display:none}
}
.--mobile .ehe-timeline{grid-template-columns:1fr 1fr;gap:var(--ehe-space-6)}
.--mobile .ehe-timeline::before{display:none}

/* ─── STAT BLOCK ──────────────────────────────────────────────────
   Large centered stat callout — used on DFI page for 98% success.
──────────────────────────────────────────────────────────────────── */
.ehe-stat-block{
  text-align:center;
  padding:var(--ehe-space-12) var(--ehe-pad);
  border-top:1px solid var(--ehe-line);
  border-bottom:1px solid var(--ehe-line);
  background:var(--ehe-bg-elev);
  margin:var(--ehe-space-12) 0;
}
.ehe-stat-number{
  font-family:var(--ehe-serif);font-weight:500;
  font-size:clamp(56px,8vw,96px);
  color:var(--ehe-gold);line-height:1;
  margin-bottom:var(--ehe-space-3);
}
.ehe-stat-label{
  font-size:18px;font-weight:600;
  color:var(--ehe-text);letter-spacing:0.04em;
  text-transform:uppercase;margin-bottom:var(--ehe-space-4);
}
.ehe-stat-sub{
  font-size:15px;color:var(--ehe-text-muted);
  max-width:540px;margin:0 auto;line-height:1.7;
}

/* ─── COMPARISON TABLE ────────────────────────────────────────────
   Side-by-side comparison used on SmartGraft and DFI pages.
──────────────────────────────────────────────────────────────────── */
.ehe-compare{
  display:grid;grid-template-columns:1fr 1fr;
  gap:var(--ehe-space-4);margin:var(--ehe-space-8) 0;
}
.ehe-compare-col{
  background:var(--ehe-bg-elev);
  border:1px solid var(--ehe-line);
  border-radius:var(--ehe-radius);
  padding:var(--ehe-space-6);
}
.ehe-compare-col--highlight{border-color:var(--ehe-gold)}
.ehe-compare-title{
  font-family:var(--ehe-serif);font-weight:500;font-size:18px;
  color:var(--ehe-text);margin:0 0 var(--ehe-space-4);
}
.ehe-compare-col--highlight .ehe-compare-title{color:var(--ehe-gold)}
.ehe-compare-list{list-style:none;margin:0;padding:0}
.ehe-compare-list li{
  font-size:14px;color:var(--ehe-text-body);
  padding:var(--ehe-space-2) 0;
  border-bottom:1px solid var(--ehe-line);
  line-height:1.55;
}
.ehe-compare-list li:last-child{border-bottom:0}
.ehe-compare-list li::before{
  content:"✓ ";color:var(--ehe-gold);font-weight:600;
}
.ehe-compare-col:not(.ehe-compare-col--highlight) .ehe-compare-list li::before{
  content:"✗ ";color:var(--ehe-text-dim);
}
@media (max-width:1023px){.ehe-compare{grid-template-columns:1fr}}
.--mobile .ehe-compare{grid-template-columns:1fr}

/* ─── CANDIDACY / CHECKLIST BLOCK ─────────────────────────────────
   "Am I a candidate?" checklist on Male and Beard pages.
──────────────────────────────────────────────────────────────────── */
.ehe-checklist{
  list-style:none;margin:var(--ehe-space-6) 0 0;padding:0;
  display:flex;flex-direction:column;gap:var(--ehe-space-3);
}
.ehe-checklist li{
  display:flex;align-items:flex-start;gap:var(--ehe-space-3);
  font-size:15px;color:var(--ehe-text-body);line-height:1.6;
}
.ehe-checklist li::before{
  content:"✓";
  color:var(--ehe-gold);font-weight:700;font-size:14px;
  flex-shrink:0;margin-top:2px;
}

/* ─── GRAFT TABLE ─────────────────────────────────────────────────
   Follicle count table — Beard Restoration page.
──────────────────────────────────────────────────────────────────── */
.ehe-graft-table{
  width:100%;border-collapse:collapse;margin:var(--ehe-space-8) 0;
  font-size:14px;
}
.ehe-graft-table th{
  background:var(--ehe-bg-elev);
  color:var(--ehe-gold);font-weight:600;
  letter-spacing:0.08em;text-transform:uppercase;font-size:11px;
  padding:var(--ehe-space-3) var(--ehe-space-4);
  border-bottom:2px solid var(--ehe-gold);
  text-align:left;
}
.ehe-graft-table td{
  padding:var(--ehe-space-3) var(--ehe-space-4);
  border-bottom:1px solid var(--ehe-line);
  color:var(--ehe-text-body);
}
.ehe-graft-table tr:last-child td{border-bottom:0}
.ehe-graft-table td:last-child{color:var(--ehe-gold);font-weight:600}

/* ─── VIDEO PLACEHOLDER ───────────────────────────────────────────
   Patient Journey page — iframe slot while client uploads video.
──────────────────────────────────────────────────────────────────── */
.ehe-video-wrap{
  position:relative;width:100%;aspect-ratio:16/9;
  background:var(--ehe-bg-elev);border:1px solid var(--ehe-line);
  border-radius:var(--ehe-radius);overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  margin:var(--ehe-space-8) 0;
}
.ehe-video-wrap iframe{
  position:absolute;inset:0;width:100%;height:100%;border:0;
}
.ehe-video-placeholder{
  text-align:center;color:var(--ehe-text-muted);
  font-size:14px;letter-spacing:0.04em;
}

/* ─── SERVICE HUB GRID & CARDS ────────────────────────────────────
   Used on: hair-transplant hub, home page spotlights, any hub page.
──────────────────────────────────────────────────────────────────── */
.ehe-hub-grid{
  display:grid;grid-template-columns:1fr;
  gap:var(--ehe-space-6);
}
.ehe-hub-card{
  background:var(--ehe-bg-elev);
  border:1px solid var(--ehe-line);
  border-radius:var(--ehe-radius);
  padding:var(--ehe-space-10);
  display:flex;flex-direction:column;gap:var(--ehe-space-5);
  transition:border-color .25s ease;
  position:relative;overflow:hidden;
}
.ehe-hub-card::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(201,168,106,0.03) 0%,transparent 55%);
  pointer-events:none;
}
.ehe-hub-card--primary{border-color:rgba(201,168,106,0.4)}
.ehe-hub-card:hover{border-color:rgba(201,168,106,0.45)}
.ehe-hub-card--primary:hover{border-color:var(--ehe-gold)}
.ehe-hub-label{
  display:inline-flex;align-items:center;
  font-family:var(--ehe-sans);font-size:10px;font-weight:600;
  text-transform:uppercase;letter-spacing:0.22em;
  color:var(--ehe-gold);margin:0 0 var(--ehe-space-1);
}
.ehe-hub-title{
  font-family:var(--ehe-serif);font-weight:500;
  font-size:clamp(22px,2.5vw,28px);
  color:var(--ehe-text);line-height:1.15;margin:0;
}
.ehe-hub-desc{font-size:15px;color:var(--ehe-text-muted);line-height:1.7;margin:0}
.ehe-hub-links{
  display:flex;flex-wrap:wrap;gap:var(--ehe-space-2);
  list-style:none;margin:0;padding:0;
}
.ehe-hub-links li a{
  display:inline-block;
  font-size:12px;letter-spacing:0.03em;
  color:var(--ehe-text-muted);
  border:1px solid var(--ehe-line);
  border-radius:var(--ehe-radius-pill);
  padding:5px 13px;
  transition:color .2s ease,border-color .2s ease;
}
.ehe-hub-links li a:hover{color:var(--ehe-gold);border-color:rgba(201,168,106,0.4)}
.ehe-hub-footer{margin-top:auto;padding-top:var(--ehe-space-2)}
@media(min-width:1024px){.ehe-hub-grid{grid-template-columns:1fr 1fr}}
.--mobile .ehe-hub-grid{grid-template-columns:1fr}

/* ─── TREATMENT PILLS ─────────────────────────────────────────────
   Used on: hair-transplant DFI spotlight, home spotlights.
──────────────────────────────────────────────────────────────────── */
.ehe-pill-group{
  display:flex;flex-wrap:wrap;gap:var(--ehe-space-2);
  margin:var(--ehe-space-4) 0;
}
.ehe-pill{
  display:inline-flex;align-items:center;
  font-size:12px;font-weight:500;letter-spacing:0.04em;
  color:var(--ehe-text-muted);
  border:1px solid var(--ehe-line);
  border-radius:var(--ehe-radius-pill);
  padding:6px 14px;
  transition:color .2s ease,border-color .2s ease;
}
.ehe-pill:hover{color:var(--ehe-gold);border-color:rgba(201,168,106,0.4)}
.ehe-pill--gold{
  color:var(--ehe-gold);
  border-color:rgba(201,168,106,0.35);
  background:rgba(201,168,106,0.06);
}

/* ─── TESTIMONIALS ────────────────────────────────────────────────────
   Used on: home page, our-office/testimonials.
──────────────────────────────────────────────────────────────────────── */
.ehe-testimonials-grid{
  display:grid;grid-template-columns:1fr;
  gap:var(--ehe-space-4);
}
.ehe-testimonial{
  background:var(--ehe-bg-elev);
  border:1px solid var(--ehe-line);
  border-radius:var(--ehe-radius);
  padding:var(--ehe-space-6) var(--ehe-space-6) var(--ehe-space-5);
  display:flex;flex-direction:column;gap:var(--ehe-space-3);
  transition:border-color .25s ease;
}
.ehe-testimonial:hover{border-color:rgba(201,168,106,0.3)}
.ehe-testimonial-stars{color:var(--ehe-gold);letter-spacing:2px;font-size:13px}
.ehe-testimonial-quote{
  font-size:15px;line-height:1.75;color:var(--ehe-text-body);
  font-style:italic;margin:0;flex:1;
}
.ehe-testimonial-author{
  font-size:12px;font-weight:600;letter-spacing:0.06em;
  color:var(--ehe-text-muted);text-transform:uppercase;
  border-top:1px solid var(--ehe-line);
  padding-top:var(--ehe-space-4);margin-top:auto;
}
.ehe-testimonial-treatment{
  display:block;font-weight:400;letter-spacing:0;
  text-transform:none;color:var(--ehe-gold);font-size:11px;margin-top:3px;
}
@media(min-width:1024px){.ehe-testimonials-grid{grid-template-columns:repeat(3,1fr)}}
.--mobile .ehe-testimonials-grid{grid-template-columns:1fr}

/* ─── RESULTS HEADER BODY ─────────────────────────────────────────────
   Right column of the 2-col results header grid — aligns body text
   to the bottom of the title column on desktop.
──────────────────────────────────────────────────────────────────────── */
.ehe-results-header-body{align-self:end}

/* ─── ALTERNATING SECTION BACKGROUNDS ────────────────────────────────
   Even-numbered sections get the slightly elevated surface so each
   section visually separates from its neighbour without hard dividers.
   Specific components (cta-banner, results) keep their own background.
──────────────────────────────────────────────────────────────────────── */
main > section:nth-of-type(even).ehe-section{background:var(--ehe-bg-elev)}
main > section:nth-of-type(even).ehe-section--pad-sm{background:var(--ehe-bg-elev)}

/* ════════════════════════════════════════════════════════════════════
   BLOG — article pages (.ehe-article) + /blog/ archive (.ehe-blog-*)
   Added for the WordPress→Vercel blog migration. Uses existing tokens
   only; rendered by build.js (buildBlog) from content/blog/*.md.
════════════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ─────────────────────────────────────────────────── */
.ehe-breadcrumb{
  font-family:var(--ehe-sans);font-size:13px;color:var(--ehe-text-dim);
  display:flex;flex-wrap:wrap;align-items:center;gap:var(--ehe-space-2);
  margin-bottom:var(--ehe-space-5);
}
.ehe-breadcrumb a{color:var(--ehe-text-muted);text-decoration:none}
.ehe-breadcrumb a:hover{color:var(--ehe-gold)}
.ehe-breadcrumb span[aria-hidden]{color:var(--ehe-text-dim);opacity:.6}
.ehe-breadcrumb-current{color:var(--ehe-text-dim);max-width:60ch;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

/* ── Article layout ─────────────────────────────────────────────── */
.ehe-article{background:var(--ehe-bg);padding:var(--ehe-space-16) 0 var(--ehe-space-12)}
.ehe-article-head{max-width:820px;margin-left:auto;margin-right:auto;text-align:center}
.ehe-article-head .ehe-breadcrumb{justify-content:center}
.ehe-article-head .ehe-h1{margin:var(--ehe-space-3) 0 var(--ehe-space-4)}
.ehe-article-meta{font-family:var(--ehe-sans);font-size:14px;color:var(--ehe-text-dim);margin:0}
.ehe-article-byline{font-family:var(--ehe-sans);font-size:13px;color:var(--ehe-text-muted);margin:var(--ehe-space-2) 0 0}
.ehe-article-byline strong{color:var(--ehe-text-body);font-weight:600}

.ehe-article-hero{margin:0 0 var(--ehe-space-8)}
.ehe-article-hero img{
  width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;
  border-radius:var(--ehe-radius);box-shadow:var(--ehe-shadow-soft);display:block;
}

/* ── Article prose ──────────────────────────────────────────────── */
.ehe-article-body{
  margin:0;
  font-family:var(--ehe-sans);font-size:17px;line-height:1.75;color:var(--ehe-text-body);
  overflow-wrap:break-word;word-break:break-word;   /* long URLs/words never overflow */
}
.ehe-article-body > *:first-child{margin-top:0}
.ehe-article-body p{margin:0 0 var(--ehe-space-6)}
.ehe-article-body h2{
  font-family:var(--ehe-serif);font-weight:500;color:var(--ehe-text);
  font-size:clamp(24px,3vw,32px);line-height:1.25;
  margin:var(--ehe-space-12) 0 var(--ehe-space-4);
}
.ehe-article-body h3{
  font-family:var(--ehe-serif);font-weight:500;color:var(--ehe-gold);
  font-size:clamp(19px,2.2vw,23px);line-height:1.3;
  margin:var(--ehe-space-10) 0 var(--ehe-space-3);
}
.ehe-article-body h4{
  font-family:var(--ehe-sans);font-weight:600;color:var(--ehe-text);font-size:16px;
  margin:var(--ehe-space-8) 0 var(--ehe-space-3);
}
.ehe-article-body a{color:var(--ehe-gold);text-decoration:underline;text-underline-offset:2px}
.ehe-article-body a:hover{color:var(--ehe-gold-soft)}
.ehe-article-body strong{color:var(--ehe-text);font-weight:600}
.ehe-article-body ul,.ehe-article-body ol{margin:0 0 var(--ehe-space-6);padding-left:var(--ehe-space-6)}
.ehe-article-body li{margin:0 0 var(--ehe-space-2)}
.ehe-article-body li::marker{color:var(--ehe-gold)}
.ehe-article-body img{max-width:100%;height:auto;border-radius:var(--ehe-radius);margin:var(--ehe-space-6) 0}
.ehe-article-body figure{margin:var(--ehe-space-8) 0}
.ehe-article-body figcaption{font-size:13px;color:var(--ehe-text-dim);text-align:center;margin-top:var(--ehe-space-2)}
.ehe-article-body blockquote{
  margin:var(--ehe-space-8) 0;padding:var(--ehe-space-2) 0 var(--ehe-space-2) var(--ehe-space-6);
  border-left:2px solid var(--ehe-gold);color:var(--ehe-text-muted);font-style:italic;
}
.ehe-article-body hr{border:0;border-top:1px solid var(--ehe-line);margin:var(--ehe-space-10) 0}

/* ── Two-column layout: body (wide) + sidebar (narrow) ──────────── */
.ehe-article-layout{
  display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:var(--ehe-space-12);
  margin-top:var(--ehe-space-10);align-items:start;
}
.ehe-article-main{min-width:0}
.ehe-article-sidebar{
  display:flex;flex-direction:column;gap:var(--ehe-space-6);
  position:sticky;top:var(--ehe-space-24);   /* clears the pinned nav on scroll */
  background:var(--ehe-bg-card);             /* lighter than the page → reads as separate */
  border:1px solid var(--ehe-line);border-radius:var(--ehe-radius);
  padding:var(--ehe-space-6);
}
.ehe-widget-title{
  font-family:var(--ehe-serif);font-weight:500;font-size:20px;color:var(--ehe-text);
  padding-bottom:var(--ehe-space-3);border-bottom:1px solid var(--ehe-line);margin:0 0 var(--ehe-space-2);
}
.ehe-widget-list{list-style:none;margin:0;padding:0}
.ehe-widget-item{border-bottom:1px solid var(--ehe-line)}
.ehe-widget-item:last-child{border-bottom:0}
.ehe-widget-item a{display:flex;flex-direction:column;gap:var(--ehe-space-1);padding:var(--ehe-space-4) 0;text-decoration:none}
.ehe-widget-item-cat{font-family:var(--ehe-sans);font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.16em;color:var(--ehe-gold)}
.ehe-widget-item-title{font-family:var(--ehe-sans);font-size:14px;line-height:1.4;font-weight:500;color:var(--ehe-text-body);transition:color .2s ease}
.ehe-widget-item a:hover .ehe-widget-item-title{color:var(--ehe-gold)}
.ehe-widget-item-date{font-family:var(--ehe-sans);font-size:12px;color:var(--ehe-text-dim)}
.ehe-widget-all{display:inline-block;margin-top:var(--ehe-space-4);font-family:var(--ehe-sans);font-size:13px;font-weight:600;color:var(--ehe-gold);text-decoration:none}
.ehe-widget-all:hover{color:var(--ehe-gold-soft)}

/* ── Prev / next ────────────────────────────────────────────────── */
.ehe-article-nav{
  margin-top:var(--ehe-space-12);
  display:grid;grid-template-columns:1fr 1fr;gap:var(--ehe-space-4);
}
.ehe-article-nav-link{
  display:flex;flex-direction:column;gap:var(--ehe-space-1);min-width:0;overflow-wrap:anywhere;
  padding:var(--ehe-space-5);border:1px solid var(--ehe-line);border-radius:var(--ehe-radius);
  text-decoration:none;color:var(--ehe-text-body);background:var(--ehe-bg-card);transition:border-color .2s ease;
}
.ehe-article-nav-link:hover{border-color:var(--ehe-gold)}
.ehe-article-nav--older{text-align:right}
.ehe-article-nav-label{font-family:var(--ehe-sans);font-size:11px;text-transform:uppercase;letter-spacing:.18em;color:var(--ehe-gold)}
.ehe-article-nav-link strong{font-family:var(--ehe-serif);font-weight:500;font-size:16px;color:var(--ehe-text)}

/* ── /blog/ archive: filter pills ───────────────────────────────── */
.ehe-blog-filter{
  display:flex;flex-wrap:wrap;justify-content:center;gap:var(--ehe-space-3);
  margin-bottom:var(--ehe-space-10);
}
.ehe-blog-pill{
  font-family:var(--ehe-sans);font-size:13px;font-weight:500;letter-spacing:.02em;
  padding:var(--ehe-space-2) var(--ehe-space-5);border-radius:var(--ehe-radius-pill);
  border:1px solid var(--ehe-line-strong);background:transparent;color:var(--ehe-text-muted);
  cursor:pointer;transition:all .2s ease;
}
.ehe-blog-pill:hover{border-color:var(--ehe-gold);color:var(--ehe-text)}
.ehe-blog-pill.is-active{background:var(--ehe-gold);border-color:var(--ehe-gold);color:#0A0A0A}

/* ── /blog/ archive: card grid ──────────────────────────────────── */
.ehe-blog-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:var(--ehe-space-8);
}
.ehe-blog-card{
  display:flex;flex-direction:column;overflow:hidden;text-decoration:none;
  background:var(--ehe-bg-card);border:1px solid var(--ehe-line);border-radius:var(--ehe-radius);
  transition:border-color .2s ease,transform .2s ease;
}
.ehe-blog-card:hover{border-color:var(--ehe-gold);transform:translateY(-3px)}
.ehe-blog-card-media{display:block;aspect-ratio:16/10;overflow:hidden;background:var(--ehe-bg-elev)}
.ehe-blog-card-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease}
.ehe-blog-card:hover .ehe-blog-card-media img{transform:scale(1.04)}
.ehe-blog-card-body{display:flex;flex-direction:column;gap:var(--ehe-space-2);padding:var(--ehe-space-6)}
.ehe-blog-card-cat{font-family:var(--ehe-sans);font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.18em;color:var(--ehe-gold)}
.ehe-blog-card-title{font-family:var(--ehe-serif);font-weight:500;font-size:20px;line-height:1.3;color:var(--ehe-text)}
.ehe-blog-card-date{font-family:var(--ehe-sans);font-size:13px;color:var(--ehe-text-dim)}
.ehe-blog-card-excerpt{font-family:var(--ehe-sans);font-size:14px;line-height:1.6;color:var(--ehe-text-muted)}

/* Below 900px: collapse to a single column (sidebar drops below the article). */
@media (max-width:900px){
  .ehe-article-layout{grid-template-columns:1fr;gap:var(--ehe-space-16)}
  .ehe-article-main{max-width:760px;margin:0 auto}     /* keep a comfortable reading measure */
  .ehe-article-sidebar{position:static;top:auto;max-width:760px;margin:0 auto;width:100%}
}
@media (max-width:600px){
  .ehe-article-nav{grid-template-columns:1fr}
  .ehe-article-nav--older{text-align:left}
  .ehe-article-body{font-size:16px}
}
