:root {
  --ink: #0e1626;
  --ink-2: #141f35;
  --paper: #f7f3ec;
  --paper-2: #fffcf6;
  --text-dark: #162237;
  --text-light: #e8edf5;
  --muted: #7f8ba0;
  --gold: #c7a56e;
  --gold-hover: #b38e55;
  --line: rgba(199, 165, 110, 0.42);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-light);
  background: var(--ink);
  line-height: 1.6;
}
.container { width: min(1160px, 92vw); margin: 0 auto; }
.narrow { width: min(820px, 92vw); }
.section { padding: 96px 0; }
.light { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); color: var(--text-dark); }
.light-alt { background: linear-gradient(180deg, #f0e8db 0%, #f8f2e8 100%); }
.dark { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(14, 22, 38, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-wrap { min-height: 82px; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: clamp(142px, 20vw, 195px);
  height: auto;
  display: block;
}

h1, h2, h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}
h1 { font-size: clamp(2.3rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.38rem; }
.lead { font-size: clamp(1rem, 1.35vw, 1.2rem); max-width: 780px; }
.small { max-width: 900px; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.76rem; margin-bottom: 10px; }

.hero {
  background:
    radial-gradient(circle at 80% -20%, rgba(199,165,110,.3), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.08), transparent 40%),
    var(--ink);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; align-items: center; gap: 34px; }
.authority-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 26px; }
.authority-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #f5e8d3;
  padding: 7px 12px;
  font-size: .86rem;
}
.hero-visual {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(20,31,53,.9), rgba(20,31,53,.65));
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
}
.cred-card {
  margin-top: 12px;
  border-left: 3px solid var(--gold);
  padding: 2px 0 2px 12px;
}
.cred-title { margin: 0 0 4px; font-weight: 700; }

.avatar { position: relative; }
.fit-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fit-grid article {
  border: 1px solid rgba(22,34,55,.16);
  border-radius: 14px;
  background: #fff;
  padding: 22px;
  color: var(--text-dark);
}

.timeline {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.timeline article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  padding: 18px;
}
.timeline span { color: var(--gold); font-weight: 700; letter-spacing: .07em; }

.stories .note { color: #58657d; margin-bottom: 16px; }
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.story-card {
  border: 1px solid rgba(22,34,55,.16);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.story-card h3,
.story-card p { padding: 0 16px; }
.story-card h3 { margin-top: 14px; }
.story-card p:last-child { padding-bottom: 16px; }

.authority .stats {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.authority .stats li {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  padding: 16px;
}
.authority .stats strong { display: block; color: var(--gold); font-size: 1.7rem; }

.btn {
  display: inline-block;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 20px;
  transition: .2s ease;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: #161616; }
.btn-primary:hover { background: var(--gold-hover); }
.btn-secondary { border: 1px solid var(--line); color: var(--paper); background: transparent; }
.btn-secondary:hover { background: rgba(199,165,110,.18); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.light .btn-secondary {
  color: var(--text-dark);
  border-color: rgba(22,34,55,.26);
}
.light .btn-secondary:hover { background: rgba(22,34,55,.08); }

.booking-form {
  margin-top: 20px;
  border: 1px solid rgba(22,34,55,.22);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  color: var(--text-dark);
}
.step-head { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.step-pill {
  border: 1px solid rgba(22,34,55,.22);
  color: #627189;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .88rem;
}
.step-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1d1d1d;
}
.form-step { display: none; }
.form-step.active { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-step label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; }
.form-step input,
.form-step select,
.form-step textarea {
  border-radius: 10px;
  border: 1px solid rgba(22,34,55,.24);
  padding: 11px 12px;
  font: inherit;
  color: var(--text-dark);
  background: #fff;
}
.check-consent {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.time-slots { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.slot-btn {
  border: 1px solid rgba(22,34,55,.22);
  border-radius: 10px;
  background: #fff;
  color: var(--text-dark);
  padding: 10px;
  font-weight: 600;
}
.slot-btn.active { background: var(--gold); border-color: var(--gold); color: #1c1c1c; }
.form-actions { margin-top: 16px; display: flex; gap: 10px; }
.requirements-list {
  margin: 0 0 18px;
  padding-left: 20px;
  color: #243146;
}
.requirements-list li { margin-bottom: 6px; }
.legal { color: #5f6d84; font-size: .92rem; }
.hidden { display: none; }

@media (max-width: 1024px) {
  .hero-grid,
  .timeline,
  .fit-grid,
  .story-grid,
  .authority .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .hero-grid,
  .timeline,
  .fit-grid,
  .story-grid,
  .authority .stats,
  .form-step.active { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: 1fr 1fr; }
  .form-actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}
