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

:root {
  --cream: #FAF8F4;
  --sand: #EDE8DF;
  --taupe: #C4B89A;
  --bronze: #9C7E4A;
  --bronze-dark: #7A6138;
  --sage: #5C7A6B;
  --sage-dark: #4A6357;
  --sage-light: #EBF0ED;
  --charcoal: #2C2C2C;
  --mid-gray: #6B6560;
  --light-gray: #A8A39D;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --page-px: 20px;
  --section-py: 72px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════
   UTILITY
═══════════════════════════════════ */
.container { padding-left: var(--page-px); padding-right: var(--page-px); }
.section-label {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze); font-weight: 500; margin-bottom: 10px;
}
.section-title {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  line-height: 1.14; color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--sage); }
.section-title-w { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: white; line-height: 1.14; }
.section-title-w em { font-style: italic; color: var(--taupe); }

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ═══════════════════════════════════
   NAV — Fixed, frosted
═══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(92,122,107,0.92);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--page-px); height: 56px;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: white; letter-spacing: 0.02em; }
.nav-logo-sub { font-size: 0.46rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 300; margin-top: 1px; }

.nav-cta-mobile {
  background: var(--bronze); color: white; font-size: 0.62rem;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 14px;
  border-radius: 3px; text-decoration: none; font-weight: 500;
  transition: background 0.2s; white-space: nowrap;
}
.nav-cta-mobile:hover { background: var(--bronze-dark); }

.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none; margin-left: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: white;
  border-radius: 1px; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Desktop nav links — hidden on mobile */
.nav-links { display: none; list-style: none; height: 100%; align-items: center; gap: 0; }
.nav-link {
  padding: 0 18px; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.62); text-decoration: none; height: 100%;
  display: flex; align-items: center; gap: 5px; transition: color 0.2s;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav-link:hover { color: white; border-bottom-color: var(--taupe); }
.nav-arrow { font-size: 0.5rem; opacity: 0.6; transition: transform 0.2s; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.nav-cta-desktop {
  margin-left: 16px; background: var(--bronze); color: white !important;
  padding: 10px 22px !important; border-radius: 2px; height: auto !important;
  border-bottom: none !important; transition: background 0.2s !important;
  font-size: 0.68rem !important;
}
.nav-cta-desktop:hover { background: var(--bronze-dark) !important; }

/* ── Mobile Drawer ── */
.mobile-drawer {
  position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
  background: var(--sage);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto; z-index: 499;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 40px;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-section-label {
  font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); padding: 28px var(--page-px) 8px;
}
.drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--page-px); color: white; text-decoration: none;
  font-size: 0.95rem; font-weight: 300; letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s;
}
.drawer-link:active { background: rgba(255,255,255,0.06); }
.drawer-link-arrow { font-size: 0.55rem; color: rgba(255,255,255,0.3); }
.drawer-cta {
  display: block; margin: 28px var(--page-px) 0; text-align: center;
  background: var(--bronze); color: white; padding: 16px; border-radius: 4px;
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; font-weight: 500; transition: background 0.2s;
}
.drawer-cta:active { background: var(--bronze-dark); }
.drawer-phone {
  display: block; text-align: center; margin-top: 14px;
  color: rgba(255,255,255,0.45); font-size: 0.78rem; text-decoration: none;
  letter-spacing: 0.04em;
}

/* ── Desktop Mega Menus ── */
.mega-menu {
  position: absolute; top: calc(100% + 1px); left: 50%; transform: translateX(-50%);
  background: white; box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  border-top: 2px solid var(--bronze); min-width: 640px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s, visibility 0.22s, transform 0.22s;
  transform: translateX(-50%) translateY(-6px);
}
.nav-item:hover .mega-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-inner { display: grid; padding: 32px 36px; }
.mega-cols { display: grid; }
.mega-cols-2 { grid-template-columns: 1fr 1fr; }
.mega-cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.mega-col { padding: 0 24px; border-right: 1px solid var(--sand); }
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; }
.mega-col-head {
  font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--sand); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.mega-col-head::before { content:''; width:14px; height:1px; background:var(--bronze); display:block; }
.mega-link { display: block; padding: 8px 0; text-decoration: none; border-bottom: 1px solid rgba(0,0,0,0.04); }
.mega-link:last-child { border-bottom: none; }
.mega-link-name { font-family: var(--serif); font-size: 0.95rem; font-weight: 500; color: var(--charcoal); transition: color 0.2s; display: block; }
.mega-link-desc { font-size: 0.72rem; color: var(--mid-gray); font-weight: 300; margin-top: 1px; display: block; }
.mega-link:hover .mega-link-name { color: var(--sage); }
.mega-cta-strip { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--sand); display: flex; justify-content: space-between; align-items: center; }
.mega-cta-text { font-size: 0.78rem; color: var(--mid-gray); font-weight: 300; }
.mega-cta-btn { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; background: var(--sage); color: white; padding: 8px 18px; border-radius: 2px; text-decoration: none; transition: background 0.2s; }
.mega-cta-btn:hover { background: var(--sage-dark); }
.simple-menu {
  position: absolute; top: calc(100% + 1px); left: 0;
  background: white; box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  border-top: 2px solid var(--bronze); min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s, visibility 0.22s, transform 0.22s;
  transform: translateY(-6px); padding: 12px 0;
}
.nav-item:hover .simple-menu { opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0); }
.simple-link { display: block; padding: 10px 24px; font-size: 0.8rem; color: var(--charcoal); text-decoration: none; font-weight: 300; transition: background 0.15s; }
.simple-link:hover { background: var(--sage-light); color: var(--sage); }

