*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg:      #F5EFE4;
  --color-surface: #EDE5D8;
  --color-text:    #2C1F12;
  --color-muted:   #8B7355;
  --color-coral:   #E07058;
  --color-teal:    #6EB5B8;
  --color-gold:    #E4AC3A;
  --max-width: 1100px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

/* ── Stripe bar ── */
.stripe-bar {
  width: 100%;
  height: 6px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.stripe-bar span { flex: 1; }
.stripe-bar span:nth-child(1) { background: var(--color-coral); }
.stripe-bar span:nth-child(2) { background: var(--color-gold); }
.stripe-bar span:nth-child(3) { background: var(--color-teal); }
.stripe-bar span:nth-child(4) { background: var(--color-coral); }
.stripe-bar span:nth-child(5) { background: var(--color-gold); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 6px;
  z-index: 90;
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-surface);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-coral);
  text-decoration: none;
  letter-spacing: -0.01em;
}

/* ── Hamburger ── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin: -0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav: hidden by default, drops down when open */
#main-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  padding: 1rem 0 0.5rem;
  gap: 0;
}
#main-nav.open { display: flex; }
#main-nav .nav-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-surface);
  color: var(--color-text);
  text-decoration: none;
  font-size: 1rem;
}
#main-nav .btn-nav {
  margin-top: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .header-inner { padding: 1rem 2rem; }
  .nav-toggle { display: none; }
  #main-nav {
    display: flex;
    flex-direction: row;
    width: auto;
    padding: 0;
    align-items: center;
    gap: 2rem;
  }
  #main-nav .nav-link {
    padding: 0;
    border: none;
    font-size: 0.95rem;
  }
  #main-nav .nav-link:hover { color: var(--color-coral); }
  #main-nav .btn-nav { margin-top: 0; }
}

/* ── Buttons ── */
.btn-primary,
.btn-secondary,
.btn-nav {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-primary  { background: var(--color-coral); color: #fff; }
.btn-secondary { background: transparent; color: var(--color-coral); border: 2px solid var(--color-coral); }
.btn-nav      { background: var(--color-coral); color: #fff; }
.btn-primary:hover,
.btn-secondary:hover,
.btn-nav:hover { opacity: 0.85; }

/* ── Hero ── */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hero-inner { flex: 1; }
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-teal);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 10vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 440px;
  margin-bottom: 2rem;
}
.hero-photo { flex: 1; display: flex; justify-content: center; }

/* ── Photo placeholders ── */
.photo-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  background: var(--color-surface);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-muted);
  color: var(--color-muted);
  font-size: 0.9rem;
}
.photo-placeholder.tall { aspect-ratio: 2/3; max-width: 320px; }

/* ── Sections ── */
.section { padding: 5rem 2rem; }
.section-tinted { background: var(--color-surface); }
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}
.section-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ── About two-col ── */
.two-col {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
.about-text { flex: 1; }
.about-text p { margin-bottom: 1rem; color: var(--color-muted); }
.about-text h2 { margin-bottom: 1.25rem; }
.trust-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.trust-list li {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--color-bg);
  border-radius: 1.25rem;
  padding: 2rem;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card p { font-size: 0.95rem; color: var(--color-muted); }

/* ── Booking / Form ── */
.booking-inner { max-width: 640px; }
.booking-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.booking-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  max-width: 420px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .form-row { flex-direction: row; }
  .form-row .form-group { flex: 1; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-surface);
  border-radius: 0.75rem;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-coral);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  min-height: 52px;
  border: none;
  cursor: pointer;
}
.form-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
}

/* ── Footer ── */
.site-footer {
  background: var(--color-text);
  color: var(--color-bg);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.9rem;
}
.stripe-bar-footer {
  height: 5px;
  display: flex;
  margin-bottom: 2rem;
  margin-left: -2rem;
  margin-right: -2rem;
}
.stripe-bar-footer span { flex: 1; }
.stripe-bar-footer span:nth-child(1) { background: var(--color-coral); }
.stripe-bar-footer span:nth-child(2) { background: var(--color-gold); }
.stripe-bar-footer span:nth-child(3) { background: var(--color-teal); }
.stripe-bar-footer span:nth-child(4) { background: var(--color-coral); }
.stripe-bar-footer span:nth-child(5) { background: var(--color-gold); }
.footer-sub { margin-top: 0.4rem; opacity: 0.6; font-size: 0.8rem; }

