/* Light and Wild — Website
   Self-contained stylesheet: brand tokens (CSS custom properties) + all layout & components.
   No build tools, no frameworks. Fonts: Cinzel + Mulish (Google Fonts, open source, display=swap). */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ===================================================================
   DESIGN TOKENS  (all colours, type & spacing as CSS custom properties)
   =================================================================== */
:root {
  /* ---- Brand core (from brief) ---- */
  --gold: #D9A441;          /* antler gold — primary accent */
  --cream: #F4EDE1;         /* parchment — primary light surface / text on dark */
  --forest: #2E4238;        /* forest green — brand base */

  /* ---- Gold ramp ---- */
  --gold-100: #F6E9C8;
  --gold-300: #E9C878;
  --gold-500: #D9A441;      /* = --gold */
  --gold-600: #C08F32;
  --gold-700: #9A711F;      /* pressed / dark-on-cream text */

  /* ---- Cream / parchment ramp ---- */
  --cream-50:  #FBF7EF;
  --cream-100: #F4EDE1;     /* = --cream */
  --cream-200: #E8DCC7;
  --cream-300: #D8C8AC;     /* hairline borders on light */

  /* ---- Forest ramp (light clearing → deep woods) ---- */
  --forest-400: #4A6656;
  --forest-500: #3C5749;
  --forest-600: #2E4238;    /* = --forest */
  --forest-700: #223328;    /* deeper canopy */
  --forest-800: #182619;
  --forest-900: #121C15;    /* logo background */
  --forest-950: #0C130E;    /* deepest woods */

  /* ---- Utility ---- */
  --white: #FFFFFF;
  --black: #0A0F0B;

  /* ---- Semantic aliases ---- */
  --bg-base:        var(--forest-900);   /* default dark canvas */
  --bg-deep:        var(--forest-950);   /* deepest scroll zone */
  --bg-canopy:      var(--forest-700);   /* raised dark surface */
  --bg-light:       var(--cream-100);    /* light section canvas */
  --surface-card:   var(--forest-800);   /* card on dark */
  --surface-card-light: var(--cream-50); /* card on light */

  --text-on-dark:      var(--cream-100);
  --text-on-dark-soft: rgba(244,237,225,0.68);
  --text-on-light:      var(--forest-800);
  --text-on-light-soft: rgba(24,38,25,0.66);
  --text-accent:       var(--gold-500);

  --border-on-dark:  rgba(217,164,65,0.28);   /* faint gold hairline */
  --border-on-light: var(--cream-300);

  --accent:          var(--gold-500);
  --accent-hover:    var(--gold-300);
  --accent-press:    var(--gold-700);
  --focus-ring:      rgba(217,164,65,0.55);

  /* ---- Status (earthy, muted) ---- */
  --success: #6E8B4E;   /* moss */
  --warning: #C9852B;   /* amber bark */
  --danger:  #A5462E;   /* rust */
  --info:    #5E8A8A;   /* lichen */
}

:root {
  --font-display: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-body: 'Mulish', -apple-system, 'Segoe UI', system-ui, sans-serif;

  /* Display is set in ALL CAPS with generous tracking, like the logo */
  --display-case: uppercase;
  --display-tracking: 0.08em;
  --display-weight: 600;

  /* Type scale (1.25 major-third-ish, rounded) */
  --text-xs:   0.75rem;   /* 12 */
  --text-sm:   0.875rem;  /* 14 */
  --text-base: 1rem;      /* 16 */
  --text-lg:   1.25rem;   /* 20 */
  --text-xl:   1.625rem;  /* 26 */
  --text-2xl:  2.125rem;  /* 34 */
  --text-3xl:  2.875rem;  /* 46 */
  --text-4xl:  3.875rem;  /* 62 */
  --text-5xl:  5.25rem;   /* 84 */

  /* Line heights */
  --leading-tight: 1.08;
  --leading-snug:  1.3;
  --leading-body:  1.65;

  /* Tracking */
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide: 0.08em;
  --tracking-wider: 0.18em;   /* eyebrows / labels */

  /* Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
}

:root {
  /* ---- Spacing (4px base) ---- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* ---- Radii — soft, organic, never sharp ---- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* ---- Borders ---- */
  --border-hair: 1px;
  --border-thick: 1.5px;

  /* ---- Shadows — deep, soft, forest-floor (never bright/blue) ---- */
  --shadow-sm: 0 1px 2px rgba(12,19,14,0.25);
  --shadow-md: 0 8px 24px rgba(12,19,14,0.35);
  --shadow-lg: 0 24px 60px rgba(12,19,14,0.5);
  --glow-gold: 0 0 32px rgba(217,164,65,0.28);   /* firelight / candle glow */

  /* ---- Motion — slow, natural, never bouncy ---- */
  --ease-natural: cubic-bezier(0.33, 0, 0.15, 1); /* settle like a breath */
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 620ms;
  --dur-drift: 1400ms; /* ambient parallax / fog drift */

  /* ---- Layout ---- */
  --container: 1200px;
  --container-narrow: 760px;
}


