@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --blush:     #ffe2e2;
  --sage:      #5c947d;
  --sage-soft: #bad8ba;
  --ink:       #0f2a23;
  --ink-2:     #1c3a32;
  --cream:     #fbf6ee;
  --cream-2:   #f4ecdd;
  --coral:     #e87b66;
  --amber:     #f2a65a;

  --serif: 'Cormorant Garamond', Garamond, serif;
  --sans:  'Inter', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15,42,35,0.06), 0 1px 3px rgba(15,42,35,0.08);
  --shadow-md: 0 8px 24px rgba(15,42,35,0.10), 0 2px 6px rgba(15,42,35,0.06);
  --shadow-lg: 0 24px 60px rgba(15,42,35,0.20), 0 6px 18px rgba(15,42,35,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.sr { position: absolute; left: -9999px; }
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}
.hairline { height: 1px; background: currentColor; opacity: 0.2; border: 0; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.anim-up { animation: fadeUp .6s ease both; }
.anim-up.d1 { animation-delay: .08s; }
.anim-up.d2 { animation-delay: .16s; }
.anim-up.d3 { animation-delay: .24s; }
.anim-up.d4 { animation-delay: .32s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500; font-size: 15px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  text-decoration: none; background: transparent;
  font-family: var(--sans);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: #183a31; box-shadow: var(--shadow-md); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(15,42,35,0.25); }
.btn-ghost:hover { background: rgba(15,42,35,0.04); }
.btn-ghost-on-dark { color: var(--cream); border-color: rgba(251,246,238,0.35); }
.btn-ghost-on-dark:hover { background: rgba(251,246,238,0.1); }
.btn-small { padding: 9px 14px; font-size: 13px; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ── Language switcher ── */
.lang-switch {
  display: inline-flex; gap: 2px;
  padding: 3px;
  background: rgba(15,42,35,0.06);
  border-radius: 999px;
}
.lang-switch.on-dark { background: rgba(251,246,238,0.14); }
.lang-switch form { display: contents; }
.lang-switch button, .lang-switch a {
  border: 0; background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit; cursor: pointer;
  transition: background .15s ease, color .15s ease;
  text-decoration: none;
  display: inline-block;
}
.lang-switch button.active, .lang-switch a.active { background: var(--cream); color: var(--ink); }
.lang-switch.on-dark button.active, .lang-switch.on-dark a.active { background: var(--cream); color: var(--ink); }

/* ══════════════════════════════════════
   LOGIN / REGISTER
══════════════════════════════════════ */
.login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 520px;
  background: var(--ink);
  color: var(--cream);
  flex: 1;
}
.login__art {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.login__art::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,42,35,0.55), rgba(15,42,35,0.15) 45%, transparent 70%);
}
.login__art-title {
  position: absolute;
  left: 56px; bottom: 48px; right: 56px;
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 120px);
  line-height: 0.95;
  font-style: italic;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  z-index: 2;
}
.login__art-title small {
  display: block;
  font-family: var(--mono); font-size: 12px;
  font-style: normal; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.8;
  margin-top: 18px;
}
.login__panel {
  padding: 56px 56px 40px;
  display: flex; flex-direction: column; gap: 28px;
  background: var(--ink);
}
.login__brand {
  font-family: var(--serif);
  font-size: 22px; font-style: italic;
  letter-spacing: 0.01em;
}
.login__head h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: 42px; line-height: 1.05;
  margin: 0 0 12px;
}
.login__head p {
  color: rgba(251,246,238,0.7); font-size: 15px;
  line-height: 1.55; margin: 0; max-width: 36ch;
}
.login__foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7;
}

/* Form fields */
.field { display: flex; flex-direction: column; gap: 6px; }
.field > label {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.8;
}
.field > .hint { font-size: 12px; opacity: 0.55; margin-top: -2px; }
.field input, .field textarea, .field select {
  background: transparent; border: 0;
  border-bottom: 1px solid rgba(251,246,238,0.25);
  padding: 10px 0; font-size: 16px;
  color: var(--cream); outline: none;
  transition: border-color .2s ease;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(251,246,238,0.4); }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--sage-soft); }

