/* ==========================================================
   Front Porch Web — redesign
   ========================================================== */
:root {
  --cream: #FAF5EC;
  --cream-2: #F2EADB;
  --cream-3: #EAE0CC;
  --ink: #1F2A22;
  --ink-soft: #4A554C;
  --green: #2F4A38;
  --green-deep: #223829;
  --green-night: #16241B;
  --amber: #E9973E;
  --amber-deep: #C9741F;
  --amber-soft: #F6C889;
  --dusk-1: #0a120e;
  --dusk-2: #10201a;
  --dusk-3: #6b5a35;
  --dusk-4: #d99a52;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(31, 42, 34, 0.06), 0 4px 12px rgba(31, 42, 34, 0.06);
  --shadow-md: 0 2px 4px rgba(31, 42, 34, 0.07), 0 12px 32px rgba(31, 42, 34, 0.12);
  --shadow-lg: 0 4px 8px rgba(31, 42, 34, 0.08), 0 24px 64px rgba(31, 42, 34, 0.18);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* faint film grain so the flat areas feel like material */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 200;
  pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: min(1140px, 92vw); margin-inline: auto; }
.section { padding: clamp(72px, 10vw, 128px) 0; scroll-margin-top: 40px; }

.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 200;
  background: var(--amber); color: var(--ink); padding: 10px 18px;
  border-radius: 999px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 12px; }

