@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/nunito-800.woff2') format('woff2');
}

/* LANGUAGE SWITCH (block-level EN/NO variants on legal pages) */
html[data-lang="en"] .lang-no,
html:not([data-lang]) .lang-no { display: none; }
html[data-lang="no"] .lang-en { display: none; }

:root {
  --green: #9BE564;
  --green-deep: #6FCF4A;
  --green-glow: rgba(155,229,100,0.28);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.18), 0 4px 10px rgba(0,0,0,0.14);
  --shadow-md: 0 2px 6px rgba(0,0,0,0.16), 0 10px 28px rgba(0,0,0,0.22);
  --shadow-lg: 0 4px 14px rgba(0,0,0,0.2), 0 20px 50px rgba(0,0,0,0.3);
  --shadow-xl: 0 8px 24px rgba(0,0,0,0.24), 0 32px 72px rgba(0,0,0,0.38);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 44px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(11,11,11,0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-color: rgba(155,229,100,0.25);
  padding: 14px 44px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  display: block;
  height: 22px;
  width: auto;
  /* image is white letters on black; blend the black away so the mark
     sits cleanly on both the transparent hero and the solid-scroll nav. */
  mix-blend-mode: screen;
}
.footer-logo { display: flex; align-items: center; }
.footer-logo img {
  display: block;
  height: 20px;
  width: auto;
  mix-blend-mode: screen;
}
.nav-links {
  display: flex; align-items: center; gap: 24px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav-link { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.nav-link:hover { color: #fff; }
.nav-cta {
  font-size: 13px; font-weight: 700;
  background: var(--green); color: #0B0B0B;
  padding: 10px 24px; border-radius: 100px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--green); transform: translateY(-1px); box-shadow: 0 4px 18px var(--green-glow); }
.nav-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.12); }
.nav-social { display: flex; align-items: center; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.nav-social:hover { color: var(--green); }
.lang-toggle {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.6);
  display: flex; gap: 6px;
}
.lang-toggle button {
  background: none; border: none; color: inherit; cursor: pointer;
  padding: 6px 10px; border-radius: 4px; transition: all 0.2s;
}
.lang-toggle button.active { color: #fff; background: rgba(255,255,255,0.15); }

/* SHARED */
.container { max-width: 1120px; margin: 0 auto; padding: 0 44px; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 18px;
  text-shadow: 0 2px 20px var(--green-glow);
}

/* SCROLL ARROW */
.scroll-arrow {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0.7;
  cursor: pointer;
  filter: drop-shadow(0 2px 12px var(--green-glow));
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* HERO */
.hero {
  display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 20%, black 100%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 20%, black 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 100%; width: 100%; margin: 0;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 0; align-items: center; position: relative;
}
.hero-tag {
  display: none;
}
.hero-text {
  padding: 0 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-headline {
  font-size: clamp(42px, 5.5vw, 74px);
  line-height: 1.05; margin-bottom: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  text-transform: uppercase;
  width: fit-content;
  text-shadow: 0 4px 30px rgba(255,255,255,0.18);
}
.hero-headline .h-dim {
  display: none;
}
.hero-headline .h-bold {
  display: block;
}
.hero-headline .h-small {
  font-size: 0.45em;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  display: block;
  line-height: 1;
  margin: 4px 0;
  text-align: center;
  letter-spacing: 0.08em;
}
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.65);
  line-height: 1.65; margin-bottom: 0; max-width: 340px;
  text-shadow: 0 2px 16px rgba(255,255,255,0.12);
}
.hero-watch {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 0;
  display: inline-flex; align-items: center; gap: 8px;
  text-shadow: 0 0 16px var(--green-glow);
}
.hero-watch::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 10px var(--green);
  animation: watchPulse 1.8s ease-in-out infinite;
}
@keyframes watchPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-watch::before { animation: none; }
}
.hero-stat {
  display: none;
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,0.65);
  margin: 0; max-width: 320px;
  text-align: center;
}

