/* ============================================================
   ProperDev - site styles ("Orchard" design)
   Warm, human, Somerset-friendly. Sage green, clay, cream.
   Outfit (headings) · DM Sans (body) · Caveat (hand notes)
   ============================================================ */

:root {
  --cream: #fbf6ee;
  --cream-2: #f3eadb;
  --cream-3: #eadfcb;
  --green: #4f6b4a;
  --green-deep: #34492f;
  --green-light: #dfe8d3;
  --green-pale: #eef3e6;
  --clay: #e0895a;
  --clay-deep: #c96f3f;
  --clay-light: #fbe3d4;
  --sun: #f4c95d;
  --sun-light: #fdf0c9;
  --ink: #2b2a26;
  --ink-2: #4b4a44;
  --muted: #6f6e66;
  --line: rgba(43, 42, 38, 0.1);
  --card: #fffdf9;
  --shadow: 0 10px 30px -12px rgba(52, 73, 47, 0.25);
  --shadow-lg: 0 30px 60px -24px rgba(52, 73, 47, 0.35);
  --r: 20px;
  --r-lg: 28px;
  --head: "Outfit", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --hand: "Caveat", "Segoe Print", cursive;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body); font-size: 1.05rem; line-height: 1.6;
  color: var(--ink); background: var(--cream);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
a:hover { color: var(--green-deep); }
h1, h2, h3 { font-family: var(--head); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }

.wrap { width: min(1180px, calc(100% - 2.5rem)); margin: 0 auto; }
@media (max-width: 640px) { .wrap { width: calc(100% - 1.75rem); } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 100; background: var(--green); color: #fff; padding: 0.6rem 1rem; border-radius: 10px; text-decoration: none; font-weight: 600; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 6px; }

.hand { font-family: var(--hand); font-weight: 600; color: var(--clay-deep); line-height: 1.05; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--head); font-weight: 600; font-size: 1rem;
  background: var(--green); color: #fff !important;
  padding: 0.85rem 1.4rem; border-radius: 999px; border: 2px solid var(--green);
  text-decoration: none; cursor: pointer;
  box-shadow: 0 6px 0 -2px var(--green-deep);
  transition: transform 0.2s var(--bounce), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 9px 0 -2px var(--green-deep), 0 12px 24px -10px rgba(52, 73, 47, 0.5); }