/* ---------- type ---------- */
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber-deep); margin-bottom: 14px;
}
.section-heading {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 4.4vw, 52px); line-height: 1.08;
  letter-spacing: -0.01em; margin-bottom: 18px;
}
.section-sub {
  color: var(--ink-soft); font-size: clamp(16px, 1.6vw, 19px);
  max-width: 56ch; margin-bottom: clamp(36px, 5vw, 56px);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; text-decoration: none;
  border-radius: 999px; white-space: nowrap;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-primary {
  background: linear-gradient(180deg, #f2a854, var(--amber) 55%, var(--amber-deep));
  color: #241708;
  box-shadow: 0 2px 6px rgba(201, 116, 31, 0.35), 0 8px 24px rgba(201, 116, 31, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(201, 116, 31, 0.4), 0 14px 36px rgba(201, 116, 31, 0.36);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: var(--cream); border: 1.5px solid rgba(250, 245, 236, 0.44);
  background: rgba(250, 245, 236, 0.05);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: rgba(250, 245, 236, 0.9); transform: translateY(-2px); background: rgba(250, 245, 236, 0.1); }
main .btn-ghost, .pricing .btn-ghost {
  color: var(--green-deep); border-color: rgba(47, 74, 56, 0.4); background: transparent;
}
main .btn-ghost:hover { border-color: var(--green-deep); background: rgba(47, 74, 56, 0.06); }
.cta-band .btn-ghost { color: var(--cream); border-color: rgba(250, 245, 236, 0.44); }
.cta-band .btn-ghost:hover { border-color: rgba(250, 245, 236, 0.95); background: rgba(250, 245, 236, 0.08); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
  color: var(--cream);
}
.nav-inner {
  width: min(1240px, 94vw); margin-inline: auto;
  display: flex; align-items: center; gap: 32px;
  padding: 18px 0;
  transition: padding 0.35s var(--ease-out);
}
.nav.scrolled {
  background: rgba(250, 245, 236, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(31, 42, 34, 0.08), 0 8px 24px rgba(31, 42, 34, 0.06);
  color: var(--ink);
}
.nav.scrolled .nav-inner { padding: 12px 0; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-weight: 600; font-size: 19px;
  text-decoration: none; letter-spacing: 0.01em;
}
.brand-logo {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(31, 42, 34, 0.1), 0 2px 8px rgba(7, 13, 10, 0.25);
}
.nav.scrolled .brand-logo { box-shadow: 0 0 0 1px rgba(31, 42, 34, 0.1), 0 2px 6px rgba(31, 42, 34, 0.12); }
.brand-footer .brand-logo { width: 36px; height: 36px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; text-decoration: none; opacity: 0.85;
  position: relative; padding: 4px 0;
  transition: opacity 0.2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--amber);
  transition: right 0.3s var(--ease-out);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { right: 0; }

/* "3D Experience" pill — mirrors the Classic Site button on the 3D page.
   Uses currentColor so it adapts to the nav's transparent/scrolled states. */
.nav-3d {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.02em; text-decoration: none; color: currentColor;
  padding: 8px 16px; border: 1.5px solid currentColor; border-radius: 999px;
  opacity: 0.82; white-space: nowrap; margin-left: 4px;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.nav-3d .nav-3d-star { color: var(--amber); }
.nav-3d:hover { opacity: 1; background: rgba(233, 151, 62, 0.14); }
/* small phones: logo only, so the 3D pill has room without wrapping the name */
@media (max-width: 480px) { .brand-name { display: none; } }

.nav-burger { display: none; }

/* ==========================================================
   HERO — the porch at dusk
   ========================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--dusk-1);
}
.hero-scene { position: absolute; inset: 0; }
.layer { position: absolute; inset: -12% 0; will-change: transform; }
.sky-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    #0a120e 0%, #10201a 30%, #1d3328 52%,
    #41482e 70%, #6b5a35 80%, #a97b3f 90%, #d99a52 100%);
}
.stars { position: absolute; inset: 0; }
.star {
  position: absolute; border-radius: 50%;
  background: #fdf3dd;
  animation: twinkle var(--dur, 4s) ease-in-out var(--delay, 0s) infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: var(--base, 0.5); }
  50% { opacity: 0.08; }
}
.mid-svg, .porch-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.fireflies { position: absolute; inset: 0; }
.firefly {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: #ffe9a8;
  box-shadow: 0 0 8px 3px rgba(255, 214, 199, 0.35), 0 0 14px 6px rgba(255, 196, 87, 0.18);
  animation:
    drift var(--dur, 14s) ease-in-out var(--delay, 0s) infinite alternate,
    blink calc(var(--dur, 14s) / 4.3) ease-in-out var(--delay, 0s) infinite;
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(var(--dx, 60px), var(--dy, -40px)); }
}
@keyframes blink {
  0%, 100% { opacity: 0; }
  45%, 60% { opacity: 0.95; }
}

/* porch light + swing animation */
.lamp-halo { animation: lampFlicker 9s linear infinite; transform-origin: 300px 238px; }
.lamp-bulb { animation: lampFlicker 9s linear infinite; }
.light-pool { animation: lampFlickerSoft 9s linear infinite; }
/* mostly steady, with two short stutters per cycle — like a real porch bulb */
@keyframes lampFlicker {
  0%, 100% { opacity: 0.88; }
  18%      { opacity: 0.97; }
  32%      { opacity: 0.9; }
  40.5%    { opacity: 0.92; }
  41%      { opacity: 0.45; }
  41.6%    { opacity: 0.9; }
  42.4%    { opacity: 0.55; }
  43%      { opacity: 0.95; }
  44%      { opacity: 0.85; }
  58%      { opacity: 0.96; }
  73.5%    { opacity: 0.93; }
  74%      { opacity: 0.6; }
  74.6%    { opacity: 0.95; }
  86%      { opacity: 0.9; }
}
@keyframes lampFlickerSoft {
  0%, 100% { opacity: 0.75; }
  18%      { opacity: 0.9; }
  40.5%    { opacity: 0.85; }
  41%      { opacity: 0.5; }
  41.6%    { opacity: 0.8; }
  42.4%    { opacity: 0.55; }
  43%      { opacity: 0.88; }
  58%      { opacity: 0.9; }
  73.5%    { opacity: 0.85; }
  74%      { opacity: 0.6; }
  74.6%    { opacity: 0.88; }
}
/* smooth breathing glow, used by the bottom CTA band */
@keyframes lampGlow {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.porch-swing {
  transform-box: view-box; /* Safari: keep the px origin relative to the viewBox */
  transform-origin: 1130px 72px;
  animation: swing 7.5s ease-in-out infinite;
}
@keyframes swing {
  0%, 100% { transform: rotate(1.1deg); }
  50% { transform: rotate(-1.1deg); }
}

.hero-fade {
  position: absolute; inset: auto 0 0 0; height: 130px; z-index: 3;
  background: linear-gradient(180deg, rgba(250,245,236,0) 0%, var(--cream) 100%);
}

.hero-content {
  position: relative; z-index: 4; text-align: center;
  width: min(880px, 92vw);
  padding: 120px 0 60px;
  color: var(--cream);
}
.hero-eyebrow {
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-soft); margin-bottom: 22px;
}
.hero-headline {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 1.04; letter-spacing: -0.015em;
  margin-bottom: 24px;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(7, 13, 10, 0.55);
}
.hero-headline .accent {
  display: block; font-style: italic; font-weight: 400;
  color: var(--amber-soft);
}
.hero-sub {
  font-size: clamp(16px, 1.9vw, 20px); line-height: 1.65;
  color: rgba(250, 245, 236, 0.86);
  max-width: 54ch; margin: 0 auto 34px;
  text-shadow: 0 1px 24px rgba(7, 13, 10, 0.6);
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note {
  margin-top: 22px; font-size: 14px; font-weight: 500;
  color: rgba(250, 245, 236, 0.62); letter-spacing: 0.02em;
}
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 4; width: 26px; height: 42px; border-radius: 14px;
  border: 2px solid rgba(250, 245, 236, 0.4);
}
.scroll-hint span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  margin-left: -2px; border-radius: 2px; background: rgba(250, 245, 236, 0.75);
  animation: hint 2.2s ease-in-out infinite;
}
@keyframes hint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
}

/* ==========================================================
   VALUES
   ========================================================== */
.values { padding: clamp(28px, 4vw, 48px) 0 0; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.value-card {
  background: #fff; border: 1px solid rgba(31, 42, 34, 0.07);
  border-radius: var(--radius); padding: 26px 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(233, 151, 62, 0.16), rgba(47, 74, 56, 0.1));
  color: var(--amber-deep);
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.value-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ==========================================================
   WORK — a dark stretch of the evening; cards glow like lit windows
   ========================================================== */
.work {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-night) 100%);
  color: var(--cream);
}
.work .eyebrow { color: var(--amber-soft); }
.work .section-sub { color: rgba(250, 245, 236, 0.72); }
.work-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.work-card {
  display: block; text-decoration: none;
  background: #fff; color: var(--ink);
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 20px 48px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
/* cards warm up like lit windows — one amber glow for all */
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3), 0 26px 68px rgba(233, 151, 62, 0.32);
}

/* stylized browser preview */
.mockup {
  --m1: #ddd; --m2: #bbb; --m3: #999;
  background: linear-gradient(160deg, var(--cream-2), var(--cream-3));
  padding: 26px 26px 0;
}
.mockup-window {
  background: #fff; border-radius: 12px 12px 0 0;
  box-shadow: 0 -1px 0 rgba(31,42,34,0.06), 0 12px 32px rgba(31,42,34,0.14);
  overflow: hidden; height: 210px;
  transition: transform 0.55s var(--ease-out);
}
.work-card:hover .mockup-window { transform: translateY(-8px); }
.mockup-bar {
  display: flex; gap: 6px; align-items: center;
  padding: 9px 12px; background: #f4f1ea; border-bottom: 1px solid rgba(31,42,34,0.06);
}
.mockup-bar i { width: 8px; height: 8px; border-radius: 50%; background: #ddd6c6; }
.mockup-bar i:first-child { background: #e8b0a2; }
.mockup-hero {
  height: 88px;
  background: linear-gradient(135deg, var(--m1), var(--m2) 60%, var(--m3));
  position: relative;
}
.mockup-hero::after {
  content: ""; position: absolute; left: 16px; bottom: 14px;
  width: 42%; height: 10px; border-radius: 5px; background: rgba(255,255,255,0.85);
}
.mockup-hero::before {
  content: ""; position: absolute; left: 16px; bottom: 32px;
  width: 62%; height: 14px; border-radius: 6px; background: rgba(255,255,255,0.95);
}
.mockup-body { padding: 14px 16px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.mockup-body i {
  height: 44px; border-radius: 8px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--m1) 30%, #f3f0e9), color-mix(in srgb, var(--m2) 22%, #efece4));
}
.mockup-lines { padding: 0 16px; }
.mockup-lines i { display: block; height: 7px; border-radius: 4px; background: #eae6db; margin-bottom: 7px; }
.mockup-lines i:last-child { width: 70%; }
/* real screenshot fills the window and slowly "scrolls" on hover */
.mockup-shot {
  width: 100%; height: auto; min-height: calc(100% - 27px);
  transition: transform 4.5s ease-in-out;
}
.work-card:hover .mockup-shot { transform: translateY(calc(-100% + 183px)); }

.mockup.family   { --m1: #e9a06b; --m2: #c96f52; --m3: #8e4a3f; }
.mockup.lawn     { --m1: #8fbf6a; --m2: #4e8f4a; --m3: #2f5e33; }
.mockup.plumbing { --m1: #6aa7d8; --m2: #3a72ad; --m3: #24507f; }
.mockup.athlete  { --m1: #8e9bb5; --m2: #4a5a7a; --m3: #232f47; }

.work-card-body { padding: 22px 26px 26px; }
.work-tag {
  display: inline-block; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber-deep); background: rgba(233, 151, 62, 0.13);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}
.work-card h3 {
  font-family: var(--serif); font-size: 23px; font-weight: 600; margin-bottom: 6px;
}
.work-card p { font-size: 15px; color: var(--ink-soft); margin-bottom: 14px; }
.work-link {
  font-size: 14.5px; font-weight: 600; color: var(--green);
  display: inline-flex; align-items: center; gap: 6px;
}
.work-link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease-out); }
.work-card:hover .work-link svg { transform: translateX(4px); }

/* ==========================================================
   STRING LIGHTS — hung across the dark sections
   ========================================================== */
.has-lights { padding-top: clamp(110px, 13vw, 170px); }
.string-lights {
  position: absolute; top: 0; left: 0; width: 100%;
  pointer-events: none;
}
.sl-wire { stroke: rgba(250, 245, 236, 0.22); stroke-width: 2; }
.sl-bulb line { stroke: rgba(250, 245, 236, 0.3); stroke-width: 2; }
.sl-bulb rect { fill: #3a2c18; }
.sl-light { fill: #ffd98f; }
.sl-glow {
  fill: url(#slGlow);
  animation: bulbBreathe 4.5s ease-in-out infinite alternate;
  animation-delay: calc(var(--i, 0) * -0.9s);
}
.sl-flicker .sl-glow, .sl-flicker .sl-light {
  animation: lampFlickerSoft 9s linear infinite;
  animation-delay: calc(var(--i, 0) * -2.2s);
}
@keyframes bulbBreathe {
  from { opacity: 0.55; }
  to   { opacity: 1; }
}
@media (max-width: 720px) {
  .string-lights { width: 190%; max-width: none; left: -45%; }
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.process .container, .pricing .container { position: relative; }
.process .container::before, .pricing .container::before {
  content: ""; position: absolute; top: -70px; left: -130px;
  width: 400px; height: 400px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(233, 151, 62, 0.11) 0%, rgba(233, 151, 62, 0) 65%);
}
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: clamp(30px, 4vw, 48px); }
.steps-line {
  position: absolute; top: 30px; left: 10%; right: 10%; height: 2px;
  background: rgba(31, 42, 34, 0.1); border-radius: 2px; overflow: hidden;
}
.steps-line-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--amber-deep));
  transition: width 1.4s var(--ease-out);
}
.steps.in .steps-line-fill { width: 100%; }
.step { position: relative; text-align: center; padding: 0 8px; }
.step-num {
  width: 60px; height: 60px; margin: 0 auto 20px;
  border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 2px solid rgba(31, 42, 34, 0.08);
  font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--amber-deep);
  box-shadow: var(--shadow-sm);
  position: relative; z-index: 1;
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease;
}
.step:hover .step-num { transform: scale(1.08); border-color: var(--amber); }

/* steps light up in sequence as the line reaches them — like porch steps at dusk */
.step-num { color: rgba(31, 42, 34, 0.35); }
.steps.in .step .step-num {
  animation: stepLightOn 1s ease-out forwards;
  animation-delay: calc(var(--d, 0s) * 4.5 + 0.25s);
}
@keyframes stepLightOn {
  0% {
    background: #fff; color: rgba(31, 42, 34, 0.35);
    border-color: rgba(31, 42, 34, 0.08); box-shadow: var(--shadow-sm);
  }
  30% {
    background: var(--amber-soft); color: #241708; border-color: var(--amber);
    box-shadow: 0 0 28px rgba(233, 151, 62, 0.65), var(--shadow-sm);
  }
  42% {
    background: #fff; color: rgba(31, 42, 34, 0.45);
    border-color: rgba(31, 42, 34, 0.12); box-shadow: var(--shadow-sm);
  }
  56%, 100% {
    background: var(--amber-soft); color: #241708; border-color: var(--amber);
    box-shadow: 0 0 22px rgba(233, 151, 62, 0.45), var(--shadow-sm);
  }
}
.step h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-soft); max-width: 34ch; margin-inline: auto; }

/* ==========================================================
   PRICING
   ========================================================== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch;
}
.price-card {
  background: #fff; border: 1px solid rgba(31, 42, 34, 0.08);
  border-radius: 24px; padding: 34px 30px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: linear-gradient(170deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--cream); border: none;
  box-shadow: 0 8px 20px rgba(34, 56, 41, 0.28), 0 28px 64px rgba(34, 56, 41, 0.3);
  position: relative;
}
.price-card.featured:hover { box-shadow: 0 10px 24px rgba(34, 56, 41, 0.32), 0 34px 76px rgba(34, 56, 41, 0.36); }
.price-name { font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-deep); }
.price-card.featured .price-name { color: var(--amber-soft); }
.price-amount {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(40px, 4vw, 52px); line-height: 1; margin: 14px 0 4px;
}
.price-term { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }
.price-card.featured .price-term { color: rgba(250, 245, 236, 0.65); }
.price-features { list-style: none; margin-bottom: 30px; flex: 1; }
.price-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; padding: 7px 0;
  border-bottom: 1px solid rgba(31, 42, 34, 0.06);
}
.price-card.featured .price-features li { border-color: rgba(250, 245, 236, 0.12); }
.price-features li:last-child { border-bottom: none; }
.price-check { flex: none; width: 18px; height: 18px; margin-top: 2px; color: var(--amber-deep); }
.price-card.featured .price-check { color: var(--amber-soft); }
.price-card .btn { width: 100%; }
.price-card:not(.featured) .btn-ghost { color: var(--green-deep); border-color: rgba(47, 74, 56, 0.4); }

/* ==========================================================
   ABOUT
   ========================================================== */
.about-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid rgba(31, 42, 34, 0.07);
  border-radius: 28px; padding: clamp(40px, 6vw, 72px);
  box-shadow: var(--shadow-md);
}
.about-glow {
  position: absolute; top: -140px; right: -140px; width: 420px; height: 420px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(233, 151, 62, 0.16) 0%, rgba(233, 151, 62, 0) 65%);
}
.about-layout {
  display: grid; grid-template-columns: 300px 1fr;
  gap: clamp(32px, 5vw, 60px); align-items: start;
  position: relative;
}
.about-layout.no-photo { grid-template-columns: 1fr; }
.about-layout.no-photo .about-photo { display: none; }
.about-photo { position: relative; }
.about-photo img {
  width: 100%; border-radius: 20px;
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
  border: 6px solid #fff;
  outline: 1px solid rgba(31, 42, 34, 0.08);
  transition: transform 0.5s var(--ease-out);
}
.about-photo:hover img { transform: rotate(0deg) scale(1.02); }
.about-photo::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border-radius: 20px; z-index: -1;
  background: linear-gradient(135deg, rgba(233, 151, 62, 0.25), rgba(47, 74, 56, 0.15));
  transform: rotate(2deg);
}
@media (max-width: 820px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-photo { max-width: 260px; }
}
.about-body {
  font-family: var(--serif); font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.6; font-weight: 400; color: var(--ink);
  max-width: 62ch; margin-top: 10px;
}
.about-body::before { content: "“"; color: var(--amber); }
.about-body::after { content: "”"; color: var(--amber); }
.about-signature {
  margin-top: 26px; font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--amber-deep);
}