/* ===================================================================
   SITE STYLES
   =================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-on-dark);
  background: var(--forest-950);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Atmosphere (fixed behind everything) ---------- */
.atmos { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
#sky { position: absolute; inset: 0; background: linear-gradient(180deg, #4A6656, #3C5749); }
.rays {
  position: absolute; inset: -20% -10% auto -10%; height: 90vh;
  background:
    linear-gradient(102deg, transparent 46%, rgba(217,164,65,0.10) 48%, transparent 51%),
    linear-gradient(96deg, transparent 60%, rgba(244,237,225,0.06) 62%, transparent 66%),
    linear-gradient(110deg, transparent 30%, rgba(217,164,65,0.07) 33%, transparent 37%);
  mix-blend-mode: screen; transform-origin: top center;
}
.stars { position: absolute; inset: 0; opacity: 0; }
.star { position: absolute; width: 2px; height: 2px; border-radius: 50%; background: var(--gold-300);
  box-shadow: 0 0 6px rgba(233,200,120,0.7); animation: twinkle var(--tw,4s) var(--ease-natural) infinite; }
@keyframes twinkle { 0%,100%{opacity:.25;transform:scale(.8);} 50%{opacity:1;transform:scale(1.15);} }
.fog {
  position: absolute; width: 140%; height: 46vh; left: -20%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(244,237,225,0.05), transparent 70%);
  filter: blur(6px);
}
.fog.f1 { top: 34vh; animation: drift 34s linear infinite; }
.fog.f2 { top: 62vh; animation: drift 52s linear infinite reverse; opacity:.7; }
@keyframes drift { from{transform:translateX(-6%);} to{transform:translateX(6%);} }
.treeline { position: absolute; left: 0; bottom: 0; width: 100%; line-height: 0; }
.treeline svg { width: 100%; height: auto; display: block; }
.t-back  { opacity: 0.55; }
.t-mid   { opacity: 0.8; }
.t-front { opacity: 1; }

/* ---------- Page + layout ---------- */
.page { position: relative; z-index: 1; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--space-10) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold-500); font-weight: var(--weight-bold); font-size: var(--text-sm);
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
}
.eyebrow::before, .eyebrow.rules::after { content:""; width: 34px; height:1px; background: currentColor; opacity:.55; }
.eyebrow:not(.rules)::before { display:none; }
h1,h2,h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600;
  letter-spacing: var(--display-tracking); line-height: var(--leading-tight); margin: 0; }
.display { font-size: clamp(2.6rem, 7vw, 5.25rem); color: var(--cream-100); }
h2 { font-size: clamp(2rem, 4.4vw, var(--text-3xl)); color: var(--cream-100); }
h3 { font-size: var(--text-xl); letter-spacing: 0.06em; }
p { line-height: var(--leading-body); }
.lead { font-size: var(--text-lg); color: var(--text-on-dark); max-width: 46ch; }
.muted { color: var(--text-on-dark-soft); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content:center; gap: 10px;
  font-family: var(--font-body); font-weight: var(--weight-semibold); font-size: var(--text-base);
  letter-spacing: var(--tracking-wide); text-transform: uppercase; text-decoration: none;
  padding: 14px 30px; border-radius: var(--radius-pill); border: var(--border-thick) solid transparent;
  cursor: pointer; line-height: 1;
  transition: background var(--dur-base) var(--ease-natural), color var(--dur-base) var(--ease-natural),
    box-shadow var(--dur-base) var(--ease-natural), transform var(--dur-fast) var(--ease-natural),
    border-color var(--dur-base) var(--ease-natural); }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--gold-500); color: var(--forest-900); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-300); box-shadow: var(--glow-gold); }
.btn-secondary { color: var(--gold-500); border-color: var(--gold-500); }
.btn-secondary:hover { background: rgba(217,164,65,0.12); }
.btn-ghost { color: var(--cream-100); }
.btn-ghost:hover { background: rgba(244,237,225,0.08); }