.field.light input, .field.light textarea, .field.light select {
  color: var(--ink); border-bottom-color: rgba(15,42,35,0.2); background: transparent;
}
.field.light input::placeholder, .field.light textarea::placeholder { color: rgba(15,42,35,0.35); }
.field.light input:focus, .field.light textarea:focus, .field.light select:focus { border-bottom-color: var(--sage); }
.field.light > label { opacity: 0.9; color: var(--sage); }

.alert-error {
  background: rgba(232,123,102,0.15);
  border: 1px solid rgba(232,123,102,0.4);
  color: #ffb3a0;
  padding: 10px 14px; border-radius: var(--r-md);
  font-size: 14px;
}
.alert-error-light {
  background: #fef2f2; border: 1px solid #fca5a5;
  color: #b91c1c; padding: 10px 14px;
  border-radius: var(--r-md); font-size: 14px;
}
.alert-success {
  background: rgba(92,148,125,0.15);
  border: 1px solid rgba(92,148,125,0.4);
  color: var(--sage-soft); padding: 10px 14px;
  border-radius: var(--r-md); font-size: 14px;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 32px;
  padding: 18px 40px;
  background: rgba(251,246,238,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,42,35,0.08);
}
.nav__brand {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; font-weight: 500;
  text-decoration: none; color: var(--ink);
  flex-shrink: 0;
}
.nav__brand small {
  display: block; font-family: var(--mono);
  font-style: normal; font-weight: 400;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sage); margin-top: 2px;
}
.nav__links { display: flex; gap: 6px; margin-left: 12px; }
.nav__link {
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; color: var(--ink);
  text-decoration: none; cursor: pointer;
  border: 0; background: transparent;
  font-family: var(--sans);
  transition: background .15s ease;
}
.nav__link:hover { background: rgba(92,148,125,0.10); }
.nav__link.active { background: var(--ink); color: var(--cream); }
.nav__spacer { flex: 1; }
.nav__meta { display: flex; align-items: center; gap: 12px; }
.nav__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--sage-soft); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1px solid rgba(15,42,35,0.12);
  text-decoration: none;
}

/* ══════════════════════════════════════
   HOME / HERO
══════════════════════════════════════ */
.home-flow { position: relative; background: var(--cream); }

