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

:root {
  --ink: #0f6b43;
  --ink-mid: #198b5a;
  --ink-soft: #5a7f6f;
  --cream: #f3f8f5;
  --warm: #e8f2ec;
  --border: #cfe3d7;
  --white: #ffffff;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 28px; height: 28px;
  background: var(--ink);
  border-radius: 6px;
  display: grid;
  place-items: center;
}

.logo-mark svg { width: 16px; height: 16px; fill: #2fa56f; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-mid);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ink-mid);
  stroke-width: 2;
}

.booth-hero {
  min-height: 520px;
  padding-top: 68px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 30, 20, 0.72), rgba(10, 30, 20, 0.38));
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: end;
  padding: 64px 48px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.82rem;
}

.breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.6); }

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b6e6cd;
  margin-bottom: 10px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-desc {
  max-width: 620px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-primary {
  background: #2fa56f;
  color: #083f28;
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.32);
}

.status-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 14px;
  padding: 20px;
  color: var(--ink);
}

.status-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.status-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-block;
}

.status-pill.available { background: #e4f6ee; color: #0f754d; }
.status-pill.limited { background: #dbf1e4; color: #24875b; }
.status-pill.booked { background: #edf4f0; color: #5e7d70; }

.status-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.1;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.page-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 48px 80px;
  display: grid;
  gap: 18px;
}

.panel {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
}

.panel-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.panel-head p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.amenities {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amenity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--warm);
  color: var(--ink-mid);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 500;
}

.amenity i { line-height: 1; }

.slot-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(10, minmax(50px, 1fr));
  gap: 6px;
}

.slot {
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 8px 4px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.slot small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.85;
}

.slot.open { background: #e4f6ee; color: #0f754d; }
.slot.limited { background: #dbf1e4; color: #24875b; }
.slot.taken { background: #edf4f0; color: #5e7d70; }

.slot-legend {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.slot-legend i { margin-right: 4px; }
.slot-legend .open { color: #0f754d; }
.slot-legend .limited { color: #24875b; }
.slot-legend .taken { color: #5e7d70; }

.cta-panel {
  background: var(--cream);
  text-align: center;
}

.cta-panel h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.cta-panel p {
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.booking-success-notice {
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 10px;
  padding: 10px 16px;
  background: #e4f6ee;
  color: #0f754d;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #bbe5d3;
}

footer {
  background: var(--cream);
  padding: 24px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

footer p { font-size: 0.8rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 42px 20px;
  }

  .page-main { padding: 28px 20px 56px; }
  .status-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-toggle { display: inline-flex; }

  .nav-links {
    display: flex;
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 8px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(15, 107, 67, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
  }

  .nav-links .nav-cta {
    display: block;
    width: 100%;
    margin-top: 6px;
    text-align: center;
    padding: 11px 14px;
  }

  .slot-row {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
  }

  footer { padding: 24px 20px; }
}