/* ---------- Header ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 20; display: flex; align-items: center;
  justify-content: space-between; padding: 18px clamp(20px,4vw,48px);
  transition: background var(--dur-base) var(--ease-natural), backdrop-filter var(--dur-base); }
.nav.scrolled { background: rgba(12,19,14,0.6); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-on-dark); }
.nav .brand { display: flex; align-items: center; gap: 12px; text-decoration:none; }
.nav .brand img { height: 30px; }
.nav .brand span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .16em;
  font-size: 15px; color: var(--cream-100); }
.nav .links { display: flex; align-items: center; gap: 30px; }
.nav .links a { color: var(--text-on-dark-soft); text-decoration: none; font-size: var(--text-sm);
  letter-spacing: .1em; text-transform: uppercase; transition: color var(--dur-base) var(--ease-natural); }
.nav .links a:hover { color: var(--gold-500); }
/* ---------- Mobile navigation (hamburger drawer) ---------- */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 30; }
.nav-toggle span { display: block; width: 26px; height: 2px; border-radius: 2px; background: var(--cream-100);
  margin: 5px 0; transition: transform var(--dur-base) var(--ease-natural), opacity var(--dur-base); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 860px){
  .nav-toggle { display: block; }
  .nav .links { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 82vw);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 4px;
    padding: 96px 32px 32px; background: rgba(12,19,14,0.97); -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px); border-left: 1px solid var(--border-on-dark); transform: translateX(100%);
    transition: transform var(--dur-base) var(--ease-natural); overflow-y: auto; }
  .nav .links.open { transform: translateX(0); }
  .nav .links a { font-size: 1rem; padding: 14px 0; width: 100%; }
  .nav .links a.btn { margin-top: 16px; padding: 14px 28px; width: auto; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 120px 20px 80px; }
.hero img.crest { width: min(440px, 78vw); height: auto; filter: drop-shadow(var(--glow-gold)); }
.hero .tagline { font-family: var(--font-body); font-size: var(--text-lg); letter-spacing: .04em;
  color: var(--text-on-dark); margin: 26px 0 34px; max-width: none; }
.hero .tagline .nowrap { white-space: nowrap; }
@media (max-width: 680px){ .hero .tagline .nowrap { white-space: normal; } }
.hero .content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.scrollcue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--text-on-dark-soft); font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scrollcue .line { width: 1px; height: 42px; background: linear-gradient(var(--gold-500), transparent);
  animation: cue 2.2s var(--ease-natural) infinite; transform-origin: top; }
@keyframes cue { 0%{transform:scaleY(0);opacity:0;} 40%{opacity:1;} 100%{transform:scaleY(1);opacity:0;} }

/* ---------- Two worlds ---------- */
.worlds { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: start; }
.worlds .divider-v { position: relative; }
.world p { margin-top: 14px; }
@media (max-width: 820px){ .worlds { grid-template-columns: 1fr; gap: var(--space-7); } }

/* ---------- Ornamental divider ---------- */
.hr { display: flex; align-items: center; gap: 16px; width: 100%; margin: 0 auto; }
.hr::before, .hr::after { content:""; flex:1; height:1px; background: var(--gold-500); opacity:.5; }
.hr .node { width: 8px; height: 8px; background: var(--gold-500); transform: rotate(45deg); border-radius:1px; }
.center { text-align:center; }
.center .eyebrow { justify-content:center; }

/* ---------- Cards ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 900px){ .grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid { grid-template-columns: 1fr; } }
.card { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--surface-card); border: 1px solid var(--border-on-dark);
  box-shadow: var(--shadow-md); transition: transform var(--dur-base) var(--ease-natural),
    box-shadow var(--dur-base) var(--ease-natural); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .thumb { height: 150px; position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0, #33493c, #16241b); }
.card .thumb svg { position:absolute; bottom:0; left:0; width:100%; }
.card .thumb .badge { position:absolute; top:14px; left:14px; }
.card .body { padding: var(--space-5); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card .body p { margin: 0; font-size: var(--text-sm); color: var(--text-on-dark-soft); flex:1; }
.card .meta { display:flex; align-items:center; justify-content:space-between; margin-top: 6px; }
.card .price { color: var(--gold-500); font-weight: 700; font-size: var(--text-sm); letter-spacing:.06em; }
.more-link { color: var(--gold-500); font-weight: 700; font-size: var(--text-sm); letter-spacing: .06em;
  text-decoration: none; transition: color var(--dur-base) var(--ease-natural); white-space: nowrap; }
.more-link:hover { color: var(--gold-300); }
.badge { display:inline-flex; align-items:center; gap:6px; font-size: var(--text-xs); font-weight: 700;
  letter-spacing: var(--tracking-wider); text-transform: uppercase; padding: 6px 12px;
  border-radius: var(--radius-pill); }
.badge.gold { background: var(--gold-500); color: var(--forest-900); }
.badge.moss { background: rgba(110,139,78,.22); color:#B4CC86; }
.badge.rust { background: rgba(165,70,46,.24); color:#E0A28C; }
.badge.lichen { background: rgba(94,138,138,.24); color:#9CC8C8; }

/* ---------- Quote ---------- */
.quote { text-align:center; max-width: 20ch; margin: 0 auto; }
.quote blockquote { font-family: var(--font-display); text-transform: uppercase; font-weight: 500;
  letter-spacing: .05em; line-height: 1.18; font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  color: var(--cream-100); margin: 0; }
