/* ─── Reset & Variables ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F9F5EE;
  --cream-dark: #EDE6D6;
  --brown:      #2C2416;
  --brown-mid:  #5C4A2E;
  --brown-light:#8B7355;
  --olive:      #6B7851;
  --olive-light:#9aaa82;
  --gold:       #B8964E;
  --sand:       #DDD0B8;
  --white:      #FDFAF4;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --max-w: 1200px;
  --r:     6px;
  --ease:  0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover { text-decoration: underline; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.15; }

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.02em; }
h5 { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ─── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section-header {
  text-align: center;
  max-width: 560px;
  width: 100%;
  margin: 0 auto 4rem;
}

.section-header p { color: var(--brown-light); margin-top: 0.75rem; font-size: 1rem; }
.section-header.light h2, .section-header.light p { color: var(--cream); }
.section-header.light .eyebrow { color: var(--gold); }
.section-header.light p { color: var(--sand); }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--brown);
  color: var(--cream);
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background var(--ease), transform var(--ease);
}
.btn-primary:hover { background: var(--brown-mid); transform: translateY(-1px); text-decoration: none; }

.btn-ghost {
  display: inline-block;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background var(--ease), border-color var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; text-decoration: none; }

.btn-book {
  display: inline-block;
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--brown);
  padding-bottom: 2px;
  margin-top: 1.25rem;
  transition: color var(--ease), border-color var(--ease);
}
.btn-book:hover { color: var(--gold); border-color: var(--gold); }

.btn-pay {
  width: 100%;
  background: var(--olive);
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r);
  margin-top: 1.5rem;
  transition: background var(--ease), opacity var(--ease);
}
.btn-pay:hover:not(:disabled) { background: #5a6a42; }
.btn-pay:disabled { opacity: 0.45; cursor: not-allowed; }

/* ─── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--ease), box-shadow var(--ease);
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 20px rgba(44,36,22,0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
  flex-shrink: 0;
  transition: color var(--ease);
}

.nav.scrolled .nav-logo { color: var(--brown); }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--ease);
}

.nav.scrolled .nav-links a { color: var(--brown-mid); }
.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav.scrolled .nav-links a:hover { color: var(--brown); }

.nav-cta {
  background: var(--white);
  color: var(--brown);
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r);
  flex-shrink: 0;
  transition: background var(--ease), color var(--ease);
}
.nav.scrolled .nav-cta { background: var(--brown); color: var(--white); }
.nav-cta:hover { opacity: 0.85; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--brown); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  transition: right 0.35s ease;
  box-shadow: -4px 0 30px rgba(44,36,22,0.15);
}
.mobile-menu.open { right: 0; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
  letter-spacing: 0.05em;
}

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.2rem;
  color: var(--brown-light);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,36,22,0.4);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-overlay.visible { opacity: 1; pointer-events: all; }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,15,8,0.45) 0%,
    rgba(20,15,8,0.3) 50%,
    rgba(20,15,8,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em { font-style: italic; font-weight: 300; }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); transform-origin: top; }
}

.hero-dots {
  position: absolute;
  bottom: 2rem; right: 2rem;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.hero-dot.active { background: #fff; transform: scale(1.3); }

/* ─── Intro feature ─────────────────────────────────────────── */
.intro-feature {
  background: var(--white);
  padding: clamp(3.5rem, 7vw, 6rem) 0 0;
}
.intro-feature .container {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.intro-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
}
.intro-body {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--brown-mid);
  max-width: 560px;
  line-height: 1.75;
}
.intro-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
@media (min-width: 768px) {
  .intro-img-wrap { aspect-ratio: 16 / 7; }
}
.intro-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.intro-img-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  color: #fff;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

/* ─── About ─────────────────────────────────────────────────── */
.about {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--brown-mid); margin-bottom: 1rem; font-size: 1rem; line-height: 1.75; }
.about-note { font-size: 0.9rem !important; color: var(--brown-light) !important; }

.about-images {
  position: relative;
}

.about-img-single {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r);
  box-shadow: 0 12px 40px rgba(44,36,22,0.18);
  display: block;
}

