/* ==========================================================================
   Valhalla Adventures — design system
   Fonts are self-hosted: no request ever leaves the visitor's browser for a
   third party before they consent. That is why there is no Google Fonts link.
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/playfair-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/playfair-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 200 600;
  font-display: swap;
  src: url('fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 200 600;
  font-display: swap;
  src: url('fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  /* Greens, dark to light */
  --ink:      #0e1712;
  --ink-2:    #121e17;
  --deep:     #16271d;
  --forest:   #1d3b2c;
  --fern:     #3f7a5c;
  --sage:     #6da287;
  --mist:     #9cc4ae;
  --fog:      #cfe0d6;

  /* Warm neutrals */
  --cream:    #f7f4ed;
  --parch:    #ece6d9;
  --sand:     #ded5c3;

  /* Accent */
  --gold:     #c9974e;
  --gold-lt:  #e6c684;
  --gold-dk:  #a87a35;

  /* Water accent, used sparingly for depth */
  --river:    #3a6e8c;

  /* Text on light */
  --t-1: #14201a;
  --t-2: #4c5f55;
  --t-3: #74877c;

  /* Text on dark */
  --d-1: rgba(247, 244, 237, 0.96);
  --d-2: rgba(207, 224, 214, 0.72);
  --d-3: rgba(156, 196, 174, 0.55);

  /* Lines */
  --line-dark:  rgba(156, 196, 174, 0.14);
  --line-light: rgba(29, 59, 44, 0.12);

  /* Radii — generous enough to read as current, tight enough to stay editorial */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  /* Elevation */
  --sh-sm: 0 2px 8px rgba(14, 23, 18, 0.06);
  --sh-md: 0 12px 32px rgba(14, 23, 18, 0.10);
  --sh-lg: 0 28px 70px rgba(14, 23, 18, 0.20);
  --sh-dark: 0 28px 70px rgba(0, 0, 0, 0.45);

  /* Rhythm */
  --gut: clamp(22px, 5vw, 64px);
  --sec-y: clamp(72px, 10vw, 132px);
  --maxw: 1160px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* Anchor targets clear the fixed nav instead of hiding behind it. */
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--t-1);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; }
ul { list-style: none; }

/* Everything focusable gets the same visible ring — keyboard users are not an
   afterthought on a page whose only goal is a booking. */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 999;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fern);
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}

.h-sec {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--t-1);
}
.h-sec em { font-style: italic; color: var(--fern); }
.h-sec.on-dark { color: var(--d-1); }
.h-sec.on-dark em { color: var(--mist); }

.lede {
  font-size: clamp(14.5px, 1.5vw, 16.5px);
  line-height: 1.8;
  color: var(--t-2);
  max-width: 58ch;
  margin-top: 16px;
}
.lede.on-dark { color: var(--d-2); }

.wrap { max-width: var(--maxw); margin: 0 auto; }
.sec { padding: var(--sec-y) var(--gut); }
.sec-head { margin-bottom: clamp(36px, 5vw, 56px); }
.centered { text-align: center; }
.centered .lede { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--r-sm);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.22s var(--ease), border-color 0.22s var(--ease),
              transform 0.22s var(--ease), box-shadow 0.22s var(--ease), color 0.22s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(201, 151, 78, 0.24);
}
.btn-gold:hover { background: var(--gold-lt); box-shadow: 0 10px 28px rgba(201, 151, 78, 0.34); }

.btn-forest { background: var(--forest); color: var(--cream); }
.btn-forest:hover { background: var(--deep); box-shadow: var(--sh-md); }

.btn-ghost {
  background: transparent;
  color: var(--mist);
  border: 1px solid var(--line-dark);
  font-weight: 500;
}
.btn-ghost:hover { border-color: var(--sage); color: var(--d-1); background: rgba(156, 196, 174, 0.07); }

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--line-light);
  font-weight: 500;
}
.btn-outline:hover { border-color: var(--fern); background: rgba(63, 122, 92, 0.06); }

.btn-lg { padding: 18px 40px; font-size: 13px; }
.btn-sm { padding: 11px 20px; font-size: 10.5px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 400;
  padding: 16px var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease),
              border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Solid only once the hero has scrolled past — over the hero it floats. */
.nav.stuck {
  background: rgba(14, 23, 18, 0.86);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--line-dark);
  padding-top: 11px;
  padding-bottom: 11px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}