.hero {
  position: relative;
  min-height: 720px; padding: 48px 40px 120px;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(15,42,35,0.15) 0%, rgba(15,42,35,0.55) 80%, rgba(15,42,35,0.92) 100%),
    url('../img/jungle-bg.jpg');
  background-size: cover; background-position: center;
  overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 40px; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(186,216,186,0.25) 0, transparent 2px),
    radial-gradient(circle at 78% 18%, rgba(255,226,226,0.3) 0, transparent 3px),
    radial-gradient(circle at 88% 65%, rgba(242,166,90,0.3) 0, transparent 3px);
}
.hero__names {
  font-family: var(--serif); font-style: italic;
  font-weight: 400;
  font-size: clamp(90px, 11vw, 190px);
  line-height: 0.88; margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
  position: relative; z-index: 2;
}
.hero__names .amp {
  display: block; font-size: 0.55em;
  font-style: italic; padding-left: 0.4em; opacity: 0.95;
}
.hero__meta {
  margin-top: 36px;
  display: flex; gap: 28px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.hero__meta .chip {
  padding: 10px 18px;
  border: 1px solid rgba(251,246,238,0.45);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  backdrop-filter: blur(6px);
  background: rgba(15,42,35,0.18);
}
.hero__side {
  align-self: end; justify-self: end;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 28px;
  max-width: 460px;
  position: relative; z-index: 2;
}
.hero__card {
  background: rgba(251,246,238,0.94);
  color: var(--ink); padding: 28px 30px;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%;
}
.hero__card p { margin: 0 0 16px; font-size: 15px; line-height: 1.6; }
.hero__card p:last-child { margin-bottom: 0; }

/* Overlap variant (default) */
.home-flow.flow-overlap .about-section {
  margin-top: -100px; position: relative; z-index: 2;
  background: var(--cream);
  border-radius: 40px 40px 0 0;
  padding-top: 80px;
  box-shadow: 0 -24px 60px rgba(15,42,35,0.18);
}
.home-flow .about-section { padding: 96px 40px; max-width: 1240px; margin-left: auto; margin-right: auto; }
.home-flow .schedule-section { padding: 96px 40px; color: var(--cream); background: var(--ink); }
.home-flow .schedule-section .inner { max-width: 1240px; margin: 0 auto; }

.home-flow.pull-up .schedule-section {
  margin-top: -40px;
  border-radius: 60px 60px 0 0;
  position: relative; z-index: 2;
}

/* Countdown */
.countdown { display: flex; gap: 14px; margin-top: 8px; }
.countdown__cell {
  background: rgba(15,42,35,0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(251,246,238,0.2);
  border-radius: var(--r-md);
  padding: 14px 18px 10px;
  text-align: center; min-width: 74px;
}
.countdown__cell .n {
  font-family: var(--serif); font-size: 40px;
  line-height: 1; font-weight: 500;
}
.countdown__cell .l {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-top: 6px; opacity: 0.7;
}

/* ── Sections ── */
.section { padding: 96px 40px; max-width: 1240px; margin: 0 auto; width: 100%; }
.section--tight { padding: 64px 40px; }
.section--dark { background: var(--ink); color: var(--cream); max-width: none; padding: 96px 40px; }
.section--dark .kicker { color: var(--sage-soft); }
.section--blush { background: var(--blush); max-width: none; }
.section h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04; margin: 12px 0 12px;
  letter-spacing: -0.01em;
}
.section h2 em { font-style: italic; color: var(--sage); }
.section--dark h2 em { color: var(--sage-soft); }
.section__lead {
  font-size: 17px; line-height: 1.55;
  max-width: 60ch; margin: 0 0 40px; opacity: 0.85;
}

/* About section */
.home-flow .about-section .kicker { display: block; margin-bottom: 8px; }
.home-flow .about-section h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04; margin: 8px 0 0;
  letter-spacing: -0.01em;
}
.home-flow .about-section h2 em { font-style: italic; color: var(--sage); }

/* Trio mini cards */
.trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 40px; }
.mini {
  padding: 28px; border-radius: var(--r-lg);
  background: var(--cream-2);
  border: 1px solid rgba(15,42,35,0.07);
}
.mini h3 { font-family: var(--serif); font-weight: 500; font-size: 28px; margin: 0 0 10px; }
.mini p { font-size: 15px; line-height: 1.55; margin: 0; opacity: 0.85; }
.mini--blush { background: var(--blush); }
.mini--sage { background: var(--sage-soft); }

/* Photo band */
.photo-band { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 16px; margin-top: 48px; }
.photo-band .ph {
  aspect-ratio: 3/4; border-radius: var(--r-lg);
  background: var(--sage-soft);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.photo-band .ph--wide { aspect-ratio: 4/5; }
.photo-band .ph--tall { aspect-ratio: 2/3; }

/* Timetable */
.schedule { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.day {
  border-radius: var(--r-lg); padding: 28px 26px;
  border: 1px solid rgba(251,246,238,0.1);
  display: flex; flex-direction: column; min-height: 420px;
  background: rgba(251,246,238,0.04);
  color: var(--cream);
}
.day--mid { background: var(--ink-2); }
.day__head { border-bottom: 1px solid rgba(251,246,238,0.15); padding-bottom: 14px; margin-bottom: 18px; }
.day__title { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 0; }
.day__sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-soft); margin-top: 6px; }
.day ul { padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.day li { display: grid; grid-template-columns: 58px 1fr; gap: 14px; }
.day li .t { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--sage-soft); padding-top: 3px; }
.day li .ti { font-size: 15px; font-weight: 500; }
.day li .note { font-size: 13px; opacity: 0.7; margin-top: 2px; }