/* ─── Experiences ───────────────────────────────────────────── */
.experiences {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.exp-card {
  background: var(--white);
  border-radius: calc(var(--r) * 2);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44,36,22,0.07);
  transition: box-shadow var(--ease), transform var(--ease);
  position: relative;
}
.exp-card:hover { box-shadow: 0 8px 40px rgba(44,36,22,0.13); transform: translateY(-3px); }

.featured-card {
  border: 2px solid var(--gold);
  box-shadow: 0 4px 30px rgba(184,150,78,0.15);
}

.featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 5;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

/* Card image gallery */
.exp-images {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.exp-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.exp-img.active { opacity: 1; }

.exp-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.exp-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background var(--ease);
}
.exp-dot.active { background: #fff; }

/* Card body */
.exp-body { padding: 1.75rem; }

.exp-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.exp-head h3 { font-size: 1.6rem; font-weight: 500; margin: 0; }
.exp-sub { color: var(--brown-light); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.2rem; }

.exp-cap {
  background: var(--cream-dark);
  color: var(--brown-mid);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.exp-desc {
  color: var(--brown-mid);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.exp-tags span {
  font-size: 0.7rem;
  background: var(--cream);
  color: var(--brown-mid);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  border: 1px solid var(--cream-dark);
}

/* Pricing slots */
.exp-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--r);
  overflow: hidden;
}

.exp-prices.two-col { grid-template-columns: repeat(2, 1fr); }

.price-slot {
  padding: 0.85rem 0.75rem;
  text-align: center;
  background: var(--cream);
  border-right: 1px solid var(--cream-dark);
}
.price-slot:last-child { border-right: none; }
.price-slot.highlight { background: var(--brown); color: #fff; }

.ps-name { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.15rem; }
.ps-time { font-size: 0.65rem; opacity: 0.65; margin-bottom: 0.5rem; }
.ps-price { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 500; }
.ps-price em { font-size: 0.65rem; font-style: normal; opacity: 0.7; }
.ps-add { font-size: 0.65rem; opacity: 0.6; margin-top: 0.2rem; }

.exp-includes {
  font-size: 0.75rem;
  color: var(--olive);
  margin-bottom: 0;
  line-height: 1.5;
}
.exp-min-note {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.5rem;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

/* ─── Gallery Strip ─────────────────────────────────────────── */
.gallery-strip {
  overflow: hidden;
  height: 200px;
  background: var(--brown);
}

.gallery-track {
  display: flex;
  gap: 0.5rem;
  height: 100%;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.gallery-track img {
  height: 100%;
  width: 220px;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity var(--ease);
}
.gallery-track img:hover { opacity: 1; }

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Booking ────────────────────────────────────────────────── */
.booking {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--brown);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* Form */
.booking-form-wrap {
  background: var(--white);
  border-radius: calc(var(--r) * 2);
  overflow: hidden;
}

.booking-form { padding: 2.5rem; }

.form-section {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}
.form-section:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.form-section h4 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--ff-body);
  flex-shrink: 0;
}

.form-group { margin-bottom: 1.25rem; }
.form-group:last-child { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--brown);
  background: var(--cream);
  transition: border-color var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C4A2E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--olive);
  background: var(--white);
}

.form-group input[type="date"] { color: var(--brown); }

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Slot radio buttons */
.slot-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slot-placeholder {
  font-size: 0.85rem;
  color: var(--brown-light);
  font-style: italic;
  padding: 0.75rem 0;
}

.slot-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
  background: var(--cream);
}

.slot-radio--selected {
  border-color: var(--olive);
  background: rgba(107,120,81,0.06);
}

.slot-radio-content { flex: 1; }
.slot-radio-name { font-size: 0.82rem; font-weight: 600; display: block; color: var(--brown); }
.slot-radio-time { font-size: 0.73rem; color: var(--brown-light); display: block; }
.slot-radio-price {
  text-align: right;
  flex-shrink: 0;
}
.slot-radio-price strong { display: block; font-family: var(--ff-display); font-size: 1.05rem; color: var(--brown); }
.slot-radio-price span { font-size: 0.65rem; color: var(--brown-light); display: block; }

/* Guest counter */
.guest-counter {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r);
  overflow: hidden;
  width: fit-content;
}