.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-brand em { font-style: italic; color: var(--gold); }
/* The mark is the real logo monogram, recoloured light so it holds up on the
   near-black nav. Auto height keeps its own aspect ratio. */
.nav-mark { width: 34px; height: auto; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  margin-right: 6px;
}
.nav-link {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--d-2);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 860px) { .nav-links { display: none; } }
/* On phones the nav CTA otherwise wraps onto two lines and dominates the bar. */
@media (max-width: 520px) {
  .nav .btn { white-space: nowrap; padding: 10px 15px; font-size: 9.5px; letter-spacing: 0.08em; }
  .nav-brand { font-size: 15px; gap: 7px; }
  .nav-mark { width: 19px; height: 19px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
  padding-top: 110px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 62% at 78% 12%, rgba(63, 122, 92, 0.34) 0%, transparent 58%),
    radial-gradient(ellipse 70% 74% at 2% 88%, rgba(58, 110, 140, 0.26) 0%, transparent 55%),
    radial-gradient(ellipse 46% 40% at 50% 106%, rgba(201, 151, 78, 0.16) 0%, transparent 62%),
    linear-gradient(172deg, #0a1410 0%, #16271d 44%, #1d3b2c 100%);
}
/* Faint film grain stops the large gradient fields from banding on wide screens. */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  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='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
}
/* Topographic contour rings — a map motif rather than generic circles. */
.hero-rings { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(156, 196, 174, 0.11);
}
.ring.r1 { width: 720px; height: 720px; top: -230px; right: -200px; }
.ring.r2 { width: 480px; height: 480px; top: -110px; right: -80px; border-color: rgba(156, 196, 174, 0.08); }
.ring.r3 { width: 250px; height: 250px; top: 6px; right: 34px; border-color: rgba(201, 151, 78, 0.14); }
.ring.r4 { width: 340px; height: 340px; bottom: 120px; left: -150px; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut) clamp(40px, 6vw, 64px);
}
.hero-eye {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eye::before { content: ''; width: 38px; height: 1px; background: currentColor; opacity: 0.6; }
.hero-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(46px, 8.6vw, 104px);
  font-weight: 400;
  color: var(--cream);
  line-height: 0.96;
  letter-spacing: -0.028em;
  margin-bottom: 10px;
}
.hero-h1 em { font-style: italic; color: var(--mist); }
.hero-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3.6vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1.1;
  margin-bottom: 26px;
}
.hero-desc {
  font-size: clamp(14.5px, 1.6vw, 16.5px);
  color: var(--d-2);
  line-height: 1.8;
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 34px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line-dark);
  background: rgba(156, 196, 174, 0.05);
  color: var(--mist);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 7px 15px;
  border-radius: 100px;
  font-weight: 300;
}
.pill svg { width: 15px; height: 15px; flex-shrink: 0; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero stat bar — pinned to the bottom edge of the viewport-height hero. */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border-top: 1px solid var(--line-dark);
}
.stat {
  background: rgba(10, 20, 16, 0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 20px clamp(18px, 3vw, 40px);
}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--d-3);
  font-weight: 400;
  line-height: 1.4;
}
/* Three columns in 375px is tight — shrink rather than let "From 49€" break. */
@media (max-width: 520px) {
  .stat { padding: 15px 12px; }
  .stat-num { font-size: 19px; white-space: nowrap; }
  .stat-lbl { font-size: 8.5px; letter-spacing: 0.06em; }
}