.stat-highlight {
  font-size: 1.25em;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.2px;
  text-shadow: 0 0 18px var(--green-glow);
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 17px; font-weight: 700; letter-spacing: -0.1px;
  padding: 20px 40px; border-radius: 100px;
  transition: transform 0.35s var(--ease-spring), background 0.25s var(--ease-smooth), color 0.25s var(--ease-smooth), border-color 0.25s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-white { background: var(--green); color: #0B0B0B; box-shadow: 0 8px 30px var(--green-glow); }
.btn-white:hover { background: transparent; color: var(--green); border-color: var(--green); }

.hero-visual {
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 44px;
}

/* Video frame */
.video-frame {
  position: relative; border-radius: 0; overflow: hidden;
  aspect-ratio: 16/9; background: #141414;
  border: none;
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 100%;
}
.video-frame-inner {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 70% 55% at 50% 28%, rgba(255,255,255,0.04) 0%, transparent 70%),
    #141414;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
}
.video-chip {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 14px 16px;
}
.chip-title { font-size: 13px; font-weight: 700; letter-spacing: -0.1px; }
.chip-sub { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 3px; }

/* WHY ORGANIC */
.why-organic {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
  padding: 120px 0;
}
.why-organic h2 {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 0.97; color: #fff; margin-bottom: 14px;
  text-align: center; text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(255,255,255,0.15);
}
.why-organic .eyebrow { color: var(--green); text-align: center; }
.why-organic-lead {
  font-size: 16px; color: rgba(255,255,255,0.62);
  margin-bottom: 56px; text-align: center; margin-left: auto; margin-right: auto;
  max-width: 500px;
}
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-bottom: 44px;
}
.why-card {
  background: rgba(255,255,255,0.95);
  border: 2px solid transparent;
  border-radius: 20px; padding: 36px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-smooth);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), 0 0 0 2px var(--green-deep); }
.why-icon {
  width: 48px; height: 48px; background: rgba(111,207,74,0.14);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--green-deep);
  box-shadow: 0 4px 12px rgba(111,207,74,0.18);
}
.why-card h3 {
  font-size: 15px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: #000; margin-bottom: 12px;
}
.why-card p { font-size: 14px; color: rgba(0,0,0,0.6); line-height: 1.7; }

/* STRATEGY */
.strategy {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 120px 0; color: #fff;
}
.strategy .eyebrow { color: var(--green); text-align: center; }
.strategy h2 {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 0.97; color: #fff; margin-bottom: 14px;
  text-align: center; text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(255,255,255,0.15);
}
.strategy-lead {
  font-size: 16px; color: rgba(255,255,255,0.62);
  margin-bottom: 56px; text-align: center; margin-left: auto; margin-right: auto;
}
.s-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 44px;
}
.s-card {
  background: rgba(255,255,255,0.95); border: none;
  border-radius: 20px; padding: 30px;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-smooth);
  box-shadow: var(--shadow-md);
}
.s-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--green-deep);
}
.s-card.feat { border: 2px solid var(--green-deep); box-shadow: 0 8px 30px var(--green-glow); }
.s-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 18px;
}
.s-icon {
  width: 48px; height: 48px; background: rgba(111,207,74,0.14);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--green-deep);
  box-shadow: 0 4px 12px rgba(111,207,74,0.15);
}
.s-card.feat .s-icon { background: var(--green-deep); color: #0B0B0B; }
.s-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(0,0,0,0.5);
  background: rgba(0,0,0,0.06); padding: 4px 10px; border-radius: 100px;
}
.s-card.feat .s-badge { background: var(--green-deep); color: #0B0B0B; }
.s-card h3 {
  font-size: 13.5px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: #000; margin-bottom: 8px;
}
.s-card p { font-size: 13.5px; color: rgba(0,0,0,0.65); line-height: 1.6; }
.s-footnote { text-align: center; font-size: 16px; color: rgba(255,255,255,0.48); }
.s-footnote strong { color: var(--green); text-shadow: 0 0 18px var(--green-glow); }

/* REVIEWS */
.reviews { padding: 120px 0; background: #0B0B0B; }
.reviews h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 0.97; margin-bottom: 52px; text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(255,255,255,0.15);
}
.socials-lead {
  font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.6;
  max-width: 640px; margin: -28px 0 44px;
}
.socials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.s-social-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: #000;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; overflow: hidden;
  transition: border-color 0.3s var(--ease-smooth), transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-smooth);
  box-shadow: var(--shadow-md);
}
.s-social-card:hover { border-color: var(--green-deep); transform: translateY(-6px); box-shadow: var(--shadow-lg), 0 0 32px var(--green-glow); }
.s-social-shot {
  display: block; width: 100%;
  background: #000;
}
.s-social-shot img {
  width: 100%; height: auto; display: block;
}
.s-social-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 18px 22px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.s-social-foot-plat {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
}
.s-social-foot-plat svg { color: var(--green); flex-shrink: 0; }
.s-social-cta {
  font-size: 13px; font-weight: 600; color: var(--green);
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-smooth);
}
.s-social-card:hover .s-social-cta { transform: translateX(4px); }