.btn:active { transform: translateY(1px); box-shadow: 0 3px 0 -2px var(--green-deep); }
.btn-sm { padding: 0.55rem 1.05rem; font-size: 0.92rem; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.08rem; }
.btn-soft {
  background: #fff; color: var(--green-deep) !important; border-color: var(--green-light);
  box-shadow: 0 6px 0 -2px var(--green-light);
}
.btn-soft:hover { border-color: var(--green); box-shadow: 0 9px 0 -2px var(--green-light), 0 12px 24px -12px rgba(52, 73, 47, 0.35); }
.btn-soft:active { box-shadow: 0 3px 0 -2px var(--green-light); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 238, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(52, 73, 47, 0.35); background: rgba(251, 246, 238, 0.96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.logo {
  display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none;
  font-family: var(--head); font-weight: 700; font-size: 1.45rem; letter-spacing: -0.03em; color: var(--ink); z-index: 2; position: relative;
}
.logo b { color: var(--green); font-weight: 700; }
.logo-mark { width: 34px; height: 34px; transition: transform 0.4s var(--bounce); }
.logo:hover .logo-mark { transform: rotate(-12deg) scale(1.08); }
.logo:hover { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 0.2rem; }
.nav a:not(.btn) {
  text-decoration: none; color: var(--ink-2); font-weight: 500; font-size: 0.97rem;
  padding: 0.5rem 0.85rem; border-radius: 999px; transition: background 0.2s, color 0.2s;
}
.nav a:not(.btn):hover { background: var(--green-light); color: var(--green-deep); }
.nav .btn { margin-left: 0.5rem; }

.nav-toggle {
  display: none; width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: 2px solid var(--green-light); background: #fff; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; z-index: 2; position: relative;
}
.nav-toggle-bar { display: block; width: 1.1rem; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .site-header { background: var(--cream); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0; z-index: 1; flex-direction: column; justify-content: center; align-items: center; gap: 0.5rem;
    background: var(--cream); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.25s var(--ease), visibility 0.25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav a:not(.btn) { font-family: var(--head); font-size: 1.6rem; font-weight: 600; padding: 0.6rem 1.4rem; }
  .nav .btn { margin: 1rem 0 0; font-size: 1.05rem; padding: 0.9rem 1.6rem; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem); overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: 0.7; z-index: -1; }
.blob-1 { width: 520px; height: 520px; background: var(--green-light); top: -200px; right: -120px; }
.blob-2 { width: 380px; height: 380px; background: var(--clay-light); bottom: -120px; left: -140px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.chip {
  display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 500; font-size: 0.88rem; color: var(--green-deep);
  background: var(--green-light); padding: 0.45rem 0.9rem 0.45rem 0.75rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.chip svg { width: 15px; height: 15px; }

.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.4rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.02;
  margin-bottom: 1.4rem; text-wrap: balance;
}
.squiggle-wrap { color: var(--green); white-space: nowrap; }

.hero .lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); color: var(--ink-2); max-width: 34rem; margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.areas-blurb {
  max-width: 46rem;
  margin: 2.25rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(251, 246, 238, 0.92);
}
.band-green .areas-blurb { color: rgba(251, 246, 238, 0.92); }


.hero-me {
  display: flex; align-items: center; gap: 0.9rem; position: relative;
  background: #fff; border: 2px solid var(--cream-3); border-radius: 999px; padding: 0.55rem 1.4rem 0.55rem 0.55rem;
  width: fit-content; max-width: 100%; box-shadow: var(--shadow);
}
.hero-me img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: center 20%; flex-shrink: 0; border: 3px solid var(--sun-light); }
.hero-me p { font-size: 0.93rem; line-height: 1.4; color: var(--ink-2); }
.hero-me strong { color: var(--ink); }
.hero-me a { font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--green-light); white-space: nowrap; }
.hero-me a:hover { border-color: var(--green); }
.hand-me { position: absolute; left: 1.15rem; bottom: -2.1rem; font-size: 1.3rem; display: inline-flex; align-items: flex-end; gap: 0.15rem; transform: rotate(-4deg); white-space: nowrap; }
.hand-arrow { width: 1.6rem; height: 1.8rem; margin-bottom: 0.15rem; }
.hero-me { margin-bottom: 2.25rem; }

/* Phone mock-up */
.hero-visual { position: relative; display: flex; justify-content: center; padding: 2rem 0; }
.phone {
  width: min(300px, 78%); aspect-ratio: 9 / 18.5; background: #1d1c19; border-radius: 44px; padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(52, 73, 47, 0.55), 0 0 0 2px #3a3833 inset;
  position: relative; transform: rotate(-4deg); transition: transform 0.6s var(--ease);
}
.hero-visual:hover .phone { transform: rotate(-1deg); }
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 34%; height: 24px; background: #1d1c19; border-radius: 0 0 16px 16px; z-index: 2; }
.phone-screen { background: var(--cream); border-radius: 34px; height: 100%; overflow: hidden; display: flex; flex-direction: column; font-size: 11px; position: relative; }
.ps-header { display: flex; justify-content: space-between; align-items: center; padding: 34px 14px 10px; }
.ps-logo { display: inline-flex; align-items: center; gap: 5px; font-family: var(--head); font-weight: 700; font-size: 11.5px; color: var(--ink); }
.ps-logo i { width: 14px; height: 14px; border-radius: 4px; background: var(--green); display: inline-block; }
.ps-call { background: var(--green); color: #fff; font-weight: 600; border-radius: 999px; padding: 4px 10px; font-size: 10px; }
.ps-hero { margin: 4px 12px 0; background: linear-gradient(140deg, var(--green-deep), var(--green)); color: #fff; border-radius: 16px; padding: 16px 14px 14px; display: grid; gap: 6px; }
.ps-tag { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; font-weight: 600; }
.ps-hero strong { font-family: var(--head); font-size: 15px; line-height: 1.15; letter-spacing: -0.01em; }
.ps-sub { font-size: 9.5px; opacity: 0.85; }
.ps-services { display: flex; gap: 6px; flex-wrap: wrap; padding: 12px 12px 0; }
.ps-services span { background: #fff; border: 1.5px solid var(--cream-3); border-radius: 999px; padding: 4px 9px; font-weight: 500; color: var(--ink-2); font-size: 9.5px; }
.ps-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 12px 12px 0; }
.ps-photos i { aspect-ratio: 1; border-radius: 10px; background: linear-gradient(160deg, var(--cream-3), var(--clay-light)); }
.ps-photos i:nth-child(2) { background: linear-gradient(160deg, var(--green-light), var(--cream-3)); }
.ps-photos i:nth-child(3) { background: linear-gradient(160deg, var(--sun-light), var(--clay-light)); }
.ps-review { margin: 12px 12px 0; background: #fff; border: 1.5px solid var(--cream-3); border-radius: 14px; padding: 10px 12px 10px; display: grid; gap: 5px; }
.ps-stars { color: var(--sun); font-size: 10px; letter-spacing: 0.12em; }
.ps-review p { font-size: 10px; line-height: 1.4; color: var(--ink); margin: 0; }
.ps-who { display: inline-flex; align-items: center; gap: 6px; font-size: 9px; color: var(--muted); font-weight: 500; }
.ps-who i { width: 16px; height: 16px; border-radius: 50%; background: var(--clay-light); color: var(--clay-deep); font-style: normal; font-weight: 700; font-size: 8.5px; display: inline-grid; place-items: center; }
.ps-trust { display: flex; gap: 6px; padding: 10px 12px 0; }
.ps-trust span { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 4px; background: var(--cream-2); border-radius: 8px; padding: 6px 4px; font-size: 8.5px; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.ps-trust b { width: 6px; height: 6px; border-radius: 50%; background: #3fa66b; box-shadow: 0 0 0 2px rgba(63, 166, 107, 0.2); }
.ps-cta {
  margin: auto 12px 14px; background: var(--clay); color: #fff; font-family: var(--head); font-weight: 700; font-size: 12px;
  border-radius: 999px; padding: 11px; text-align: center; display: flex; justify-content: center; align-items: center; gap: 8px;
  box-shadow: 0 8px 20px -8px rgba(201, 111, 63, 0.8); animation: ctaPulse 2.6s ease-in-out infinite;
}
.ps-cta-ico { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); animation: ring 2.6s ease-out infinite; }
@keyframes ctaPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); } 70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }

.float {
  position: absolute; display: flex; align-items: center; gap: 0.7rem;
  background: #fff; border-radius: 16px; padding: 0.7rem 0.9rem; box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--cream-3); font-size: 0.82rem; max-width: 240px;
  animation: floaty 6s ease-in-out infinite;
}
.float strong { display: block; font-family: var(--head); font-size: 0.88rem; color: var(--ink); }
.float span:not(.float-ico):not(.g) { color: var(--muted); font-size: 0.78rem; line-height: 1.3; display: block; }
.float-ico { width: 34px; height: 34px; border-radius: 10px; background: var(--green-light); color: var(--green-deep); display: grid; place-items: center; font-size: 1rem; flex-shrink: 0; }
.float .g { width: 34px; height: 34px; border-radius: 10px; background: #fff; border: 1.5px solid var(--line); display: grid; place-items: center; font-family: var(--head); font-weight: 800; color: #4285f4; font-size: 1.1rem; flex-shrink: 0; }
.float-enquiry { right: -4%; top: 16%; animation-delay: -2s; }
.float-google { left: -6%; bottom: 20%; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hand-phone { position: absolute; right: 0; bottom: -0.25rem; font-size: 1.3rem; text-align: right; transform: rotate(4deg); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: 2; padding: 1.5rem 0 0; }
  .phone { width: min(280px, 72%); }
  .float-enquiry { right: 0; }
  .float-google { left: 0; }
  .hand-phone { display: none; }
}
@media (max-width: 480px) {
  .hero-me { border-radius: 24px; padding: 0.75rem; }
  .hand-me { left: 1rem; }
  .float { font-size: 0.75rem; padding: 0.55rem 0.7rem; max-width: 190px; }
}

/* ---------- Reassure ---------- */
.reassure { padding: 1rem 0 2.5rem; }
.reassure-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
  background: #fff; border: 2px solid var(--cream-3); border-radius: var(--r-lg); padding: 1.1rem 1.25rem;
}
.reassure-row > div { display: flex; align-items: center; gap: 0.75rem; font-size: 0.92rem; color: var(--ink-2); line-height: 1.35; }
.reassure-row svg { width: 34px; height: 34px; padding: 7px; border-radius: 10px; background: var(--green-light); color: var(--green-deep); flex-shrink: 0; }
.reassure-row > div:nth-child(2) svg { background: var(--sun-light); color: #8a6a12; }
.reassure-row > div:nth-child(3) svg { background: var(--clay-light); color: var(--clay-deep); }
.reassure-row strong { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) { .reassure-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .reassure-row { grid-template-columns: 1fr; } }

/* ---------- Waves & bands ---------- */
.wave { line-height: 0; display: block; }
.wave svg { width: 100%; height: clamp(28px, 5vw, 70px); display: block; }
.wave-to-green svg path { fill: var(--green-deep); }
.wave-from-green { background: var(--green-deep); }
.wave-from-green svg path { fill: var(--cream); }
.wave-to-footer svg path { fill: var(--green-deep); }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
[id] { scroll-margin-top: calc(var(--header-h) + 0.5rem); }
.band-green { background: var(--green-deep); color: var(--cream); }
.band-green h2 { color: #fff; }
.band-green .sec-intro { color: rgba(251, 246, 238, 0.75); }
.band-green .eyebrow { color: var(--sun); }
.band-cream { background: var(--cream-2); }

.sec-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 44rem; }
.sec-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { font-family: var(--head); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--clay-deep); margin-bottom: 0.75rem; }
.sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.85rem; text-wrap: balance; }
.sec-intro { color: var(--ink-2); font-size: 1.08rem; }

/* ---------- Cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: var(--card); color: var(--ink); border-radius: var(--r-lg); padding: 1.9rem 1.7rem 2rem;
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s var(--bounce), box-shadow 0.35s var(--ease);
}
.card:nth-child(1) { transform: rotate(-1deg); }
.card:nth-child(3) { transform: rotate(1deg); }
.card:hover { transform: rotate(0) translateY(-6px); box-shadow: 0 30px 50px -24px rgba(0, 0, 0, 0.5); }
.card-ico { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 1.25rem; }
.card-ico svg { width: 30px; height: 30px; }
.ico-clay { background: var(--clay-light); color: var(--clay-deep); }
.ico-green { background: var(--green-light); color: var(--green-deep); }
.ico-sun { background: var(--sun-light); color: #8a6a12; }
.card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.card p { color: var(--ink-2); font-size: 0.98rem; }
@media (max-width: 900px) {
  .cards-3 { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .card:nth-child(1), .card:nth-child(3) { transform: none; }
}

/* ---------- Work ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.work {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: #fff; border-radius: var(--r-lg); overflow: hidden; border: 2px solid var(--cream-3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s var(--bounce), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.work:nth-child(3n + 1) { transform: rotate(-0.6deg); }
.work:nth-child(3n) { transform: rotate(0.6deg); }
.work:hover { transform: rotate(0) translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-light); color: inherit; }
.browser { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0.9rem; background: var(--cream-2); border-bottom: 2px solid var(--cream-3); }
.dots { display: inline-flex; gap: 5px; }
.dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--clay); display: inline-block; }
.dots i:nth-child(2) { background: var(--sun); }
.dots i:nth-child(3) { background: var(--green); }
.url { flex: 1; font-size: 0.72rem; color: var(--muted); background: #fff; border-radius: 6px; padding: 0.2rem 0.6rem; text-align: center; }
.work img { aspect-ratio: 16 / 10; object-fit: cover; object-position: top; width: 100%; transition: transform 0.6s var(--ease); }
.work:hover img { transform: scale(1.03); }
.work-meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.2rem 1.25rem; flex: 1; border-top: 2px solid var(--cream-3); }
.tag { display: inline-block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.25rem 0.6rem; border-radius: 999px; margin-bottom: 0.5rem; }
.tag-green { background: var(--green-light); color: var(--green-deep); }
.tag-clay { background: var(--clay-light); color: var(--clay-deep); }
.tag-sun { background: var(--sun-light); color: #8a6a12; }
.work h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.work p { color: var(--muted); font-size: 0.92rem; }
.visit { flex-shrink: 0; font-family: var(--head); font-weight: 600; font-size: 0.85rem; color: var(--green); background: var(--green-pale); padding: 0.4rem 0.75rem; border-radius: 999px; white-space: nowrap; transition: background 0.2s, color 0.2s; }
.work:hover .visit { background: var(--green); color: #fff; }
@media (max-width: 960px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } .work:nth-child(n) { transform: none; } }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; }
.plan {
  background: #fff; border-radius: var(--r-lg); padding: 1.9rem 1.7rem; position: relative; display: flex; flex-direction: column;
  border: 2px solid var(--cream-3); transition: transform 0.35s var(--bounce), box-shadow 0.35s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan h3 { font-size: 1.45rem; }
.plan .who { color: var(--muted); font-size: 0.95rem; margin: 0.4rem 0 1.25rem; min-height: 2.8em; }
.price { font-family: var(--head); font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; display: flex; align-items: baseline; gap: 0.5rem; }
.price span { font-family: var(--body); font-size: 0.95rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.monthly { font-weight: 600; color: var(--green-deep); margin: 0.5rem 0 1.25rem; padding-bottom: 1.25rem; border-bottom: 2px dashed var(--cream-3); }
.plan ul { list-style: none; flex: 1; margin-bottom: 1.5rem; display: grid; gap: 0.55rem; }
.plan li { position: relative; padding-left: 1.75rem; font-size: 0.96rem; }
.plan li::before {
  content: ""; position: absolute; left: 0; top: 0.2rem; width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--green-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%2334492f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.plan .btn { width: 100%; }
.plan-featured { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); box-shadow: var(--shadow-lg); margin-top: -0.75rem; padding-top: 2.4rem; }
.plan-featured h3, .plan-featured .price { color: #fff; }
.plan-featured .who { color: rgba(251, 246, 238, 0.7); }
.plan-featured .price span { color: rgba(251, 246, 238, 0.6); }
.plan-featured .monthly { color: var(--sun); border-color: rgba(251, 246, 238, 0.2); }
.plan-featured li::before { background-color: rgba(255, 255, 255, 0.15); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%23f4c95d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.plan-featured .btn { background: var(--clay); border-color: var(--clay); box-shadow: 0 6px 0 -2px var(--clay-deep); }
.plan-featured .btn:hover { box-shadow: 0 9px 0 -2px var(--clay-deep), 0 12px 24px -10px rgba(201, 111, 63, 0.6); }
.sticky-note {
  position: absolute; top: -1.4rem; right: 1.25rem; background: var(--sun); color: #5a4409;
  font-family: var(--hand); font-weight: 600; font-size: 1.15rem; line-height: 1; text-align: center;
  padding: 0.6rem 0.9rem; border-radius: 4px; transform: rotate(4deg);
  box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.35);
}
.sticky-note::before { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(-3deg); width: 44px; height: 12px; background: rgba(255, 255, 255, 0.55); border-radius: 2px; }
@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .plan-featured { margin-top: 0.5rem; }
}

.calc {
  margin-top: 2.5rem; background: #fff; border: 2px solid var(--cream-3); border-radius: var(--r-lg);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; padding: 2rem; align-items: center;
}
.calc h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.calc-left p { color: var(--ink-2); margin-bottom: 1.25rem; font-size: 0.98rem; }
.calc-toggle { display: inline-flex; background: var(--cream-2); border-radius: 999px; padding: 4px; gap: 2px; }
.calc-toggle label { position: relative; cursor: pointer; }
.calc-toggle input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.calc-toggle span { display: inline-block; padding: 0.55rem 1.1rem; border-radius: 999px; font-family: var(--head); font-weight: 600; font-size: 0.95rem; color: var(--ink-2); transition: background 0.25s var(--ease), color 0.2s; }
.calc-toggle input:checked + span { background: var(--green); color: #fff; box-shadow: 0 4px 10px -4px rgba(52, 73, 47, 0.6); }
.calc-toggle input:focus-visible + span { outline: 3px solid var(--clay); outline-offset: 2px; }
.calc-out { display: grid; gap: 0; border-radius: 18px; overflow: hidden; border: 2px solid var(--cream-3); }
.calc-out > div { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.85rem 1.1rem; border-bottom: 2px solid var(--cream-3); font-size: 0.95rem; }
.calc-out > div:last-child { border-bottom: 0; }
.calc-out dt { color: var(--muted); }
.calc-out dd { font-family: var(--head); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.calc-total { background: var(--green-pale); }
.calc-total dt { color: var(--green-deep); font-weight: 600; }
.calc-total dd { color: var(--green-deep); font-size: 1.5rem; }
.calc-out dd.bump { animation: bump 0.4s var(--bounce); }
@keyframes bump { 0% { transform: scale(0.9); } 60% { transform: scale(1.08); } 100% { transform: scale(1); } }
@media (max-width: 820px) { .calc { grid-template-columns: 1fr; padding: 1.5rem; } }
.small-print { margin-top: 1.25rem; font-size: 0.85rem; color: var(--muted); max-width: 60rem; }

/* ---------- Path (how it works) ---------- */
.path { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; counter-reset: step; }
.path::before {
  content: ""; position: absolute; top: 2rem; left: 12.5%; right: 12.5%; height: 0;
  border-top: 3px dashed var(--clay-light); z-index: 0;
}
.path li { position: relative; z-index: 1; text-align: center; padding: 0 0.5rem; }
.path-n {
  width: 4rem; height: 4rem; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1.1rem;
  background: var(--clay); color: #fff; font-family: var(--head); font-weight: 800; font-size: 1.5rem;
  box-shadow: 0 0 0 8px var(--cream), 0 12px 24px -10px rgba(201, 111, 63, 0.7);
  transition: transform 0.4s var(--bounce);
}
.path li:hover .path-n { transform: scale(1.08) rotate(-6deg); }
.path h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.path p { color: var(--ink-2); font-size: 0.95rem; }
@media (max-width: 900px) {
  .path { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .path::before { display: none; }
}
@media (max-width: 520px) {
  .path { grid-template-columns: 1fr; text-align: left; }
  .path li { display: grid; grid-template-columns: 3.25rem 1fr; gap: 0 1rem; text-align: left; }
  .path-n { width: 3.25rem; height: 3.25rem; font-size: 1.2rem; margin: 0; grid-row: 1 / 3; box-shadow: none; }
}

/* ---------- About ---------- */
.about { padding: 0 0 clamp(3.5rem, 7vw, 6rem); }
.about-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; align-items: center;
  background: var(--green-light); border-radius: var(--r-lg); padding: 2.5rem;
}
.about-photo { position: relative; }
.about-photo img { border-radius: 24px; aspect-ratio: 1; object-fit: cover; object-position: center 15%; transform: rotate(-3deg); border: 6px solid #fff; box-shadow: var(--shadow-lg); }
.hand-about { position: absolute; bottom: -1.6rem; right: -0.5rem; font-size: 1.5rem; transform: rotate(-4deg); }
.about-card blockquote p { font-family: var(--head); font-size: clamp(1.3rem, 2.2vw, 1.75rem); font-weight: 600; line-height: 1.3; letter-spacing: -0.02em; color: var(--green-deep); margin-bottom: 1rem; text-wrap: balance; }
.about-card footer { color: var(--ink-2); font-size: 0.95rem; margin-bottom: 1.25rem; }
.about-card footer strong { color: var(--ink); }
.about-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
@media (max-width: 820px) {
  .about-card { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; }
  .about-photo { max-width: 240px; margin: 0 auto; }
  .about-actions { justify-content: center; }
}

/* ---------- FAQ ---------- */
.faq { columns: 2; column-gap: 1.25rem; max-width: 1000px; margin: 0 auto; }
.faq details { break-inside: avoid; background: #fff; border: 2px solid var(--cream-3); border-radius: 18px; padding: 0 1.25rem; margin-bottom: 1rem; transition: border-color 0.2s; }
.faq details[open] { border-color: var(--green-light); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.05rem 0; font-family: var(--head); font-weight: 600; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.q-ico { position: relative; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--green-light); flex-shrink: 0; transition: transform 0.3s var(--bounce), background 0.2s; }
.q-ico::before, .q-ico::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--green-deep); border-radius: 2px; }
.q-ico::before { width: 0.75rem; height: 2px; transform: translate(-50%, -50%); }
.q-ico::after { width: 2px; height: 0.75rem; transform: translate(-50%, -50%); transition: transform 0.3s var(--ease); }
.faq details[open] .q-ico { transform: rotate(180deg); background: var(--clay-light); }
.faq details[open] .q-ico::after { transform: translate(-50%, -50%) scaleY(0); }
.faq details[open] .q-ico::before { background: var(--clay-deep); }
.faq details p { color: var(--ink-2); padding: 0 0 1.15rem; font-size: 0.97rem; }
@media (max-width: 760px) { .faq { columns: 1; } }

/* ---------- Contact ---------- */
.contact { padding-top: 0; }
.contact-card {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 2.5rem;
  background: #fff; border: 2px solid var(--cream-3); border-radius: var(--r-lg); padding: 2.5rem; box-shadow: var(--shadow);
}
.contact-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); letter-spacing: -0.03em; margin-bottom: 0.85rem; }
.contact-copy > p { color: var(--ink-2); margin-bottom: 1.75rem; }
.contact-alt { background: var(--cream-2); border-radius: 20px; padding: 1.4rem; }
.contact-alt-label { font-family: var(--head); font-weight: 600; color: var(--muted); font-size: 0.9rem; margin-bottom: 0.25rem; }
.big-phone { display: block; font-family: var(--head); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.03em; color: var(--green-deep); text-decoration: none; margin-bottom: 1rem; }
.big-phone:hover { color: var(--clay-deep); }
.contact-alt-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

