/*
Theme Name:        Elevation Homes
Theme URI:         https://elevationhomesgroup.ca
Description:       Custom standalone WordPress theme for Elevation Homes Group Inc. Built for Elementor Free + Essential Addons for Elementor. No parent theme required. No dependencies.
Author:            Elevation Homes Group
Author URI:        https://elevationhomesgroup.ca
Version:           1.0.0
Requires at least: 6.0
Tested up to:      6.7
Requires PHP:      8.0
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       elevation-homes
Tags:              custom-logo, full-width-template, accessibility-ready, elementor
*/

/* ── BRAND TOKENS ───────────────────────────────────────────────────── */
:root {
  --eh-charcoal:      #1C1C1C;
  --eh-charcoal-card: #242424;
  --eh-process-dark:  #222222;
  --eh-slate:         #2E2E2E;
  --eh-gold:          #C9A84C;
  --eh-gold-light:    #E8C97A;
  --eh-gold-pale:     #F5EDD3;
  --eh-offwhite:      #F8F5F0;
  --eh-white:         #FFFFFF;
  --eh-mid-grey:      #8A8A8A;
  --eh-light-grey:    #DEDBD6;
  --eh-inner-navy:    #1A2A3A;
  --eh-ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --eh-font-display:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --eh-font-body:     'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --e-global-color-primary:   #C9A84C;
  --e-global-color-secondary: #1C1C1C;
  --e-global-color-text:      #2E2E2E;
  --e-global-color-accent:    #E8C97A;
}

/* ── RESET ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--eh-font-body);
  background-color: var(--eh-offwhite);
  color: var(--eh-slate);
  overflow-x: hidden;
  /* NO cursor:none — custom cursor removed completely */
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.site-header, .site-footer { display: none !important; }

/* ── ACCESSIBILITY ──────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--eh-gold); color: var(--eh-charcoal);
  padding: 8px 16px; font-size: 12px; font-weight: 700;
  z-index: 10000; transition: top .2s;
}
.skip-link:focus { top: 0; }
.seo-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── PAGE LOAD OVERLAY ──────────────────────────────────────────────── */
#eh-page-overlay {
  position: fixed; inset: 0;
  background: var(--eh-charcoal);
  z-index: 9997;
  display: flex; align-items: center; justify-content: center;
  animation: eh-overlayFade 0.6s ease forwards 0.5s;
  pointer-events: none;
}
#eh-page-overlay img {
  height: 80px; width: auto;
  filter: brightness(0) invert(1);
  animation: eh-loaderPulse 0.8s ease infinite alternate;
}
@keyframes eh-overlayFade { to { opacity: 0; visibility: hidden; } }
@keyframes eh-loaderPulse {
  from { transform: scale(0.92); opacity: 0.6; }
  to   { transform: scale(1);    opacity: 1; }
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────────────────── */
#eh-progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--eh-gold);
  z-index: 10001; pointer-events: none;
}

/* ── NO CUSTOM CURSOR — removed completely ──────────────────────────── */
#eh-cursor, #eh-cursor-ring { display: none !important; }

/* ── NAVIGATION ─────────────────────────────────────────────────────── */
#eh-main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  transition: background .4s, height .3s, box-shadow .4s;
}
#eh-main-nav.eh-scrolled {
  background: rgba(28,28,28,0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,.2);
  height: 68px;
}

/* Logo */
.eh-logo-link {
  display: flex; align-items: center;
  text-decoration: none; line-height: 1; flex-shrink: 0;
}
.eh-logo-link img, .eh-logo-link .custom-logo {
  height: 52px; width: auto;
  filter: brightness(0) invert(1);
  display: block; transition: height .3s;
}
#eh-main-nav.eh-scrolled .eh-logo-link img,
#eh-main-nav.eh-scrolled .eh-logo-link .custom-logo { height: 44px; }
.eh-logo-link figure { margin: 0; }

/* Nav links */
.eh-nav-links {
  display: flex; align-items: center;
  gap: 32px; list-style: none; margin: 0; padding: 0;
}
.eh-nav-links > li { position: relative; }