.quote .attr { margin-top: 26px; color: var(--gold-500); letter-spacing: .18em; text-transform: uppercase;
  font-size: var(--text-sm); font-weight: 700; }

/* ---------- Testimonials ---------- */
.tgrid { display:grid; grid-template-columns: repeat(3,1fr); gap: var(--space-5); }
@media (max-width: 820px){ .tgrid { grid-template-columns: 1fr; } }
.tcard { background: rgba(24,38,25,0.6); border:1px solid var(--border-on-dark);
  border-radius: var(--radius-lg); padding: var(--space-6); backdrop-filter: blur(4px); }
.tcard .stars-row { color: var(--gold-500); letter-spacing: 3px; font-size: 14px; }
.tcard p { font-size: var(--text-base); color: var(--cream-100); margin: 14px 0 18px; }
.tcard .who { color: var(--text-on-dark-soft); font-size: var(--text-sm); letter-spacing:.06em; }
.tcard .who strong { color: var(--cream-100); font-weight: 700; display:block; letter-spacing:.02em; }

/* ---------- CTA + footer ---------- */
.cta { text-align:center; }
.cta .form { display:flex; gap: 12px; justify-content:center; flex-wrap: wrap; margin-top: 30px; }
.field { display:flex; flex-direction:column; gap:8px; text-align:left; width: 240px; }
.field label { font-size: var(--text-xs); letter-spacing: var(--tracking-wide); text-transform: uppercase;
  color: var(--text-on-dark); font-weight: 600; }
.field input { font-family: var(--font-body); font-size: var(--text-base); color: var(--cream-100);
  background: rgba(255,255,255,0.04); border: var(--border-thick) solid var(--border-on-dark);
  border-radius: var(--radius-md); padding: 13px 16px; outline: none;
  transition: border-color var(--dur-base), box-shadow var(--dur-base); }
.field input:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px var(--focus-ring); }
footer { border-top: 1px solid var(--border-on-dark); margin-top: 0; padding: var(--space-8) 0 var(--space-7); }
.foot { display:flex; align-items:flex-start; justify-content:space-between; gap: var(--space-6); flex-wrap: wrap; }
.foot img { height: 54px; }
.foot .foot-logo { height: 104px; width: auto; }
.foot .col { display:flex; flex-direction:column; gap:10px; }
.foot .col a { color: var(--text-on-dark-soft); text-decoration:none; font-size: var(--text-sm);
  letter-spacing:.06em; transition: color var(--dur-base); }
.foot .col a:hover { color: var(--gold-500); }
.foot .col .h { color: var(--gold-500); text-transform: uppercase; letter-spacing:.16em; font-size: 11px;
  font-weight: 700; margin-bottom: 4px; }
.copyright { text-align:center; color: var(--text-on-dark-soft); font-size: 12px; letter-spacing:.08em;
  margin-top: var(--space-7); }
a { color: var(--gold-500); }
a:hover { color: var(--gold-300); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--dur-slow) var(--ease-natural),
  transform var(--dur-slow) var(--ease-natural); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Prose / rich text ---------- */
.prose { max-width: 62ch; }
.prose.center-x { margin: 0 auto; }
.prose p { color: var(--text-on-dark-soft); margin: 0 0 18px; }
.prose p.lead-in { color: var(--cream-100); font-size: var(--text-lg); }
.stanza { color: var(--cream-100); font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .05em; line-height: 1.5; font-size: var(--text-lg); font-weight: 500; }
.stanza span { display: block; }
.list { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 10px; }
.list li { position: relative; padding-left: 24px; color: var(--text-on-dark-soft); line-height: 1.5; }
.list li::before { content:""; position:absolute; left: 4px; top: 8px; width: 7px; height: 7px;
  background: var(--gold-500); transform: rotate(45deg); border-radius: 1px; }
