/* =========================================================================
   LAKE HOUSE LIFT — Luxury Lake Modern Design System
   ========================================================================= */

/* ----- Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,400..600&family=Inter:wght@400;500;600;700&display=swap');

/* ----- Tokens ----- */
:root {
  /* Lake blues */
  --lake-950: #050d16;
  --lake-900: #07131f;
  --lake-800: #0a2540;
  --lake-700: #0d3b5c;
  --lake-600: #155080;
  --lake-500: #1d6ea3;
  --lake-400: #4a93c4;
  --lake-300: #8cc0de;

  /* Warm cedar */
  --cedar: #c8794a;
  --cedar-bright: #e3a063;
  --cedar-deep: #9c5a32;

  /* Neutrals */
  --forest: #2d4a3e;
  --forest-bright: #3d6b56;
  --stone: #7e8896;
  --stone-light: #aeb6c0;
  --cream: #f7f3ec;
  --cream-deep: #efe7da;
  --white: #ffffff;
  --ink: #0c1722;

  /* Functional */
  --bg: var(--lake-950);
  --surface: #0e1c2c;
  --surface-2: #13283d;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Type */
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 11px;

  /* Shadows */
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.25);
  --shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 50px 100px -30px rgba(0, 0, 0, 0.7);
  --glow-cedar: 0 18px 50px -12px rgba(200, 121, 74, 0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--cream);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ----- Typography ----- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -0.015em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cedar-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 1px;
  background: var(--cedar);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: '';
  width: 26px; height: 1px;
  background: var(--cedar);
  display: inline-block;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); color: var(--stone-light); line-height: 1.6; }
em.gold { font-style: italic; color: var(--cedar-bright); }

/* ----- Layout helpers ----- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.5rem); }
.narrow { max-width: var(--container-narrow); }
section { position: relative; }
.section-pad { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.center { text-align: center; }
.muted { color: var(--stone-light); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-weight: 600; font-size: 1rem; letter-spacing: 0.01em;
  padding: 1rem 1.9rem; border-radius: 100px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.btn-primary {
  background: linear-gradient(135deg, var(--cedar-bright), var(--cedar) 55%, var(--cedar-deep));
  color: #1c1206;
  box-shadow: var(--glow-cedar);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -12px rgba(200,121,74,0.7); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--cream);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); border-color: var(--lake-300); }
.btn-lg { padding: 1.15rem 2.3rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ----- Header / Nav ----- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
  padding-block: 0.5rem;
}
.site-header.scrolled {
  background: rgba(7, 19, 31, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--serif); font-size: 1.3rem; font-weight: 500; letter-spacing: -0.01em; flex: none; white-space: nowrap; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: linear-gradient(150deg, var(--lake-500), var(--lake-700));
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.brand .mark svg { width: 22px; height: 22px; }
.brand b { font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--stone-light); transition: color 0.25s; position: relative; white-space: nowrap; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.3s var(--ease); }

@media (max-width: 1040px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem;
    position: absolute; top: 84px; left: 1rem; right: 1rem;
    background: rgba(10, 22, 36, 0.97); backdrop-filter: blur(20px);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.8rem; box-shadow: var(--shadow);
  }
  .nav-links.open a { font-size: 1.15rem; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ----- Background atmosphere ----- */
.glow {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; opacity: 0.5;
}
.glow-cedar { background: radial-gradient(circle, rgba(200,121,74,0.45), transparent 70%); }
.glow-lake { background: radial-gradient(circle, rgba(29,110,163,0.5), transparent 70%); }