.eh-nav-links > li > a {
  font-family: var(--eh-font-body);
  font-weight: 700; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  position: relative; padding-bottom: 4px;
  transition: color .3s;
  display: flex; align-items: center;
  white-space: nowrap;
}
.eh-nav-links > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--eh-gold);
  transition: width .3s var(--eh-ease);
}
.eh-nav-links > li > a:hover,
.eh-nav-links > li:hover > a { color: #fff; }
.eh-nav-links > li > a:hover::after,
.eh-nav-links > li:hover > a::after { width: 100%; }

/* Dropdown arrow — fixed spacing */
.eh-has-dropdown > a::after {
  /* override the underline pseudo with chevron for this item */
  content: none;
}
.eh-has-dropdown > a {
  padding-right: 16px; /* space for arrow */
}
.eh-has-dropdown > a .eh-arrow {
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 8px; flex-shrink: 0;
  transition: transform .3s;
}
.eh-has-dropdown:hover > a .eh-arrow {
  transform: rotate(-135deg) translateY(2px);
}
/* Keep underline effect on Services */
.eh-has-dropdown > a::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--eh-gold);
  transition: width .3s var(--eh-ease);
}
.eh-has-dropdown:hover > a::before { width: 100%; }

/* SUBMENU — fixed hover gap with padding-top bridge */
.eh-submenu {
  position: absolute; top: 100%; left: -20px;
  /* CRITICAL: padding-top creates invisible bridge so cursor
     doesn't lose hover when moving from link to submenu */
  padding: 8px 0 8px 0;
  margin-top: 0;
  background: rgba(28,28,28,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,.15);
  border-top: 2px solid var(--eh-gold);
  min-width: 230px;
  list-style: none;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(4px);
  transition: opacity .25s, transform .25s, visibility .25s;
  border-radius: 0 0 2px 2px;
}
/* The bridge: extend hover area between nav link and submenu */
.eh-has-dropdown::after {
  content: ''; 
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 12px; /* covers the gap */
  background: transparent;
}
.eh-has-dropdown:hover .eh-submenu,
.eh-has-dropdown:focus-within .eh-submenu {
  opacity: 1; visibility: visible;
  pointer-events: auto; transform: translateY(0);
}
.eh-submenu li a {
  display: block;
  font-family: var(--eh-font-body);
  font-weight: 700; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: 11px 24px;
  transition: color .25s, background .25s, padding-left .25s;
  white-space: nowrap;
  border-left: 2px solid transparent;
}
.eh-submenu li a:hover {
  color: var(--eh-gold);
  background: rgba(201,168,76,.06);
  padding-left: 28px;
  border-left-color: var(--eh-gold);
}

/* Nav CTA */
.eh-nav-cta {
  font-family: var(--eh-font-body);
  font-weight: 700; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--eh-gold); color: #fff;
  padding: 10px 22px; border-radius: 2px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background .3s, color .3s;
}
.eh-nav-cta:hover { background: var(--eh-gold-light); color: var(--eh-charcoal); }

/* Hamburger */
.eh-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
  /* Extra padding improves tap target on mobile */
}
.eh-hamburger span {
  display: block; width: 24px; height: 1.5px; background: #fff;
  transition: transform .3s, opacity .3s;
}

/* ── MOBILE MENU ────────────────────────────────────────────────────── */
#eh-mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--eh-charcoal);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: flex-start;
  overflow-y: auto;
  padding: 80px 24px 48px;
  gap: 0;
}
#eh-mobile-menu.eh-open { display: flex; }

/* Close button — fixed position so it doesn't scroll */
.eh-mobile-close {
  position: fixed; top: 24px; right: 28px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  background: rgba(255,255,255,.1); border: none;
  border-radius: 50%; cursor: pointer;
  z-index: 1001;
  transition: background .3s;
}
.eh-mobile-close:hover { background: rgba(201,168,76,.2); color: var(--eh-gold); }

/* Mobile menu links */
#eh-mobile-menu a {
  font-family: var(--eh-font-body);
  font-weight: 700; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.82); text-decoration: none;
  padding: 14px 0; width: 100%; text-align: center;
  transition: color .3s;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
#eh-mobile-menu a:hover { color: var(--eh-gold); }
#eh-mobile-menu a:first-of-type { border-top: 1px solid rgba(255,255,255,.05); }

.eh-mobile-divider {
  width: 40px; height: 1px; background: rgba(201,168,76,.3);
  margin: 8px auto; flex-shrink: 0;
}
.eh-mobile-sub {
  font-size: 9px !important; letter-spacing: 2px !important;
  color: rgba(255,255,255,.45) !important;
  padding: 10px 0 !important;
}
.eh-mobile-sub:hover { color: var(--eh-gold) !important; }