/* ---------- Trust strip ---------- */
.strip {
  background: var(--forest);
  color: var(--d-2);
  padding: 18px var(--gut);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px clamp(20px, 4vw, 46px);
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.strip-item svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

/* ---------- Surfaces ---------- */
.on-parch { background: var(--parch); }
.on-cream { background: var(--cream); }
.on-ink   { background: var(--ink); }
.on-deep  { background: var(--deep); }

/* ---------- Who we are ---------- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .who-grid { grid-template-columns: 1fr; } }

.who-card {
  background: var(--deep);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(156, 196, 174, 0.09);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.who-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 122, 92, 0.32) 0%, transparent 70%);
  pointer-events: none;
}
.who-card:hover { transform: translateY(-4px); box-shadow: var(--sh-dark); }
.who-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 151, 78, 0.13);
  border: 1px solid rgba(201, 151, 78, 0.3);
  margin-bottom: 16px;
}
.who-avatar svg { width: 22px; height: 22px; color: var(--gold-lt); }
.who-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}
.who-role {
  font-size: 9.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.who-bio { font-size: 13.5px; color: var(--d-2); line-height: 1.75; }

.who-values {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--line-light);
}
.val-row { display: flex; gap: 14px; align-items: flex-start; }
.val-ico {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: rgba(63, 122, 92, 0.09);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.val-ico svg { width: 17px; height: 17px; color: var(--fern); }
.val-title { font-size: 14px; font-weight: 500; color: var(--t-1); margin-bottom: 2px; }
.val-desc { font-size: 12.5px; color: var(--t-2); line-height: 1.6; }

/* ---------- Experiences ---------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 960px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  padding: 26px 24px 24px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.pkg::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--fern);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.pkg:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: rgba(63, 122, 92, 0.28); }
.pkg:hover::before { transform: scaleX(1); }

.pkg-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.pkg-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: rgba(63, 122, 92, 0.09);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pkg-ico svg { width: 21px; height: 21px; color: var(--fern); }
.pkg-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  white-space: nowrap;
  text-align: right;
}
.pkg-price span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  color: var(--t-3);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.pkg-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--t-1);
  margin-bottom: 4px;
}
.pkg-sub {
  font-size: 9.5px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--fern);
  font-weight: 600;
  margin-bottom: 12px;
}
.pkg-desc { font-size: 13px; color: var(--t-2); line-height: 1.7; margin-bottom: 18px; }

.pkg-inc { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.pkg-inc li {
  font-size: 12.5px;
  color: var(--t-2);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.pkg-inc li::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  background: currentColor;
  color: var(--fern);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pkg-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.pkg-tag {
  font-size: 10.5px;
  padding: 4px 11px;
  border-radius: 100px;
  border: 1px solid var(--line-light);
  color: var(--t-2);
  font-weight: 300;
}
/* Push the CTA to the card's bottom edge so buttons line up across the row. */
.pkg-cta-wrap { margin-top: auto; }

/* Featured card */
.pkg.featured {
  background: linear-gradient(165deg, #1a2f23 0%, #16271d 60%, #14241b 100%);
  border-color: rgba(201, 151, 78, 0.42);
  grid-column: span 2;
}
@media (max-width: 640px) { .pkg.featured { grid-column: span 1; } }
.pkg.featured::before { background: var(--gold); }
.pkg.featured .pkg-name { color: var(--cream); }
.pkg.featured .pkg-sub { color: var(--gold); }
.pkg.featured .pkg-desc { color: var(--d-2); }
.pkg.featured .pkg-price { color: var(--gold-lt); }
.pkg.featured .pkg-price span { color: var(--d-3); }
.pkg.featured .pkg-inc li { color: var(--d-2); }
.pkg.featured .pkg-inc li::before { color: var(--gold); }
.pkg.featured .pkg-tag { border-color: rgba(156, 196, 174, 0.22); color: var(--mist); }
.pkg.featured .pkg-ico { background: rgba(201, 151, 78, 0.14); }
.pkg.featured .pkg-ico svg { color: var(--gold-lt); }
.pkg.featured:hover { border-color: rgba(201, 151, 78, 0.7); box-shadow: var(--sh-dark); }

.pkg-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
}
/* The badge sits where the price would be, so the featured head shifts down. */
.pkg.featured .pkg-top { margin-top: 14px; }
.featured-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; }
@media (max-width: 780px) { .featured-split { grid-template-columns: 1fr; gap: 18px; } }

.pkg-note {
  font-size: 11.5px;
  color: var(--t-3);
  margin-top: 12px;
  text-align: center;
}
.pkg.featured .pkg-note { color: var(--d-3); }

.price-foot {
  margin-top: 26px;
  text-align: center;
  font-size: 12.5px;
  color: var(--t-3);
}

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.step:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(156, 196, 174, 0.26); transform: translateY(-3px); }
.step-n {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  color: rgba(201, 151, 78, 0.34);
  line-height: 1;
  margin-bottom: 14px;
}
.step-t { font-size: 17px; font-weight: 400; color: var(--cream); margin-bottom: 8px; }
.step-d { font-size: 13.5px; color: var(--d-2); line-height: 1.7; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
}
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 4px;
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 400;
  color: var(--t-1);
  line-height: 1.5;
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--fern); }
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  display: grid;
  place-items: center;
  margin-top: 2px;
  transition: transform 0.35s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.faq-icon svg { width: 12px; height: 12px; color: var(--fern); }