.cnt-btn {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brown-mid);
  background: var(--cream);
  transition: background var(--ease);
}
.cnt-btn:hover { background: var(--cream-dark); }
.cnt-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.cnt-val {
  min-width: 52px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  border-left: 1.5px solid var(--cream-dark);
  border-right: 1.5px solid var(--cream-dark);
  padding: 0 0.5rem;
  line-height: 44px;
}

.range-hint {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--brown-light);
  letter-spacing: 0;
  text-transform: none;
}

.optional { font-weight: 400; color: var(--brown-light); text-transform: none; font-size: 0.72rem; }

/* Checkbox */
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--brown-mid);
  line-height: 1.5;
  cursor: pointer;
  margin-top: 1rem;
}

.check-label input {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--olive);
  flex-shrink: 0;
  cursor: pointer;
}

.check-label a { color: var(--olive); text-decoration: underline; }

.pay-security {
  text-align: center;
  font-size: 0.72rem;
  color: var(--brown-light);
  margin-top: 0.75rem;
}

/* Summary sidebar */
.booking-summary {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.summary-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: calc(var(--r) * 2);
  padding: 1.75rem;
  color: var(--white);
}

.summary-card h4 {
  font-size: 1rem;
  font-family: var(--ff-display);
  font-weight: 500;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.summary-empty { font-size: 0.85rem; color: rgba(255,255,255,0.45); font-style: italic; }

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
  color: rgba(255,255,255,0.8);
}
.summary-row span:last-child { font-weight: 500; color: #fff; text-align: right; }

.summary-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 1rem 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.summary-total .label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.summary-total .amount { font-family: var(--ff-display); font-size: 2rem; font-weight: 400; color: #fff; }
.summary-gst { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 0.25rem; text-align: right; }

.summary-notes {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: calc(var(--r) * 2);
  padding: 1.5rem;
}

.summary-notes h5 {
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.summary-notes li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.summary-notes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--olive-light);
  font-size: 0.7rem;
}

.summary-contact {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.summary-contact a { color: var(--gold); text-decoration: underline; }

/* ─── Modal ─────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44,36,22,0.6);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.modal-backdrop.show { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 310;
  background: var(--white);
  border-radius: calc(var(--r) * 3);
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: calc(100% - 2rem);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}
.modal.show { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }

.modal-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal h3 { margin-bottom: 0.75rem; }
.modal p { color: var(--brown-mid); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }

.confirm-details {
  background: var(--cream);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  text-align: left;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--brown-mid);
  line-height: 1.7;
}
.confirm-details strong { color: var(--brown); }

/* ─── Add-ons picker ──────────────────────────────────────────── */
.addon-group { grid-column: 1 / -1; }

.addon-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r);
  cursor: pointer;
  background: var(--cream);
  transition: border-color var(--ease), background var(--ease);
  user-select: none;
}
.addon-item:hover { border-color: var(--sand); background: var(--cream-dark); }
.addon-item--selected {
  border-color: var(--olive);
  background: rgba(107,120,81,0.07);
}

.addon-item-info { flex: 1; min-width: 0; }
.addon-item-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown);
}
.addon-item-desc {
  font-size: 0.7rem;
  color: var(--brown-light);
  margin-top: 0.1rem;
  line-height: 1.35;
}
.addon-item-price {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--olive);
  white-space: nowrap;
  flex-shrink: 0;
}
.addon-item--selected .addon-item-price { color: var(--olive); }

@media (max-width: 600px) {
  .addon-picker { grid-template-columns: 1fr; }
}