/* ═══════════════════════════════════
   HERO — Full bleed, stacked mobile
═══════════════════════════════════ */
.hero {
  padding: calc(56px + 48px) var(--page-px) 0;
  background: var(--sage); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(74,99,87,0.5) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.12'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content { position: relative; z-index: 1; padding-bottom: 56px; }

.hero-eyebrow {
  font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; animation: heroFadeUp 0.6s ease 0.1s forwards;
}
.hero-eyebrow::before { content:''; width:20px; height:1px; background:rgba(255,255,255,0.3); display:block; }

.hero-h1 {
  font-family: var(--serif); font-size: clamp(2.6rem, 10vw, 3.2rem);
  font-weight: 300; line-height: 1.08; color: white; margin-bottom: 20px;
  opacity: 0; animation: heroFadeUp 0.6s ease 0.2s forwards;
  text-align: center;
}
.hero-h1 br { display: none; }
.hero-h1 em { font-style: italic; color: var(--taupe); }

.hero-eyebrow { justify-content: center; }

.hero-body {
  font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.6);
  line-height: 1.72; margin-bottom: 32px; max-width: 400px;
  opacity: 0; animation: heroFadeUp 0.6s ease 0.3s forwards;
  text-align: center; margin-left: auto; margin-right: auto;
}

.hero-btns {
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0; animation: heroFadeUp 0.6s ease 0.4s forwards;
}
.btn-bronze {
  display: inline-block; background: var(--bronze); color: white;
  padding: 15px 28px; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 3px; border: none; cursor: pointer;
  text-decoration: none; text-align: center; font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.btn-bronze:hover { background: var(--bronze-dark); transform: translateY(-1px); }
.btn-ghost-w {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); text-decoration: none; text-align: center;
  padding: 12px 0; transition: color 0.2s;
}
.btn-ghost-w:hover { color: white; }

/* Social proof strip inside hero */
.hero-proof {
  display: flex; gap: 0; margin-top: 40px;
  opacity: 0; animation: heroFadeUp 0.6s ease 0.5s forwards;
}
.hero-proof-item {
  flex: 1; text-align: center; padding: 16px 8px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-proof-item:last-child { border-right: none; }
.hero-proof-num { font-family: var(--serif); font-size: 1.5rem; color: white; display: block; line-height: 1; margin-bottom: 3px; }
.hero-proof-lbl { font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* Testimonial card in hero */
.hero-quote {
  margin-top: 28px; padding: 20px; border-radius: 4px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; animation: heroFadeUp 0.6s ease 0.6s forwards;
}
.hero-quote-text { font-family: var(--serif); font-size: 0.88rem; font-style: italic; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 8px; }
.hero-quote-attr { font-size: 0.58rem; color: rgba(255,255,255,0.32); letter-spacing: 0.06em; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════
   TRUST BAR — auto-scroll on mobile
═══════════════════════════════════ */
.trust-bar {
  background: var(--charcoal); padding: 14px 0;
  overflow: hidden; position: relative;
}
/* Fade edges on mobile */
.trust-bar::before, .trust-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 28px; z-index: 2; pointer-events: none;
}
.trust-bar::before { left: 0; background: linear-gradient(to right, var(--charcoal) 0%, transparent 100%); }
.trust-bar::after { right: 0; background: linear-gradient(to left, var(--charcoal) 0%, transparent 100%); }

.trust-bar-inner {
  display: flex; gap: 0; width: max-content;
  animation: trustScroll 22s linear infinite;
}
.trust-bar-inner:hover { animation-play-state: paused; }

.trust-item {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); padding: 0 20px;
  white-space: nowrap;
}
.trust-separator {
  color: rgba(255,255,255,0.12); font-size: 0.4rem; flex-shrink: 0; padding: 0 4px;
}
.trust-dot { width: 4px; height: 4px; background: var(--taupe); border-radius: 50%; flex-shrink: 0; }

@keyframes trustScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════
   SEGMENTS — Audience cards
═══════════════════════════════════ */
.segments { padding: var(--section-py) 0; background: white; }
.segments-header { padding: 0 var(--page-px); margin-bottom: 32px; }
.segments-header .section-label { font-size: 0.72rem; letter-spacing: 0.2em; }

/* Scroll hint */
.scroll-hint {
  display: flex; align-items: center; gap: 8px;
  padding: 0 var(--page-px); margin-bottom: 14px;
  color: var(--light-gray); font-size: 0.62rem; letter-spacing: 0.08em;
  animation: hintPulse 2.4s ease-in-out infinite;
}
.scroll-hint-track {
  width: 32px; height: 2px; background: var(--sand); border-radius: 2px;
  position: relative; overflow: hidden;
}
.scroll-hint-track::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 14px; background: var(--taupe); border-radius: 2px;
  animation: hintSlide 2.4s ease-in-out infinite;
}
@keyframes hintSlide {
  0%, 100% { left: 0; }
  50% { left: 18px; }
}
@keyframes hintPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Scroll progress dots */
.scroll-dots {
  display: flex; justify-content: center; gap: 6px;
  padding: 8px 0 0;
}
.scroll-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sand); transition: background 0.3s, transform 0.3s;
}
.scroll-dot.active { background: var(--sage); transform: scale(1.25); }