/* BOOKING */
.booking {
  padding: 160px 44px 140px;
  background: linear-gradient(135deg, #000 0%, #000 50%, #0d0d0d 100%);
  position: relative;
}
.booking::before {
  display: none;
}
.booking-head { text-align: center; margin-bottom: 52px; }
.booking-head .eyebrow { color: var(--green); }
.booking-head h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900; letter-spacing: -0.04em; line-height: 0.97;
  margin-bottom: 10px; text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(255,255,255,0.15);
}
.booking-head .sub { font-size: 13px; color: rgba(255,255,255,0.28); letter-spacing: 0.1em; }

/* Progress */
.progress {
  display: flex; align-items: flex-start; justify-content: center;
  max-width: 540px; margin: 0 auto 48px;
}
.p-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
.p-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.13);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.25);
  transition: all 0.3s; background: transparent;
}
.p-dot.is-active { border-color: var(--green); background: var(--green); color: #0B0B0B; box-shadow: 0 0 16px var(--green-glow); }
.p-dot.is-done { color: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.18); }
.p-dot.is-done::after { content: '✓'; font-size: 11px; }
.p-dot.is-done > span { display: none; }
.p-label {
  font-size: 8.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.22);
}
.p-step.is-active .p-label { color: rgba(255,255,255,0.55); }
.p-line { height: 1px; background: rgba(255,255,255,0.08); flex: 1; margin-top: 14px; transition: background 0.3s; }
.p-line.is-done { background: rgba(255,255,255,0.22); }

/* Form card */
.form-card {
  max-width: 680px; margin: 0 auto;
  background: #0f0f0f; border: 1.5px solid rgba(155,229,100,0.25);
  border-radius: 28px; padding: 56px;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(155,229,100,0.06);
  position: relative; z-index: 1;
}
.step { display: none; }
.step.is-active { display: block; }
.step-title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 30px; }

/* Calendar */
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.cal-month-label { font-size: 15px; font-weight: 700; letter-spacing: -0.2px; }
.cal-nav-btn {
  width: 30px; height: 30px; border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.13);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.18s; color: rgba(255,255,255,0.5);
}
.cal-nav-btn:hover { border-color: rgba(255,255,255,0.28); color: #fff; }
.cal-nav-btn:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 6px; }
.cal-weekday {
  text-align: center; font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.25); padding: 4px 0;
}
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; border-radius: 7px; cursor: pointer;
  transition: all 0.18s; color: rgba(255,255,255,0.7);
  border: 1px solid transparent;
}
.cal-day:hover:not(.dis):not(.emp) { background: rgba(255,255,255,0.07); }
.cal-day.tod:not(.sel) { border-color: rgba(255,255,255,0.2); }
.cal-day.sel { background: var(--green); color: #0B0B0B; font-weight: 700; box-shadow: 0 0 16px var(--green-glow); }
.cal-day.dis { color: rgba(255,255,255,0.13); cursor: default; }
.cal-day.emp { cursor: default; }

/* Time slots */
.times-wrap { display: none; margin-top: 26px; }
.video-fill { width: 100%; height: 100%; object-fit: cover; border: none; }
.times-label {
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 10px;
}
.times-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.t-pill {
  padding: 10px 6px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6);
  text-align: center; cursor: pointer; transition: all 0.18s; background: transparent;
}
.t-pill:hover:not(.taken) { border-color: rgba(255,255,255,0.28); color: #fff; }
.t-pill.sel { background: var(--green); color: #0B0B0B; border-color: var(--green); box-shadow: 0 0 16px var(--green-glow); }
.t-pill.taken { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; color: rgba(255,255,255,0.4); }
.t-loading, .t-empty { font-size: 13px; color: rgba(255,255,255,0.3); padding: 6px 0; }

/* Fields */
.fields { display: flex; flex-direction: column; gap: 14px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { display: flex; flex-direction: column; gap: 7px; }
.f-group label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.f-group input {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 13px 15px;
  font-size: 14px; color: #fff; outline: none;
  transition: border-color 0.18s, background 0.18s; width: 100%;
}
.f-group input::placeholder { color: rgba(255,255,255,0.2); }
.f-group input:focus {
  border-color: var(--green);
  background: rgba(155,229,100,0.04);
  box-shadow: 0 0 0 3px rgba(155,229,100,0.08);
}

/* Radio options */
.r-opts { display: flex; flex-direction: column; gap: 9px; }
.r-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 17px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 11px; cursor: pointer; transition: all 0.18s;
  background: transparent; text-align: left; width: 100%;
}
.r-opt:hover { border-color: rgba(255,255,255,0.24); background: rgba(255,255,255,0.03); }
.r-opt.chk { border-color: var(--green); background: rgba(155,229,100,0.06); }
.r-circle {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: all 0.18s;
}
.r-opt.chk .r-circle { border-color: var(--green); background: var(--green); }
.r-opt.chk .r-circle::after {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: #0B0B0B;
}
.r-opt-label { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.65); }
.r-opt.chk .r-opt-label { color: #fff; }

/* YN */
.yn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
.yn-btn {
  padding: 18px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.5);
  cursor: pointer; transition: all 0.18s; text-align: center; background: transparent;
}
.yn-btn:hover { border-color: rgba(255,255,255,0.26); color: #fff; }
.yn-btn.chk { background: var(--green); color: #0B0B0B; border-color: var(--green); box-shadow: 0 0 16px var(--green-glow); }

/* Confirm */
.c-table {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; overflow: hidden; margin-bottom: 22px;
}
.c-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,0.06); gap: 16px;
}
.c-row:last-child { border-bottom: none; }
.c-key {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  flex-shrink: 0; padding-top: 1px;
}
.c-val { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.82); text-align: right; }
.c-note { font-size: 12.5px; color: rgba(255,255,255,0.25); text-align: center; line-height: 1.6; }

