/* ==========================================================================
   Oregon Gravel — site styles
   Design system: Organic / Natural ("there are no straight lines in nature")

   1. Tokens          — every color, font, radius, shadow and timing lives here
   2. Base            — reset, grain texture, typography, focus
   3. Layout          — containers, sections, grids
   4. Components      — nav, buttons, badges, cards, features, forms, FAQ ...
   5. Page pieces     — hero, stats, steps, tours, booking, CTA, footer
   6. Motion & responsive
   ========================================================================== */

/* 1. Tokens -------------------------------------------------------------- */
:root {
  /* Palette: forest floor, clay and unbleached paper */
  --background: #FDFCF8;          /* rice paper */
  --foreground: #2C2C24;          /* deep loam */
  --card: #FEFEFA;
  --primary: #5D7052;             /* moss */
  --primary-deep: #4E5F44;        /* moss, pressed */
  --primary-foreground: #F3F4F1;  /* pale mist */
  --secondary: #C18C5D;           /* terracotta — fills, borders, blobs */
  --secondary-ink: #8E5F36;       /* terracotta for text (AA on paper) */
  --secondary-foreground: #FFFFFF;
  --accent: #E6DCCD;              /* sand */
  --accent-foreground: #4A4A40;   /* bark */
  --muted: #F0EBE5;               /* stone */
  --muted-foreground: #6B6B5F;    /* dried grass (darkened for AA) */
  --border: #DED8CF;              /* raw timber */
  --destructive: #A85448;         /* burnt sienna */

  /* Tints */
  --primary-10: rgb(93 112 82 / .10);
  --primary-30: rgb(93 112 82 / .30);
  --secondary-10: rgb(193 140 93 / .10);
  --border-50: rgb(222 216 207 / .5);
  --sand-30: rgb(230 220 205 / .3);
  --stone-50: rgb(240 235 229 / .5);

  /* Type — swap --font-display to "Roca" once a web license is added */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Nunito", "Quicksand", ui-rounded, system-ui, sans-serif;
  --display-soft: "SOFT" 100, "WONK" 0;
  /* 1.25 scale */
  --text-sm: .875rem;
  --text-base: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5625rem;
  --text-2xl: clamp(1.9rem, 1.3rem + 2.2vw, 2.45rem);
  --text-3xl: clamp(2.25rem, 1.5rem + 3vw, 3.05rem);
  --text-hero: clamp(2.75rem, 1.6rem + 4.6vw, 4.6rem);

  /* Shape */
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 999px;
  --blob-1: 60% 40% 30% 70% / 60% 30% 70% 40%;
  --blob-2: 30% 70% 70% 30% / 30% 30% 70% 70%;
  --blob-3: 50% 50% 35% 65% / 55% 40% 60% 45%;
  --blob-4: 40% 60% 60% 40% / 60% 55% 45% 40%;

  /* Depth: tinted, never black */
  --shadow-soft: 0 4px 20px -2px rgb(93 112 82 / .15);
  --shadow-soft-hover: 0 6px 24px -4px rgb(93 112 82 / .25);
  --shadow-lift: 0 20px 40px -10px rgb(93 112 82 / .18);
  --shadow-float: 0 10px 40px -10px rgb(193 140 93 / .28);
  --ring: 0 0 0 2px var(--background), 0 0 0 4px rgb(93 112 82 / .55);

  /* Layout */
  --w-wide: 1200px;
  --w-mid: 1040px;
  --w-narrow: 820px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(72px, 9vw, 128px);

  /* Motion */
  --ease: cubic-bezier(.22, .8, .3, 1);
  --dur: 300ms;
  --dur-slow: 500ms;
  --dur-slower: 700ms;

  /* Paper grain (SVG fractal noise) */
  --grain: 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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235D7052' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  --chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235D7052' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

/* 2. Base ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--foreground);
  background: var(--background);
  overflow-x: hidden;
}
/* Global paper grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 100; pointer-events: none;
  background-image: var(--grain); opacity: .045; mix-blend-mode: multiply;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-underline-offset: 3px; }
a:hover { color: var(--primary-deep); }

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-variation-settings: var(--display-soft);
  font-optical-sizing: auto;
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--foreground);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: var(--text-hero); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); line-height: 1.2; }
p { margin: 0 0 1em; text-wrap: pretty; }
b, strong { font-weight: 800; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--radius-md); }
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 200;
  background: var(--primary); color: var(--primary-foreground);
  padding: 10px 18px; border-radius: var(--radius-pill); font-weight: 700;
}
.skip-link:focus { top: 16px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* 3. Layout -------------------------------------------------------------- */
.wrap { max-width: var(--w-wide); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-mid { max-width: var(--w-mid); }
.wrap-narrow { max-width: var(--w-narrow); }
.section { position: relative; padding: var(--section-y) 0; }
.section.alt { background: var(--sand-30); }
.section.stone { background: var(--stone-50); }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--secondary-ink); margin-bottom: .9em;
}
.eyebrow::before {
  content: ""; width: 22px; height: 8px; border-radius: var(--blob-1);
  background: var(--secondary); opacity: .75;
}
.lead { font-size: var(--text-lg); color: var(--muted-foreground); max-width: 640px; }
.center .lead { margin-inline: auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* Ambient blobs: drop <span class="blob blob--moss"> into any section/hero */
.has-blobs { position: relative; overflow: clip; isolation: isolate; }
.blob {
  position: absolute; z-index: -1; width: 420px; aspect-ratio: 1;
  border-radius: var(--blob-1); filter: blur(64px); opacity: .45; pointer-events: none;
}
.blob--moss { background: #A9B99A; }
.blob--clay { background: #E3B78F; border-radius: var(--blob-2); }
.blob--sand { background: var(--accent); border-radius: var(--blob-3); opacity: .8; }
.blob--mist { background: #F3F4F1; border-radius: var(--blob-4); opacity: .18; }

/* 4. Components ---------------------------------------------------------- */

/* Navigation: floating glass pill */
.site-header { position: sticky; top: 16px; z-index: 50; margin-top: 16px; padding: 0 var(--gutter); }
.nav-shell {
  position: relative; max-width: var(--w-wide); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 68px; padding: 0 10px 0 12px;
  background: rgb(255 255 255 / .72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--border-50); border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}
.logo {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none;
  font-family: var(--font-display); font-variation-settings: var(--display-soft);
  font-weight: 700; font-size: 1.3rem; color: var(--foreground); border-radius: var(--radius-pill);
}
.logo:hover { color: var(--foreground); }
.logo svg { width: 44px; height: 44px; flex: none; transition: transform var(--dur-slow) var(--ease); }
.logo:hover svg { transform: rotate(-8deg) scale(1.05); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a:not(.btn) {
  text-decoration: none; color: var(--accent-foreground); font-weight: 700;
  padding: 10px 18px; border-radius: var(--radius-pill);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav a:not(.btn):hover { background: var(--primary-10); color: var(--primary); }
.nav a[aria-current="page"]:not(.btn) { background: var(--primary-10); color: var(--primary); }
.nav .btn { margin-left: 8px; }
.nav-toggle {
  display: none; width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: var(--primary-10); color: var(--primary); cursor: pointer;
  place-items: center; transition: background var(--dur) var(--ease);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Buttons: pills that lift like river stones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 32px; border-radius: var(--radius-pill);
  font: 800 1rem/1 var(--font-body); text-decoration: none; cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(.95); }
.btn svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-sm { min-height: 40px; padding: 0 22px; font-size: .95rem; }
.btn-lg { min-height: 56px; padding: 0 40px; font-size: 1.1rem; }
.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--primary-deep); color: var(--primary-foreground); box-shadow: var(--shadow-soft-hover); }
.btn-outline { border-color: var(--secondary); color: var(--secondary-ink); background: transparent; }
.btn-outline:hover { background: var(--secondary-10); color: var(--secondary-ink); }
.btn-ghost { color: var(--primary); background: transparent; padding: 0 20px; }
.btn-ghost:hover { background: var(--primary-10); color: var(--primary); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Badges & chips */
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--accent-foreground);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: .9rem; font-weight: 700; margin-bottom: 22px;
}
.badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-10);
}
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 2px 0 16px; }
.meta span {
  font-size: .85rem; font-weight: 700; background: var(--muted); color: var(--accent-foreground);
  padding: 5px 12px; border-radius: var(--radius-pill);
}

