/* ===== ROOT VARS (accent palette) ===== */
:root {
  --accent: #9B6E4A;
  --accent-light: #f5ede6;
  --accent-mid: #c8916b;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; border: none; outline: none; }
ul, ol { list-style: none; }

/* ===== LAYOUT ===== */
.wrap {
  width: min(calc(100% - 3rem), var(--w));
  margin-inline: auto;
}

/* ===== ANIMATIONS ===== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scalePhoto {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t) var(--e), transform var(--t) var(--e);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--e), box-shadow 0.4s var(--e), border-color 0.4s var(--e);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(249, 247, 244, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--line);
  box-shadow: 0 1px 20px rgba(17,16,9,0.06);
}

.header-inner {
  width: min(calc(100% - 3rem), var(--w));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.brand:hover { opacity: 0.75; }

.brand-logo {
  height: 182px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-top: 10px;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  display: block;
  line-height: 1.2;
}
.brand small {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

/* Nav */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.site-nav a {
  padding: 0.45rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--text); background: var(--surface-2); }
.site-nav a.is-active { color: var(--text); font-weight: 700; }

/* CTA pill */
.header-cta {
  margin-left: 1rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-pill);
  background: var(--text);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.header-cta:hover { background: #2a2a2a; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s;
  margin-left: auto;
}
.nav-toggle:hover { background: var(--surface-2); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--e), opacity 0.2s;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0e0c0a;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.72;
  animation: scalePhoto 8s var(--e) both;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,6,0.18) 0%,
    rgba(10,8,6,0.12) 40%,
    rgba(10,8,6,0.68) 80%,
    rgba(10,8,6,0.88) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 3rem), var(--w));
  margin-inline: auto;
  padding-bottom: 7rem;
  padding-top: 10rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  animation: heroFadeIn 1s var(--e) 0.2s both;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  display: block;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 14ch;
  animation: heroFadeUp 1s var(--e) 0.35s both;
}
.hero h1 em {
  font-style: italic;
  color: #fff;
  opacity: 0.85;
}

.hero-sub {
  margin-top: 1.6rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  max-width: 46ch;
  line-height: 1.65;
  animation: heroFadeUp 1s var(--e) 0.5s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.4rem;
  animation: heroFadeUp 1s var(--e) 0.65s both;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 3.5rem;
  animation: heroFadeIn 1s var(--e) 0.9s both;
}
.hero-chip {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 50px;
  padding: 0 1.6rem;
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--e), box-shadow 0.25s var(--e), background 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #fff;
  color: var(--text);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.26); }

.btn-outline {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); }

.btn-dark {
  background: var(--text);
  color: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
}
.btn-dark:hover { background: #2a2a2a; box-shadow: 0 6px 24px rgba(0,0,0,0.25); }

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--line-strong); }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-dark { background: var(--text); }
.section-tint { background: var(--surface-2); }

/* Section header */
.sh {
  margin-bottom: 3rem;
}
.sh-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.sh-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent-mid);
  border-radius: 2px;
  display: block;
}
.sh h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.sh p {
  margin-top: 0.75rem;
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 52ch;
  line-height: 1.65;
}
.sh.center { text-align: center; }
.sh.center p { margin-inline: auto; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.service-item {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background 0.3s var(--e), border-left-color 0.3s var(--e);
  border-left: 3px solid transparent;
}
.service-item:hover { background: var(--accent-light); border-left-color: var(--accent); }

.service-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-mid);
  margin-bottom: 1.6rem;
}

.service-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.service-item p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ===== SPLIT SECTION ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface-3);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--e);
}
.split-media:hover img { transform: scale(1.03); }

.split-tag {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 0.7rem 1rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(17,16,9,0.08);
}
.split-tag span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-3);
  margin-top: 0.1rem;
}

.split-content .sh { margin-bottom: 2rem; }