/* ----- HERO ----- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 60px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,13,22,0.55) 0%, rgba(5,13,22,0.35) 40%, rgba(5,13,22,0.92) 100%),
    linear-gradient(90deg, rgba(5,13,22,0.85) 0%, rgba(5,13,22,0.15) 70%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; width: 100%; }
.hero-copy h1 { margin: 1.4rem 0 1.5rem; }
.hero-copy .lead { max-width: 33ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-meta { display: flex; gap: 2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-meta div { }
.hero-meta strong { font-family: var(--serif); font-size: 1.7rem; display: block; line-height: 1; }
.hero-meta span { font-size: 0.82rem; color: var(--stone-light); letter-spacing: 0.04em; }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy .lead { max-width: 50ch; }
}

/* ----- Before/After slider ----- */
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 4 / 3.2; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); user-select: none; touch-action: pan-y;
  border: 1px solid var(--border-strong);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--white);
  transform: translateX(-50%); z-index: 3; box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%; background: var(--white);
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,0.4); cursor: ew-resize;
}
.ba-handle svg { width: 24px; height: 24px; color: var(--lake-800); }
.ba-tag {
  position: absolute; bottom: 18px; z-index: 3; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 0.45rem 0.9rem; border-radius: 100px;
  background: rgba(7,19,31,0.7); backdrop-filter: blur(8px); border: 1px solid var(--border-strong);
}
.ba-tag.before { left: 18px; }
.ba-tag.after { right: 18px; color: var(--cedar-bright); border-color: rgba(227,160,99,0.4); }
.ba-caption { text-align: center; margin-top: 1rem; font-size: 0.9rem; color: var(--stone-light); }

/* ----- Trust bar ----- */
.trust-bar { border-block: 1px solid var(--border); background: linear-gradient(180deg, var(--surface), var(--bg)); }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 2.2rem; }
.trust-lakes { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.5rem; font-size: 0.95rem; color: var(--stone-light); }
.trust-lakes .label { color: var(--cedar-bright); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; }
.trust-lakes b { color: var(--cream); font-weight: 600; }
.trust-stats { display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); }
.stat strong { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.4rem); display: block; line-height: 1; color: var(--white); }
.stat span { font-size: 0.78rem; color: var(--stone-light); letter-spacing: 0.04em; }

/* ----- Section heads ----- */
.section-head { max-width: 720px; margin-bottom: 3.5rem; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin: 1.1rem 0 1.2rem; }

/* ----- How it works ----- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step {
  position: relative; padding: 2rem 1.7rem; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface), rgba(14,28,44,0.4));
  border: 1px solid var(--border); transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
  overflow: hidden;
}
.step:hover { transform: translateY(-6px); border-color: var(--border-strong); background: linear-gradient(160deg, var(--surface-2), var(--surface)); }
.step-num {
  font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--cedar);
  opacity: 0.55; margin-bottom: 1rem;
}
.step-icon { width: 44px; height: 44px; color: var(--lake-300); margin-bottom: 1rem; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; color: var(--stone-light); }
.step::after { content: ''; position: absolute; right: -40px; top: 0; bottom: 0; width: 1px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ----- Gallery ----- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.6rem; }
.chip {
  padding: 0.6rem 1.2rem; border-radius: 100px; font-size: 0.88rem; font-weight: 500;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--stone-light);
  transition: 0.3s var(--ease);
}
.chip:hover { color: var(--white); border-color: var(--border-strong); }
.chip.active { background: var(--cedar); color: #1c1206; border-color: var(--cedar); font-weight: 600; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.gallery-grid.featured { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .gallery-grid, .gallery-grid.featured { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .gallery-grid, .gallery-grid.featured { grid-template-columns: 1fr; } }

.proj-card {
  border-radius: var(--radius); overflow: hidden; background: var(--surface);
  border: 1px solid var(--border); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.proj-card .ba-slider { border-radius: 0; aspect-ratio: 16 / 11; box-shadow: none; border: none; }
.proj-card .ba-handle { width: 42px; height: 42px; }
.proj-body { padding: 1.4rem 1.5rem 1.6rem; }
.proj-body .tag { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cedar-bright); font-weight: 600; }
.proj-body h3 { font-size: 1.35rem; margin: 0.5rem 0 0.6rem; }
.proj-body p { font-size: 0.92rem; color: var(--stone-light); }
.proj-stats { display: flex; gap: 1.5rem; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--border); }
.proj-stats div span { font-size: 0.72rem; color: var(--stone); display: block; letter-spacing: 0.04em; }
.proj-stats div b { font-family: var(--serif); font-size: 1.15rem; color: var(--cedar-bright); font-weight: 500; }

/* ----- ROI / value ----- */
.value-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.roi-list { display: flex; flex-direction: column; gap: 0.9rem; }
.roi-row {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
  padding: 1.1rem 1.3rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
}
.roi-row .name { display: flex; align-items: center; gap: 0.8rem; font-weight: 500; }
.roi-row .name svg { width: 20px; height: 20px; color: var(--cedar); flex: none; }
.roi-bar { height: 7px; border-radius: 100px; background: rgba(255,255,255,0.08); overflow: hidden; margin-top: 0.5rem; }
.roi-bar i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--lake-500), var(--cedar)); width: 0; transition: width 1.2s var(--ease); }
.roi-row .pct { font-family: var(--serif); font-size: 1.4rem; color: var(--cedar-bright); white-space: nowrap; }
@media (max-width: 820px) { .value-grid { grid-template-columns: 1fr; } }