.curator-note {
  font-size: 0.8rem;
  color: var(--brown-mid);
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.confirm-curator {
  font-size: 0.82rem;
  color: var(--brown-mid);
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 0.75rem 1rem;
  margin: 1rem 0 0.5rem;
  line-height: 1.6;
  text-align: left;
}

.confirm-sub { font-size: 0.78rem !important; color: var(--brown-light) !important; }

/* ─── Cancellation Policy ───────────────────────────────────── */
.policies {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.policy-card {
  padding: 1.75rem;
  border-radius: calc(var(--r) * 2);
  border: 1px solid var(--cream-dark);
}

.policy-icon {
  font-size: 1.1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.policy-card h5 { margin-bottom: 0.5rem; color: var(--brown); }
.policy-card p  { font-size: 0.85rem; color: var(--brown-mid); line-height: 1.6; }

.policy-card.green .policy-icon { background: #e8f4ec; color: #3a7d56; }
.policy-card.yellow .policy-icon { background: #fef6e4; color: #a07030; }
.policy-card.red .policy-icon   { background: #fde8e8; color: #a03030; }
.policy-card.blue .policy-icon  { background: #e8edf8; color: #3050a0; }
.policy-card.neutral .policy-icon { background: var(--cream-dark); color: var(--brown-mid); }

/* ─── Disclaimer ────────────────────────────────────────────── */
.disclaimer {
  padding: 3rem 0;
  background: var(--cream);
}

.disclaimer h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--brown-light);
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.disclaimer-grid h5 { color: var(--brown); margin-bottom: 0.5rem; }
.disclaimer-grid p  { font-size: 0.82rem; color: var(--brown-light); line-height: 1.65; }

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--brown);
  color: var(--sand);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand p { font-size: 0.85rem; color: var(--sand); line-height: 1.6; margin-bottom: 0.4rem; }
.footer-tagline { font-style: italic; color: var(--brown-light) !important; }

.footer h5 { color: var(--gold); margin-bottom: 1rem; }

.footer-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-list a { font-size: 0.85rem; color: var(--sand); transition: color var(--ease); }
.footer-list a:hover { color: var(--white); text-decoration: none; }

.footer-contact p { font-size: 0.85rem; color: var(--sand); margin-bottom: 0.4rem; }
.footer-contact a { color: var(--sand); transition: color var(--ease); }
.footer-contact a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-btn {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  transition: background var(--ease), color var(--ease);
}
.social-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); text-decoration: none; }

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; order: 1; }
  .summary-card, .summary-notes, .summary-contact { max-width: 600px; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-single { height: 300px; }

  .exp-grid { grid-template-columns: 1fr; }
  .exp-prices { grid-template-columns: 1fr; }
  .exp-prices .price-slot { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .exp-prices .price-slot:last-child { border-bottom: none; }
  .exp-prices.two-col { grid-template-columns: repeat(2, 1fr); }
  .exp-prices.two-col .price-slot { border-bottom: none; }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }

  .form-row { grid-template-columns: 1fr; }

  .gallery-strip { height: 140px; }
  .gallery-track img { width: 160px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .policy-grid { grid-template-columns: 1fr; }
  .disclaimer-grid { grid-template-columns: 1fr; }
  .exp-prices.two-col { grid-template-columns: 1fr; }
  .booking-form { padding: 1.5rem; }
}

/* ─── Calendar Widget ───────────────────────────────────────── */
.calendar-widget {
  border: 1.5px solid var(--cream-dark);
  border-radius: calc(var(--r) * 2);
  overflow: hidden;
  background: var(--cream);
  user-select: none;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}

.cal-nav-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--brown-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}
.cal-nav-btn:hover { background: var(--cream-dark); }
.cal-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-month-label {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--cream-dark);
  padding: 0.4rem 0.5rem;
}

.cal-weekdays span {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 0.5rem;
  background: var(--cream);
  min-height: 220px;
}

.cal-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--brown-light);
  font-size: 0.82rem;
  font-style: italic;
  padding: 2rem 0;
  align-self: center;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), transform 0.15s ease;
  position: relative;
}

.cal-day:hover:not(.cal-day--disabled):not(.cal-day--blocked):not(.cal-day--past) {
  background: var(--cream-dark);
  transform: scale(1.08);
}

.cal-day--empty { cursor: default; }

.cal-day--past {
  color: var(--sand);
  cursor: not-allowed;
  pointer-events: none;
}

.cal-day--blocked {
  color: #c0392b;
  background: #fde8e8;
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.7;
}

.cal-day--slot-taken {
  color: var(--brown-light);
  background: var(--cream-dark);
  cursor: not-allowed;
  font-style: italic;
}

.cal-day--available {
  color: var(--brown);
  background: var(--white);
}

.cal-day--today {
  font-weight: 700;
  box-shadow: inset 0 0 0 1.5px var(--olive-light);
}