.feature-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  border: 1px solid rgba(155,110,74,0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.feature-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text);
}
.feature-text span {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 3rem;
}
.process-step {
  background: var(--surface);
  padding: 2rem 1.75rem;
  transition: background 0.3s;
}
.process-step:hover { background: var(--surface-2); }
.process-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 0 0 var(--accent);
}
.process-step:hover .process-num { color: rgba(155,110,74,0.2); }
.process-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--text);
  border-radius: var(--r-xl);
  padding: 4rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 28ch;
  line-height: 1.15;
}
.cta-band p {
  margin-top: 0.6rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}
.cta-band-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 10rem 0 4.5rem;
  background: var(--text);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,255,255,0.04), transparent);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  display: block;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: #fff;
  max-width: 20ch;
  animation: heroFadeUp 0.9s var(--e) both;
}
.page-hero p {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 46ch;
  line-height: 1.65;
  animation: heroFadeUp 0.9s var(--e) 0.15s both;
}

/* ===== CARDS ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.3s var(--e);
}
.card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 12px 40px rgba(17,16,9,0.06);
  transform: translateY(-3px);
}
.card h2, .card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.65; }

/* ===== INFO LIST ===== */
.info-list { display: grid; gap: 0; }
.info-list div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
}
.info-list div:last-child { border-bottom: none; }
.info-list dt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  padding-top: 0.1rem;
}
.info-list dd {
  font-size: 0.9rem;
  color: var(--text-2);
  margin: 0;
  line-height: 1.6;
}
.info-list dd a { color: var(--text); font-weight: 500; transition: color 0.2s; }
.info-list dd a:hover { color: var(--accent); }

/* ===== CHECK LIST ===== */
.check-list { display: grid; gap: 0.6rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1.5px solid var(--accent-mid);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ===== ORDERED LIST ===== */
.ordered-list { counter-reset: step; display: grid; gap: 0.8rem; }
.ordered-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.55;
}
.ordered-list li::before {
  content: counter(step);
  width: 28px;
  height: 28px;
  background: var(--surface-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-3);
  flex-shrink: 0;
}

/* ===== MAP ===== */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form { display: grid; gap: 1rem; }
.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--bg);
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--text-2);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(17,16,9,0.07);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-3); }

/* ===== LEGAL ===== */
.page-main { min-height: calc(100vh - 200px); }
.legal-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.legal-content p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}
.legal-content ul { display: grid; gap: 0.35rem; margin: 0.4rem 0 1rem; }
.legal-content li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-2);
}
.legal-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-3);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.footer-brand strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 28ch;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.footer-col h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.5rem; }
.footer-col li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col li a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

/* ===== HOURS TABLE ===== */
.hours-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1rem;
}
.hours-season-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--surface-2);
  color: var(--text-3);
  border-bottom: 1px solid var(--line);
}
.hours-season-label.is-summer {
  background: var(--accent-light);
  color: var(--accent);
  border-color: rgba(155, 110, 74, 0.15);
}
.hours-season-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: block;
  flex-shrink: 0;
}
.hours-table { display: grid; gap: 0; padding: 0 1.25rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  gap: 1rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day {
  font-weight: 600;
  color: var(--text);
  min-width: 9ch;
}
.hours-time {
  color: var(--text-2);
  text-align: right;
  line-height: 1.5;
}
.hours-closed { color: var(--text-3); font-style: italic; }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 3rem;
}
.stat-item {
  background: var(--surface);
  padding: 2rem 2.5rem;
  text-align: center;
  transition: background 0.3s var(--e);
}
.stat-item:hover { background: var(--accent-light); }
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-3);
  font-weight: 500;
}

/* ===== EYEBROW (legacy compat) ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-media { aspect-ratio: 16/9; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 2.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .section { padding: 3.5rem 0; }

  .header-actions { display: none; }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    background: rgba(249, 247, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 48px rgba(17,16,9,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--e), visibility 0.3s, transform 0.3s var(--e);
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: var(--r-sm);
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { flex: 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