#eh-mobile-menu .eh-nav-cta {
  margin-top: 16px; width: auto !important;
  text-align: center; border-bottom: none !important;
  padding: 12px 28px !important;
}

/* ── MAIN CONTENT — hero goes full viewport behind nav ───────────────── */
#eh-main-content { padding-top: 0 !important; margin-top: 0 !important; }

/* ── ELEMENTOR OVERRIDES ─────────────────────────────────────────────── */
.elementor-section.elementor-section-full_width > .elementor-container {
  max-width: 100%;
}
.eh-hero-section, .eh-inner-hero-section {
  position: relative; overflow: hidden;
}
.eh-hero-section .elementor-widget-wrap,
.eh-inner-hero-section .elementor-widget-wrap {
  position: relative; z-index: 2;
}

/* Section backgrounds */
.eh-section-offwhite, .eh-bg-offwhite { background-color: var(--eh-offwhite) !important; }
.eh-section-charcoal, .eh-bg-charcoal { background-color: var(--eh-charcoal) !important; }
.eh-section-process,  .eh-bg-process  { background-color: var(--eh-process-dark) !important; }
.eh-section-white,    .eh-bg-white    { background-color: var(--eh-white) !important; }
.eh-section-navy,     .eh-bg-navy     { background-color: var(--eh-inner-navy) !important; }

.eh-gold-border-top {
  border-top: 1px solid transparent;
  border-image: linear-gradient(to right, transparent, rgba(201,168,76,.35), transparent) 1;
}

/* ── HERO GRAIN OVERLAY ──────────────────────────────────────────────── */
.eh-hero-section::after {
  content: ''; position: absolute; inset: 0;
  opacity: .35; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px;
}
.eh-hero-section::before {
  content: ''; position: absolute;
  bottom: 80px; right: 80px;
  width: 80px; height: 80px;
  border-right: 1px solid rgba(201,168,76,.5);
  border-bottom: 1px solid rgba(201,168,76,.5);
  z-index: 2; pointer-events: none;
}

/* ── INNER HERO ──────────────────────────────────────────────────────── */
.eh-inner-hero-section {
  position: relative; min-height: 55vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.eh-inner-hero-section::after {
  content: ''; position: absolute; inset: 0;
  opacity: .3; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 200px;
}
/* SPACING FIX: inner hero bottom padding so next section has breathing room */
.eh-inner-hero-content {
  padding: 120px 80px 80px;
  max-width: 900px;
  position: relative; z-index: 2;
}
.eh-inner-hero-content h1 {
  font-family: var(--eh-font-display) !important;
  font-weight: 300 !important;
  font-size: clamp(48px, 6vw, 80px) !important;
  line-height: 1 !important; color: #fff !important;
  margin-bottom: 20px !important;
}
.eh-inner-hero-content p {
  font-family: var(--eh-font-body);
  font-weight: 300; font-size: 15px;
  line-height: 1.85; color: rgba(255,255,255,.75);
  max-width: 600px;
}

/* SPACING FIX: gap between inner hero and following section */
.eh-inner-hero-section + .elementor-section,
.eh-inner-hero-section + section {
  margin-top: 0;
}
/* The split section after inner hero needs its own padding */
.eh-section-offwhite .eh-split-text,
.eh-section-white .eh-split-text {
  padding-top: 80px;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────────────── */
.eh-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--eh-ease), transform .8s var(--eh-ease);
}
.eh-reveal.eh-visible { opacity: 1; transform: translateY(0); }
.eh-d1 { transition-delay: .1s; }
.eh-d2 { transition-delay: .2s; }
.eh-d3 { transition-delay: .3s; }