.segments-scroll {
  display: flex; gap: 12px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 0 var(--page-px) 16px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.segments-scroll::-webkit-scrollbar { display: none; }

.segment-card {
  flex-shrink: 0; width: 85vw; max-width: 340px;
  padding: 28px 24px; background: var(--cream); border: 1px solid var(--sand);
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit; border-radius: 4px;
  scroll-snap-align: start;
  transition: transform 0.25s, box-shadow 0.25s;
}
.segment-card:active { transform: scale(0.98); }
.segment-icon { font-size: 1.6rem; }
.segment-tag { font-size: 0.52rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); font-weight: 500; }
.segment-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; line-height: 1.2; }
.segment-card p { font-size: 0.8rem; color: var(--mid-gray); font-weight: 300; line-height: 1.72; }
.segment-services { display: flex; flex-direction: column; gap: 5px; padding-top: 4px; }
.segment-svc { font-size: 0.7rem; color: var(--charcoal); display: flex; align-items: center; gap: 8px; }
.segment-svc::before { content:''; width:10px; height:1px; background:var(--taupe); display:block; flex-shrink:0; }
.segment-arrow {
  margin-top: auto; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); display: flex; align-items: center; gap: 6px;
  padding-top: 12px; border-top: 1px solid var(--sand);
}

/* ═══════════════════════════════════
   PROCESS
═══════════════════════════════════ */
.process { background: var(--sage); padding: var(--section-py) var(--page-px); }
.process-header { margin-bottom: 36px; }
.process-desc { font-size: 0.86rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.76; margin-top: 12px; }

.steps { display: flex; flex-direction: column; gap: 2px; }
.step {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08);
  padding: 24px 22px; border-radius: 3px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: background 0.2s;
}
.step:active { background: rgba(255,255,255,0.12); }
.step-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: rgba(255,255,255,0.2); line-height: 1; flex-shrink: 0; width: 36px;
}
.step-content {}
.step h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: white; margin-bottom: 6px; }
.step p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.68; font-weight: 300; }

/* ═══════════════════════════════════
   WHY US
═══════════════════════════════════ */
.why { background: var(--cream); padding: var(--section-py) var(--page-px); }
.why-intro { margin-bottom: 12px; }
.why-body { font-size: 0.86rem; font-weight: 300; color: var(--mid-gray); line-height: 1.78; margin-bottom: 28px; }
.why-cta { margin-bottom: 36px; }

.features { display: flex; flex-direction: column; }
.feature {
  display: flex; gap: 14px; padding: 18px 0;
  border-bottom: 1px solid var(--sand);
}
.feature:first-child { border-top: 1px solid var(--sand); }
.feature-num { font-family: var(--serif); font-size: 0.9rem; color: var(--taupe); flex-shrink: 0; width: 20px; padding-top: 2px; }
.feature h4 { font-family: var(--serif); font-size: 0.98rem; font-weight: 500; margin-bottom: 4px; }
.feature p { font-size: 0.78rem; color: var(--mid-gray); line-height: 1.68; font-weight: 300; }

/* ═══════════════════════════════════
   SERVICES — Tab panels
═══════════════════════════════════ */
.services { background: white; padding: var(--section-py) var(--page-px); }
.services-header { margin-bottom: 24px; }
.services-desc { font-size: 0.86rem; font-weight: 300; color: var(--mid-gray); line-height: 1.76; margin-top: 10px; }

.services-tabs {
  display: flex; gap: 0; margin-bottom: 24px;
  border-bottom: 1px solid var(--sand);
}
.svc-tab {
  flex: 1; padding: 12px 8px; font-size: 0.64rem; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; color: var(--mid-gray);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  background: none; border-top: none; border-left: none; border-right: none;
  text-align: center; font-family: var(--sans);
}
.svc-tab.active { color: var(--sage); border-bottom-color: var(--sage); }

.svc-panel { display: none; }
.svc-panel.active { display: block; }

.services-grid { display: flex; flex-direction: column; gap: 12px; }

.service-card {
  background: var(--cream); padding: 24px 22px; border: 1px solid var(--sand);
  border-radius: 4px; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--taupe));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); border-color: var(--taupe); }