/* Form nav */
.form-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 34px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.back-btn {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.28);
  display: flex; align-items: center; gap: 7px;
  transition: color 0.18s;
}
.back-btn:hover { color: rgba(255,255,255,0.55); }
.back-btn.inv { visibility: hidden; }
.next-btn {
  font-size: 13px; font-weight: 700;
  background: #fff; color: #0B0B0B;
  padding: 12px 24px; border-radius: 100px; border: none;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: all 0.18s; letter-spacing: -0.1px;
}
.next-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.next-btn:disabled { opacity: 0.28; cursor: not-allowed; transform: none; }
.next-btn.confirm {
  background: var(--green); color: #0B0B0B;
  box-shadow: 0 6px 24px var(--green-glow);
  padding: 14px 30px; font-size: 14px;
}

/* Success */
.success-card {
  max-width: 620px; margin: 0 auto; text-align: center;
  padding: 56px 48px; background: #141414;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; display: none;
}
.success-ring {
  width: 62px; height: 62px; border-radius: 50%;
  border: 1.5px solid var(--green);
  color: var(--green);
  background: rgba(155,229,100,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 22px;
  box-shadow: 0 0 24px var(--green-glow);
}
.success-card h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.success-card p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* FOOTER */
footer {
  background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #000 100%);
  padding: 34px 44px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-size: 16px; font-weight: 800; letter-spacing: 0.08em; text-transform: lowercase; }
.footer-social { display: flex; align-items: center; gap: 18px; }
.footer-social a { display: flex; align-items: center; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-social a:hover { color: var(--green); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-spring);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* CUSHION (spring settle when returning to top) */
#pageWrap { will-change: transform; }
#pageWrap.cushion { animation: cushion 0.62s var(--ease-spring); }
@keyframes cushion {
  0%   { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* BACK TO TOP */
.to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: #0B0B0B;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md), 0 0 20px var(--green-glow);
  opacity: 0; transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-smooth), transform 0.45s var(--ease-spring);
}
.to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { transform: translateY(-3px) scale(1.06); }
.to-top:active { transform: translateY(0) scale(0.94); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  #pageWrap.cushion { animation: none; }
  html { scroll-behavior: auto; }
}

/* VIDEO PAGE (section between hero and why-organic) */
.video-page {
  display: block;
  padding: 16px 0 24px;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
}
.video-page-inner {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  justify-content: center;
}
.video-page .video-frame {
  width: 100%; aspect-ratio: 16/9; max-width: 600px;
  border-radius: 8px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
@media (min-width: 861px) {
  .hero-stat { display: block; }
  .video-page { display: none; }
}
.video-page-text {
  font-size: 14px; font-weight: 400; line-height: 1.5;
  color: rgba(255,255,255,0.65); text-align: center; max-width: 500px;
  padding: 0 22px;
}

/* FIELD LABELS — required / optional markers */
.req { color: var(--green); font-weight: 700; margin-left: 2px; }
.opt { color: rgba(255,255,255,0.35); font-weight: 500; text-transform: none; letter-spacing: 0; margin-left: 4px; }
.f-helper { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 8px; font-style: italic; }

/* MARKETING CONSENT CHECKBOX (unchecked by default) */
.consent-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; margin: 0 0 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}
.consent-row:hover { border-color: rgba(155,229,100,0.35); }
.consent-row input[type="checkbox"] {
  flex-shrink: 0; margin-top: 2px;
  width: 18px; height: 18px;
  accent-color: var(--green);
  cursor: pointer;
}
.consent-row span {
  font-size: 12.5px; line-height: 1.55;
  color: rgba(255,255,255,0.7);
}

/* FOOTER LINKS */
.footer-links { display: flex; gap: 18px; }
.footer-links a {
  font-size: 12px; color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }
.footer-sep { color: rgba(255,255,255,0.2); font-size: 12px; }

/* LEGAL PAGE (Privacy Policy, Terms, etc.) */
.legal-page {
  padding: 140px 0 80px;
  color: rgba(255,255,255,0.82);
  background: linear-gradient(135deg, #000 0%, #0d0d0d 60%, #000 100%);
  min-height: calc(100vh - 200px);
}
.legal-page .container { max-width: 760px; }
.legal-back {
  display: inline-block; margin-bottom: 20px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  transition: color 0.18s;
}
.legal-back:hover { color: var(--green); }
.legal-page h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900; letter-spacing: -0.03em;
  text-transform: uppercase; margin-bottom: 8px;
  text-shadow: 0 4px 30px rgba(255,255,255,0.12);
}
.legal-meta {
  font-size: 12.5px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 36px;
}
.legal-page h2 {
  font-size: 19px; font-weight: 800; letter-spacing: -0.01em;
  color: #fff; margin: 36px 0 12px;
}
.legal-page p { font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.legal-page ul { margin: 0 0 18px 22px; }
.legal-page li { font-size: 15px; line-height: 1.7; margin-bottom: 6px; }
.legal-page a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal-page strong { color: #fff; font-weight: 700; }
.legal-page em { color: rgba(255,255,255,0.6); }
.legal-table {
  width: 100%; border-collapse: collapse; margin: 12px 0 18px;
  font-size: 13.5px;
}
.legal-table th, .legal-table td {
  text-align: left; padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  vertical-align: top;
}
.legal-table th {
  background: rgba(155,229,100,0.06);
  color: #fff; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 11px;
}
.legal-table td { color: rgba(255,255,255,0.72); }
@media (max-width: 640px) {
  .legal-table, .legal-table thead, .legal-table tbody, .legal-table tr, .legal-table td, .legal-table th { display: block; }
  .legal-table thead { display: none; }
  .legal-table tr { margin-bottom: 14px; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
  .legal-table td { border: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .legal-table td:last-child { border-bottom: none; }
}


/* ABOUT PAGE */
.about-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 20%, black 100%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 20%, black 100%);
  pointer-events: none;
}
.about-hero .eyebrow { color: var(--green); margin-bottom: 12px; }
.about-h1 {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900; letter-spacing: -0.04em;
  text-transform: uppercase; line-height: 0.95;
  color: #fff; margin-bottom: 28px;
  text-shadow: 0 4px 30px rgba(255,255,255,0.15);
}
.about-lead {
  font-size: 17px; color: rgba(255,255,255,0.7);
  line-height: 1.78; max-width: 680px; margin-bottom: 16px;
}
.about-sublead {
  font-size: 16px; color: rgba(255,255,255,0.45);
  line-height: 1.72; max-width: 600px; font-style: italic;
}

/* TEAM */
.about-team {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
}
.about-team .eyebrow { color: var(--green); margin-bottom: 32px; }
.team-hero-photo {
  margin: 0 0 48px; padding: 0;
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/2; background: #0a0a0a;
}
.team-hero-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.team-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; overflow: hidden;
  transition: border-color 0.3s var(--ease-smooth), transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-smooth);
  box-shadow: var(--shadow-md);
}
.team-card:hover {
  border-color: rgba(155,229,100,0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 28px rgba(155,229,100,0.06);
}
.team-photo {
  aspect-ratio: 3/4;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px;
  position: relative;
}
.team-photo-icon { color: rgba(255,255,255,0.07); }
.team-photo-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.12);
}
.team-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.team-info { padding: 32px; }
.team-name {
  font-size: 26px; font-weight: 900; letter-spacing: -0.03em;
  text-transform: uppercase; color: #fff; margin-bottom: 4px;
  text-shadow: 0 2px 16px rgba(255,255,255,0.1);
}
.team-role {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 18px;
}
.team-bio {
  font-size: 15px; color: rgba(255,255,255,0.58); line-height: 1.78;
}

/* WHY WE STARTED */
.about-why {
  padding: 100px 0;
  background: #0B0B0B;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.about-why .eyebrow { color: var(--green); margin-bottom: 14px; }
.about-why-h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900; letter-spacing: -0.03em; text-transform: uppercase;
  color: #fff; margin-bottom: 32px;
  text-shadow: 0 4px 30px rgba(255,255,255,0.12);
}
.about-why-body { max-width: 720px; }
.about-why-body p {
  font-size: 16px; color: rgba(255,255,255,0.62);
  line-height: 1.84; margin-bottom: 0;
}
.about-why-closing {
  display: block; margin-top: 32px;
  font-size: 18px; font-weight: 700;
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow);
}