/* ── OVERLINE ────────────────────────────────────────────────────────── */
.eh-overline {
  font-family: var(--eh-font-body); font-weight: 700; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--eh-gold);
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.eh-overline-center {
  font-family: var(--eh-font-body); font-weight: 700; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--eh-gold);
  text-align: center; margin-bottom: 18px;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.eh-btn {
  display: inline-flex; align-items: center;
  font-family: var(--eh-font-body) !important;
  font-weight: 700 !important; font-size: 10px !important;
  letter-spacing: 2px !important; text-transform: uppercase !important;
  border-radius: 2px !important; text-decoration: none;
  cursor: pointer; line-height: 1;
  transition: all .3s var(--eh-ease);
}
.eh-btn-primary { background: var(--eh-gold); color: #fff !important; padding: 15px 32px; border: none; }
.eh-btn-primary:hover { background: var(--eh-gold-light); color: var(--eh-charcoal) !important; transform: translateY(-1px); }
.eh-btn-ghost { background: transparent; color: rgba(255,255,255,.85) !important; padding: 14px 32px; border: 1px solid rgba(255,255,255,.35); }
.eh-btn-ghost:hover { border-color: rgba(255,255,255,.8); color: #fff !important; background: rgba(255,255,255,.07); }
.eh-btn-dark { background: transparent; color: var(--eh-charcoal) !important; padding: 13px 28px; border: 1.5px solid var(--eh-charcoal); }
.eh-btn-dark:hover { background: var(--eh-charcoal); color: #fff !important; }
.eh-btn-ic { background: transparent; color: var(--eh-gold-light) !important; padding: 16px 36px; border: 1px solid rgba(201,168,76,.4); letter-spacing: 3px !important; }
.eh-btn-ic:hover { border-color: var(--eh-gold); background: rgba(201,168,76,.08); }

.elementor-widget-button .elementor-button {
  font-family: var(--eh-font-body) !important;
  font-weight: 700 !important; font-size: 10px !important;
  letter-spacing: 2px !important; text-transform: uppercase !important;
  border-radius: 2px !important; transition: all .3s var(--eh-ease) !important;
}

/* ── BRAND STATEMENT ─────────────────────────────────────────────────── */
.eh-brand-link {
  font-family: var(--eh-font-body); font-weight: 700; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--eh-charcoal); text-decoration: none;
  border-bottom: 1.5px solid var(--eh-gold); padding-bottom: 2px;
  transition: color .3s;
}
.eh-brand-link:hover { color: var(--eh-gold); }

/* ── STAT GRID ───────────────────────────────────────────────────────── */
.eh-stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--eh-light-grey); margin-bottom: 24px;
}
.eh-stat-cell {
  padding: 28px 22px; position: relative; transition: background .3s;
}
.eh-stat-cell::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--eh-gold);
  transform: scaleX(0); transition: transform .3s var(--eh-ease); transform-origin: left;
}
.eh-stat-cell:hover { background: var(--eh-white); }
.eh-stat-cell:hover::after { transform: scaleX(1); }
.eh-stat-number {
  font-family: var(--eh-font-display); font-weight: 300; font-size: 44px;
  color: var(--eh-charcoal); line-height: 1; display: block; margin-bottom: 6px;
}
.eh-stat-label {
  font-family: var(--eh-font-body); font-weight: 700; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--eh-mid-grey);
}
.eh-pull-quote {
  background: var(--eh-white); padding: 22px 26px;
  font-family: var(--eh-font-display); font-size: 18px;
  font-style: italic; color: var(--eh-slate);
}

/* ── SERVICES GRID ───────────────────────────────────────────────────── */
.eh-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.06); margin-top: 48px;
}
.eh-service-card {
  background: var(--eh-charcoal); padding: 46px 38px;
  position: relative; overflow: hidden; transition: background .45s var(--eh-ease);
}
.eh-service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--eh-gold); transform: scaleX(0);
  transition: transform .45s var(--eh-ease); transform-origin: left;
}
.eh-service-card:hover { background: var(--eh-charcoal-card); }
.eh-service-card:hover::before { transform: scaleX(1); }
.eh-service-icon {
  width: 46px; height: 46px; margin-bottom: 22px; display: block;
  stroke: rgba(201,168,76,.85); stroke-width: 1.2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.eh-service-card h3 {
  font-family: var(--eh-font-display) !important; font-weight: 400 !important;
  font-size: 25px !important; color: #fff !important;
  line-height: 1.1 !important; margin-bottom: 14px !important;
}
.eh-service-card p {
  font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.48); margin: 0;
}

/* ── FEATURED PROJECT ────────────────────────────────────────────────── */
.eh-project-tag {
  display: inline-block; font-family: var(--eh-font-body); font-weight: 700; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--eh-gold-pale); color: var(--eh-charcoal);
  padding: 6px 14px; border-radius: 2px; margin-bottom: 22px; width: fit-content;
}
.eh-project-meta {
  font-family: var(--eh-font-body); font-weight: 700; font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--eh-mid-grey); margin-bottom: 22px;
}