/* ==========================================================
   CTA BAND + FOOTER
   ========================================================== */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-night) 100%);
  color: var(--cream); text-align: center;
  padding: clamp(80px, 11vw, 140px) 0;
  margin-top: clamp(40px, 6vw, 80px);
}
.cta-lamp {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 560px; height: 560px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(233, 151, 62, 0.22) 0%, rgba(233, 151, 62, 0) 62%);
  animation: lampGlow 6s ease-in-out infinite;
}
.cta-heading {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 4.6vw, 54px); line-height: 1.1; margin-bottom: 16px;
}
.cta-body {
  color: rgba(250, 245, 236, 0.78); font-size: clamp(15px, 1.7vw, 18px);
  max-width: 52ch; margin: 0 auto 36px;
}
.cta-inner { position: relative; }

.footer { background: var(--green-night); color: rgba(250, 245, 236, 0.72); }
.footer-inner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  padding: 30px 0; border-top: 1px solid rgba(250, 245, 236, 0.09);
}
.brand-footer { color: var(--cream); font-size: 17px; }
.footer-links { display: flex; gap: 22px; margin-left: auto; }
.footer-links a { font-size: 14px; text-decoration: none; opacity: 0.75; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-copy { font-size: 13px; width: 100%; opacity: 0.55; }

/* ==========================================================
   REVEAL ANIMATIONS
   ========================================================== */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 960px) {
  .values-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps-line { display: none; }
  .nav-links, .nav-cta-wrap { display: none; }
  /* keep the 3D pill in the bar on mobile, compact, pushed to the right */
  .nav-3d { margin-left: auto; margin-right: 8px; font-size: 12px; padding: 7px 13px; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-burger span {
    width: 24px; height: 2.5px; border-radius: 2px;
    background: currentColor; transition: transform 0.3s var(--ease-out), opacity 0.2s;
  }
  .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav.menu-open { background: var(--green-night); color: var(--cream); }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--green-night); padding: 12px 5vw 28px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.3);
  }
  .nav.menu-open .nav-links a { padding: 12px 0; font-size: 17px; }
  /* on small screens the porch posts fall outside the crop; slide the
     lamp and swing into the visible centre band so the scene survives */
  .porch-lamp, .light-pool { transform: translateX(280px); }
  .swing-pos { transform: translateX(-250px); }
  .hero-content { padding: 175px 0 90px; }
}

/* Animations run regardless of the device's reduce-motion setting
   (owner's choice) — no prefers-reduced-motion gating. */
