:root {
  --bg: #0c0a08;
  --bg-alt: #161210;
  --bg-card: #1c1713;
  --cream: #f2e8d5;
  --cream-dim: #cfc3a8;
  --gold: #d4af37;
  --gold-deep: #b8912a;
  --orange: #d97a2c;
  --orange-deep: #a8481a;
  --green: #4e5b2e;
  --red: #7a2222;
  --border: #332a20;
  --max-width: 1180px;
  --radius: 10px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 0.5em;
  color: var(--cream);
}

p {
  margin: 0 0 1em;
  color: var(--cream-dim);
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--orange);
  border: 1px solid var(--orange-deep);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section {
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff8ec;
  box-shadow: 0 8px 20px rgba(168, 72, 26, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 26px rgba(168, 72, 26, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
}

.btn-whatsapp {
  background: #25d366;
  color: #06210f;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 10, 8, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-deep);
}

.brand-text {
  font-family: 'Oswald', sans-serif;
  line-height: 1.05;
}

.brand-text .line1 {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--cream);
}

.brand-text .line2 {
  font-size: 0.68rem;
  color: var(--orange);
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--cream-dim);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--cream);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(217, 122, 44, 0.35), transparent 60%),
    radial-gradient(ellipse at 20% -10%, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(180deg, #100c09 0%, #0c0a08 60%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(120deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}

.hero-embers {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 160vw;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 122, 44, 0.55), rgba(168, 72, 26, 0.15) 45%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero-logo {
  width: clamp(160px, 22vw, 280px);
  margin: 0 auto 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-transform: none;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-badges svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: var(--orange-deep);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(217,122,44,0.18), rgba(212,175,55,0.1));
  border: 1px solid var(--orange-deep);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--orange);
  fill: none;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Experience cards */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow);
}

.exp-card.featured {
  border: 1px solid var(--gold-deep);
  transform: scale(1.02);
}

.exp-badge {
  display: inline-flex;
  align-self: flex-start;
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  color: #fff;
}

.exp-card.classic .exp-badge { background: var(--green); }
.exp-card.master .exp-badge { background: var(--red); }
.exp-card.custom .exp-badge { background: var(--gold-deep); color: #241c0a; }

.exp-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.exp-duration {
  font-size: 0.85rem;
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.exp-desc {
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.exp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.88rem;
  flex-grow: 1;
}

.exp-list li {
  padding: 7px 0;
  border-top: 1px dashed var(--border);
  display: flex;
  gap: 10px;
  color: var(--cream-dim);
}

.exp-list li:first-child {
  border-top: none;
}

.exp-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 7px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 50%;
}

.exp-price {
  font-family: 'Oswald', sans-serif;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.exp-price .from {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  display: block;
}

.exp-price .amount {
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

/* Add-ons */
.addons-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.addon-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.addon-pill svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  margin-bottom: 10px;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.1rem;
}

.step h3 {
  font-size: 0.95rem;
}

.step p {
  font-size: 0.85rem;
}

/* Booking form */
.booking-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-size: 0.95rem;
  margin: 34px 0 16px;
}

.form-section-title:first-child {
  margin-top: 0;
}

.form-section-title .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange-deep);
  color: #fff8ec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.8rem;
  color: var(--cream-dim);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.03em;
}

.field input,
.field textarea,
.field select {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.check-item,
.radio-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--cream-dim);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  cursor: pointer;
}

.check-item input,
.radio-item input {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.experience-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 6px;
}

.experience-select .radio-item {
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
}

.experience-select .radio-item strong {
  font-family: 'Oswald', sans-serif;
  color: var(--cream);
  font-size: 0.92rem;
}

.menu-panel {
  display: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 10px;
  background: var(--bg-alt);
}

.menu-panel.active {
  display: block;
}

.menu-panel h4 {
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.form-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.78rem;
  color: var(--cream-dim);
  margin-top: 14px;
}

.form-success {
  display: none;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid #25d366;
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 20px;
  font-size: 0.9rem;
}

.form-success.active {
  display: block;
}

.form-error {
  display: none;
  background: rgba(122, 34, 34, 0.15);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--cream);
}

.form-error.active {
  display: block;
}

/* Contact / footer */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.contact-list li:first-child {
  border-top: none;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-list strong {
  display: block;
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-row a:hover {
  border-color: var(--orange);
}

.social-row svg {
  width: 18px;
  height: 18px;
  stroke: var(--cream);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 320px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 320px;
}

footer.site-footer {
  padding: 34px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--cream-dim);
}

footer.site-footer .fine-print {
  margin-top: 8px;
  font-size: 0.72rem;
  opacity: 0.7;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #06210f;
}

/* Toast notifications */
.toast-container {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(440px, calc(100vw - 32px));
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 16px 16px 16px 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-left-color: #25d366;
}

.toast.error {
  border-left-color: var(--red);
}

.toast .toast-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.toast.success .toast-icon {
  color: #25d366;
}

.toast.error .toast-icon {
  color: #e5675f;
}

.toast .toast-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.toast .toast-body {
  flex: 1;
}

.toast .toast-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}

.toast .toast-text {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.4;
}

.toast .toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--cream-dim);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
}

.toast .toast-close:hover {
  color: var(--cream);
}

@media (max-width: 560px) {
  .toast-container {
    top: 76px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid,
  .experiences-grid {
    grid-template-columns: 1fr;
  }

  .exp-card.featured {
    transform: none;
  }

  .addons-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .form-grid,
  .form-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .experience-select {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    padding: 10px 16px;
  }

  .brand img {
    height: 36px;
    width: 36px;
  }

  .brand-text .line1 {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }

  .brand-text .line2 {
    font-size: 0.6rem;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn-primary {
    padding: 10px 14px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }

  .booking-wrap {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 120px;
  }
}