.note { border-left: 2px solid var(--border-on-dark); padding: 4px 0 4px 18px; margin: 6px 0 0;
  color: var(--text-on-dark-soft); font-size: var(--text-sm); font-style: italic; }
.note strong { color: var(--gold-500); font-style: normal; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; font-size: 11px; display: block; margin-bottom: 4px; }

/* ---------- Section intro block ---------- */
.sec-head { max-width: 60ch; }
.sec-head.center-x { margin: 0 auto; text-align: center; }
.sec-head.center-x .eyebrow { justify-content: center; }
.sec-head h2 { margin: 16px 0 18px; }

/* ---------- About / founders ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: stretch; }
@media (max-width: 860px){ .about { grid-template-columns: 1fr; } }
.founder { display: flex; flex-direction: column; background: var(--surface-card); border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.founder .portrait { height: 320px; position: relative; overflow: hidden;
  background: radial-gradient(120% 130% at 50% 0, #2c4034, #14201a); display: flex; align-items: flex-end; }
.founder .portrait img.photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder .portrait .ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; color: rgba(244,237,225,0.38); }
.founder .portrait .ph svg { width: 46px; height: 46px; stroke: rgba(244,237,225,0.38); }
.founder .portrait .ph span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; }
.founder .portrait .scrim { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(12,19,14,0.9), rgba(12,19,14,0.2) 45%, transparent 65%); }
.founder .portrait .kick { position: relative; z-index: 1; padding: 20px 24px; }
.founder .portrait .kick .who { font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .1em; font-size: var(--text-2xl); color: var(--cream-100); line-height: 1; }
.founder .portrait .kick .role { color: var(--gold-500); letter-spacing: .2em; text-transform: uppercase;
  font-size: 12px; font-weight: 700; margin-top: 8px; }
.founder .bio { padding: var(--space-6); display: flex; flex-direction: column; gap: 16px; flex: 1; }
.founder .bio p { color: var(--text-on-dark-soft); font-size: var(--text-sm); margin: 0; }
.founder .bio p.intro { color: var(--cream-100); font-size: var(--text-base); }
.founder .bio .btn { margin-top: auto; align-self: flex-start; }

/* "Mehr lesen" accordion inside a founder card */
details.more { border-top: 1px solid var(--border-on-dark); }
details.more summary { list-style: none; cursor: pointer; padding: 14px 0 2px; position: relative;
  color: var(--gold-500); font-weight: 700; font-size: var(--text-sm); letter-spacing: .1em;
  text-transform: uppercase; }
details.more summary::-webkit-details-marker { display: none; }
details.more summary::after { content: "+"; position: absolute; right: 2px; top: 11px; color: var(--gold-500);
  font-size: 20px; transition: transform var(--dur-base) var(--ease-natural); }
details.more[open] summary::after { transform: rotate(45deg); }
details.more .a { display: flex; flex-direction: column; gap: 14px; padding: 14px 0 4px;
  color: var(--text-on-dark-soft); font-size: var(--text-sm); line-height: 1.6; }
details.more .a p { margin: 0; }

/* ---------- USP grid (Was uns verbindet) — free, no cards ---------- */
.usps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-7); }
@media (max-width: 900px){ .usps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .usps { grid-template-columns: 1fr; } }
.usp { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0; }
.usp .ic { width: 56px; height: 56px; border-radius: var(--radius-md); display: grid; place-items: center;
  background: rgba(217,164,65,0.10); border: 1px solid var(--border-on-dark); margin-bottom: 20px; }
.usp .ic svg { width: 28px; height: 28px; stroke: var(--gold-500); }
.usp h3 { font-size: var(--text-lg); letter-spacing: .04em; color: var(--cream-100); margin-bottom: 10px; }
.usp p { margin: 0; color: var(--text-on-dark-soft); font-size: var(--text-sm); line-height: 1.6; max-width: 32ch; }

/* ---------- Willkommen — wide, extra breathing room ---------- */
.willkommen .wrap { max-width: 1040px; }
.willkommen .sec-head { max-width: none; }
.willkommen .prose { max-width: none; }
.willkommen .cta-center { display: flex; justify-content: center; margin-top: 34px; }

