/* ============================================================
   ECHOHAUS WEBSITE — shared stylesheet
   Inherits the design system. Responsive at every breakpoint.
   ============================================================ */

:root {
  --eh-display: 'Montserrat', sans-serif;
  --eh-text: 'Inter', sans-serif;
  --eh-mono: 'IBM Plex Mono', monospace;
  --eh-italic: 'Montserrat', sans-serif;

  /* Color */
  --eh-black:    #050505;
  --eh-ink:      #0a0a0a;
  --eh-coal:     #141414;
  --eh-graphite: #1f1f1f;
  --eh-charcoal: #2a2a2a;
  --eh-steel:    #6b6b6b;
  --eh-silver:   #c8c8c8;
  --eh-pearl:    #e8e4dc;
  --eh-ivory:    #f4ede1;

  --eh-amber:    #e89a45;
  --eh-amber-hi: #f4b05c;
  --eh-amber-lo: #b8722a;
  --eh-gold:     #e6c184;

  --eh-line:   rgba(244,237,225,0.10);
  --eh-line-2: rgba(244,237,225,0.18);
  --eh-line-lt:rgba(0,0,0,0.10);

  --eh-shell-x: clamp(20px, 5vw, 96px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--eh-black);
  color: var(--eh-ivory);
  font-family: var(--eh-text);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ===========================================================
   NAV
   =========================================================== */
.eh-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: clamp(16px, 2.5vw, 44px);
  padding: 22px var(--eh-shell-x);
  background: linear-gradient(180deg, rgba(5,5,5,0.85), rgba(5,5,5,0));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.4s ease, padding 0.4s ease;
}
.eh-nav.scrolled {
  background: rgba(5,5,5,0.92);
  padding: 14px var(--eh-shell-x);
  border-bottom: 1px solid rgba(244,237,225,0.06);
}
.eh-nav__brand {
  display: flex; align-items: center; gap: 14px;
}
/* Accentuated amber bloom on the nav house-mark (sits over the SVG's own glow) */
.eh-nav__brand svg {
  filter:
    drop-shadow(0 0 5px rgba(244,184,112,0.65))
    drop-shadow(0 0 13px rgba(232,154,69,0.50))
    drop-shadow(0 0 26px rgba(232,154,69,0.30));
  transition: filter 0.4s ease;
}
.eh-nav__brand:hover svg {
  filter:
    drop-shadow(0 0 6px rgba(244,184,112,0.85))
    drop-shadow(0 0 18px rgba(232,154,69,0.60))
    drop-shadow(0 0 36px rgba(232,154,69,0.40));
}
.eh-nav__wordmark {
  font-family: var(--eh-display);
  font-size: 18px;
  letter-spacing: 0.18em;
  line-height: 1;
  display: inline-flex; align-items: baseline;
}
.eh-nav__wordmark .echo { color: var(--eh-ivory); font-weight: 200; }
.eh-nav__wordmark .haus { color: var(--eh-amber); font-weight: 500; }
.eh-nav__links {
  display: flex; gap: 36px;
  font-family: var(--eh-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(244,237,225,0.7);
}
.eh-nav__links a { transition: color 0.2s; white-space: nowrap; }
.eh-nav__links a:hover, .eh-nav__links a.active { color: var(--eh-amber); }
.eh-nav__tel { font-family: var(--eh-mono); font-size: 11.5px; letter-spacing: 0.12em; color: rgba(244,237,225,0.75); white-space: nowrap; transition: color 0.2s; }
.eh-nav__tel:hover { color: var(--eh-amber); }
.eh-mobile-menu .eh-mobile-menu__tel { color: var(--eh-amber); }
.eh-nav__cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  font-family: var(--eh-display);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: transparent;
  color: var(--eh-ivory);
  border: 1px solid rgba(244,237,225,0.3);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.eh-nav__cta:hover {
  background: var(--eh-amber);
  color: var(--eh-ink);
  border-color: var(--eh-amber);
}
.eh-nav__menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(244,237,225,0.3);
  color: var(--eh-ivory);
  padding: 10px 14px;
  cursor: pointer;
}
/* Intermediate tier — desktop nav stays, but tightens so nothing clips */
@media (max-width: 1360px) {
  .eh-nav__links { gap: 22px; font-size: 11px; }
  .eh-nav__tel { font-size: 11px; }
  .eh-nav__cta { padding: 11px 16px; }
}
@media (max-width: 1200px) {
  .eh-nav__links { gap: 16px; font-size: 10.5px; letter-spacing: 0.1em; }
  .eh-nav__cta { padding: 10px 13px; letter-spacing: 0.1em; }
  .eh-nav__tel { font-size: 10.5px; }
}
@media (max-width: 1100px) {
  .eh-nav__links, .eh-nav__cta { display: none; }
  .eh-nav__menu-btn { display: block; }
  .eh-nav__tel { padding: 10px 14px; border: 1px solid var(--eh-line-2); font-size: 12px; }
}