form { display: grid; gap: 1rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f { display: grid; gap: 0.35rem; }
.f label { font-family: var(--head); font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.f label small { color: var(--muted); font-weight: 500; font-family: var(--body); }
input, textarea, select {
  width: 100%; font: inherit; color: var(--ink); background: var(--cream);
  border: 2px solid var(--cream-3); border-radius: 14px; padding: 0.8rem 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
input::placeholder, textarea::placeholder { color: #a39f95; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px var(--green-light); }
textarea { resize: vertical; min-height: 6rem; }
select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 6l5 5 5-5' stroke='%234f6b4a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 14px; padding-right: 2.5rem; cursor: pointer; }
form .btn { justify-self: start; }
.form-note { font-size: 0.85rem; color: var(--muted); }
#form-success { background: var(--green-pale); color: var(--green-deep); border: 2px solid var(--green-light); border-radius: 14px; padding: 0.85rem 1rem; font-weight: 600; font-size: 0.95rem; }
#form-success.is-error { background: var(--clay-light); color: var(--clay-deep); border-color: #f2c7ad; }
#form-success[hidden] { display: none !important; }
@media (max-width: 860px) { .contact-card { grid-template-columns: 1fr; padding: 1.75rem; } }
@media (max-width: 520px) { .f-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(251, 246, 238, 0.8); padding: 2.5rem 0 3rem; font-size: 0.92rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem 2rem; align-items: start; }
.footer-brand { display: flex; gap: 0.85rem; align-items: flex-start; }
.footer-brand .logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.footer-brand strong { color: #fff; font-family: var(--head); font-size: 1.15rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; justify-content: flex-end; }
.footer-nav a, .footer-copy a { color: rgba(251, 246, 238, 0.85); text-decoration: none; font-weight: 500; }
.footer-nav a:hover, .footer-copy a:hover { color: var(--sun); }
.footer-copy { grid-column: 1 / -1; border-top: 1px solid rgba(251, 246, 238, 0.15); padding-top: 1.25rem; font-size: 0.85rem; color: rgba(251, 246, 238, 0.6); }
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}

/* ---------- Privacy page ---------- */
.privacy-page { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem); }
.privacy-page .wrap { max-width: 760px; }
.privacy-page h1 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.privacy-page h2 { font-size: 1.25rem; margin: 2rem 0 0.5rem; }
.privacy-page p, .privacy-page li { color: var(--ink-2); margin-bottom: 0.8rem; }
.privacy-page ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.privacy-page a { font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--green-light); }
.privacy-page a:hover { border-color: var(--green); }
.privacy-meta { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.75rem; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .card.reveal.in:nth-child(1) { transform: rotate(-1deg); }
.js .card.reveal.in:nth-child(3) { transform: rotate(1deg); }
.js .card.reveal.in:hover { transform: rotate(0) translateY(-6px); }
.js .work.reveal.in:nth-child(3n + 1) { transform: rotate(-0.6deg); }
.js .work.reveal.in:nth-child(3n) { transform: rotate(0.6deg); }
.js .work.reveal.in:hover { transform: rotate(0) translateY(-6px); }
.js .cards-3 .reveal:nth-child(2), .js .plans .reveal:nth-child(2), .js .path .reveal:nth-child(2), .js .work-grid .reveal:nth-child(3n + 2) { transition-delay: 0.1s; }
.js .cards-3 .reveal:nth-child(3), .js .plans .reveal:nth-child(3), .js .path .reveal:nth-child(3), .js .work-grid .reveal:nth-child(3n) { transition-delay: 0.2s; }
.js .path .reveal:nth-child(4) { transition-delay: 0.3s; }
@media (max-width: 900px) {
  .js .card.reveal.in:nth-child(n) { transform: none; }
}
@media (max-width: 600px) {
  .js .work.reveal.in:nth-child(n) { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

::selection { background: var(--clay); color: #fff; }