/* ---------- Info cards row (Wild — elevated, iconed) ---------- */
.info { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
@media (max-width: 820px){ .info { grid-template-columns: 1fr; } }
.info .box { position: relative; background: linear-gradient(160deg, rgba(217,164,65,0.14), rgba(24,38,25,0.6));
  border: 1px solid var(--border-on-dark); border-radius: var(--radius-lg); padding: var(--space-6);
  backdrop-filter: blur(4px); box-shadow: var(--shadow-md); }
.info .box .ic { width: 44px; height: 44px; border-radius: var(--radius-md); display: grid; place-items: center;
  background: var(--gold-500); margin-bottom: 16px; }
.info .box .ic svg { width: 23px; height: 23px; stroke: var(--forest-900); }
.info .box h3 { color: var(--cream-100); font-size: var(--text-lg); margin-bottom: 10px; letter-spacing: .04em; }
.info .box p { color: var(--text-on-dark-soft); font-size: var(--text-sm); margin: 0; line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: start; }
@media (max-width: 860px){ .faq-cols { grid-template-columns: 1fr; } }
.faq-col .faq-h { color: var(--gold-500); letter-spacing: .2em; text-transform: uppercase;
  font-size: 12px; font-weight: 700; margin-bottom: 18px; }
details.qa { border-top: 1px solid var(--border-on-dark); }
details.qa summary { list-style: none; cursor: pointer; padding: 16px 34px 16px 0; position: relative;
  color: var(--cream-100); font-weight: 600; font-size: var(--text-base); line-height: 1.4;
  transition: color var(--dur-base) var(--ease-natural); }
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after { content: "+"; position: absolute; right: 4px; top: 14px; color: var(--gold-500);
  font-size: 22px; font-weight: 400; transition: transform var(--dur-base) var(--ease-natural); }
details.qa[open] summary::after { transform: rotate(45deg); }
details.qa summary:hover { color: var(--gold-500); }
details.qa .a { padding: 0 20px 18px 0; color: var(--text-on-dark-soft); font-size: var(--text-sm);
  line-height: 1.6; }
details.qa .a ul { margin: 8px 0 0; padding-left: 20px; }

/* ---------- Contact (redesigned) ---------- */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5);
  max-width: 820px; margin: 40px auto 0; }
@media (max-width: 720px){ .contact-methods { grid-template-columns: 1fr; } }
.cm { display: flex; flex-direction: column; align-items: center; gap: 12px; text-decoration: none;
  background: var(--surface-card); border: 1px solid var(--border-on-dark); border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5); box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease-natural), box-shadow var(--dur-base) var(--ease-natural),
    border-color var(--dur-base) var(--ease-natural); }
.cm:hover { transform: translateY(-4px); box-shadow: var(--glow-gold); border-color: var(--gold-500); }
.cm .ic { width: 52px; height: 52px; border-radius: var(--radius-pill); display: grid; place-items: center;
  background: rgba(217,164,65,0.14); border: 1px solid var(--border-on-dark); }
.cm .ic svg { width: 24px; height: 24px; stroke: var(--gold-500); }
.cm .lbl { color: var(--gold-500); text-transform: uppercase; letter-spacing: .18em; font-size: 11px;
  font-weight: 700; }
.cm .val { color: var(--cream-100); font-size: var(--text-base); letter-spacing: .02em; text-align: center; }
.contact-loc { text-align: center; margin-top: 26px; color: var(--text-on-dark-soft); letter-spacing: .16em;
  text-transform: uppercase; font-size: 12px; font-weight: 600; }
.signoff { text-align: center; margin-top: var(--space-7); color: var(--text-on-dark-soft);
  font-size: var(--text-sm); line-height: 1.7; max-width: 52ch; margin-left: auto; margin-right: auto; }
.signoff .names { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold-500); font-size: var(--text-lg); margin-top: 14px; }

/* ---------- Werte quote — full-width, centered, spacious ---------- */
.werte { padding: calc(var(--space-10) + var(--space-6)) 0; }
.werte .quote { max-width: none; }
.werte blockquote { font-size: clamp(2rem, 4.4vw, var(--text-3xl)); line-height: 1.15; text-wrap: balance;
  color: var(--cream-100); }
.werte .quote-cta { display: flex; justify-content: center; margin-top: 40px; }

@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .fog, .star, .scrollcue .line, .rays, .shimmer::after { animation: none !important; }
  .shimmer::after { display: none; }
}