/* Mobile menu overlay (toggled by JS) */
.eh-mobile-menu {
  position: fixed; inset: 0;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(20px);
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 36px;
}
.eh-mobile-menu.open { display: flex; }
.eh-mobile-menu a {
  font-family: var(--eh-display);
  font-size: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eh-ivory);
  font-weight: 300;
}
.eh-mobile-menu .close {
  position: absolute; top: 22px; right: 22px;
  background: transparent; border: 1px solid rgba(244,237,225,0.3);
  color: var(--eh-ivory); padding: 10px 14px; cursor: pointer;
}

/* ===========================================================
   TYPOGRAPHY
   =========================================================== */
.eh-eyebrow {
  font-family: var(--eh-mono);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--eh-amber);
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 0 24px 0;
}
.eh-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--eh-amber);
}

.eh-display {
  font-family: var(--eh-display);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 0.96;
  margin: 0;
}
.eh-display.size-xxl { font-size: clamp(56px, 9vw, 156px); }
.eh-display.size-xl  { font-size: clamp(44px, 7vw, 110px); }
.eh-display.size-l   { font-size: clamp(36px, 5vw, 80px); font-weight: 300; }
.eh-display.size-m   { font-size: clamp(28px, 3.5vw, 56px); font-weight: 300; letter-spacing: -0.015em; }
.eh-display.size-s   { font-size: clamp(22px, 2.4vw, 36px); font-weight: 400; letter-spacing: -0.01em; }

.eh-italic {
  font-family: var(--eh-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--eh-amber);
}

/* ===========================================================
   HEADLINE SYSTEM — shared across all pages (matches homepage)
   Amber glow accent + uppercase display + bold page heroes.
   =========================================================== */
.eh-glow {
  background: linear-gradient(180deg, #f6ab55 0%, #ec9a44 40%, #c47e33 78%, #8f5926 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 16px rgba(232,154,69,0.45))
    drop-shadow(0 0 38px rgba(232,154,69,0.26));
}

.eh-display.size-xxl,
.eh-display.size-xl,
.eh-display.size-l,
.eh-display.size-m,
.eh-display.size-s { text-transform: uppercase; }

/* Page hero headlines match the homepage hero: bold + tight.
   `.eh-display` is included to outrank the .size-* font-size. */
.eh-service-hero h1.eh-display,
.eh-studio-hero h1.eh-display,
.eh-contact-hero h1.eh-display,
.wk-hero h1.eh-display,
.eh-journal-hero h1.eh-display,
.disc-hero h1.eh-display,
.eh-post > h1.eh-display {
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.eh-lead {
  font-family: var(--eh-text);
  font-weight: 300;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.45;
  color: rgba(244,237,225,0.78);
  max-width: 720px;
  margin: 0;
}
.eh-body {
  font-family: var(--eh-text);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(244,237,225,0.72);
}
.eh-cap {
  font-family: var(--eh-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--eh-gold);
}

/* ===========================================================
   BUTTONS
   =========================================================== */
.eh-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  font-family: var(--eh-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--eh-amber);
  color: var(--eh-ink);
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.eh-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(232,154,69,0.28);
  background: var(--eh-amber-hi);
}
.eh-btn.ghost {
  background: transparent;
  color: var(--eh-ivory);
  border: 1px solid rgba(244,237,225,0.35);
}
.eh-btn.ghost:hover {
  background: rgba(244,237,225,0.05);
  border-color: var(--eh-amber);
  color: var(--eh-amber);
  box-shadow: none;
}

/* ===========================================================
   SHELL / LAYOUT
   =========================================================== */
.eh-shell {
  padding: clamp(64px, 10vh, 140px) var(--eh-shell-x);
}
.eh-shell.tight { padding: clamp(40px, 6vh, 88px) var(--eh-shell-x); }
.eh-shell.full  { padding: 0; }

.eh-row { display: grid; gap: clamp(32px, 5vw, 96px); }
.eh-row.cols-2 { grid-template-columns: 1fr 1fr; }
.eh-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.eh-row.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .eh-row.cols-2, .eh-row.cols-3, .eh-row.cols-4 { grid-template-columns: 1fr; }
}

