@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500&family=Inter:wght@400;500&display=swap');

:root {
  --cream: #F3EEE4;
  --cream-light: #F5F1E4;
  --forest: #2B3B2E;
  --forest-dark: #17150F;
  --btn-green: #22301D;
  --text-secondary: #5C6355;
  --gold: #C9A467;
  --border: rgba(43, 59, 46, 0.12);
  --font-serif: 'Fraunces', serif;
  --font-sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--forest);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.nav.transparent { background: transparent; border-bottom: 1px solid transparent; }
.nav.solid,
.nav.transparent.scrolled {
  background: rgba(243, 238, 228, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
}
.nav.transparent:not(.scrolled) .logo { color: var(--cream-light); text-shadow: 0 1px 8px rgba(0,0,0,0.25); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; }
.nav-links a { color: var(--text-secondary); }
.nav-links a:hover { opacity: 0.75; }
.nav.transparent:not(.scrolled) .nav-links a:not(.nav-cta) { color: var(--cream-light); text-shadow: 0 1px 8px rgba(0,0,0,0.25); }

.nav-cta {
  background: var(--btn-green);
  color: #FFFFFF !important;
  text-shadow: none !important;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 999px;
  white-space: nowrap;
}

.lang-switch {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
  opacity: 0.85;
}
.nav.transparent:not(.scrolled) .lang-switch { color: var(--cream-light); }

.lang-dropdown { position: relative; }
.lang-dropdown > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 12px;
  opacity: 0.85;
}
.lang-dropdown > summary::-webkit-details-marker { display: none; }
.lang-dropdown > summary::after {
  content: "";
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
}
.lang-dropdown[open] > summary::after { transform: rotate(-135deg); margin-top: 2px; }
.nav.transparent:not(.scrolled) .lang-dropdown { color: var(--cream-light); }
.lang-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  min-width: 96px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
  z-index: 110;
}
.lang-options a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--forest) !important;
  text-shadow: none !important;
  opacity: 1 !important;
}
.lang-options a:hover { background: var(--cream); }
.lang-options a.is-active { font-weight: 600; }

.nav-toggle-label { display: none; cursor: pointer; }
.nav-toggle-label span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; }
.nav.transparent:not(.scrolled) .nav-toggle-label { color: var(--cream-light); }
#nav-toggle { display: none; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  background: var(--btn-green);
  color: #FFFFFF;
  font-size: 14px;
  font-family: var(--font-sans);
  padding: 12px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--forest-dark); }

/* ---------- HERO (full-bleed, used on all three pages) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.hero img { width: 100%; height: 100%; object-fit: cover; }

.hero-kicker-zone { position: absolute; top: 108px; left: 0; right: 0; text-align: center; padding: 0 24px; }

.kicker {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest-dark);
  margin: 0;
}
.kicker.on-dark { color: var(--cream-light); }

.hero-text-zone { position: absolute; bottom: 64px; left: 8%; max-width: 480px; }
.hero-text-zone.left-center { top: 50%; bottom: auto; transform: translateY(-50%); left: 9%; max-width: 460px; }

.energy-rest { display: flex; gap: 0.4em; flex-wrap: nowrap; white-space: nowrap; }

h1.display {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--cream-light);
}

.hero-sub { font-size: 15px; color: var(--cream-light); opacity: 0.94; max-width: 420px; margin: 0 0 26px; line-height: 1.6; }

/* ---------- SECTIONS ---------- */
section { padding: 80px 0; }
.section-narrow { max-width: 680px; margin: 0 auto; padding: 0 32px; }

.section-lead { font-family: var(--font-sans); font-size: 18px; line-height: 1.7; color: var(--forest); }
.section-lead.serif-moment { font-family: var(--font-serif); font-size: 22px; }

h2.section-title { font-family: var(--font-serif); font-weight: 500; font-size: 28px; margin: 0 0 32px; }

/* ---------- EXPERIENCE GRID: 3 top / 2 bottom centered ---------- */
.grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }

.card-outer { perspective: 1400px; width: calc(33.333% - 14px); min-width: 280px; height: 580px; }

.flip-toggle { display: none; }
.card { position: relative; width: 100%; height: 100%; cursor: pointer; display: block; }
.card-inner { position: relative; width: 100%; height: 100%; transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1); transform-style: preserve-3d; }
.flip-toggle:checked + .card .card-inner { transform: rotateY(180deg); }
.card-face { position: absolute; inset: 0; border-radius: 20px; overflow: hidden; backface-visibility: hidden; }
.card-front img { width: 100%; height: 100%; object-fit: cover; }
.card-text { position: absolute; bottom: 22px; left: 22px; right: 22px; }
.card-tag { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin: 0 0 6px; font-weight: 500; }
.card-title { font-family: var(--font-serif); font-size: 21px; color: var(--cream-light); margin: 0; }

