:root {
  --ink: #1a1f2a;
  --ink-soft: #3d4554;
  --mute: #6b7385;
  --paper: #e9ecef;
  --paper-2: #dfe4ea;
  --line: rgba(26, 31, 42, 0.12);
  --accent: #1f5f5b;
  --accent-deep: #164845;
  --cream-text: #f4f6f8;
  --radius: 2px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px rgba(26, 31, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #cfd8e3 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 20%, #c5d5d2 0%, transparent 50%),
    linear-gradient(180deg, #eef1f4 0%, #e2e6eb 45%, #d8dde4 100%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  mix-blend-mode: difference;
  color: #fff;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topbar-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.topbar-link:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream-text);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.06);
  animation: hero-zoom 12s var(--ease) forwards;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 16, 24, 0.25) 0%, rgba(12, 16, 24, 0.55) 45%, rgba(12, 16, 24, 0.88) 100%),
    linear-gradient(90deg, rgba(12, 16, 24, 0.55) 0%, transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vh, 4rem);
  max-width: 40rem;
  animation: rise 1s var(--ease) both;
}

.brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  max-width: 18ch;
  color: rgba(244, 246, 248, 0.92);
}

.lede {
  margin: 0 0 1.75rem;
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(244, 246, 248, 0.78);
  max-width: 34ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #f7fbfa;
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: rgba(31, 95, 91, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(244, 246, 248, 0.35);
  color: var(--cream-text);
}

.btn-ghost:hover {
  border-color: rgba(244, 246, 248, 0.7);
}

.btn-ghost-dark {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-soft);
  margin-top: 0.75rem;
}

.btn-block {
  width: 100%;
}

.how,
.booking {
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.how {
  max-width: 1100px;
  margin: 0 auto;
}

.how h2,
.booking-intro h2,
.panel h3,
.success-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.how h2,
.booking-intro h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.section-lede {
  margin: 0;
  color: var(--mute);
  font-weight: 300;
  max-width: 36ch;
}

.steps {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.steps li {
  display: grid;
  gap: 0.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  animation: rise 0.8s var(--ease) both;
}

.steps li:nth-child(2) {
  animation-delay: 0.08s;
}

.steps li:nth-child(3) {
  animation-delay: 0.16s;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}

.steps strong {
  font-size: 1.05rem;
  font-weight: 560;
}

.steps span:last-child {
  color: var(--mute);
  font-size: 0.95rem;
  font-weight: 300;
}

.booking {
  max-width: 860px;
  margin: 0 auto;
}

.booking-intro {
  margin-bottom: 2rem;
}

.wizard {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.progress span {
  flex: 1;
  height: 3px;
  background: rgba(26, 31, 42, 0.12);
  transition: background 0.35s ease;
}

.progress span.is-active,
.progress span.is-done {
  background: var(--accent);
}

.panel {
  display: none;
  animation: rise 0.45s var(--ease) both;
}

.panel.is-active {
  display: block;
}

.panel h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.55rem, 3vw, 1.9rem);
}

.panel-hint {
  margin: -0.5rem 0 1rem;
  color: var(--mute);
  font-size: 0.95rem;
}

.back {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--mute);
  padding: 0;
  margin: 0 0 1rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.back:hover {
  color: var(--ink);
}

.staff-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .staff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.staff-option {
  appearance: none;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 1.15rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}

.staff-option:hover {
  border-color: rgba(31, 95, 91, 0.45);
  transform: translateY(-2px);
}

.staff-option.is-selected {
  border-color: var(--accent);
  background: rgba(31, 95, 91, 0.08);
}

.staff-role {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.staff-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
}

.staff-desc {
  display: block;
  margin-top: 0.4rem;
  color: var(--mute);
  font-size: 0.88rem;
  font-weight: 300;
}

.date-row,
.slots {
  display: grid;
  gap: 0.65rem;
}

.date-row {
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
}

.slots {
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
}

.chip {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  min-height: 3.4rem;
  padding: 0.55rem 0.4rem;
  cursor: pointer;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.chip:hover:not(:disabled) {
  border-color: rgba(31, 95, 91, 0.45);
}

.chip.is-selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #f7fbfa;
}

.chip:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.chip-day {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
}

.chip-date {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.chip-time {
  font-size: 0.95rem;
  font-weight: 500;
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.optional {
  font-weight: 400;
  color: var(--mute);
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--accent);
}

.summary {
  margin-top: 0.25rem;
  padding: 1rem 0 0.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.summary strong {
  color: var(--ink);
  font-weight: 560;
}

.summary-note {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--mute);
  font-size: 0.85rem;
}

.panel-success {
  text-align: center;
  padding: 1rem 0 0.5rem;
}

.success-kicker {
  margin: 0 0 0.4rem;
  color: var(--accent);
  font-size: 1.1rem;
}

.panel-success h3 {
  margin-bottom: 0.75rem;
}

.panel-success .section-lede {
  margin: 0 auto 1.5rem;
  max-width: 40ch;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--mute);
  font-size: 0.9rem;
}

.footer-brand {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 600;
}

.footer p:last-child {
  margin: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