/* ---------- Subpage layouts (Light / Wild) ---------- */
.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-7); align-items: start; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; gap: var(--space-6); } }
.panel { background: var(--surface-card); border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-md); }
.panel .list { margin: 0; }
.panel-h { color: var(--gold-500); text-transform: uppercase; letter-spacing: .16em; font-size: 11px;
  font-weight: 700; margin-bottom: 14px; }

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 720px){ .duo { grid-template-columns: 1fr; } }
.offer { background: var(--surface-card); border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.offer.featured { background: linear-gradient(160deg, rgba(217,164,65,0.14), rgba(24,38,25,0.6));
  border-color: var(--border-on-dark); }
.offer p { margin: 0; color: var(--text-on-dark-soft); font-size: var(--text-sm); line-height: 1.6; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: 40px; }
@media (max-width: 820px){ .steps { grid-template-columns: 1fr; } }
.step { border: 1px solid var(--border-on-dark); border-radius: var(--radius-lg); padding: var(--space-6);
  background: rgba(24,38,25,0.5); backdrop-filter: blur(4px); }
.step .num { font-family: var(--font-display); color: var(--gold-500); font-size: var(--text-2xl);
  letter-spacing: .06em; display: block; margin-bottom: 12px; }
.step h3 { color: var(--cream-100); font-size: var(--text-lg); letter-spacing: .04em; margin-bottom: 8px; }
.step p { margin: 0; color: var(--text-on-dark-soft); font-size: var(--text-sm); line-height: 1.55; }

.faq-single { max-width: 820px; margin: 0 auto; }

/* ---------- Antler-flanked headline (Über Uns) ---------- */
.antler-head { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 4vw, 48px); }
.antler-head img { height: clamp(70px, 12vw, 130px); width: auto; display: block; opacity: .95;
  filter: drop-shadow(0 6px 18px rgba(12,19,14,0.45)); }
.antler-head h1 { font-size: clamp(2rem, 4.4vw, 2.875rem); color: var(--gold-500); margin: 0;
  white-space: nowrap; }
@media (max-width: 600px){ .antler-head img { height: 56px; } .antler-head h1 { font-size: 1.7rem; } }

.course-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 820px){ .course-list { grid-template-columns: 1fr; } }
.course { background: var(--surface-card); border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  transition: transform var(--dur-base) var(--ease-natural), box-shadow var(--dur-base) var(--ease-natural); }
.course:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.course h3 { color: var(--cream-100); font-size: var(--text-xl); letter-spacing: .04em; }
.course p { margin: 0; color: var(--text-on-dark-soft); font-size: var(--text-sm); line-height: 1.6; }