.faq-q[aria-expanded='true'] .faq-icon {
  transform: rotate(45deg);
  background: var(--fern);
  border-color: var(--fern);
}
.faq-q[aria-expanded='true'] .faq-icon svg { color: #fff; }
/* Height is animated via grid-template-rows so no JS measurement is needed. */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s var(--ease);
}
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  font-size: 14px;
  color: var(--t-2);
  line-height: 1.8;
  padding: 0 44px 24px 4px;
}
.faq-a p + p { padding-top: 12px; }
.faq-a a { color: var(--fern); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Booking ---------- */
.book-shell {
  max-width: 900px;
  margin: 0 auto;
}
.book-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 40px);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
/* Consent gate: the Calendly iframe is not in the DOM until this is dismissed. */
.gate { text-align: center; max-width: 520px; margin: 0 auto; padding: 18px 0; }
.gate-ico {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(201, 151, 78, 0.12);
  border: 1px solid rgba(201, 151, 78, 0.3);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.gate-ico svg { width: 25px; height: 25px; color: var(--gold-lt); }
.gate h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.gate p { font-size: 13.5px; color: var(--d-2); line-height: 1.75; margin-bottom: 20px; }
.gate p.fine { font-size: 12px; color: var(--d-3); margin: 18px 0 0; }
.gate a { color: var(--gold-lt); text-decoration: underline; text-underline-offset: 2px; }

/* Cream backing so Calendly's own light UI reads as a deliberate card
   rather than a white rectangle punched into the dark section. */
.cal-frame { min-height: 700px; border-radius: var(--r-md); overflow: hidden; background: var(--cream); }
.cal-frame iframe { width: 100%; min-height: 700px; border: 0; display: block; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}
@media (max-width: 700px) { .contact-cards { grid-template-columns: 1fr; } }
.cc {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 22px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.cc:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(156, 196, 174, 0.28); transform: translateY(-3px); }
.cc svg { width: 21px; height: 21px; color: var(--mist); }
.cc-lbl {
  font-size: 8.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--d-3);
  font-weight: 600;
}
.cc-val { font-size: 13.5px; color: var(--cream); line-height: 1.35; }
/* The email address is long enough to break mid-word in a 3-up grid, which
   looks like a typo. Shrink it a touch and only ever break at the @ or dots. */
.cc-val.is-long { font-size: 12px; overflow-wrap: break-word; word-break: normal; }
.cc-sub { font-size: 11px; color: var(--d-3); }

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}
.trust-item { font-size: 12px; color: var(--d-3); display: flex; align-items: center; gap: 7px; }
.trust-item svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1410;
  border-top: 1px solid var(--line-dark);
  padding: clamp(40px, 6vw, 60px) var(--gut) 26px;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr; gap: 26px; } }
.footer-logo { width: 168px; height: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--d-3); line-height: 1.75; max-width: 40ch; }
.footer-col h4 {
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--d-3);
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col a, .footer-col button {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--d-2);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s var(--ease);
  text-align: left;
  font-weight: 300;
}
.footer-col a:hover, .footer-col button:hover { color: var(--gold-lt); }
.footer-col svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 11.5px;
  color: rgba(247, 244, 237, 0.28);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 350;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(14, 23, 18, 0.95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-dark);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sc-text { font-size: 12px; color: var(--d-2); line-height: 1.35; }
.sc-text span { display: block; font-size: 10.5px; color: var(--d-3); }
@media (max-width: 780px) { .sticky-cta { display: flex; } }
/* Keep the sticky bar from covering the footer's last line. */
@media (max-width: 780px) { body.has-sticky .site-footer { padding-bottom: 90px; } }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 800;
  max-width: 520px;
  /* Anchored bottom-left on desktop so it never sits on top of the headline;
     full-width at the bottom on phones, where there is nowhere else to put it. */
  margin: 0;
  background: rgba(18, 30, 23, 0.98);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(156, 196, 174, 0.2);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-dark);
  padding: 22px;
  display: none;
}
.cookie.show { display: block; animation: rise 0.45s var(--ease) both; }
/* On phones the sticky booking bar owns the bottom edge — lift the banner above it. */
@media (max-width: 780px) { .cookie { bottom: 78px; } }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.cookie h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.cookie p { font-size: 12.5px; color: var(--d-2); line-height: 1.65; margin-bottom: 14px; }
.cookie a { color: var(--gold-lt); text-decoration: underline; text-underline-offset: 2px; }