/* ABOUT CTA */
.about-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #000 0%, #0d0d0d 50%, #000 100%);
  text-align: center;
}
.about-cta .eyebrow { color: var(--green); text-align: center; }
.about-cta-h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900; letter-spacing: -0.03em; text-transform: uppercase;
  color: #fff; margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(255,255,255,0.12);
}
.about-cta p {
  font-size: 16px; color: rgba(255,255,255,0.5);
  margin-bottom: 36px; line-height: 1.6;
}

/* Active nav link (current page) */
.nav-link-active { color: #fff !important; }

/* ABOUT RESPONSIVE */
@media (max-width: 860px) {
  .about-hero { padding: 100px 0 60px; }
  .about-team { padding: 60px 0; }
  .about-why { padding: 60px 0; }
  .about-cta { padding: 60px 0; }
  .team-grid { grid-template-columns: 1fr; gap: 20px; }
  .team-hero-photo { margin-bottom: 28px; border-radius: 18px; aspect-ratio: 4/3; }
  .about-h1 { margin-bottom: 22px; }
  .about-lead { font-size: 16px; }
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav { padding: 18px 22px; }
  .nav.solid { padding: 12px 22px; }
  .nav-links { display: none; }

  .hero { padding: 80px 28px 28px; display: flex; align-items: center; justify-content: center; }
  .hero-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
  .hero-text { display: contents; }
  .hero-headline { order: 1; margin-bottom: 0; font-size: clamp(56px, 15vw, 90px); line-height: 0.92; }
  .hero-sub { order: 2; margin-bottom: 0; max-width: 100%; }
  .hero-watch { order: 4; margin-bottom: 0; }
  .hero-visual { display: none; }
  .hero .btn { order: 3; }

  /* mobile video page adjustments */
  .video-page .video-frame { max-height: none; }
  .scroll-arrow { display: none; }

  .container { padding: 0 22px; }

  /* tighter vertical rhythm on phones */
  .why-organic { padding: 60px 0; }
  .strategy { padding: 60px 0; }
  .reviews { padding: 60px 0; }
  .booking { padding: 60px 0 48px; }

  .why-organic-lead, .strategy-lead { margin-bottom: 32px; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 0; }
  .s-grid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 28px; }
  .socials-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews h2 { margin-bottom: 24px; }
  .socials-lead { font-size: 15px; margin: -12px 0 28px; }
  .s-social-foot { padding: 14px 18px 16px; }
  .booking-head { margin-bottom: 32px; }
  .progress { margin-bottom: 32px; }
  .form-card { padding: 26px 20px; border-radius: 16px; }
  .f-row { grid-template-columns: 1fr; }
  .times-grid { grid-template-columns: repeat(3, 1fr); }
  .progress { padding: 0 22px; }
  .p-line { margin-top: 14px; }

  footer { flex-direction: column; gap: 10px; text-align: center; padding: 26px 22px; }
}