/* ── PROCESS STEPS ───────────────────────────────────────────────────── */
.eh-process-wrap { position: relative; overflow: hidden; }
.eh-process-ghost {
  position: absolute; bottom: -40px; right: -20px;
  font-family: var(--eh-font-display); font-size: 280px;
  font-weight: 300; color: rgba(255,255,255,.02);
  pointer-events: none; line-height: 1; user-select: none;
}
.eh-process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; margin-top: 64px; z-index: 1;
}
.eh-process-steps::before {
  content: ''; position: absolute;
  top: 24px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 1px; background: rgba(201,168,76,.28);
}
.eh-process-step { text-align: center; padding: 0 20px; position: relative; }
.eh-step-circle {
  width: 48px; height: 48px; border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; background: var(--eh-process-dark);
  transition: background .3s, border-color .3s;
}
.eh-step-circle:hover { background: var(--eh-gold); border-color: var(--eh-gold); }
.eh-step-circle:hover .eh-step-num { color: #fff; }
.eh-step-num { font-family: var(--eh-font-display); font-weight: 300; font-size: 17px; color: var(--eh-gold); }
.eh-step-title { font-family: var(--eh-font-body); font-weight: 700; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.eh-step-body { font-size: 13px; line-height: 1.85; color: rgba(255,255,255,.42); }

/* ── TESTIMONIALS ────────────────────────────────────────────────────── */
.eh-testi-wrap { max-width: 840px; margin: 0 auto; text-align: center; }
.eh-testi-slide { display: none; animation: eh-fadeSlide .6s var(--eh-ease) forwards; }
.eh-testi-slide.eh-active { display: block; }
@keyframes eh-fadeSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.eh-quote-mark { display: block; font-family: var(--eh-font-display); font-weight: 300; font-size: 80px; color: rgba(201,168,76,.28); line-height: .5; margin-bottom: 24px; }
.eh-quote-text { font-family: var(--eh-font-display); font-weight: 300; font-style: italic; font-size: clamp(20px, 2vw, 26px); line-height: 1.6; color: var(--eh-slate); margin-bottom: 32px; }
.eh-quote-author { font-family: var(--eh-font-body); font-weight: 700; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--eh-mid-grey); }
.eh-quote-role { font-family: var(--eh-font-body); font-size: 12px; color: var(--eh-mid-grey); margin-top: 4px; }
.eh-testi-dots { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 36px; }
.eh-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--eh-light-grey); cursor: pointer; border: none; padding: 0; transition: background .3s, transform .3s; }
.eh-dot.eh-active { background: var(--eh-gold); transform: scale(1.4); }

/* ── INNER CIRCLE ────────────────────────────────────────────────────── */
.eh-ic-wrap { position: relative; overflow: hidden; text-align: center; }
.eh-ic-wrap::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(201,168,76,.025) 40px, rgba(201,168,76,.025) 41px); pointer-events: none; }
.eh-ic-wrap::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(201,168,76,.06) 0%, transparent 70%), radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,.05) 0%, transparent 70%); pointer-events: none; }
.eh-ic-crest { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 0; }
.eh-ic-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; }
.eh-ic-ring:nth-child(1) { width: 480px; height: 480px; border: 1px solid rgba(201,168,76,.07); }
.eh-ic-ring:nth-child(2) { width: 424px; height: 424px; border: 1px solid rgba(201,168,76,.05); }
.eh-ic-ring:nth-child(3) { width: 368px; height: 368px; border: 1px solid rgba(201,168,76,.03); }
.eh-ic-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.eh-ic-monogram { font-family: var(--eh-font-body); font-weight: 700; font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: rgba(232,201,122,.55); margin-bottom: 28px; }
.eh-ic-h2 { font-family: var(--eh-font-display) !important; font-weight: 300 !important; font-size: clamp(42px, 5vw, 68px) !important; line-height: 1 !important; letter-spacing: -.5px !important; color: #fff !important; margin-bottom: 0 !important; }
.eh-ic-h2 em { font-style: italic; color: var(--eh-gold-light); }
.eh-ic-divider { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 26px 0; }
.eh-ic-divider::before, .eh-ic-divider::after { content: ''; width: 56px; height: 1px; background: rgba(201,168,76,.28); }
.eh-ic-diamond { width: 6px; height: 6px; background: var(--eh-gold); transform: rotate(45deg); display: inline-block; }
.eh-ic-body { font-size: 15px; line-height: 1.9; color: rgba(255,255,255,.52); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── GALLERY GRID ────────────────────────────────────────────────────── */
.eh-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 260px); gap: 2px; }
.eh-gallery-item { position: relative; overflow: hidden; }
.eh-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--eh-ease); }
.eh-gallery-overlay { position: absolute; inset: 0; background: rgba(28,28,28,.55); opacity: 0; transition: opacity .4s; display: flex; align-items: flex-end; }
.eh-gallery-caption { font-family: var(--eh-font-body); font-weight: 700; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.88); padding: 18px 22px; transform: translateY(8px); transition: transform .4s var(--eh-ease); }
.eh-gallery-item:hover img { transform: scale(1.06); }
.eh-gallery-item:hover .eh-gallery-overlay { opacity: 1; }
.eh-gallery-item:hover .eh-gallery-caption { transform: translateY(0); }