.eh-divider {
  height: 1px;
  background: var(--eh-line);
  margin: clamp(48px, 6vh, 88px) 0;
}

/* ===========================================================
   HERO — full bleed cinematic
   =========================================================== */
.eh-hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 0 var(--eh-shell-x);
}
.eh-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 110%, rgba(232,154,69,0.32), transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% -10%, rgba(232,154,69,0.05), transparent 60%),
    linear-gradient(180deg, #050505 0%, #07060a 50%, #0a0807 100%);
}
.eh-hero__bg.exterior::before {
  /* faint architectural elevation backdrop, blurred */
  content: ''; position: absolute; inset: 0;
  background:
    /* window grid - 3 stories */
    linear-gradient(90deg, transparent 0 11%, rgba(244,184,112,0.40) 11% 13%, transparent 13% 24%, rgba(244,184,112,0.30) 24% 26%, transparent 26% 38%, transparent 38% 49%, rgba(244,184,112,0.18) 49% 51%, transparent 51% 63%, rgba(244,184,112,0.40) 63% 65%, transparent 65% 76%, rgba(244,184,112,0.30) 76% 78%, transparent 78%) 0 38%/100% 3% no-repeat,
    linear-gradient(90deg, transparent 0 11%, rgba(244,184,112,0.30) 11% 13%, transparent 13% 24%, transparent 24% 26%, transparent 26% 38%, rgba(244,184,112,0.40) 38% 40%, transparent 40% 49%, rgba(244,184,112,0.38) 49% 51%, transparent 51% 63%, transparent 63% 65%, transparent 65% 76%, rgba(244,184,112,0.40) 76% 78%, transparent 78%) 0 53%/100% 3% no-repeat,
    linear-gradient(90deg, transparent 0 11%, transparent 11% 13%, transparent 13% 24%, rgba(244,184,112,0.40) 24% 26%, transparent 26% 38%, rgba(244,184,112,0.38) 38% 40%, transparent 40% 49%, transparent 49% 51%, transparent 51% 63%, rgba(244,184,112,0.30) 63% 65%, transparent 65% 76%, rgba(244,184,112,0.30) 76% 78%, transparent 78%) 0 70%/100% 3% no-repeat,
    linear-gradient(90deg, transparent 0 11%, rgba(244,184,112,0.36) 11% 13%, transparent 13% 24%, rgba(244,184,112,0.40) 24% 26%, transparent 26% 38%, transparent 38% 40%, transparent 40% 49%, rgba(244,184,112,0.40) 49% 51%, transparent 51% 63%, rgba(244,184,112,0.36) 63% 65%, transparent 65% 76%, transparent 76% 78%, transparent 78%) 0 86%/100% 3% no-repeat;
  filter: blur(2.5px) saturate(0.85);
  opacity: 0.4;
}
.eh-hero__bg.exterior::after {
  /* deep amber pool */
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 110%, rgba(232,154,69,0.30), transparent 55%),
    linear-gradient(180deg, rgba(5,5,5,0.65) 0%, rgba(8,7,6,0.55) 65%, rgba(10,8,7,0.4) 100%);
}
.eh-hero__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(40px, 6vw, 64px);
}
.eh-hero__tagline {
  font-family: var(--eh-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  color: rgba(244,237,225,0.7);
  letter-spacing: 0.02em;
  max-width: 760px;
  line-height: 1.5;
}
.eh-hero__tagline .accent { color: var(--eh-amber); }

.eh-scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-family: var(--eh-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,237,225,0.5);
}
.eh-scroll-cue::after {
  content: ''; width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--eh-amber), transparent);
  animation: ehScrollPulse 2.4s ease-in-out infinite;
}
@keyframes ehScrollPulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ===========================================================
   SECTIONS
   =========================================================== */