.cookie-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.opt {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 13px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.03);
}
.opt-txt { flex: 1; }
.opt-name { font-size: 12.5px; color: var(--d-1); font-weight: 400; }
.opt-desc { font-size: 11px; color: var(--d-3); line-height: 1.5; margin-top: 2px; }

/* Switch */
.sw { position: relative; flex-shrink: 0; width: 38px; height: 21px; margin-top: 2px; }
.sw input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.sw-track {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(156, 196, 174, 0.18);
  transition: background 0.25s var(--ease);
  pointer-events: none;
}
.sw-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--mist);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.sw input:checked + .sw-track { background: rgba(201, 151, 78, 0.42); }
.sw input:checked + .sw-track::after { transform: translateX(17px); background: var(--gold-lt); }
.sw input:focus-visible + .sw-track { outline: 2px solid var(--gold); outline-offset: 2px; }
.sw input:disabled { cursor: not-allowed; }
.sw input:disabled + .sw-track { background: rgba(201, 151, 78, 0.28); opacity: 0.65; }
.sw input:disabled + .sw-track::after { transform: translateX(17px); background: var(--gold-lt); }

.cookie-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.cookie-actions .btn { flex: 1; min-width: 130px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.on { opacity: 1; transform: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-eye   { animation: fadeUp 0.7s 0.05s var(--ease) both; }
.hero-h1    { animation: fadeUp 0.85s 0.15s var(--ease) both; }
.hero-h2    { animation: fadeUp 0.85s 0.28s var(--ease) both; }
.hero-desc  { animation: fadeUp 0.7s 0.4s var(--ease) both; }
.hero-pills { animation: fadeUp 0.7s 0.5s var(--ease) both; }
.hero-btns  { animation: fadeUp 0.7s 0.6s var(--ease) both; }
.hero-stats { animation: fadeUp 0.7s 0.72s var(--ease) both; }

/* Anyone who has asked their OS to reduce motion gets none of it. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .pkg:hover, .who-card:hover, .cc:hover, .step:hover { transform: none; }
}

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-page { background: var(--cream); }
.legal-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 23, 18, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  padding: 14px var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.legal-hero {
  background: linear-gradient(168deg, #0a1410 0%, #16271d 100%);
  padding: clamp(48px, 8vw, 84px) var(--gut) clamp(40px, 6vw, 64px);
}
.legal-hero-inner { max-width: 780px; margin: 0 auto; }
.legal-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5.4vw, 52px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.legal-hero h1 em { font-style: italic; color: var(--gold-lt); }
.legal-hero p { font-size: 13.5px; color: var(--d-3); margin-top: 14px; }

.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) var(--gut) clamp(60px, 8vw, 96px);
}
.legal-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(21px, 2.8vw, 27px);
  font-weight: 400;
  color: var(--forest);
  margin: 44px 0 12px;
  line-height: 1.2;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 15px; font-weight: 500; color: var(--t-1); margin: 24px 0 6px; }
.legal-body p { font-size: 14.5px; line-height: 1.85; color: var(--t-2); margin-bottom: 13px; }
.legal-body strong { color: var(--t-1); font-weight: 500; }
.legal-body a { color: var(--fern); text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.legal-body ul, .legal-body ol { margin: 10px 0 18px 4px; }
.legal-body li {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--t-2);
  margin-bottom: 7px;
  padding-left: 20px;
  position: relative;
}
.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fern);
}
.legal-body ol { counter-reset: li; }
.legal-body ol li { counter-increment: li; }
.legal-body ol li::before {
  content: counter(li) '.';
  position: absolute;
  left: 0;
  color: var(--fern);
  font-size: 13px;
}
.callout {
  background: var(--parch);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 22px 0;
}
.callout p { font-size: 13.5px; margin-bottom: 0; }
.callout p + p { margin-top: 10px; }

.legal-table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 13.5px; }
.legal-table th, .legal-table td {
  text-align: left;
  padding: 11px 13px;
  border: 1px solid var(--line-light);
  vertical-align: top;
  line-height: 1.6;
}
.legal-table th { background: var(--parch); font-weight: 500; color: var(--t-1); font-size: 12.5px; }
.legal-table td { color: var(--t-2); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.legal-foot {
  border-top: 1px solid var(--line-light);
  margin-top: 48px;
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}
.legal-foot a { font-size: 13px; color: var(--t-2); text-decoration: none; }
.legal-foot a:hover { color: var(--fern); text-decoration: underline; }