.cal-day--selected {
  background: var(--olive) !important;
  color: #fff !important;
  font-weight: 700;
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(107,120,81,0.35);
}

/* Booking dot indicator */
.cal-day--has-booking::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.cal-legend {
  display: flex;
  gap: 1rem;
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--cream-dark);
  background: var(--white);
  flex-wrap: wrap;
}

.leg-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  color: var(--brown-light);
}

.leg-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.leg-dot.available { background: var(--white); border: 1.5px solid var(--cream-dark); }
.leg-dot.blocked   { background: #fde8e8; border: 1.5px solid #c0392b; }
.leg-dot.selected  { background: var(--olive); }

.cal-selected-label {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--olive);
  min-height: 1.2em;
}

/* ─── Food Picker ───────────────────────────────────────────── */
.food-picker { margin-top: 0.5rem; }

.food-loading {
  font-size: 0.85rem;
  color: var(--brown-light);
  font-style: italic;
  padding: 0.5rem 0;
}

.food-section { margin-bottom: 1.5rem; }

.food-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.food-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-mid);
}

.food-counter-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: var(--cream-dark);
  color: var(--brown-mid);
  transition: background var(--ease), color var(--ease);
}
.food-counter-badge.complete {
  background: var(--olive);
  color: #fff;
}

.food-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r);
  background: var(--cream);
  margin-bottom: 0.4rem;
  transition: border-color var(--ease), background var(--ease);
}

.food-item.has-qty {
  border-color: var(--olive);
  background: rgba(107,120,81,0.05);
}

.food-item-info { flex: 1; min-width: 0; }
.food-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.food-veg-badge {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.food-veg-badge.veg    { background: #2d7a3a; }
.food-veg-badge.nonveg { background: #c0392b; }

.food-item-desc { font-size: 0.73rem; color: var(--brown-light); margin-top: 0.15rem; }

.food-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--cream-dark);
  border-radius: var(--r);
  overflow: hidden;
  flex-shrink: 0;
}

.food-qty-btn {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--brown-mid);
  background: var(--white);
  transition: background var(--ease);
}
.food-qty-btn:hover { background: var(--cream-dark); }
.food-qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.food-qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  border-left: 1px solid var(--cream-dark);
  border-right: 1px solid var(--cream-dark);
  line-height: 28px;
}

/* Pavilion food note */
.food-pavilion-note {
  padding: 1rem 1.25rem;
  background: var(--cream-dark);
  border-radius: var(--r);
  border-left: 3px solid var(--gold);
  font-size: 0.85rem;
  color: var(--brown-mid);
  line-height: 1.6;
}

/* Food picker — checkbox-style cards */
.food-pkg-note {
  padding: 0.75rem 1rem;
  background: var(--cream-dark);
  border-radius: var(--r);
  border-left: 3px solid var(--olive);
  font-size: 0.82rem;
  color: var(--brown-mid);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.food-section {
  margin-bottom: 1rem;
}

.food-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.food-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-mid);
}

.food-counter-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brown-mid);
  background: var(--cream-dark);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.food-counter-badge.complete {
  color: var(--olive);
  background: color-mix(in srgb, var(--olive) 12%, #fff);
}

.food-check-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
  margin-bottom: 0.35rem;
}

.food-check-item:hover:not(.food-disabled) {
  border-color: var(--sand);
  background: var(--cream-dark);
}

.food-check-item.selected {
  border-color: var(--olive);
  background: color-mix(in srgb, var(--olive) 8%, #fff);
}

.food-check-item.food-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.food-item-info { flex: 1; min-width: 0; }

.food-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.3;
}

.food-item-desc {
  font-size: 0.75rem;
  color: var(--brown-mid);
  margin-top: 0.15rem;
  line-height: 1.4;
}

