/* ============================
   RESET & BASE
============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d0d;
  --bg2:       #111111;
  --bg3:       #161616;
  --gold:      #c9a96e;
  --gold-lt:   #e0c38e;
  --text:      #e8e2d9;
  --text-muted:#8a8278;
  --border:    #2a2520;
  --white:     #ffffff;
  --radius:    4px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max-w:     1100px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ============================
   UTILITIES
============================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
}
.btn--gold {
  background: var(--gold);
  color: #0d0d0d;
}
.btn--gold:hover { background: var(--gold-lt); }
.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--outline:hover { border-color: var(--text-muted); color: var(--text); }

.section {
  padding: 6rem 0;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.section__sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

/* ============================
   HERO
============================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Placeholder gradient — swap for a real photo */
  background: linear-gradient(160deg, #0a0a14 0%, #1a1208 50%, #0d0d0d 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?w=1600&q=80') center/cover no-repeat;
  opacity: 0.28;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 2rem;
}
.hero__label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero__sub {
  font-size: 1rem;
  color: rgba(232,226,217,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================
   HOW IT WORKS
============================ */
.how-it-works { background: var(--bg2); }
.how-it-works .section__title { margin-bottom: 3rem; }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 2rem;
}
.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }
.step__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 1rem;
}
.step__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step__desc { color: var(--text-muted); font-size: 0.9rem; }
.step__divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  margin-top: 2.5rem;
  flex-shrink: 0;
}

/* ============================
   WHAT'S INCLUDED
============================ */
.included { background: var(--bg); }
.included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.included__item {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.included__item:hover { border-color: var(--gold); }
.included__icon {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.included__item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.included__item p { color: var(--text-muted); font-size: 0.88rem; }

/* ============================
   REVIEWS
============================ */
.reviews { background: var(--bg3); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.review {
  padding: 2rem;
  border-left: 2px solid var(--gold);
}
.review__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.review__author {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Photo gallery — horizontal scroll */
.gallery {
  margin-top: 4rem;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding-bottom: 1rem;
}
.gallery__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
}
.gallery__item {
  flex: 0 0 auto;
  width: 300px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  scroll-snap-align: start;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) brightness(0.95);
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.05); }

/* subtle scrollbar styling */
.gallery::-webkit-scrollbar { height: 6px; }
.gallery::-webkit-scrollbar-track { background: var(--border); border-radius: 4px; }
.gallery::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ============================
   BOOKING FORM
============================ */
.booking { background: var(--bg2); }
.booking .section__title { margin-bottom: 0.4rem; }

.form-wrap {
  max-width: 620px;
  margin: 3rem auto 0;
}

/* Progress bar */
.progress-bar { margin-bottom: 2.5rem; }
.progress-bar__track {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.progress-bar__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 33.33%;
}
.progress-steps {
  display: flex;
  justify-content: space-between;
}
.progress-step {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.progress-step.active { color: var(--gold); }

/* Form pages */
.form-page { display: none; }
.form-page.active { display: block; }

.form-page__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
}

/* Form groups */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #3d3730; }
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input.error,
.form-group select.error { border-color: #c0392b; }

.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}
.form-hint-inline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
}
.req { color: var(--gold); }

/* Date row */
.date-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.date-row input[type="date"] { flex: 1; min-width: 160px; }
.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.checkbox-inline input[type="checkbox"] { accent-color: var(--gold); }

/* Radio cards */
.radio-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.radio-card {
  cursor: pointer;
  flex: 1;
  min-width: 90px;
}
.radio-card input { display: none; }
.radio-card span {
  display: block;
  text-align: center;
  padding: 0.65rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.radio-card input:checked + span {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.08);
}
.radio-card span:hover { border-color: var(--text-muted); color: var(--text); }

/* Interest chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}
.chip {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition);
}
.chip:hover { border-color: var(--text-muted); color: var(--text); }
.chip.selected {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}

/* Form nav */
.form-nav {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Summary */
.summary {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row__label {
  min-width: 130px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 0.15rem;
}
.summary-row__value { color: var(--text); }

.confirm-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Success */
.success-msg {
  text-align: center;
  padding: 3rem 1rem;
}
.success-icon {
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.success-msg h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.success-msg p { color: var(--text-muted); }

/* ============================
   CTA BOTTOM
============================ */
.cta-bottom {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}
.cta-bottom h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-bottom p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.cta-bottom strong { color: var(--gold); }

/* ============================
   FOOTER
============================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 700px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .br-desktop { display: none; }

  /* Hero */
  .hero__headline { font-size: clamp(2.6rem, 10vw, 3.5rem); }
  .hero__sub { font-size: 0.9rem; }

  /* Steps */
  .steps { flex-direction: column; gap: 2rem; }
  .step { padding: 0; }
  .step__divider { display: none; }

  /* Grid → 1 col */
  .included__grid { grid-template-columns: 1fr; gap: 1rem; }
  .reviews__grid  { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery { margin-top: 2.5rem; }
  .gallery__item { width: 220px; }

  /* Form */
  .date-row { flex-direction: column; align-items: flex-start; }
  .date-row input[type="date"] { width: 100%; }
  .radio-row { gap: 0.5rem; }
  .radio-card { min-width: calc(50% - 0.25rem); flex: none; }
  .form-nav { flex-direction: column-reverse; }
  .form-nav .btn { width: 100%; text-align: center; }

  /* Summary */
  .summary-row { flex-direction: column; gap: 0.2rem; }
  .summary-row__label { min-width: auto; }
}