/* ── CTA BAND ────────────────────────────────────────────────────────── */
.eh-cta-wrap { position: relative; overflow: hidden; text-align: center; }
.eh-cta-wrap::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 1.5px; background: var(--eh-gold); }
.eh-cta-ghost { position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); font-family: var(--eh-font-display); font-size: 200px; font-weight: 300; color: rgba(255,255,255,.018); pointer-events: none; white-space: nowrap; line-height: 1; user-select: none; }
.eh-cta-wrap > * { position: relative; z-index: 1; }
.eh-cta-h2 { font-family: var(--eh-font-display) !important; font-weight: 300 !important; font-size: clamp(36px, 4vw, 58px) !important; color: #fff !important; margin-bottom: 18px !important; }
.eh-cta-sub { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.52); max-width: 560px; margin: 0 auto 40px; }
.eh-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SPLIT LAYOUT (inner pages) ──────────────────────────────────────── */
.eh-split-text { padding: 80px 64px; }
.eh-split-text h2 { font-family: var(--eh-font-display); font-weight: 400; font-size: clamp(32px, 3.5vw, 50px); color: var(--eh-charcoal); line-height: 1.1; margin-bottom: 24px; }
.eh-split-text p { font-size: 14px; line-height: 1.9; color: #555; margin-bottom: 18px; }
.eh-split-text p:last-of-type { margin-bottom: 32px; }

/* ── CONTACT ─────────────────────────────────────────────────────────── */
.eh-contact-form-pad { padding: 80px 64px 80px 80px; }
.eh-contact-info-pad { padding: 80px 80px 80px 64px; background: var(--eh-offwhite); }
.eh-contact-h2 { font-family: var(--eh-font-display); font-weight: 400; font-size: clamp(28px, 3vw, 44px); color: var(--eh-charcoal); line-height: 1.1; margin-bottom: 12px; }
.eh-contact-detail { padding: 18px 0; border-bottom: 1px solid var(--eh-light-grey); }
.eh-contact-detail:last-of-type { border-bottom: none; }
.eh-contact-label { font-family: var(--eh-font-body); font-weight: 700; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--eh-mid-grey); margin-bottom: 6px; }
.eh-contact-value { font-family: var(--eh-font-display); font-size: 22px; font-weight: 300; color: var(--eh-charcoal); display: block; text-decoration: none; transition: color .3s; }
.eh-contact-value:hover { color: var(--eh-gold); }
.eh-social-links { margin-top: 28px; }
.eh-social-link { display: inline-block; font-family: var(--eh-font-body); font-weight: 700; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--eh-charcoal); text-decoration: none; border-bottom: 1.5px solid var(--eh-gold); padding-bottom: 2px; margin-right: 16px; margin-bottom: 12px; transition: color .3s; }
.eh-social-link:hover { color: var(--eh-gold); }
.eh-city-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.eh-city-pill { font-family: var(--eh-font-body); font-weight: 700; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); border: 1px solid rgba(201,168,76,.2); padding: 8px 16px; border-radius: 2px; transition: border-color .3s, color .3s; }
.eh-city-pill:hover { border-color: rgba(201,168,76,.5); color: var(--eh-gold); }