/* Photo placeholders (swap for <img> later — keep the .ph class for the shape) */
.ph {
  position: relative; overflow: hidden; min-height: 240px; border-radius: var(--radius-xl);
  display: flex; align-items: flex-end; isolation: isolate;
  background:
    radial-gradient(120% 80% at 20% 110%, rgb(44 44 36 / .35), transparent 60%),
    radial-gradient(90% 70% at 85% 10%, rgb(243 244 241 / .35), transparent 60%),
    linear-gradient(155deg, #93A585 0%, #5D7052 55%, #45533D 100%);
}
.ph.warm { background:
    radial-gradient(120% 80% at 80% 110%, rgb(74 74 64 / .3), transparent 60%),
    radial-gradient(90% 70% at 15% 10%, rgb(255 255 255 / .35), transparent 60%),
    linear-gradient(155deg, #E6DCCD 0%, #D2A77D 50%, #A8744A 100%); }
.ph.dusk { background:
    radial-gradient(100% 70% at 50% 120%, rgb(44 44 36 / .45), transparent 60%),
    radial-gradient(60% 50% at 70% 25%, rgb(250 214 160 / .55), transparent 60%),
    linear-gradient(170deg, #D9A273 0%, #A37356 45%, #5E5A4C 100%); }
.ph::after {  /* photographic grain */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: var(--grain); opacity: .18; mix-blend-mode: multiply;
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform var(--dur-slower) var(--ease); }
.ph span {
  margin: 16px; background: rgb(253 252 248 / .88); color: var(--foreground);
  font-size: .8rem; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-pill);
}
.ph.mask-1 { border-radius: var(--blob-2); }
.ph.mask-2 { border-radius: var(--blob-1); }
.ph.mask-1 span, .ph.mask-2 span { margin: 0 auto 12%; }
.frame {
  border: 5px solid #fff; box-shadow: var(--shadow-float);
  transform: rotate(-2deg); transition: transform var(--dur-slower) var(--ease);
}
.frame.tilt-right { transform: rotate(2deg); }
.frame:hover { transform: rotate(0deg) scale(1.02); }

/* Cards: soft paper with asymmetric corners */
.card {
  background: var(--card); border: 1px solid var(--border-50); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft); overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card .ph { border-radius: 0; min-height: 220px; }
.card:hover .ph { transform: none; }
.card-body { padding: 28px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.card-body .btn-row { margin-top: auto; padding-top: 8px; }
.card-body .btn-ghost { margin-left: -20px; }
/* Six corner patterns, cycled so no two neighbours match */
.organic > :nth-child(6n+1) { border-top-left-radius: 4rem; }
.organic > :nth-child(6n+2) { border-top-right-radius: 5rem; border-bottom-left-radius: 3rem; }
.organic > :nth-child(6n+3) { border-bottom-right-radius: 4rem; border-top-left-radius: 3rem; }
.organic > :nth-child(6n+4) { border-top-right-radius: 4rem; }
.organic > :nth-child(6n+5) { border-top-left-radius: 5rem; border-bottom-right-radius: 3rem; }
.organic > :nth-child(6n+6) { border-bottom-left-radius: 4rem; }

/* Icon containers */
.icon {
  width: 56px; height: 56px; border-radius: var(--radius-md); flex: none;
  display: grid; place-items: center; background: var(--primary-10); color: var(--primary);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur-slow) var(--ease);
}
.icon svg { width: 28px; height: 28px; }

/* Feature: a card by default, bare inside .steps */
.feature {
  background: var(--card); border: 1px solid var(--border-50); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft); padding: 34px 30px;
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.feature:hover .icon { background: var(--primary); color: #fff; }
.feature h3 { margin: 22px 0 10px; }
.feature p { color: var(--muted-foreground); margin: 0; }

/* Lists */
.checklist { list-style: none; padding: 0; margin: 20px 0; }
.checklist li { position: relative; padding-left: 38px; margin-bottom: 12px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .1em; width: 26px; height: 26px;
  border-radius: var(--blob-3); background: var(--primary-10) var(--check) center / 14px no-repeat;
}

/* Notices */
.notice {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--sand-30); border: 1px solid var(--border);
  border-radius: 1.5rem 2.5rem 1.5rem 2rem; padding: 20px 26px; margin: 0 0 36px;
}
.notice::before {
  content: ""; flex: none; width: 12px; height: 12px; margin-top: .45em;
  border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 5px var(--secondary-10);
}
.notice p { margin: 0; }

/* Forms: pill fields over the paper grain */
form.inquiry {
  display: grid; gap: 20px; background: var(--card); border: 1px solid var(--border-50);
  padding: clamp(24px, 4vw, 44px); border-radius: 2.5rem 4rem 2.5rem 3rem; box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-weight: 800; font-size: .92rem; margin: 0 0 8px 18px; color: var(--accent-foreground); }
input, select, textarea {
  width: 100%; min-height: 48px; padding: 0 20px;
  font: 400 var(--text-base) var(--font-body); color: var(--foreground);
  background: rgb(255 255 255 / .5); border: 1px solid var(--border); border-radius: var(--radius-pill);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
select {
  appearance: none; -webkit-appearance: none; padding-right: 48px; cursor: pointer;
  background: rgb(255 255 255 / .5) var(--chevron) right 18px center / 18px no-repeat;
}
textarea { min-height: 140px; padding: 14px 20px; border-radius: var(--radius-lg); resize: vertical; line-height: 1.5; }
::placeholder { color: #8F8F82; }
input:hover, select:hover, textarea:hover { border-color: #CBC3B7; }
input:focus-visible, select:focus-visible, textarea:focus-visible {
  border-color: var(--primary); background-color: #fff;
  box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--primary-30);
  border-radius: var(--radius-pill);
}
textarea:focus-visible { border-radius: var(--radius-lg); }
.honeypot { position: absolute; left: -9999px; }

/* FAQ accordion */
.faq { display: grid; gap: 14px; }
details {
  background: var(--card); border: 1px solid var(--border-50); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: border-radius var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
details:hover { box-shadow: var(--shadow-soft-hover); }
details[open] { border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 3rem; }
summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 22px 76px 22px 28px; border-radius: inherit;
  font-family: var(--font-display); font-variation-settings: var(--display-soft);
  font-weight: 650; font-size: 1.2rem; line-height: 1.3;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 36px; height: 36px; margin-top: -18px;
  border-radius: 50%; background: var(--primary-10) var(--chevron) center / 18px no-repeat;
  transition: transform var(--dur-slow) var(--ease), background-color var(--dur) var(--ease);
}
details[open] summary::after { transform: rotate(180deg); }
details > :not(summary) { padding: 0 28px; color: var(--muted-foreground); }
details > :last-child { padding-bottom: 24px; margin-bottom: 0; }

/* 5. Page pieces --------------------------------------------------------- */

/* Hero: an organic panel of its own, set just below the floating nav */
.hero { padding: 24px var(--gutter) 0; }
.hero-panel {
  position: relative; max-width: 1360px; margin: 0 auto; overflow: clip; isolation: isolate;
  background: linear-gradient(170deg, var(--muted) 0%, rgb(230 220 205 / .55) 100%);
  border-radius: 3rem 5rem 3rem 6rem;
  padding: clamp(56px, 8vw, 104px) 0 clamp(56px, 8vw, 96px);
}
.hero-panel::after { /* extra grain on the panel */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--grain); opacity: .05; mix-blend-mode: multiply;
}
.hero .blob:nth-of-type(1) { top: -140px; right: -80px; width: 520px; }
.hero .blob:nth-of-type(2) { bottom: -180px; left: -120px; width: 460px; }
.hero h1 { max-width: 14ch; }
.hero .lead { color: var(--accent-foreground); font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem); }
.hero.small h1 { max-width: 18ch; font-size: clamp(2.5rem, 1.6rem + 3.4vw, 3.9rem); }
.hero.small .hero-panel { border-radius: 2.5rem 4rem 2rem 5rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
.hero-art { position: relative; min-height: 520px; }
.hero-art .ph.main { position: absolute; inset: 0 0 56px 56px; min-height: 0; align-items: flex-start; }
.hero-art .ph.main span { margin: 16% auto 0; }
.hero-art .ph.inset { position: absolute; left: 0; bottom: 0; width: 44%; min-height: 0; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); }
.hero-art .ph.inset span { font-size: .72rem; margin: 10px; }
.hero-note {
  position: absolute; right: -8px; bottom: 36px; z-index: 2;
  display: flex; align-items: center; gap: 12px; max-width: 280px;
  background: rgb(255 255 255 / .82); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--border-50); border-radius: 1.5rem 2rem 1.5rem 1rem;
  padding: 14px 18px; box-shadow: var(--shadow-soft); font-size: .9rem; line-height: 1.35;
  transform: rotate(1.5deg);
}
.hero-note .icon { width: 44px; height: 44px; border-radius: 50%; }
.hero-note .icon svg { width: 22px; height: 22px; }
.hero-note b { display: block; font-size: .95rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px 48px; }
.stat { text-align: center; }
.stat .num {
  display: block; font-family: var(--font-display); font-variation-settings: var(--display-soft);
  font-weight: 700; font-size: clamp(2.4rem, 1.8rem + 2vw, 3.3rem); line-height: 1; color: var(--primary);
  transition: transform var(--dur-slow) var(--ease);
}
.stat:nth-child(even) .num { color: var(--secondary-ink); }
.stat:hover .num { transform: scale(1.1); }
.stat .label { display: block; margin-top: 10px; color: var(--muted-foreground); font-weight: 600; font-size: .95rem; }

/* How it works: bare features joined by a hand-drawn path */
.steps { position: relative; }
.steps-path { position: absolute; left: 8%; right: 8%; top: 4px; width: 84%; height: 60px; z-index: 0; overflow: visible; }
.steps-path path { fill: none; stroke: var(--secondary); stroke-width: 2; stroke-dasharray: 2 10; stroke-linecap: round; opacity: .8; }
.steps .feature {
  position: relative; z-index: 1; background: none; border: 0; box-shadow: none; padding: 0; text-align: center;
}
.steps .feature:hover { transform: none; }
.steps .icon { width: 72px; height: 72px; margin: 0 auto; border-radius: var(--blob-3); background: var(--card); box-shadow: var(--shadow-soft); border: 1px solid var(--border-50); }
.steps .feature:nth-child(3) .icon { border-radius: var(--blob-1); }
.steps .feature:nth-child(4) .icon { border-radius: var(--blob-4); }
.steps .feature:hover .icon { transform: translateY(-4px) rotate(-4deg); }
.steps .feature p { max-width: 30ch; margin-inline: auto; }
.step-num {
  display: block; margin-top: 18px; font-weight: 800; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--secondary-ink);
}
.steps .feature h3 { margin-top: 6px; }

/* Tours */
.tour { padding: clamp(56px, 7vw, 96px) 0; }
.tour + .tour { border-top: 1px dashed var(--border); }
.tour .ph { min-height: 420px; }
.facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
  list-style: none; padding: 0; margin: 24px 0 28px;
}
.facts li { background: var(--muted); border-radius: 1.1rem 1.4rem 1.1rem .9rem; padding: 12px 18px; font-weight: 700; }
.facts li:nth-child(even) { border-radius: 1.4rem 1rem 1.3rem 1.1rem; }
.facts b { display: block; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-foreground); }
.tour h3 { font-size: var(--text-lg); margin-top: 8px; }
.price {
  font-family: var(--font-display); font-variation-settings: var(--display-soft);
  font-size: 2.2rem; font-weight: 700; color: var(--primary); margin: 8px 0 0; line-height: 1.2;
}
.price small { display: block; font-family: var(--font-body); font-size: .92rem; font-weight: 600; color: var(--muted-foreground); }
.pack-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.pack-list .checklist { margin: 0; }