.eh-section-head {
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: clamp(36px, 5vw, 72px);
}
.eh-section-head__row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

/* ===========================================================
   CARDS / TILES
   =========================================================== */
.eh-card {
  background: #0d0d0d;
  border: 1px solid var(--eh-line-2);
  padding: clamp(24px, 3vw, 40px);
  transition: border-color 0.3s, transform 0.3s;
}
.eh-card:hover {
  border-color: rgba(232,154,69,0.45);
  transform: translateY(-2px);
}

.eh-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #0a0a0a;
  border: 1px solid var(--eh-line-2);
  overflow: hidden;
}
.eh-tile__label {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--eh-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244,237,225,0.7);
}

/* ===========================================================
   SCENE LIBRARY — CSS/SVG photographic stand-ins
   (carried over from brand book, refined)
   =========================================================== */
.eh-scene { position: relative; overflow: hidden; background: #050505; isolation: isolate; }
.eh-scene[data-label]::after {
  content: attr(data-label);
  position: absolute; left: 18px; bottom: 14px;
  font-family: var(--eh-mono);
  font-size: 10px; letter-spacing: 0.28em;
  color: rgba(244,237,225,0.35);
  text-transform: uppercase;
  z-index: 5;
}
.eh-scene--interior {
  background:
    radial-gradient(ellipse 38% 30% at 78% 22%, rgba(244,184,112,0.42), transparent 70%),
    radial-gradient(ellipse 32% 24% at 18% 38%, rgba(232,154,69,0.28), transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 105%, rgba(232,154,69,0.18), transparent 65%),
    linear-gradient(180deg, #0a0807 0%, #07080a 55%, #0a0907 100%);
}
.eh-scene--interior::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 22%, rgba(244,237,225,0.04) 22.2%, transparent 22.5%) 0 0/100% 100% no-repeat,
    linear-gradient(180deg, transparent 0%, transparent 28%, rgba(244,237,225,0.04) 28.2%, transparent 28.5%) 0 0/100% 100% no-repeat,
    linear-gradient(180deg, transparent 0%, transparent 34%, rgba(244,237,225,0.04) 34.2%, transparent 34.5%) 0 0/100% 100% no-repeat,
    linear-gradient(180deg, transparent 70%, rgba(244,184,112,0.06) 92%, rgba(232,154,69,0.10) 100%);
  pointer-events: none;
}
.eh-scene--interior::before { z-index: 0; }
.eh-scene--detail {
  background:
    radial-gradient(ellipse 70% 60% at 30% 30%, rgba(244,237,225,0.06), transparent 60%),
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 60%, #050505 100%);
}
.eh-scene--detail::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(244,237,225,0.08) 0.8px, transparent 1.2px);
  background-size: 8px 8px;
  opacity: 0.85;
  pointer-events: none;
}
.eh-scene--detail::after {
  content: ''; position: absolute;
  right: 14%; bottom: 22%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--eh-amber);
  box-shadow: 0 0 8px rgba(232,154,69,0.9), 0 0 18px rgba(232,154,69,0.5);
}
.eh-scene--theater {
  background:
    radial-gradient(ellipse 50% 70% at 50% 30%, rgba(244,237,225,0.08), transparent 55%),
    linear-gradient(180deg, #0a0a0c 0%, #07070a 70%, #0c0a08 100%);
}
.eh-scene--theater::before {
  content: ''; position: absolute;
  left: 14%; right: 14%; top: 18%; bottom: 38%;
  background: linear-gradient(180deg, #f4cc8c 0%, #e89a45 50%, #c87a30 100%);
  box-shadow: 0 0 60px rgba(232,154,69,0.45), 0 0 120px rgba(232,154,69,0.25);
  z-index: 0;
}
.eh-scene--theater::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 26%;
  background:
    radial-gradient(ellipse 8% 60% at 18% 30%, #050505 0 60%, transparent 65%),
    radial-gradient(ellipse 8% 60% at 38% 30%, #050505 0 60%, transparent 65%),
    radial-gradient(ellipse 8% 60% at 62% 30%, #050505 0 60%, transparent 65%),
    radial-gradient(ellipse 8% 60% at 82% 30%, #050505 0 60%, transparent 65%),
    linear-gradient(180deg, transparent 0%, #050505 100%);
  z-index: 1;
}
.eh-scene--golf {
  background:
    linear-gradient(180deg, #2a2a2c 0%, #3a4040 28%, #3d5238 38%, #2c4527 60%, #1a2818 100%);
}
.eh-scene--golf::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 110% 70% at 50% 130%, rgba(120,180,90,0.45), transparent 55%),
    radial-gradient(circle at 8% 62%, rgba(20,32,18,0.85), transparent 14%),
    radial-gradient(circle at 92% 62%, rgba(20,32,18,0.85), transparent 14%),
    radial-gradient(circle at 18% 56%, rgba(20,32,18,0.7), transparent 8%),
    radial-gradient(circle at 82% 56%, rgba(20,32,18,0.7), transparent 8%);
}
.eh-scene--golf::after {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse 100% 90% at 50% 50%, transparent 70%, rgba(0,0,0,0.6) 100%);
}
.eh-scene--exterior {
  background:
    radial-gradient(ellipse 100% 60% at 50% 110%, rgba(232,154,69,0.20), transparent 60%),
    linear-gradient(180deg, #0c0d10 0%, #0a0a0c 60%, #050608 100%);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.eh-footer {
  background: #030303;
  border-top: 1px solid var(--eh-line);
  padding: clamp(48px, 7vw, 96px) var(--eh-shell-x) 32px;
}
.eh-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 64px;
}
@media (max-width: 880px) {
  .eh-footer__grid { grid-template-columns: 1fr 1fr; }
}
.eh-footer__col h3 {
  font-family: var(--eh-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--eh-amber);
  margin: 0 0 18px 0;
  font-weight: 500;
}
.eh-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: rgba(244,237,225,0.7); }
.eh-footer__col ul a:hover { color: var(--eh-amber); }
.eh-footer__bar {
  border-top: 1px solid var(--eh-line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px;
  font-family: var(--eh-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244,237,225,0.4);
}
.eh-footer__brand {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.eh-footer__tag {
  font-family: var(--eh-italic);
  font-style: italic;
  font-size: 15px;
  color: rgba(244,237,225,0.55);
  line-height: 1.5;
  max-width: 320px;
}

/* ===========================================================
   REVEAL / motion
   =========================================================== */
.eh-reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}
.eh-reveal.is-in {
  animation: ehRevealIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes ehRevealIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .eh-reveal { opacity: 1; transform: none; }
  .eh-reveal.is-in { animation: none; }
}

/* GSAP motion layer (js/motion.js) — when active it owns all reveals */
html.eh-gsap .eh-reveal, html.eh-gsap .eh-reveal.is-in { opacity: 1; transform: none; animation: none; }
.eh-line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.eh-line__in { display: block; will-change: transform; }

/* ===========================================================
   FORM FIELDS
   =========================================================== */
.eh-field { display: flex; flex-direction: column; gap: 8px; }
.eh-field label {
  font-family: var(--eh-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--eh-gold);
}
.eh-field input, .eh-field textarea, .eh-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--eh-line-2);
  color: var(--eh-ivory);
  font-family: var(--eh-text);
  font-size: 16px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.25s;
}
.eh-field input:focus, .eh-field textarea:focus, .eh-field select:focus {
  border-color: var(--eh-amber);
}
.eh-field textarea { resize: vertical; min-height: 120px; }

/* ===========================================================
   UTILS
   =========================================================== */
.eh-amber { color: var(--eh-amber); }
.eh-muted { color: rgba(244,237,225,0.55); }
.eh-num {
  font-family: var(--eh-italic);
  font-style: italic;
  font-weight: 300;
  color: var(--eh-amber);
}


/* ===========================================================
   SERVICES FLYOUT (mega-menu) + animated nav underline
   Injected by runtime.js. Reusable for other nav items later.
   =========================================================== */
.eh-nav__links { position: relative; }
.eh-nav__group { position: relative; display: inline-flex; align-items: center; }
.eh-nav__group > a { display: inline-flex; align-items: center; gap: 7px; }
.eh-nav__caret {
  width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px); transition: transform 0.35s cubic-bezier(.16,1,.3,1); opacity: 0.8;
}
.eh-nav__group.is-open .eh-nav__caret { transform: rotate(-135deg) translateY(-1px); }

/* animated underline indicator */
.eh-nav__underline {
  position: absolute; bottom: -7px; left: 0; width: 0; height: 2px;
  background: var(--eh-amber); opacity: 0; border-radius: 2px;
  box-shadow: 0 0 10px rgba(232,154,69,0.7);
  transition: width .32s cubic-bezier(.16,1,.3,1), left .32s cubic-bezier(.16,1,.3,1), opacity .3s ease;
  pointer-events: none;
}

/* panel */
.eh-flyout {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: linear-gradient(180deg, #0e0d0c 0%, #0a0908 100%);
  border: 1px solid var(--eh-line-2);
  box-shadow: 0 36px 90px rgba(0,0,0,0.65), 0 0 0 1px rgba(0,0,0,0.4);
  padding: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .36s cubic-bezier(.16,1,.3,1);
  z-index: 60;
}
.eh-flyout::before { content: ''; position: absolute; left: 0; right: 0; top: -18px; height: 18px; } /* hover bridge */
.eh-flyout::after { /* little pointer notch */
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 11px; height: 11px; background: #0e0d0c; border-left: 1px solid var(--eh-line-2); border-top: 1px solid var(--eh-line-2);
}
.eh-nav__group.is-open .eh-flyout { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }

.eh-flyout__head {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 8px 14px 12px; margin-bottom: 6px; border-bottom: 1px solid var(--eh-line);
}
.eh-flyout__eyebrow { font-family: var(--eh-mono); font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(244,237,225,0.5); }
.eh-flyout__all { font-family: var(--eh-display); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; color: var(--eh-amber); white-space: nowrap; }
.eh-flyout__all:hover { color: var(--eh-amber-hi); }

.eh-flyout__body { display: flex; flex-direction: column; }

.eh-flyout__item {
  display: flex; align-items: center; gap: 15px;
  padding: 11px 14px; text-decoration: none; border: 1px solid transparent;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s ease, transform .45s cubic-bezier(.16,1,.3,1), background .22s ease, border-color .22s ease;
}
.eh-nav__group.is-open .eh-flyout__item { opacity: 1; transform: none; }
.eh-flyout__item:hover { background: rgba(232,154,69,0.06); border-color: rgba(232,154,69,0.22); }
.eh-flyout__ic {
  width: 30px; height: 30px; flex: 0 0 auto; color: var(--eh-amber);
  display: flex; align-items: center; justify-content: center;
  transition: filter .3s ease, transform .3s ease;
}
.eh-flyout__ic svg { width: 26px; height: 26px; }
.eh-flyout__item:hover .eh-flyout__ic { filter: drop-shadow(0 0 8px rgba(232,154,69,0.6)); transform: translateY(-1px); }
.eh-flyout__tx { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.eh-flyout__name { font-family: var(--eh-display); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; color: var(--eh-ivory); }
.eh-flyout__desc { font-family: var(--eh-text); font-weight: 300; font-size: 12px; line-height: 1.35; color: rgba(244,237,225,0.58); }

/* stagger (default) */
.eh-nav__group.is-open .eh-flyout__body .eh-flyout__item:nth-child(1){ transition-delay: .05s; }
.eh-nav__group.is-open .eh-flyout__body .eh-flyout__item:nth-child(2){ transition-delay: .09s; }
.eh-nav__group.is-open .eh-flyout__body .eh-flyout__item:nth-child(3){ transition-delay: .13s; }
.eh-nav__group.is-open .eh-flyout__body .eh-flyout__item:nth-child(4){ transition-delay: .17s; }
.eh-nav__group.is-open .eh-flyout__body .eh-flyout__item:nth-child(5){ transition-delay: .21s; }
.eh-nav__group.is-open .eh-flyout__body .eh-flyout__item:nth-child(6){ transition-delay: .25s; }
.eh-flyout--nostagger .eh-flyout__item { transition-delay: 0s !important; }

/* ---- STYLE: rich (default) ---- */
.eh-flyout--rich { width: 360px; }

/* ---- STYLE: compact ---- */
.eh-flyout--compact { width: 250px; }
.eh-flyout--compact .eh-flyout__ic,
.eh-flyout--compact .eh-flyout__desc { display: none; }
.eh-flyout--compact .eh-flyout__item { padding: 10px 14px; }
.eh-flyout--compact .eh-flyout__name { font-size: 12px; }

/* ---- STYLE: two-column ---- */
.eh-flyout--twocol { width: 580px; }
.eh-flyout--twocol .eh-flyout__body { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 8px; }
.eh-flyout--twocol .eh-flyout__desc { display: none; }
.eh-flyout--twocol .eh-flyout__name { font-size: 12.5px; }

@media (prefers-reduced-motion: reduce){
  .eh-flyout, .eh-flyout__item, .eh-nav__underline, .eh-nav__caret { transition: none !important; }
  .eh-nav__group.is-open .eh-flyout__item { transform: none; }
}

/* ---- temporary preview style switcher ---- */


/* ---- STYLE: glow (icon + large word, amber bloom like the house mark) ---- */
.eh-flyout--glow { width: 300px; }
.eh-flyout--glow .eh-flyout__desc { display: none; }
.eh-flyout--glow .eh-flyout__item { gap: 18px; padding: 13px 16px; }
.eh-flyout--glow .eh-flyout__name {
  font-size: 17px; letter-spacing: 0.16em; color: var(--eh-ivory);
  transition: color .3s ease, text-shadow .3s ease;
}
.eh-flyout--glow .eh-flyout__ic {
  color: var(--eh-amber);
  filter:
    drop-shadow(0 0 5px rgba(244,184,112,0.65))
    drop-shadow(0 0 13px rgba(232,154,69,0.50))
    drop-shadow(0 0 26px rgba(232,154,69,0.30));
  transition: filter .35s ease, transform .35s ease;
}
.eh-flyout--glow .eh-flyout__item:hover { background: rgba(232,154,69,0.05); border-color: rgba(232,154,69,0.22); }
.eh-flyout--glow .eh-flyout__item:hover .eh-flyout__ic {
  transform: translateY(-1px);
  filter:
    drop-shadow(0 0 6px rgba(244,184,112,0.9))
    drop-shadow(0 0 18px rgba(232,154,69,0.65))
    drop-shadow(0 0 38px rgba(232,154,69,0.45));
}
.eh-flyout--glow .eh-flyout__item:hover .eh-flyout__name {
  color: #fff;
  text-shadow: 0 0 10px rgba(232,154,69,0.55), 0 0 24px rgba(232,154,69,0.32);
}


/* ---- STYLE: twocolglow (two columns + amber icon bloom) ---- */
.eh-flyout--twocolglow { width: 540px; }
.eh-flyout--twocolglow .eh-flyout__body { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 10px; }
.eh-flyout--twocolglow .eh-flyout__desc { display: none; }
.eh-flyout--twocolglow .eh-flyout__item { gap: 16px; padding: 13px 16px; }
.eh-flyout--twocolglow .eh-flyout__name {
  font-size: 15px; letter-spacing: 0.14em; color: var(--eh-ivory);
  transition: color .3s ease, text-shadow .3s ease;
}
.eh-flyout--twocolglow .eh-flyout__ic {
  color: var(--eh-amber);
  filter:
    drop-shadow(0 0 5px rgba(244,184,112,0.65))
    drop-shadow(0 0 13px rgba(232,154,69,0.50))
    drop-shadow(0 0 26px rgba(232,154,69,0.30));
  transition: filter .35s ease, transform .35s ease;
}
.eh-flyout--twocolglow .eh-flyout__item:hover { background: rgba(232,154,69,0.05); border-color: rgba(232,154,69,0.22); }
.eh-flyout--twocolglow .eh-flyout__item:hover .eh-flyout__ic {
  transform: translateY(-1px);
  filter:
    drop-shadow(0 0 6px rgba(244,184,112,0.9))
    drop-shadow(0 0 18px rgba(232,154,69,0.65))
    drop-shadow(0 0 38px rgba(232,154,69,0.45));
}
.eh-flyout--twocolglow .eh-flyout__item:hover .eh-flyout__name {
  color: var(--eh-ivory);
  text-shadow: 0 0 10px rgba(244,214,170,0.55), 0 0 22px rgba(232,154,69,0.4), 0 0 38px rgba(232,154,69,0.25);
}

/* brand logo strip */
.eh-brandstrip{display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-start;gap:32px 48px;padding:28px 0}
.eh-brandstrip__it{position:relative;display:flex;flex-direction:column;align-items:center}
.eh-brandstrip image-slot{width:clamp(100px,11vw,140px);height:52px;display:block}
.eh-brandstrip image-slot:not([data-filled]){outline:none}
.eh-brandstrip image-slot[data-filled]{opacity:0.88}
.eh-brandstrip .nm{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;pointer-events:none;font-family:var(--eh-display);font-weight:300;letter-spacing:0.16em;font-size:clamp(12px,1.3vw,16px);color:rgba(244,237,225,0.55);white-space:nowrap}
.eh-brandstrip__it:has(image-slot[data-filled]) .nm{display:none}

/* Quiet keyword subline under page H1s */
.eh-seo-sub { font-family: var(--eh-display); font-weight: 400; font-size: clamp(10px, 1vw, 12px); letter-spacing: 0.26em; text-transform: uppercase; color: rgba(244,237,225,0.55); margin: 16px 0 0; }

/* Skip-to-content (visible on keyboard focus) */
.eh-skip { position: fixed; top: -80px; left: 16px; z-index: 300; background: var(--eh-amber); color: var(--eh-ink); padding: 12px 18px; font-family: var(--eh-display); font-weight: 500; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; transition: top 0.2s; }
.eh-skip:focus { top: 16px; }

/* Mobile small-label legibility + 44px touch targets */
@media (max-width: 760px) {
  .eh-flyout__eyebrow { font-size: 11px; letter-spacing: 0.20em; }
  .eh-eyebrow         { font-size: 11px; letter-spacing: 0.20em; }
  /* .eh-nav__cta is display:none below 1100px — min-height only, so it stays hidden */
  .eh-nav__cta { min-height: 44px; }
  .eh-nav__tel,
  .eh-nav__menu-btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding-top: 8px; padding-bottom: 8px; }
  /* Pre-existing overflow fix: the 2-col footer grid could not fit 360px and set the page's horizontal scroll */
  .eh-footer__grid { grid-template-columns: 1fr; }
  .eh-footer__col { min-width: 0; }
  /* Mobile nav fit at 360px. Phone number keeps full size — calls matter more than the wordmark here.
     The lockup itself is rendered at real mobile type sizes by runtime.js (see isNarrow), not scaled. */
  .eh-nav { padding-left: 10px; padding-right: 10px; gap: 6px; }
  .eh-nav.scrolled { padding-left: 10px; padding-right: 10px; }
  .eh-nav__brand { min-width: 0; }
  .eh-nav__tel { padding-left: 8px; padding-right: 8px; letter-spacing: 0.04em; }
  .eh-nav__menu-btn { padding-left: 8px; padding-right: 8px; }
}