/* ── WPFORMS ─────────────────────────────────────────────────────────── */
.wpforms-container .wpforms-form input:not([type=submit]),
.wpforms-container .wpforms-form select,
.wpforms-container .wpforms-form textarea {
  font-family: var(--eh-font-body) !important; font-weight: 300 !important; font-size: 14px !important;
  color: var(--eh-slate) !important; background: #fff !important;
  border: 1px solid var(--eh-light-grey) !important; border-radius: 2px !important;
  padding: 12px 16px !important; outline: none !important;
  transition: border-color .3s !important; width: 100% !important; box-sizing: border-box !important;
}
.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form select:focus,
.wpforms-container .wpforms-form textarea:focus {
  border-color: var(--eh-gold) !important; box-shadow: 0 0 0 3px rgba(201,168,76,.1) !important;
}
.wpforms-container label.wpforms-field-label {
  font-family: var(--eh-font-body) !important; font-weight: 700 !important; font-size: 9px !important;
  letter-spacing: 2px !important; text-transform: uppercase !important;
  color: var(--eh-mid-grey) !important; margin-bottom: 8px !important; display: block !important;
}
.wpforms-submit-container button[type=submit] {
  font-family: var(--eh-font-body) !important; font-weight: 700 !important; font-size: 10px !important;
  letter-spacing: 2px !important; text-transform: uppercase !important;
  background: var(--eh-gold) !important; color: #fff !important;
  border: none !important; border-radius: 2px !important;
  padding: 15px 36px !important; cursor: pointer !important;
  transition: background .3s !important; width: 100% !important; margin-top: 8px !important;
}
.wpforms-submit-container button[type=submit]:hover {
  background: var(--eh-gold-light) !important; color: var(--eh-charcoal) !important;
}

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.eh-footer { background: var(--eh-charcoal) !important; border-top: 1px solid rgba(201,168,76,.2); padding: 72px 64px 40px; }
.eh-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.eh-footer-logo { height: 64px; width: auto; filter: brightness(0) invert(1); opacity: .9; display: block; margin-bottom: 20px; }
.eh-footer-tagline { font-family: var(--eh-font-display); font-style: italic; font-size: 16px; color: rgba(255,255,255,.5); margin-bottom: 24px; }
.eh-footer-contact { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,.4); }
.eh-footer-contact a { color: inherit; text-decoration: none; transition: color .3s; }
.eh-footer-contact a:hover { color: var(--eh-gold); }
.eh-footer-col-head, .footer-col-head { font-family: var(--eh-font-body); font-weight: 700; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--eh-gold); margin-bottom: 24px; display: block; }
.eh-footer-links, .footer-links { list-style: none; padding: 0; margin: 0; }
.eh-footer-links li, .footer-links li { margin-bottom: 12px; }
.eh-footer-links a, .footer-links a { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .3s; }
.eh-footer-links a:hover, .footer-links a:hover { color: rgba(255,255,255,.8); }
.eh-service-area { font-size: 12px; line-height: 1.9; color: rgba(255,255,255,.3); margin-top: 20px; }
.eh-footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.eh-footer-copy { font-size: 11px; color: rgba(255,255,255,.25); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  #eh-main-nav { padding: 0 40px; }
  .eh-nav-links { gap: 24px; }
  .eh-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .eh-services-grid { grid-template-columns: repeat(2, 1fr); }
  .eh-contact-form-pad { padding: 80px 40px; }
  .eh-contact-info-pad { padding: 80px 40px; }
}

@media (max-width: 768px) {
  /* Hide desktop nav */
  .eh-nav-links, .eh-nav-cta { display: none; }
  .eh-hamburger { display: flex; }
  #eh-main-nav { padding: 0 20px; height: 70px; }
  .eh-logo-link img, .eh-logo-link .custom-logo { height: 40px; }

  /* Hero */
  .eh-hero-section::before { display: none; }
  .eh-inner-hero-content { padding: 100px 24px 60px; }

  /* Sections */
  .eh-services-grid { grid-template-columns: 1fr; }
  .eh-stat-grid { grid-template-columns: 1fr; }
  .eh-stat-cell { border-right: none !important; border-bottom: 1px solid var(--eh-light-grey); }
  .eh-stat-cell:last-child { border-bottom: none; }
  .eh-process-steps { grid-template-columns: 1fr 1fr; }
  .eh-process-steps::before { display: none; }
  .eh-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .eh-gallery-item { height: 200px; }
  .eh-cta-btns { flex-direction: column; align-items: center; }
  .eh-cta-ghost, .eh-process-ghost { display: none; }
  .eh-split-text { padding: 40px 24px; }
  .eh-contact-form-pad { padding: 60px 24px; }
  .eh-contact-info-pad { padding: 60px 24px; }
  .eh-footer { padding: 60px 24px 32px; }
  .eh-footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }

  /* IC member page table */
  table { font-size: 11px; }
  table th, table td { padding: 10px 12px !important; }
}