.service-card:active { transform: scale(0.98) translateY(0); }
.svc-icon {
  font-size: 1.2rem; margin-bottom: 10px; display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .svc-icon { transform: scale(1.15) translateY(-2px); }
.service-card h3 { font-family: var(--serif); font-size: 1.08rem; font-weight: 500; margin-bottom: 7px; transition: color 0.2s; }
.service-card:hover h3 { color: var(--sage); }
.service-card p { font-size: 0.78rem; color: var(--mid-gray); line-height: 1.72; font-weight: 300; margin-bottom: 14px; }
.svc-link {
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bronze); text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s;
}
.svc-link::after { content: '→'; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card:hover .svc-link { gap: 8px; }
.service-card:hover .svc-link::after { transform: translateX(2px); }

.svc-cta-card { background: var(--sage) !important; border-color: transparent !important; }
.svc-cta-card h3 { color: white !important; }
.svc-cta-card p { color: rgba(255,255,255,0.6) !important; }
.svc-cta-btn {
  display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: white; padding: 10px 18px; font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 3px; text-decoration: none; transition: background 0.2s;
}
.svc-cta-btn:active { background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════
   RESOURCES
═══════════════════════════════════ */
.resources { background: var(--sand); padding: var(--section-py) 0; }
.resources-header { padding: 0 var(--page-px); margin-bottom: 28px; }
.resources-desc { font-size: 0.86rem; font-weight: 300; color: var(--mid-gray); line-height: 1.76; margin-top: 10px; }

.resource-filters {
  display: flex; gap: 6px; padding: 0 var(--page-px) 20px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.resource-filters::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0; padding: 7px 14px; font-size: 0.58rem; letter-spacing: 0.08em;
  text-transform: uppercase; background: white; border: 1px solid var(--sand);
  border-radius: 2px; cursor: pointer; color: var(--mid-gray);
  transition: all 0.2s; font-family: var(--sans);
}
.filter-btn.active { background: var(--sage); color: white; border-color: var(--sage); }

.resource-cards {
  display: flex; flex-direction: column; gap: 10px;
  padding: 0 var(--page-px);
}
.resource-card {
  background: white; display: flex; flex-direction: column;
  text-decoration: none; color: inherit; border-radius: 4px;
  overflow: hidden; transition: transform 0.2s;
}
.resource-card:active { transform: scale(0.98); }
.resource-card.filter-hidden {
  opacity: 0; transform: scale(0.95);
  max-height: 0; overflow: hidden;
  margin-bottom: 0; padding: 0; border: none;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, max-height 0.4s 0.1s;
}
.resource-card.filter-visible {
  opacity: 1; transform: scale(1);
  max-height: 600px;
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s, max-height 0.4s;
}
.resource-thumb {
  height: 140px; display: flex; align-items: flex-end; padding: 14px;
}
.resource-thumb-a { background: linear-gradient(145deg, var(--sage) 0%, var(--sage-dark) 100%); }
.resource-thumb-b { background: linear-gradient(145deg, #B8A07A 0%, var(--bronze) 100%); }
.resource-thumb-c { background: linear-gradient(145deg, var(--sand) 0%, var(--taupe) 100%); }
.resource-thumb-d { background: linear-gradient(145deg, #7A9E8E 0%, var(--sage) 100%); }
.resource-thumb-e { background: linear-gradient(145deg, var(--charcoal) 0%, #4A4540 100%); }
.resource-type-badge {
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.18);
  color: white; padding: 4px 9px; font-size: 0.54rem;
  letter-spacing: 0.12em; text-transform: uppercase; border-radius: 2px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.resource-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.resource-tag { font-size: 0.54rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze); margin-bottom: 6px; font-weight: 500; }
.resource-card h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; line-height: 1.28; margin-bottom: 6px; color: var(--charcoal); }
.resource-card p { font-size: 0.76rem; color: var(--mid-gray); line-height: 1.68; font-weight: 300; margin-bottom: 14px; flex: 1; }
.resource-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--sand); }
.resource-read { font-size: 0.58rem; color: var(--light-gray); }
.resource-arrow { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); }

/* "See all" card — styled to match resource cards */
.resource-see-more {
  background: white; border-radius: 4px; overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.resource-see-more:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.08); }
.resource-see-more:active { transform: scale(0.98); }
.resource-see-more-thumb {
  height: 140px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--sage-light) 0%, var(--sand) 100%);
  flex-direction: column; gap: 8px;
}
.resource-see-more-icon {
  width: 52px; height: 52px; border-radius: 50%; background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--sage);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
}
.resource-see-more:hover .resource-see-more-icon { transform: scale(1.1); background: var(--sage); color: white; }
.resource-see-more-body {
  padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column;
}
.resource-see-more-body .resource-tag {
  font-size: 0.54rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 6px; font-weight: 500;
}
.resource-see-more h3 {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
  line-height: 1.28; color: var(--charcoal); margin-bottom: 6px;
}
.resource-see-more p {
  font-size: 0.76rem; color: var(--mid-gray); line-height: 1.68;
  font-weight: 300; margin-bottom: 14px; flex: 1;
}
.resource-see-more-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--sand);
}
.resource-see-more-footer span {
  font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage);
}
/* Hidden by overflow logic */
.resource-card.overflow-hidden {
  display: none;
}

.resource-cta-strip {
  margin: 40px var(--page-px) 0; background: white; border: 1px solid var(--sand);
  padding: 26px 22px; border-radius: 4px; text-align: center;
}
.resource-cta-strip p { font-size: 0.82rem; color: var(--mid-gray); font-weight: 300; line-height: 1.68; margin-bottom: 16px; }
.resource-cta-strip p strong { color: var(--charcoal); font-weight: 500; }
.btn-outline-sage {
  display: inline-block; background: none; border: 1px solid var(--sage); color: var(--sage);
  padding: 11px 24px; font-size: 0.66rem; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 3px; text-decoration: none;
  font-weight: 500; transition: background 0.2s, color 0.2s;
}
.btn-outline-sage:active { background: var(--sage); color: white; }