/* ── Location widget (home page) ── */
.location-widget-wrap {
  background: var(--color-text);
  padding: 0.85rem 2rem;
}
.location-widget {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.location-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  display: block;
}
.location-city {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-bg);
}
.location-text { flex: 1; }
.location-link {
  font-size: 0.85rem;
  color: var(--color-gold);
  text-decoration: none;
  white-space: nowrap;
}
.location-link:hover { text-decoration: underline; }

/* ── Pulse dot ── */
.location-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-teal);
  flex-shrink: 0;
  position: relative;
}
.location-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-teal);
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}
.location-pulse.large { width: 16px; height: 16px; }
@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

/* ── Schedule page ── */
.schedule-hero {
  padding: 4rem 2rem 3rem;
}
.schedule-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.current-location-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-text);
  color: var(--color-bg);
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  max-width: 620px;
}
.current-city {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-bg);
  margin-bottom: 0.2rem;
}
.current-note {
  font-size: 0.85rem;
  color: var(--color-muted);
}
.current-location-card .btn-primary { flex-shrink: 0; margin-left: auto; }

/* ── Schedule table ── */
.schedule-table {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-surface);
}
.schedule-row {
  display: grid;
  grid-template-columns: 160px 1fr 160px 80px;
  align-items: center;
  padding: 1rem 1.5rem;
  gap: 1rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-surface);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row--header {
  background: var(--color-text);
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.5rem;
}
.schedule-row--tbd { opacity: 0.5; }
.sched-dates { font-size: 0.9rem; color: var(--color-muted); }
.sched-city  { font-weight: 700; }
.sched-status {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  display: inline-block;
  text-align: center;
}
.status-open    { background: #d4edda; color: #276038; }
.status-limited { background: #fff3cd; color: #856404; }
.status-tbd     { background: var(--color-surface); color: var(--color-muted); }
.btn-small {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--color-coral);
  color: #fff;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}
.btn-small:hover { opacity: 0.85; }

/* ── Responsive ── */
@media (max-width: 768px) {

  /* Tighter padding everywhere */
  .section { padding: 3rem 1.25rem; }
  .schedule-hero { padding: 2.5rem 1.25rem 2rem; }
  .header-inner { padding: 0.875rem 1.25rem; }
  .location-widget-wrap { padding: 0.85rem 1.25rem; }

  /* Hero: stack vertically, text first */
  .hero {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 1.25rem 3rem;
  }
  .hero-sub { max-width: 100%; }
  .hero-photo { width: 100%; }
  .photo-placeholder { max-width: 100%; aspect-ratio: 4/3; }

  /* Full-width CTAs — easier to tap */
  .btn-primary,
  .btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
    min-height: 48px;
  }
  .booking-options {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* About: stack photo below text on mobile */
  .two-col { flex-direction: column; gap: 2rem; }
  .about-photo { order: 1; width: 100%; }
  .about-text  { order: 0; }
  .photo-placeholder.tall { max-width: 100%; aspect-ratio: 3/2; }

  /* Section intro full-width */
  .section-intro { max-width: 100%; }

  /* Schedule table → card stack */
  .schedule-row--header { display: none; }
  .schedule-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 1rem 1.25rem;
    gap: 0.4rem 1rem;
  }
  .sched-city  { grid-column: 1; grid-row: 1; }
  .sched-dates { grid-column: 1; grid-row: 2; }
  .sched-status { grid-column: 1; grid-row: 3; justify-self: start; }
  .btn-small {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Current location card */
  .current-location-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .current-location-card .btn-primary { margin-left: 0; }

  /* Location widget */
  .location-widget { flex-wrap: wrap; gap: 0.5rem; }
}