/* ══════════════════════════════════════
   TRAVEL
══════════════════════════════════════ */
.travel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.travel-card {
  background: var(--cream-2); border: 1px solid rgba(15,42,35,0.08);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.travel-card .icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-size: 22px;
  background: var(--ink); color: var(--cream);
}
.travel-card.highlight { background: var(--ink); color: var(--cream); }
.travel-card.highlight .icon { background: var(--sage-soft); color: var(--ink); }
.travel-card h3 { font-family: var(--serif); font-weight: 500; font-size: 28px; margin: 6px 0 0; }
.travel-card .meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.travel-card .meta .tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(15,42,35,0.08); color: var(--ink);
}
.travel-card.highlight .meta .tag { background: rgba(251,246,238,0.15); color: var(--cream); }
.travel-card p { font-size: 15px; line-height: 1.6; margin: 0; }
.travel-card .foot { margin-top: auto; display: flex; gap: 12px; align-items: center; }

.map-hero {
  margin-top: 32px; border-radius: var(--r-lg); overflow: hidden;
  position: relative; aspect-ratio: 16/6;
  background:
    linear-gradient(135deg, rgba(186,216,186,0.6), rgba(92,148,125,0.4)),
    repeating-linear-gradient(45deg, rgba(15,42,35,0.06) 0, rgba(15,42,35,0.06) 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(-45deg, rgba(15,42,35,0.04) 0, rgba(15,42,35,0.04) 1px, transparent 1px, transparent 22px),
    url('../img/lakeimage.jpg') center/cover;
  border: 1px solid rgba(15,42,35,0.08);
}
.map-hero__overlay { position: absolute; inset: 0; background: rgba(15,42,35,0.3); }
.map-hero__pin {
  position: absolute; padding: 8px 14px 8px 10px;
  background: var(--ink); color: var(--cream);
  border-radius: 999px; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-md);
}
.map-hero__pin::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--blush); box-shadow: 0 0 0 4px rgba(255,226,226,0.4);
}
.map-hero__pin--berlin { top: 22%; left: 24%; }
.map-hero__pin--venue { bottom: 32%; right: 26%; background: var(--sage); }
.map-hero__pin--venue::before { background: var(--cream); box-shadow: 0 0 0 4px rgba(251,246,238,0.4); }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq { max-width: 820px; margin: 32px auto 0; }
.faq-item { border-bottom: 1px solid rgba(15,42,35,0.12); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--serif); font-weight: 500; font-size: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '＋'; font-family: var(--sans);
  font-weight: 300; font-size: 22px;
  color: var(--sage); transition: transform .25s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 48px 22px 0; margin: 0; font-size: 15px; line-height: 1.65; opacity: 0.82; max-width: 70ch; }

/* ══════════════════════════════════════
   ONBOARDING (FORM)
══════════════════════════════════════ */
.onboarding {
  min-height: 100vh; min-height: calc(100vh - 0px);
  display: grid; grid-template-columns: 440px 1fr;
  flex: 1;
}
.onboarding__aside {
  background: var(--ink); color: var(--cream);
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 28px;
  position: sticky; top: 0; height: 100vh;
}
.onboarding__aside-art {
  flex: 1; background-size: cover; background-position: center;
  border-radius: var(--r-lg); overflow: hidden; min-height: 300px;
}
.onboarding__progress { display: flex; gap: 6px; }
.onboarding__progress span {
  flex: 1; height: 4px; border-radius: 2px;
  background: rgba(251,246,238,0.2);
  transition: background .25s ease;
}
.onboarding__progress span.done { background: var(--sage-soft); }
.onboarding__progress span.active { background: var(--cream); }
.onboarding__steps { display: flex; flex-direction: column; gap: 10px; }
.onboarding__step-row {
  display: grid; grid-template-columns: 22px 1fr;
  gap: 12px; align-items: center;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0.55; transition: opacity .2s ease;
}
.onboarding__step-row.active { opacity: 1; color: var(--cream); }
.onboarding__step-row.done { opacity: 0.85; color: var(--sage-soft); }
.onboarding__step-row .n {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid currentColor;
  display: grid; place-items: center; font-size: 10px;
}
.onboarding__step-row.done .n { background: var(--sage-soft); border-color: var(--sage-soft); color: var(--ink); }
.onboarding__step-row.active .n { background: var(--cream); border-color: var(--cream); color: var(--ink); }