/* ═══════════════════════════════════
   FOR PROFESSIONALS
═══════════════════════════════════ */
.professionals { background: var(--charcoal); padding: var(--section-py) var(--page-px); }
.prof-label { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.prof-label::before { content:''; width:14px; height:1px; background:var(--taupe); display:block; }
.prof-title { font-family: var(--serif); font-size: clamp(1.7rem, 6vw, 2.2rem); font-weight: 300; color: white; line-height: 1.16; margin-bottom: 14px; }
.prof-title em { font-style: italic; color: var(--taupe); }
.prof-body { font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.78; margin-bottom: 24px; }

.prof-partners { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.prof-partner {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px;
  border-radius: 3px; text-decoration: none; transition: background 0.2s;
}
.prof-partner:active { background: rgba(255,255,255,0.09); }
.prof-partner-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.prof-partner h4 { font-family: var(--serif); font-size: 0.92rem; font-weight: 500; color: white; margin-bottom: 2px; }
.prof-partner p { font-size: 0.7rem; color: rgba(255,255,255,0.35); font-weight: 300; line-height: 1.56; }

.btn-ghost-taupe {
  display: inline-block; background: none; border: 1px solid rgba(196,184,154,0.35);
  color: var(--taupe); padding: 11px 22px; font-size: 0.66rem; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 3px; text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost-taupe:active { background: rgba(196,184,154,0.1); }

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testimonials { background: white; padding: var(--section-py) 0; }
.testi-header { padding: 0 var(--page-px); margin-bottom: 28px; }

.testi-scroll {
  display: flex; gap: 12px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 0 var(--page-px) 16px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.testi-scroll::-webkit-scrollbar { display: none; }

.testi-card {
  flex-shrink: 0; width: 85vw; max-width: 340px;
  background: var(--cream); padding: 26px 22px;
  border: 1px solid var(--sand); border-radius: 4px;
  scroll-snap-align: start;
}
.testi-stars { color: var(--bronze); font-size: 0.65rem; letter-spacing: 3px; margin-bottom: 12px; }
.testi-quote { font-family: var(--serif); font-size: 0.95rem; font-style: italic; line-height: 1.68; color: var(--charcoal); margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 34px; height: 34px; background: var(--sand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 0.88rem; color: var(--bronze);
  font-weight: 500; flex-shrink: 0; border: 1px solid var(--taupe);
}
.testi-name { font-size: 0.76rem; font-weight: 500; }
.testi-role { font-size: 0.62rem; color: var(--light-gray); margin-top: 1px; }

/* ═══════════════════════════════════
   CTA BAND
═══════════════════════════════════ */
.cta-band {
  background: var(--sage); padding: 56px var(--page-px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,0,0,0.15) 0%, transparent 60%);
}
.cta-band-content { position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.7rem, 6.5vw, 2.4rem); font-weight: 300; color: white; line-height: 1.14; margin-bottom: 10px; }
.cta-band h2 em { font-style: italic; color: var(--taupe); }
.cta-band p { color: rgba(255,255,255,0.45); font-size: 0.86rem; font-weight: 300; margin-bottom: 28px; }
.btn-white {
  display: inline-block; background: white; color: var(--sage);
  padding: 15px 32px; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 3px; text-decoration: none;
  font-weight: 500; transition: background 0.2s, transform 0.15s;
  width: 100%; max-width: 320px;
}
.btn-white:active { background: var(--cream); }
.cta-band-sub { display: block; margin-top: 12px; font-size: 0.62rem; color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq { background: var(--cream); padding: var(--section-py) var(--page-px); }
.faq-header { text-align: center; margin-bottom: 32px; }
.faq-header .section-label { text-align: center; }

.faq-item { border-bottom: 1px solid var(--sand); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-family: var(--serif); font-size: 1rem; font-weight: 500;
  color: var(--charcoal); text-align: left; gap: 14px;
  transition: color 0.2s; line-height: 1.3;
}
.faq-btn:active { color: var(--sage); }
.faq-icon { color: var(--bronze); font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 0.84rem; color: var(--mid-gray); line-height: 1.78; font-weight: 300; padding-bottom: 18px; }

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact { background: white; padding: var(--section-py) var(--page-px); }
.contact-intro { margin-bottom: 28px; }
.contact-intro p { font-size: 0.86rem; font-weight: 300; color: var(--mid-gray); line-height: 1.78; margin-top: 10px; }

.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon {
  width: 34px; height: 34px; background: var(--sand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0; border: 1px solid var(--taupe);
}
.contact-detail strong { display: block; font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-gray); margin-bottom: 1px; }
.contact-detail span { font-size: 0.84rem; color: var(--charcoal); font-weight: 300; }
.contact-detail a { color: var(--charcoal); text-decoration: none; }

.contact-form-wrap {
  background: var(--cream); padding: 28px 22px; border: 1px solid var(--sand);
  border-radius: 4px;
}
.contact-form-wrap h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 4px; }
.contact-form-wrap > p { font-size: 0.78rem; color: var(--mid-gray); font-weight: 300; margin-bottom: 22px; }

.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--sand); background: white; padding: 12px 14px;
  font-family: var(--sans); font-size: 16px; color: var(--charcoal);
  border-radius: 3px; outline: none; transition: border-color 0.2s;
  font-weight: 300; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8A39D' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-submit {
  width: 100%; margin-top: 6px; background: var(--sage); color: white;
  border: none; cursor: pointer; padding: 15px; font-family: var(--sans);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 3px;
  transition: background 0.2s;
  -webkit-appearance: none;
}
.form-submit:active { background: var(--sage-dark); }
.form-disclaimer { font-size: 0.6rem; color: var(--light-gray); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer { background: var(--charcoal); padding: 48px var(--page-px) 28px; }
.footer-brand { margin-bottom: 36px; }
.footer-logo-name { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.65); display: block; margin-bottom: 3px; }
.footer-logo-sub { font-size: 0.48rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.2); font-weight: 300; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.28); line-height: 1.72; font-weight: 300; }