/* ----- AI Engine ----- */
.ai-section { background: radial-gradient(ellipse at 70% 0%, rgba(21,80,128,0.35), transparent 55%); }
.ai-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.ai-node {
  text-align: center; padding: 1.8rem 1rem; border-radius: var(--radius); position: relative;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
}
.ai-node .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--cedar); margin: 0 auto 1rem; box-shadow: 0 0 0 6px rgba(200,121,74,0.15); }
.ai-node h4 { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; }
.ai-node p { font-size: 0.82rem; color: var(--stone-light); margin-top: 0.3rem; }
.ai-arrow { color: var(--cedar); }
@media (max-width: 820px) { .ai-flow { grid-template-columns: 1fr 1fr; } }

.feature-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2.5rem; }
.feature-box { padding: 1.8rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.feature-box h4 { font-family: var(--sans); font-weight: 600; font-size: 1rem; color: var(--cedar-bright); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1rem; }
.feature-box ul { display: flex; flex-direction: column; gap: 0.7rem; }
.feature-box li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; }
.feature-box li svg { width: 18px; height: 18px; color: var(--lake-400); flex: none; margin-top: 3px; }
@media (max-width: 700px) { .feature-cols { grid-template-columns: 1fr; } }

/* ----- Lakes ----- */
.lakes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .lakes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .lakes-grid { grid-template-columns: 1fr; } }
.lake-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px;
  display: flex; align-items: flex-end; border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.lake-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.lake-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.lake-card:hover img { transform: scale(1.07); }
.lake-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(5,13,22,0.92)); }
.lake-card .lake-body { position: relative; z-index: 2; padding: 1.6rem; }
.lake-card h3 { font-size: 1.5rem; }
.lake-card p { font-size: 0.88rem; color: var(--stone-light); margin-top: 0.3rem; }
.lake-card .arrow { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; font-size: 0.85rem; font-weight: 600; color: var(--cedar-bright); }

/* ----- Estimator ----- */
.estimator-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(2rem,5vw,3.5rem); align-items: start; }
@media (max-width: 880px) { .estimator-grid { grid-template-columns: 1fr; } }
.est-panel { padding: clamp(1.6rem, 4vw, 2.6rem); border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); }
.field { margin-bottom: 1.5rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 0.6rem; color: var(--cream); }
.field input[type=text], .field input[type=email], .field input[type=tel], .field input[type=number], .field select, .field textarea {
  width: 100%; padding: 0.95rem 1.1rem; border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-strong); color: var(--white); transition: border-color 0.3s, background 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cedar); background: rgba(255,255,255,0.07); }