/* Booking */
.book-options { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.book-card {
  position: relative; background: var(--card); border: 1px solid var(--border-50);
  border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-soft);
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
}
.book-card:hover { transform: translateY(-4px) rotate(-.5deg); box-shadow: var(--shadow-lift); }
.book-card.direct { border: 2px solid rgb(193 140 93 / .45); background: linear-gradient(160deg, #FFFDF9, #FBF4EC); box-shadow: var(--shadow-float); }
.book-card p { color: var(--muted-foreground); }
.save-tag {
  display: inline-block; background: var(--secondary-ink); color: var(--secondary-foreground);
  font-weight: 800; font-size: .85rem; padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 16px;
  transform: rotate(-2deg);
}
.widget-slot {
  margin-top: 40px; border: 2px dashed var(--border); border-radius: 2rem 3rem 2rem 4rem;
  padding: 44px 24px; text-align: center; color: var(--muted-foreground); background: rgb(255 255 255 / .5);
}
.widget-slot b { color: var(--foreground); font-family: var(--font-display); font-variation-settings: var(--display-soft); font-size: 1.2rem; }

/* CTA band: a moss-green stone */
.cta { padding: 0 var(--gutter) var(--section-y); }
.cta-band {
  position: relative; overflow: clip; isolation: isolate; max-width: var(--w-mid); margin: 0 auto;
  background: var(--primary); color: var(--primary-foreground); text-align: center;
  border-radius: 4rem 2.5rem 5rem 3rem; padding: clamp(56px, 8vw, 96px) var(--gutter);
  box-shadow: var(--shadow-lift);
}
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--grain); opacity: .12; mix-blend-mode: multiply; }
.cta-band .blob:nth-of-type(1) { top: -160px; left: -120px; opacity: .35; }
.cta-band .blob:nth-of-type(2) { bottom: -200px; right: -120px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #E4E8DF; max-width: 560px; margin: 0 auto; font-size: var(--text-lg); }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-primary { background: var(--primary-foreground); color: var(--primary-deep); }
.cta-band .btn-primary:hover { background: #fff; color: var(--primary-deep); }
.cta-band :focus-visible { box-shadow: 0 0 0 2px var(--primary), 0 0 0 4px var(--primary-foreground); }

/* Footer */
.site-footer {
  position: relative; overflow: clip; isolation: isolate;
  background: var(--foreground); color: #D9D5CA; font-size: .95rem;
  border-radius: 3rem 4rem 0 0; padding: 72px 0 36px;
}
.site-footer .blob { top: -200px; right: -100px; opacity: .12; }
.site-footer a { color: #F3F1EA; text-decoration: none; }
.site-footer a:hover { color: #E3B78F; text-decoration: underline; }
.site-footer :focus-visible { box-shadow: 0 0 0 2px var(--foreground), 0 0 0 4px #E3B78F; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-grid h4 { color: #fff; font-size: 1.15rem; margin: 0 0 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.legal { border-top: 1px solid rgb(255 255 255 / .12); margin-top: 48px; padding-top: 24px; font-size: .85rem; color: #A8A698; }

/* Thanks page */
.thanks-mark { width: 88px; height: 88px; margin-bottom: 20px; border-radius: var(--blob-1); background: var(--primary); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-soft); }
.thanks-mark svg { width: 40px; height: 40px; }

/* 6. Motion & responsive ------------------------------------------------- */

/* Gentle entrance, only when JS is on (content is visible without it) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 1ms !important; animation-duration: 1ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover, .feature:hover, .book-card:hover, .frame:hover { transform: none; }
}

@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 420px; max-width: 560px; width: 100%; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-3.steps { grid-template-columns: 1fr; gap: 48px; }
  .steps-path { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .nav-toggle { display: grid; }
  .nav {
    display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--card);
    border: 1px solid var(--border-50); border-radius: 2rem 2rem 2rem 2.5rem;
    padding: 12px; box-shadow: var(--shadow-lift);
  }
  .nav.open { display: flex; }
  .nav a:not(.btn) { padding: 14px 20px; }
  .nav .btn { margin: 8px 0 0; }
  .grid-2, .grid-3, .book-options, .footer-grid, .pack-list { grid-template-columns: 1fr; }
  .grid-2 { gap: 40px; }
  .grid-2.reverse > :first-child { order: 2; }
  .tour .ph { min-height: 300px; }
  .hero-panel { border-radius: 2rem 3rem 2rem 3.5rem; }
  .hero-art { min-height: 360px; }
  .hero-note { right: -4px; bottom: -8px; max-width: 220px; }
  .blob { width: 300px; }
  .site-footer { border-radius: 2.5rem 3rem 0 0; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .form-row, .facts { grid-template-columns: 1fr; }
  .btn-row .btn { flex: 1 1 auto; }
  .logo { font-size: 1.15rem; }
  .logo svg { width: 40px; height: 40px; }
  .stats { gap: 28px 16px; }
}