.card-back {
  background: var(--forest);
  transform: rotateY(180deg);
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.card-back .card-tag { color: var(--gold); font-size: 10.5px; }
.card-back .card-title { font-size: 17px; margin: 0 0 10px; }
.card-back p.blurb { font-family: var(--font-sans); font-size: 12.5px; color: var(--cream-light); line-height: 1.55; margin: 0 0 14px; }

.highlights-label { font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.highlights { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.highlights li {
  font-size: 12px; color: var(--cream-light); line-height: 1.4; padding-left: 14px; position: relative;
}
.highlights li::before { content: "—"; position: absolute; left: 0; opacity: 0.6; }

.card-back .meta {
  border-top: 1px solid rgba(245,241,228,0.2);
  padding-top: 10px;
  margin-top: auto;
  font-size: 11px;
  color: rgba(245,241,228,0.75);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.card-back .footnote { font-size: 9.5px; color: rgba(245,241,228,0.55); margin-top: 8px; line-height: 1.4; }

.grid-cta { text-align: center; margin-top: 40px; }
.grid-cta a { font-size: 14px; color: var(--forest); border-bottom: 1px solid var(--forest); padding-bottom: 2px; }

/* ---------- Warum Vajuu breather ---------- */
.breather { border-radius: 20px; overflow: hidden; height: 460px; margin-top: 40px; }
.breather img { width: 100%; height: 100%; object-fit: cover; object-position: center 78%; }

/* ---------- Brings block ---------- */
.brings { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 56px 0; }
.brings-item { background: var(--cream-light); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.brings-label { font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold); margin: 0 0 10px; font-weight: 500; }
.brings-item p:last-child { margin: 0; font-size: 16px; }

/* ---------- Steps ---------- */
.steps { margin: 56px 0 20px; }
.step { display: flex; gap: 20px; padding: 20px 0; border-top: 1px solid var(--border); }
.step:last-child { border-bottom: 1px solid var(--border); }
.step-num { font-family: var(--font-serif); font-size: 20px; color: var(--gold); min-width: 28px; }
.step p { margin: 0; font-size: 16px; }

/* ---------- Footer CTA ---------- */
.footer-cta { text-align: center; padding: 40px 0 60px; }
.footer-cta h2 { font-family: var(--font-serif); font-weight: 500; font-size: 32px; margin: 0 0 14px; }
.footer-cta p { color: var(--text-secondary); max-width: 400px; margin: 0 auto 28px; }

.email-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.email-form input[type="email"] {
  flex: 1; min-width: 200px; padding: 12px 18px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--cream-light);
  font-family: var(--font-sans); font-size: 14px; color: var(--forest);
}
.email-form input[type="email"]::placeholder { color: var(--text-secondary); }

.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--forest); color: var(--cream-light);
  padding: 14px 24px; border-radius: 999px; font-size: 14px;
  max-width: 90vw; text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

footer.site-footer { border-top: 1px solid var(--border); padding: 28px 0; text-align: center; font-size: 13px; color: var(--text-secondary); }
footer.site-footer .dash { margin: 0 4px; font-size: 11px; opacity: 0.6; }
footer.site-footer a { text-decoration: underline; }
footer.site-footer .phone-line { margin-top: 6px; font-size: 12px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  background: var(--btn-green); color: var(--cream-light);
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .card-outer { width: calc(50% - 10px); }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: 78%; max-width: 320px;
    background: var(--cream-light);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 28px; padding: 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 24px rgba(0,0,0,0.12);
  }
  #nav-toggle:checked ~ .nav .nav-links { transform: translateX(0); }
  .nav-toggle-label { display: block; }
  .nav-links a:not(.nav-cta) { color: var(--forest) !important; text-shadow: none !important; font-size: 16px; }
  .nav-cta { display: inline-block; }

  .hero { height: 100svh; min-height: 100svh; max-height: none; }
  .hero-kicker-zone { top: 96px; }
  .hero-text-zone { left: 6%; right: 6%; bottom: 12%; max-width: none; }
  .hero-text-zone.left-center { top: auto; bottom: 12%; transform: none; left: 6%; right: 6%; }
  .energy-rest { flex-direction: column; gap: 0; white-space: normal; }

  .card-outer { width: 100%; height: 560px; }
  .brings { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