/* ---------- Kursbereich rows with image carousel ---------- */
.klist { display: flex; flex-direction: column; gap: var(--space-8); }
.krow { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.krow:nth-child(even) .ktext { order: 2; }
@media (max-width: 820px){ .krow { grid-template-columns: 1fr; gap: var(--space-5); }
  .krow:nth-child(even) .ktext { order: 0; } .krow .carousel { order: -1; } }
.ktext { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.ktext h3 { color: var(--cream-100); font-size: var(--text-2xl); letter-spacing: .04em; }
.ktext p { margin: 0; color: var(--text-on-dark-soft); line-height: 1.65; }

.carousel { position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-on-dark); box-shadow: var(--shadow-md); background: #14201a; }
.carousel .track { display: flex; transition: transform var(--dur-slow) var(--ease-natural); }
.cslide { min-width: 100%; aspect-ratio: 4 / 3; position: relative; display: flex; align-items: center;
  justify-content: center; background: radial-gradient(120% 120% at 50% 0, #2c4034, #14201a); }
.cslide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cslide .ph { display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(244,237,225,0.38); }
.cslide .ph svg { width: 42px; height: 42px; stroke: rgba(244,237,225,0.38); }
.cslide .ph span { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; }
.cnav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px;
  border-radius: 50%; background: rgba(12,19,14,0.5); border: 1px solid var(--border-on-dark);
  color: var(--cream-100); cursor: pointer; display: grid; place-items: center; font-size: 22px;
  line-height: 1; backdrop-filter: blur(4px); z-index: 2;
  transition: background var(--dur-base) var(--ease-natural), color var(--dur-base) var(--ease-natural); }
.cnav:hover { background: var(--gold-500); color: var(--forest-900); }
.cnav.prev { left: 12px; } .cnav.next { right: 12px; }
.cdots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; gap: 8px;
  justify-content: center; z-index: 2; }
.cdots button { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(244,237,225,0.4); transition: background var(--dur-base), width var(--dur-base); }
.cdots button.active { background: var(--gold-500); width: 20px; border-radius: 4px; }

/* ---------- Contact form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); max-width: 760px;
  margin: 0 auto; text-align: left; }
.field2 { display: flex; flex-direction: column; gap: 8px; }
.field2.full { grid-column: 1 / -1; }
.field2 label { font-size: var(--text-sm); letter-spacing: var(--tracking-wide); text-transform: uppercase;
  color: var(--text-on-dark); font-weight: 600; }
.field2 input, .field2 select, .field2 textarea { font-family: var(--font-body); font-size: var(--text-base);
  color: var(--cream-100); background: rgba(255,255,255,0.04); width: 100%;
  border: var(--border-thick) solid var(--border-on-dark); border-radius: var(--radius-md);
  padding: 13px 16px; outline: none;
  transition: border-color var(--dur-base) var(--ease-natural), box-shadow var(--dur-base) var(--ease-natural); }
.field2 textarea { resize: vertical; min-height: 150px; line-height: 1.6; }
.field2 select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D9A441' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center; }
.field2 select option { background: var(--forest-800); color: var(--cream-100); }
.field2 input:focus, .field2 select:focus, .field2 textarea:focus { border-color: var(--gold-500);
  box-shadow: 0 0 0 4px var(--focus-ring); }
.field2 input::placeholder, .field2 textarea::placeholder { color: rgba(244,237,225,0.4); }
.privacy { grid-column: 1 / -1; display: flex; gap: 12px; align-items: flex-start;
  color: var(--text-on-dark-soft); font-size: var(--text-sm); line-height: 1.6; }
.privacy input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; accent-color: var(--gold-500); }
.privacy a { color: var(--gold-500); }
.form-submit { grid-column: 1 / -1; margin-top: 6px; }
.form-note { grid-column: 1 / -1; color: var(--success); font-weight: 600; letter-spacing: .04em;
  display: none; }
.form-note.show { display: block; }

/* ---------- Soft shimmer (Light surfaces) — a slow sheen sweeps across ---------- */
.shimmer { position: relative; overflow: hidden; }
.shimmer::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(115deg, transparent 34%, rgba(244,237,225,0.10) 47%,
    rgba(217,164,65,0.09) 52%, transparent 66%);
  transform: translateX(-130%);
  animation: shimmer 6s var(--ease-natural) infinite; }
.shimmer:nth-child(2)::after { animation-delay: 1.1s; }
.shimmer:nth-child(3)::after { animation-delay: 2.2s; }
@keyframes shimmer { 0% { transform: translateX(-130%); } 55%, 100% { transform: translateX(130%); } }

/* ---------- Utilities ---------- */
.nowrap { white-space: nowrap; }
@media (max-width: 560px){ h2 .nowrap { white-space: normal; } }

/* ---------- Light-tone cards (the "Light" side reads brighter) ---------- */
.card.light { background: var(--cream-100); border-color: var(--cream-300); color: var(--text-on-light); }
.card.light .thumb { background: radial-gradient(120% 120% at 50% 0, #efe6d3, #d8c8ac); }
.card.light .thumb svg path { fill: rgba(46,66,56,0.32); }
.card.light h3 { color: var(--forest-800); }
.card.light .body p { color: var(--text-on-light-soft); }
.card.light .price { color: var(--gold-700); }
.card.light .btn-ghost { color: var(--forest-700); }
.card.light .btn-ghost:hover { background: rgba(46,66,56,0.08); }

/* Light subpage surfaces in parchment tone */
.offer.light, .panel.light, .step.light { background: var(--cream-100); border-color: var(--cream-300);
  color: var(--text-on-light); }
.offer.light.featured { background: linear-gradient(160deg, #fbf1d8, var(--cream-100)); }
.offer.light p, .step.light p, .panel.light .list li { color: var(--text-on-light-soft); }
.panel.light .panel-h { color: var(--gold-700); }
.panel.light .list li::before { background: var(--gold-600); }
.step.light .num { color: var(--gold-700); }
.step.light h3, .offer.light h3 { color: var(--forest-800); }



/* ---------- Deploy: responsive images + tight mobile gutters ---------- */
img { max-width: 100%; }
@media (max-width: 560px){
  .wrap { padding: 0 20px; }
  .section { padding: var(--space-8) 0; }
}
