/* ============ JOHAN. — style ============ */
:root {
  --green: #1e322d;
  --green-soft: #35584f;
  --cream: #fdfcee;
  --cream-dim: rgba(253, 252, 238, 0.72);
  --ink: #1e322d;
  --ink-60: rgba(30, 50, 45, 0.6);
  --ink-12: rgba(30, 50, 45, 0.12);
  --radius: 20px;
  --radius-lg: 28px;
  --font: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h1 em { font-style: italic; font-weight: 700; }

.container { width: min(1200px, 92vw); margin: 0 auto; }
.container-narrow { width: min(820px, 92vw); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-soft);
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--cream-dim); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn-solid { background: var(--green); color: var(--cream); }
.btn-solid:hover { background: var(--green-soft); box-shadow: 0 12px 30px rgba(30, 50, 45, 0.25); }
.btn-outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--green); }
.btn-cream:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }
.btn-ghost { border-color: rgba(253, 252, 238, 0.5); color: var(--cream); background: transparent; }
.btn-ghost:hover { background: var(--cream); color: var(--green); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(253, 252, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ink-12);
  padding: 0.7rem 0;
}
.nav-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: color 0.35s ease;
}
.nav.scrolled .nav-logo { color: var(--green); }
.nav-logo .dot { color: var(--green-soft); }
.nav.scrolled .nav-logo .dot { color: var(--green-soft); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  transition: color 0.35s ease;
}
.nav.scrolled .nav-links { color: var(--green); }
.nav-links a { opacity: 0.85; transition: opacity 0.2s ease; }
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav.scrolled .nav-cta { background: var(--green); color: var(--cream); }
.nav-cta { background: var(--cream); color: var(--green); padding: 0.65rem 1.4rem; }
.nav-cta-mobile { display: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}
.nav.scrolled .nav-burger span, .nav.menu-open .nav-burger span { background: var(--green); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-bg, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg img { animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 50, 45, 0.55) 0%, rgba(30, 50, 45, 0.35) 45%, rgba(30, 50, 45, 0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 92vw);
  padding: 7rem 0 5rem;
}
.hero .eyebrow { color: var(--cream-dim); }
.hero-sub {
  margin: 1.6rem auto 2.4rem;
  max-width: 560px;
  font-size: 1.12rem;
  color: var(--cream-dim);
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 44px;
  border: 2px solid rgba(253, 252, 238, 0.6);
  border-radius: 999px;
  display: flex;
  justify-content: center;
}
.hero-scroll span {
  width: 4px; height: 10px;
  background: var(--cream);
  border-radius: 2px;
  margin-top: 8px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  animation: tick 30s linear infinite;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.ticker-track i { font-style: normal; opacity: 0.5; }
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ---------- Intro ---------- */
.intro { padding: clamp(4rem, 9vw, 8rem) 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.intro-right p { font-size: 1.12rem; color: var(--ink-60); }
.intro-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2.2rem 0;
  flex-wrap: wrap;
}
.intro-stats strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.intro-stats span { font-size: 0.9rem; color: var(--ink-60); }
.intro-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); max-width: 640px; }
.section-sub { margin-top: 1.2rem; font-size: 1.12rem; color: var(--ink-60); }

/* ---------- Locations ---------- */
.locations { padding: clamp(4rem, 9vw, 8rem) 0; background: #f6f4e4; }
.location-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.location-card:last-child { margin-bottom: 0; }
.location-card.flip .location-media { order: 2; }
.location-card.flip .location-info { order: 1; }
.location-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-soft);
  margin-bottom: 0.9rem;
}
.location-info h3 { margin-bottom: 1.1rem; }
.location-info > p { color: var(--ink-60); font-size: 1.05rem; }
.location-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 1.9rem;
}
.location-features li {
  border: 1.5px solid var(--ink-12);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.location-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Carousel ---------- */
.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--green);
  box-shadow: 0 24px 60px rgba(30, 50, 45, 0.18);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}
.carousel-track img {
  width: 100%; height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(253, 252, 238, 0.92);
  color: var(--green);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 3;
}
.carousel-btn:hover { background: var(--cream); transform: translateY(-50%) scale(1.07); }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-count {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(30, 50, 45, 0.65);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 3;
}
.carousel-dots {
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 3;
}
.carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(253, 252, 238, 0.45);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.carousel-dots button.active { background: var(--cream); width: 22px; border-radius: 999px; }

/* ---------- Video ---------- */
.video-section {
  background: var(--green);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.video-copy p { color: var(--cream-dim); font-size: 1.12rem; margin-top: 1.2rem; }
.video-ctas { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.phone-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 36px;
  overflow: hidden;
  border: 6px solid rgba(253, 252, 238, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  background: #14231f;
}
.phone-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 50, 45, 0.5), rgba(20, 35, 31, 0.85));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.4;
  pointer-events: none;
}
.video-placeholder em { font-style: italic; opacity: 0.75; font-size: 0.95rem; }
.video-play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding-left: 4px;
}

/* ---------- Extras ---------- */
.extras { padding: clamp(4rem, 9vw, 8rem) 0; }
.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.extra-card {
  background: #f6f4e4;
  border: 1.5px solid var(--ink-12);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.extra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(30, 50, 45, 0.12);
}
.extra-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.extra-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.extra-card p { font-size: 0.95rem; color: var(--ink-60); }

/* ---------- Quote ---------- */
.quote-section {
  background: #f6f4e4;
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}
.quote-section blockquote {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  max-width: 860px;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.01em;
}
.quote-source { color: var(--ink-60); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(4rem, 9vw, 8rem) 0; }
.faq-list details {
  border-bottom: 1.5px solid var(--ink-12);
  padding: 1.3rem 0;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-plus {
  font-size: 1.5rem;
  font-weight: 500;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-list details[open] .faq-plus { transform: rotate(45deg); }
.faq-list details p {
  margin-top: 0.9rem;
  color: var(--ink-60);
  max-width: 640px;
}

/* ---------- Book CTA ---------- */
.book-cta {
  background: var(--green);
  color: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-cta::before {
  content: "JOHAN.";
  position: absolute;
  bottom: -0.25em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 800;
  color: rgba(253, 252, 238, 0.045);
  white-space: nowrap;
  pointer-events: none;
}
.book-inner { position: relative; z-index: 2; }
.book-sub {
  color: var(--cream-dim);
  max-width: 520px;
  margin: 1.4rem auto 2.4rem;
  font-size: 1.12rem;
}
.book-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: #14231f;
  color: var(--cream);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253, 252, 238, 0.12);
}
.footer-logo { width: 72px; border-radius: 14px; margin-bottom: 1rem; }
.footer-brand p { color: var(--cream-dim); font-size: 0.95rem; }
.footer-col h4 {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  margin-bottom: 1.1rem;
  color: var(--cream-dim);
}
.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .intro-grid, .video-grid { grid-template-columns: 1fr; }
  .location-card { grid-template-columns: 1fr; gap: 1.8rem; }
  .location-card.flip .location-media { order: 0; }
  .location-card.flip .location-info { order: 1; }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(78vw, 320px);
    background: var(--cream);
    color: var(--green);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem;
    gap: 1.6rem;
    font-size: 1.25rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.18);
  }
  .nav.menu-open .nav-links { transform: translateX(0); }
  .nav-burger { display: flex; z-index: 110; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 0.5rem; }
  .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .extras-grid { grid-template-columns: 1fr; }
  .carousel { aspect-ratio: 4 / 3.4; }
  .carousel-btn { width: 40px; height: 40px; }
  .book-buttons .btn { width: 100%; }
  .hero-ctas .btn { width: min(320px, 86vw); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