.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 36px; }
.footer-col h4 { font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 12px; font-weight: 400; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-decoration: none; font-weight: 300; transition: color 0.2s; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-legal { font-size: 0.6rem; color: rgba(255,255,255,0.18); line-height: 1.6; font-weight: 300; }
.footer-copy { font-size: 0.6rem; color: rgba(255,255,255,0.14); }

/* ═══════════════════════════════════
   DESKTOP — 768px+
═══════════════════════════════════ */
@media (min-width: 768px) {
  :root { --page-px: 40px; --section-py: 88px; }

  .nav-inner { height: 64px; }
  .hero { padding-top: calc(64px + 60px); }
  .hero-content { max-width: 560px; margin-left: auto; margin-right: auto; }
  .hero-btns { flex-direction: row; gap: 14px; justify-content: center; }
  .hero-proof { max-width: 400px; margin-left: auto; margin-right: auto; }

  .segments-scroll { gap: 16px; }
  .segment-card { width: 340px; }

  .steps { flex-direction: row; flex-wrap: wrap; gap: 2px; }
  .step { flex: 1; min-width: 220px; flex-direction: column; gap: 0; }
  .step-num { margin-bottom: 14px; }

  .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  .resource-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .prof-partners { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .testi-scroll { gap: 16px; }
  .testi-card { width: 340px; }

  .contact-form-wrap { padding: 36px 32px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row .form-group { margin-bottom: 0; }

  .footer-cols { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════
   LARGE DESKTOP — 1080px+
═══════════════════════════════════ */
@media (min-width: 1080px) {
  :root { --page-px: 60px; }

  /* Show full desktop nav, hide hamburger */
  .nav-hamburger { display: none !important; }
  .nav-cta-mobile { display: none; }
  .nav-links { display: flex !important; }
  .mobile-drawer { display: none !important; }

  .nav-inner { height: 68px; }

  /* Trust bar: static centered on desktop */
  .trust-bar { overflow: visible; }
  .trust-bar::before, .trust-bar::after { display: none; }
  .trust-bar-inner {
    animation: none; width: auto; justify-content: center;
    padding: 0 var(--page-px);
  }
  .trust-bar .trust-set-dupe { display: none; }

  .hero {
    padding-top: calc(68px + 80px);
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: 60px; align-items: center; min-height: 92vh;
  }
  .hero-content { padding-bottom: 0; margin-left: 0; margin-right: 0; max-width: none; }
  .hero-right-desktop { display: block !important; }
  .hero-proof { display: none; }
  .hero-quote { display: none; }
  .hero-photo-mobile { display: none; }
  .hero-h1 { text-align: left; font-size: clamp(3rem, 5.2vw, 4.8rem); }
  .hero-h1 br { display: inline; }
  .hero-eyebrow { justify-content: flex-start; }
  .hero-body { text-align: left; margin-left: 0; margin-right: 0; }
  .hero-btns { justify-content: flex-start; }

  .section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
  .section-title-w { font-size: clamp(1.8rem, 3vw, 2.6rem); }

  .segments-scroll {
    display: grid; grid-template-columns: repeat(3, 1fr);
    overflow: visible; padding: 0 var(--page-px);
  }
  .segment-card { width: auto; max-width: none; }
  .scroll-hint { display: none; }
  .scroll-dots { display: none; }

  .steps { flex-wrap: nowrap; }
  .step { min-width: 0; }

  .why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }

  .services-header-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; }

  .resource-cards { grid-template-columns: repeat(3, 1fr); }

  .professionals-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

  .testi-scroll {
    display: grid; grid-template-columns: repeat(3, 1fr);
    overflow: visible; padding: 0 var(--page-px); gap: 20px;
  }
  .testi-card { width: auto; max-width: none; }

  .cta-band {
    display: grid; grid-template-columns: 1fr auto; gap: 60px;
    align-items: center; text-align: left;
  }
  .cta-band-actions { text-align: right; }
  .btn-white { width: auto; }
  .cta-band-sub { text-align: right; }

  .contact-layout { display: grid; grid-template-columns: 1fr 1.35fr; gap: 80px; align-items: start; }

  .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-cols { display: contents; }
  .footer-brand { margin-bottom: 0; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ═══════════════════════════════════
   HERO RIGHT — Desktop only
═══════════════════════════════════ */
.hero-right-desktop { display: none; position: relative; z-index: 1; }
.hero-photo-frame {
  position: relative; width: 100%; height: 480px;
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 60%, rgba(0,0,0,0.1) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.hero-photo-label {
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); text-align: center; line-height: 1.8;
}
.hero-stats-float {
  position: absolute; bottom: -1px; left: -1px; right: -1px;
  background: rgba(44,44,44,0.88); -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px); padding: 20px 28px; display: flex;
}
.hero-stat { flex: 1; text-align: center; padding: 0 16px; border-right: 1px solid rgba(255,255,255,0.1); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--serif); font-size: 1.6rem; color: white; display: block; line-height: 1; margin-bottom: 3px; }
.hero-stat-lbl { font-size: 0.54rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.hero-quote-desktop {
  margin-top: 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: 20px 24px; border-radius: 3px;
}
.hero-quote-desktop .hero-quote-text { font-family: var(--serif); font-size: 0.92rem; font-style: italic; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 8px; }
.hero-quote-desktop .hero-quote-attr { font-size: 0.58rem; color: rgba(255,255,255,0.32); letter-spacing: 0.06em; }

/* Top bar — desktop only */
.top-bar {
  display: none; background: var(--charcoal); padding: 8px 60px;
  justify-content: space-between; align-items: center;
}
.top-bar-left { font-size: 0.62rem; color: rgba(255,255,255,0.38); letter-spacing: 0.06em; }
.top-bar-right { display: flex; gap: 22px; align-items: center; }
.top-bar-right a { font-size: 0.62rem; color: rgba(255,255,255,0.38); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.top-bar-right a:hover { color: var(--taupe); }
.top-bar-phone { color: var(--taupe) !important; font-weight: 500 !important; }

@media (min-width: 1080px) {
  .top-bar { display: flex; }
}

/* Safe area for iPhone notch */
@supports (padding-top: env(safe-area-inset-top)) {
  nav { padding-top: env(safe-area-inset-top); }
  .hero { padding-top: calc(env(safe-area-inset-top) + 56px + 48px); }
  footer { padding-bottom: calc(env(safe-area-inset-bottom) + 28px); }
}

/* Smooth touch scrolling for all horizontal scrollers */
.segments-scroll, .testi-scroll, .resource-filters {
  -ms-overflow-style: none;
}

/* Tap highlight */
a, button { -webkit-tap-highlight-color: rgba(0,0,0,0.04); }

/* ═══════════════════════════════════
   STICKY MOBILE CTA BAR
═══════════════════════════════════ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: rgba(44,44,44,0.95);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px var(--page-px);
  display: flex; align-items: center; gap: 10px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn {
  flex: 1; display: block; background: var(--bronze); color: white;
  text-align: center; padding: 13px 16px; border-radius: 3px;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: background 0.2s;
}
.sticky-cta-btn:active { background: var(--bronze-dark); }
.sticky-cta-phone {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px; text-decoration: none;
  font-size: 1.1rem; transition: background 0.2s;
}
.sticky-cta-phone:active { background: rgba(255,255,255,0.16); }

/* Pad bottom of page so sticky bar doesn't cover content */
.sticky-cta.visible ~ footer { padding-bottom: 100px; }

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .sticky-cta { padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
}

/* Hide on desktop */
@media (min-width: 1080px) {
  .sticky-cta { display: none !important; }
}

/* ═══════════════════════════════════
   PHOTO / VIDEO PLACEHOLDER ZONES
═══════════════════════════════════ */
.media-zone {
  position: relative; overflow: hidden; border-radius: 4px;
  background: linear-gradient(135deg, rgba(92,122,107,0.08) 0%, rgba(196,184,154,0.12) 100%);
  border: 2px dashed var(--taupe);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 8px; padding: 28px 20px;
}
.media-zone-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(92,122,107,0.1); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--sage);
}
.media-zone-label {
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid-gray); font-weight: 500;
}
.media-zone-hint {
  font-size: 0.7rem; color: var(--light-gray); font-weight: 300; line-height: 1.5;
  max-width: 260px;
}
.media-zone-dims {
  font-size: 0.56rem; color: var(--taupe); letter-spacing: 0.06em;
  background: rgba(196,184,154,0.12); padding: 3px 10px; border-radius: 2px;
  margin-top: 4px;
}

/* Hero photo (mobile) */
.hero-photo-mobile {
  margin-top: 24px; margin-bottom: 24px;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-photo-img {
  width: 100%; height: 320px; object-fit: cover;
  object-position: center 40%; display: block;
}

/* Video play card — compact trigger */
.video-card {
  margin-top: 24px; padding: 20px 24px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  transition: background 0.25s, transform 0.2s;
  text-decoration: none;
}
.video-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.video-card:active { transform: scale(0.98); }
.video-play-btn {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--bronze); display: flex; align-items: center; justify-content: center;
  position: relative; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-play-btn::before {
  content: ''; display: block;
  width: 0; height: 0;
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
  border-left: 12px solid white; margin-left: 3px;
}
.video-play-btn::after {
  content: ''; position: absolute; inset: -4px;
  border: 1.5px solid rgba(156,126,74,0.4); border-radius: 50%;
  animation: playPulse 2.5s ease-in-out infinite;
}
.video-card:hover .video-play-btn { transform: scale(1.08); }
@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}
.video-card-text h4 {
  font-family: var(--serif); font-size: 1rem; font-weight: 500;
  color: white; margin-bottom: 3px;
}
.video-card-text p {
  font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 300;
}

/* Video lightbox modal */
.video-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.88);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s, visibility 0.35s;
}
.video-modal.open {
  opacity: 1; visibility: visible; pointer-events: all;
}
.video-modal-inner {
  width: 100%; max-width: 860px;
  aspect-ratio: 16 / 9; background: #000; border-radius: 6px;
  overflow: hidden; position: relative;
  transform: scale(0.92); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; align-items: center; justify-content: center;
}
.video-modal.open .video-modal-inner { transform: scale(1); }
.video-modal-placeholder {
  text-align: center; color: rgba(255,255,255,0.35);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1.8;
}
.video-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: white; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.video-modal-close:hover { background: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════
   SERVICE PAGE STYLES
═══════════════════════════════════ */

/* Service Hero */
.service-hero {
  padding: calc(56px + 48px) var(--page-px, 20px) 48px;
  background: var(--sage); position: relative; overflow: hidden;
  text-align: center;
}
.service-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(74,99,87,0.5) 0%, transparent 50%);
}
.service-hero-content {
  position: relative; z-index: 1; max-width: 640px; margin: 0 auto;
}