.food-veg-badge {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.food-veg-badge.veg    { background: #2d7a3a; }
.food-veg-badge.nonveg { background: #c0392b; }

.food-check-indicator {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--sand);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: transparent;
  margin-top: 1px;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.food-check-indicator.checked {
  border-color: var(--olive);
  background: var(--olive);
  color: #fff;
}


/* Veg-only toggle */
.veg-toggle-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

.veg-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 999px;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brown-mid);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.veg-toggle-btn:hover {
  border-color: #4caf50;
  color: #388e3c;
}

.veg-toggle-btn.active {
  border-color: #4caf50;
  background: #e8f5e9;
  color: #2e7d32;
}

/* Non-veg items dimmed when veg filter is active — full menu stays visible */
.food-filtered {
  opacity: 0.28;
  cursor: not-allowed;
  pointer-events: none;
}

.veg-toggle-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4caf50;
  flex-shrink: 0;
}

/* Beverages section */
.food-section--beverages {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-dark);
}

/* Empty filter state */
.food-empty {
  font-size: 0.8rem;
  color: var(--brown-mid);
  padding: 0.5rem 0;
  font-style: italic;
}

/* ── Coupon field ─────────────────────────────────────────────────────────── */
.coupon-row-wrap {
  margin-bottom: 0.5rem;
}

.coupon-input-row {
  display: flex;
  gap: 0.5rem;
}

.coupon-input-row input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fff;
  letter-spacing: 0.06em;
}

.coupon-input-row input:focus {
  outline: none;
  border-color: var(--olive);
}

.btn-coupon-apply {
  padding: 0.6rem 1.1rem;
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-coupon-apply:hover {
  background: var(--olive);
}

.coupon-msg {
  font-size: 0.82rem;
  margin-top: 0.35rem;
  min-height: 1.1em;
}

.coupon-msg--ok  { color: #5a7a42; }
.coupon-msg--err { color: #c0392b; }

.coupon-discount-row {
  color: #5a7a42;
  font-weight: 500;
}

/* ── Repeat customer message ─────────────────────────────────────────────── */
.repeat-customer-msg {
  font-size: 0.82rem;
  margin-top: 0.35rem;
  min-height: 0;
  color: #5a7a42;
  display: none;
}
.repeat-customer-msg--show {
  display: block;
}

/* ─── Tablescape Picker ──────────────────────────────────────────────────── */
.tablescape-picker { margin-top: 0.25rem; }
.ts-loading { font-size: 0.88rem; color: var(--brown-light); padding: 0.5rem 0 1rem; }

.ts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
@media (max-width: 700px) { .ts-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; } }

.ts-card {
  border-radius: 10px;
  overflow: hidden;
  border: 2.5px solid var(--cream-dark);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  background: var(--white);
  position: relative;
}
.ts-card:hover { border-color: var(--olive-light); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(44,36,22,.08); }
.ts-card.selected { border-color: var(--olive); box-shadow: 0 0 0 1px var(--olive), 0 4px 16px rgba(107,120,81,.15); }

.ts-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }

.ts-selected-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--olive); color: #fff;
  width: 26px; height: 26px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.ts-card.selected .ts-selected-badge { display: flex; }

.ts-card-body { padding: 0.55rem 0.7rem 0.7rem; }
.ts-card-name { font-size: 0.82rem; font-weight: 600; color: var(--brown); }
.ts-card-palette { font-size: 0.7rem; color: var(--brown-light); margin-top: 0.15rem; line-height: 1.4; }
.ts-card-tag {
  display: inline-block; margin-top: 0.3rem;
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--gold); background: rgba(184,150,78,.1);
  padding: 2px 6px; border-radius: 20px;
}

/* ── Admin coupon grid ────────────────────────────────────────────────────── */
.coupon-gen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

/* ── Seating toggle ─────────────────────────────────────────────────────── */
.seating-toggle { display: flex; gap: 10px; margin-top: 6px; }
.seating-opt { flex: 1; cursor: pointer; }
.seating-opt input { display: none; }
.seating-card { padding: 11px 16px; border: 1.5px solid #ddd5c8; border-radius: 8px; transition: border-color .2s, background .2s; background: var(--white); }
.seating-label { font-size: 0.85rem; font-weight: 600; color: var(--brown-dark); letter-spacing: 0.01em; }
.seating-sub { font-size: 0.75rem; color: var(--brown-light); margin-top: 2px; }
.seating-opt input:checked + .seating-card { border-color: var(--brown); background: var(--cream); }
.seating-opt input:checked + .seating-card .seating-label { color: var(--brown); }