.field input::placeholder, .field textarea::placeholder { color: var(--stone); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23aeb6c0' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; }
.range-field input[type=range] { width: 100%; accent-color: var(--cedar); height: 6px; }
.range-val { font-family: var(--serif); color: var(--cedar-bright); font-size: 1.1rem; }
.upgrade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.upgrade-opt { position: relative; }
.upgrade-opt input { position: absolute; opacity: 0; }
.upgrade-opt label {
  display: flex; align-items: center; gap: 0.6rem; padding: 0.8rem 1rem; border-radius: var(--radius-sm); margin: 0; font-weight: 500; font-size: 0.92rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border); cursor: pointer; transition: 0.25s var(--ease);
}
.upgrade-opt label::before { content: ''; width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--stone); flex: none; transition: 0.25s; }
.upgrade-opt input:checked + label { border-color: var(--cedar); background: rgba(200,121,74,0.12); color: var(--white); }
.upgrade-opt input:checked + label::before { background: var(--cedar); border-color: var(--cedar); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%231c1206' stroke-width='3' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
@media (max-width: 480px) { .upgrade-grid { grid-template-columns: 1fr; } }

.est-result { position: sticky; top: 100px; padding: clamp(1.6rem,4vw,2.4rem); border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--lake-700), var(--lake-900)); border: 1px solid var(--border-strong); box-shadow: var(--shadow); }
.est-result .eyebrow { color: var(--lake-300); }
.est-big { font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 3rem); line-height: 1; margin: 0.8rem 0 0.3rem; color: var(--white); }
.est-sub { font-size: 0.9rem; color: var(--stone-light); }
.est-divide { height: 1px; background: var(--border-strong); margin: 1.6rem 0; }
.est-value-add { display: flex; align-items: baseline; gap: 0.6rem; }
.est-value-add b { font-family: var(--serif); font-size: 1.9rem; color: var(--cedar-bright); }
.est-note { font-size: 0.78rem; color: var(--stone); margin-top: 1.4rem; line-height: 1.5; }

/* ----- Testimonials ----- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  padding: 2rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.testi .stars { color: var(--cedar-bright); letter-spacing: 0.15em; margin-bottom: 1.1rem; font-size: 0.95rem; }
.testi blockquote { font-family: var(--serif); font-size: 1.25rem; line-height: 1.45; font-style: italic; flex: 1; }
.testi .who { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--border); }
.testi .who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(140deg, var(--lake-500), var(--forest)); display: grid; place-items: center; font-family: var(--serif); font-size: 1.1rem; color: var(--white); flex: none; }
.testi .who b { display: block; font-size: 0.95rem; }
.testi .who span { font-size: 0.82rem; color: var(--stone-light); }

/* ----- CTA / Lead form ----- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,19,31,0.92), rgba(7,19,31,0.82)); }
.cta-card {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center;
}
@media (max-width: 860px) { .cta-card { grid-template-columns: 1fr; } }
.lead-form { padding: clamp(1.6rem,4vw,2.4rem); border-radius: var(--radius-lg); background: rgba(14,28,44,0.85); backdrop-filter: blur(14px); border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg); }
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .lead-form .row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.78rem; color: var(--stone); margin-top: 1rem; text-align: center; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--cedar-bright); margin: 0 auto 1rem; }
.form-success h3 { margin-bottom: 0.6rem; }

/* ----- Page hero (interior pages) ----- */
.page-hero { position: relative; padding-top: 160px; padding-bottom: 70px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,13,22,0.78) 0%, rgba(5,13,22,0.6) 50%, rgba(5,13,22,0.96) 100%); }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { margin: 1.2rem 0 1.2rem; }
.breadcrumb { font-size: 0.82rem; color: var(--stone-light); display: flex; gap: 0.5rem; align-items: center; }
.breadcrumb a:hover { color: var(--cedar-bright); }

/* ----- Lake detail facts ----- */
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 760px) { .fact-grid { grid-template-columns: 1fr 1fr; } }
.fact { padding: 1.5rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.fact b { font-family: var(--serif); font-size: 1.9rem; color: var(--cedar-bright); display: block; line-height: 1; }
.fact span { font-size: 0.82rem; color: var(--stone-light); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.bullet-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.bullet-list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.bullet-list svg { width: 22px; height: 22px; color: var(--cedar); flex: none; margin-top: 2px; }
.bullet-list b { font-weight: 600; }
.bullet-list span { color: var(--stone-light); font-size: 0.95rem; }

/* ----- Footer ----- */
.site-footer { border-top: 1px solid var(--border); background: var(--lake-950); padding-block: 4rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.footer-grid .brand { margin-bottom: 1.2rem; }
.footer-about p { color: var(--stone-light); font-size: 0.92rem; max-width: 34ch; }
.footer-col h5 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cedar-bright); margin-bottom: 1.1rem; }
.footer-col a { display: block; color: var(--stone-light); font-size: 0.92rem; margin-bottom: 0.7rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--stone); }

/* ----- Scroll reveal ----- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ----- Floating CTA (mobile) ----- */
.float-cta { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 90; display: none; }
@media (max-width: 1040px) { .float-cta.show { display: block; } }