/* Quick Answer Box */
.quick-answer {
  background: var(--sage-light, #EBF0ED);
  border-left: 3px solid var(--sage, #5C7A6B);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 32px;
}
.quick-answer-label {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage, #5C7A6B); font-weight: 500; margin-bottom: 8px;
}
.quick-answer p {
  font-size: 0.88rem; line-height: 1.76; color: var(--charcoal, #2C2C2C);
  font-weight: 300;
}

/* Content Sections */
.service-content {
  padding: 48px var(--page-px, 20px);
  max-width: 780px; margin: 0 auto;
}
.content-section {
  margin-bottom: 40px;
}
.content-section h2 {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.5rem; font-weight: 400; line-height: 1.2;
  color: var(--charcoal, #2C2C2C); margin-bottom: 16px;
}
.content-section h3 {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.15rem; font-weight: 500; line-height: 1.3;
  color: var(--charcoal, #2C2C2C); margin-bottom: 8px; margin-top: 24px;
}
.content-section p {
  font-size: 0.9rem; line-height: 1.82; color: var(--mid-gray, #6B6560);
  font-weight: 300; margin-bottom: 16px;
}
.content-section p:last-child { margin-bottom: 0; }
.content-section strong {
  color: var(--charcoal, #2C2C2C); font-weight: 500;
}

/* Content Grid (for service cards within content) */
.content-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin-top: 16px;
}
.content-card {
  background: var(--cream, #FAF8F4);
  border: 1px solid var(--sand, #EDE8DF);
  padding: 22px 20px; border-radius: 4px;
}
.content-card h3 {
  margin-top: 0;
}

/* Related Services */
.related-services {
  padding: 48px var(--page-px, 20px);
  background: var(--cream, #FAF8F4);
}
.related-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin-top: 20px; max-width: 780px;
}

/* FAQ within service pages */
.faq-section {
  margin-top: 8px;
}

/* Blog Article Styles */
.blog-article {
  padding-top: calc(56px + 32px);
}
.article-header {
  padding: 32px var(--page-px, 20px);
  max-width: 780px; margin: 0 auto; text-align: center;
}
.article-meta {
  display: flex; gap: 12px; justify-content: center; align-items: center;
  flex-wrap: wrap; margin-bottom: 16px;
}
.article-category {
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bronze, #9C7E4A); font-weight: 500;
}
.article-date, .article-read {
  font-size: 0.72rem; color: var(--light-gray, #A8A39D);
}
.article-title {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 300;
  line-height: 1.14; color: var(--charcoal, #2C2C2C); margin-bottom: 12px;
}
.article-subtitle {
  font-size: 0.92rem; color: var(--mid-gray, #6B6560);
  font-weight: 300; line-height: 1.72; max-width: 560px; margin: 0 auto 20px;
}
.article-author-name {
  font-size: 0.78rem; color: var(--charcoal, #2C2C2C); font-weight: 500;
}
.article-body {
  padding: 32px var(--page-px, 20px);
  max-width: 680px; margin: 0 auto;
}
.article-body p {
  font-size: 0.92rem; line-height: 1.84; color: var(--mid-gray, #6B6560);
  font-weight: 300; margin-bottom: 20px;
}
.article-body h2 {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.4rem; font-weight: 400; color: var(--charcoal, #2C2C2C);
  margin: 36px 0 14px;
}
.article-footer {
  padding: 32px var(--page-px, 20px);
  max-width: 680px; margin: 0 auto;
}
.article-cta {
  background: var(--sage-light, #EBF0ED);
  padding: 28px 24px; border-radius: 4px; text-align: center;
}
.article-cta h3 {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.2rem; font-weight: 400; margin-bottom: 8px;
}
.article-cta p {
  font-size: 0.84rem; color: var(--mid-gray, #6B6560);
  font-weight: 300; margin-bottom: 16px;
}

/* Desktop */
@media (min-width: 768px) {
  .content-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr 1fr; }
  .service-hero { padding-top: calc(68px + 64px); padding-bottom: 56px; }
}
@media (min-width: 1080px) {
  .service-hero { padding-top: calc(68px + 80px); padding-bottom: 72px; }
  .service-hero-content { max-width: 720px; }
}
.service-hero .hero-h1 { font-size: clamp(1.8rem, 5.5vw, 2.6rem); line-height: 1.14; opacity: 1; animation: none; }
.service-hero .hero-eyebrow, .service-hero .hero-body, .service-hero .hero-btns { opacity: 1; animation: none; }
.content-section p strong:first-child { font-weight: 500; color: var(--charcoal); }