.onboarding__main { padding: 72px 72px 48px; max-width: 720px; width: 100%; }
.onboarding__head { margin-bottom: 32px; }
.onboarding__head .kicker { margin-bottom: 10px; display: block; }
.onboarding__head h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: 52px; line-height: 1.02; margin: 0 0 10px;
}
.onboarding__head p { margin: 0; color: rgba(15,42,35,0.7); font-size: 16px; line-height: 1.55; max-width: 50ch; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; margin-top: 24px; }
.form-grid .full { grid-column: 1 / -1; }

/* Choice pills */
.choice-group { display: flex; flex-wrap: wrap; gap: 10px; }
.choice {
  padding: 12px 18px;
  border: 1px solid rgba(15,42,35,0.18);
  background: transparent; color: var(--ink);
  border-radius: 999px; font-size: 14px;
  cursor: pointer; transition: all .15s ease;
  font-family: var(--sans);
}
.choice:hover { background: rgba(15,42,35,0.04); }
.choice.selected { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Choice tiles */
.choice-tile {
  padding: 18px 20px;
  border: 1px solid rgba(15,42,35,0.18);
  border-radius: var(--r-md);
  background: var(--cream-2); cursor: pointer;
  transition: all .15s ease;
  display: flex; flex-direction: column; gap: 4px;
  text-align: left; font-family: var(--sans);
}
.choice-tile:hover { border-color: var(--sage); }
.choice-tile.selected { border-color: var(--ink); background: var(--blush); }
.choice-tile .t { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.choice-tile .s { font-size: 13px; opacity: 0.7; }
.tiles-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.tiles-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }

/* Toggle switch */
.toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-top: 1px solid rgba(15,42,35,0.08);
}
.toggle-row:first-child { border-top: 0; }
.toggle-row .t { font-size: 15px; font-weight: 500; }
.toggle-row .s { font-size: 13px; opacity: 0.65; margin-top: 2px; }
.toggle {
  width: 44px; height: 26px; border-radius: 999px;
  background: rgba(15,42,35,0.15); border: 0; cursor: pointer;
  position: relative; transition: background .2s ease; flex-shrink: 0;
}
.toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; background: #fff;
  border-radius: 50%; box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.toggle.on { background: var(--sage); }
.toggle.on::after { transform: translateX(18px); }

.onboarding__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid rgba(15,42,35,0.08);
}
.onboarding__foot .step-indicator {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55;
}

/* Done screen */
.done-screen {
  max-width: 640px; margin: 0 auto;
  padding: 120px 40px; text-align: center;
}
.done-screen .fairy {
  width: 180px; height: 180px; margin: 0 auto 24px;
  background-size: contain; background-position: center;
  background-repeat: no-repeat;
}
.done-screen h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: 64px; line-height: 1.02; margin: 0 0 16px;
}
.done-screen p { font-size: 17px; line-height: 1.55; opacity: 0.75; margin: 0 0 32px; }

/* ══════════════════════════════════════
   PROFILE
══════════════════════════════════════ */
.profile {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 48px; padding: 56px 40px;
  max-width: 1240px; margin: 0 auto; width: 100%;
}
.profile__aside {
  position: sticky; top: 120px; align-self: start;
  display: flex; flex-direction: column; gap: 24px;
}
.profile__avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--sage-soft);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 40px; font-weight: 500;
  border: 1px solid rgba(15,42,35,0.15);
}
.profile__aside h2 { font-family: var(--serif); font-weight: 500; font-size: 32px; line-height: 1.1; margin: 0; }
.profile__aside p { margin: 0; font-size: 14px; opacity: 0.7; line-height: 1.5; }
.profile__aside .status {
  padding: 8px 14px; border-radius: 999px;
  background: var(--sage-soft); color: var(--ink);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; align-self: start;
}
.profile__main { display: flex; flex-direction: column; gap: 24px; }
.profile__card {
  background: var(--cream-2); border: 1px solid rgba(15,42,35,0.08);
  border-radius: var(--r-lg); padding: 28px 32px;
}
.profile__card h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 0 0 4px; }
.profile__card .kicker { margin-bottom: 14px; display: block; }
.profile__dl {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 14px 24px; margin: 0;
}
.profile__dl dt {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.65; align-self: center;
}
.profile__dl dd { margin: 0; font-size: 15px; }
.profile__card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }

/* ══════════════════════════════════════
   ADMIN TABLE
══════════════════════════════════════ */
.admin-wrap { max-width: 1240px; margin: 0 auto; padding: 56px 40px; }
.admin-stats { display: flex; gap: 20px; margin-bottom: 48px; flex-wrap: wrap; }
.admin-stat {
  background: var(--cream-2); border: 1px solid rgba(15,42,35,0.08);
  border-radius: var(--r-lg); padding: 24px 28px;
  flex: 1; min-width: 140px; text-align: center;
}
.admin-stat .n { font-family: var(--serif); font-size: 48px; font-weight: 500; line-height: 1; color: var(--ink); }
.admin-stat .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); margin-top: 6px; }
.admin-table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid rgba(15,42,35,0.08); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; background: var(--cream-2); }
thead { background: var(--ink); }
thead th { padding: 14px 16px; text-align: left; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,246,238,0.7); font-weight: 400; white-space: nowrap; }
tbody tr { border-bottom: 1px solid rgba(15,42,35,0.06); transition: background .12s ease; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--blush); }
tbody td { padding: 14px 16px; font-size: 14px; vertical-align: top; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.badge-stay { background: var(--sage-soft); color: var(--ink); }
.badge-hotel { background: var(--blush); color: var(--ink); }
.badge-plane { background: var(--cream); border: 1px solid rgba(15,42,35,0.1); color: var(--ink); }
.badge-train { background: var(--cream); border: 1px solid rgba(15,42,35,0.1); color: var(--ink); }
.badge-car { background: var(--cream); border: 1px solid rgba(15,42,35,0.1); color: var(--ink); }
.room-cell { display: flex; gap: 8px; align-items: center; }
.room-input {
  border: 0; border-bottom: 1px solid rgba(15,42,35,0.2);
  background: transparent; font-size: 14px;
  padding: 4px 0; width: 130px; outline: none; font-family: var(--sans);
  transition: border-color .2s;
}
.room-input:focus { border-bottom-color: var(--sage); }
.btn-save-room {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  border: 0; padding: 6px 12px; border-radius: 999px;
  cursor: pointer; transition: background .15s ease;
  white-space: nowrap;
}
.btn-save-room:hover { background: var(--sage); }
.save-status { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--sage); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--ink); color: var(--cream);
  padding: 56px 40px; text-align: center; margin-top: auto;
}
.footer__names {
  font-family: var(--serif); font-style: italic;
  font-size: 48px; font-weight: 500; margin: 0;
}
.footer__meta {
  margin-top: 12px; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.65;
}
.footer__contact { margin-top: 24px; font-size: 14px; opacity: 0.8; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  .login { grid-template-columns: 1fr; }
  .login__art { min-height: 240px; }
  .login__panel { padding: 32px; }
  .hero { grid-template-columns: 1fr; padding: 32px 20px; min-height: auto; }
  .hero__side { justify-self: start; }
  .section { padding: 64px 20px; }
  .schedule, .trio, .travel-grid, .photo-band { grid-template-columns: 1fr; }
  .onboarding { grid-template-columns: 1fr; }
  .onboarding__aside { position: static; height: auto; }
  .onboarding__main { padding: 40px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 1fr; }
  .nav { padding: 14px 20px; gap: 16px; overflow-x: auto; }
  .nav__links { margin-left: 0; }
  .tiles-3 { grid-template-columns: 1fr 1fr; }
  .home-flow .about-section { padding: 64px 20px; }
  .home-flow .schedule-section { padding: 64px 20px; }
  .admin-wrap { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .tiles-3 { grid-template-columns: 1fr; }
  .tiles-2 { grid-template-columns: 1fr; }
  .hero__names { font-size: clamp(60px, 18vw, 90px); }
}
