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

:root {
  --brand-teal: #0c4a5b;
  --brand-teal-bright: #1f8a8c;
  --gold: #e3a536;
  --gold-soft: #f0c878;
  --sand: #f0e3cf;
  --sand-deep: #e2d2b6;
  --cream: #fefbf6;
  --ink: #1f2933;
  --muted-foreground: #5b6770;
  --primary-foreground: #fefbf6;
  --border: #e6dcc5;
  --destructive: #c53030;
  --radius: 0.75rem;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --max-w: 80rem;
}

html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.01em; }

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

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 210, 182, 0.6);
  background: rgba(254, 251, 246, 0.9);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo img { height: 3rem; width: auto; }
@media (min-width: 640px) { .logo img { height: 3.5rem; } }

.nav-desktop { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(12, 74, 91, 0.8);
  transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active { color: var(--brand-teal); }

.nav-desktop a.active { position: relative; }

.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover { background: var(--gold-soft); box-shadow: 0 4px 6px rgba(0,0,0,0.08); }
.btn-gold-lg { padding: 0.875rem 1.75rem; }

.btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--brand-teal);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-teal:hover { opacity: 0.9; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid var(--brand-teal);
  color: var(--brand-teal);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  transition: all 0.2s;
}

.btn-outline:hover { background: var(--brand-teal); color: var(--primary-foreground); }

.btn-outline-white { border-color: white; color: white; }
.btn-outline-white:hover { background: white; color: var(--brand-teal); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: block; } }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background: none;
  color: var(--brand-teal);
  cursor: pointer;
}

@media (min-width: 1024px) { .menu-toggle { display: none; } }

.nav-mobile {
  display: none;
  border-top: 1px solid rgba(226, 210, 182, 0.6);
  background: var(--cream);
}

.nav-mobile.open { display: block; }

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
}

.nav-mobile a {
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(12, 74, 91, 0.85);
}

.nav-mobile a:hover,
.nav-mobile a.active { background: var(--sand); color: var(--brand-teal); }

.nav-mobile .btn-gold { margin-top: 0.5rem; width: 100%; padding: 0.75rem 1.25rem; text-align: center; }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--cream); }

.hero-grid {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 0 3rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    padding: 4rem 0 5rem;
    align-items: start;
  }
  .hero-text { padding-top: 2rem; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--sand);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-teal);
  margin-bottom: 1rem;
}

.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--brand-teal);
}

@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

.hero h1 .accent { color: var(--brand-teal-bright); }

.hero-intro {
  margin-top: 1.25rem;
  max-width: 32rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 28rem;
  border-top: 1px solid var(--sand-deep);
  padding-top: 1.5rem;
}

.hero-stats dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.hero-stats dd {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-teal);
}

.hero-image-wrap { position: relative; }

.hero-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (min-width: 1024px) { .hero-image { aspect-ratio: 4 / 3; } }

.hero-card {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  left: 1.5rem;
  border-radius: 1rem;
  background: white;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  border: 1px solid var(--sand-deep);
}

@media (min-width: 640px) { .hero-card { display: block; } }

.hero-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.hero-card-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-teal);
}

.hero-band { height: 1.5rem; width: 100%; background: var(--sand); }

/* Sections */
.section { padding: 4rem 0; }
@media (min-width: 640px) { .section { padding: 5rem 0; } }
@media (min-width: 1024px) { .section { padding: 6rem 0; } }

.section-sand { background: var(--sand); }
.section-cream { background: var(--cream); }
.section-white { background: white; }
.section-teal { background: var(--brand-teal); color: var(--primary-foreground); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-teal-bright);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

.section-heading { max-width: 48rem; }
.section-heading.center { margin: 0 auto; text-align: center; }

.section-heading h1,
.section-heading h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--brand-teal);
}

@media (min-width: 640px) {
  .section-heading h1,
  .section-heading h2 { font-size: 2.25rem; }
}

.page-hero h1 { font-size: 2.25rem; font-weight: 700; color: var(--brand-teal); }
@media (min-width: 640px) { .page-hero h1 { font-size: 3rem; } }

.section-teal .section-heading h1,
.section-teal .section-heading h2 { color: var(--primary-foreground); }

.section-heading p {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) { .section-heading p { font-size: 1.125rem; } }

.section-teal .section-heading p { color: rgba(254, 251, 246, 0.85); }

/* Cards & grids */
.benefits-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card,
.card {
  border-radius: 1rem;
  background: white;
  padding: 1.5rem;
  border: 1px solid rgba(226, 210, 182, 0.7);
  transition: all 0.2s;
}

.card-lg { padding: 1.75rem; }

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(31, 138, 140, 0.1);
  color: var(--brand-teal-bright);
}

.icon-box svg { width: 1.5rem; height: 1.5rem; }

.benefit-card h3,
.card h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-teal);
}

.card h3.no-mt { margin-top: 0; }

.benefit-card p,
.card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.card-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* For whom */
.for-whom-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .for-whom-grid { grid-template-columns: 1fr 1fr; }
  .for-whom-image { order: 1; }
  .for-whom-text { order: 2; }
}

.for-whom-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.bullet-list { margin-top: 1.75rem; list-style: none; }

.bullet-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.bullet-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
}

.bullet-list strong { color: var(--brand-teal); }

.check-list { list-style: none; margin-top: 1rem; }

.check-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.check-list svg { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: var(--brand-teal-bright); }

/* Highlights */
.highlights-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .highlights-grid { grid-template-columns: 5fr 7fr; align-items: start; }
}

.highlights-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) { .highlights-list { grid-template-columns: repeat(2, 1fr); } }

.highlights-list li {
  display: flex;
  gap: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: rgba(254, 251, 246, 0.95);
}

.highlights-list svg { flex-shrink: 0; width: 1.25rem; height: 1.25rem; color: var(--gold); }

.highlights-intro {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(254, 251, 246, 0.85);
}

/* Steps */
.steps-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  border-radius: 1rem;
  background: white;
  padding: 1.75rem;
  text-align: center;
  border: 1px solid rgba(226, 210, 182, 0.6);
}

.step-icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(227, 165, 54, 0.15);
  color: var(--gold);
}

.step-icon svg { width: 1.75rem; height: 1.75rem; }

.step-card h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-teal);
}

.step-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Gallery */
.gallery-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-figure {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(31, 41, 51, 0.08);
}

.gallery-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(31,41,51,0.8), rgba(31,41,51,0.3), transparent);
  color: white;
}

.gallery-caption .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.gallery-caption .title {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.camper-gallery {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .camper-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.camper-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (min-width: 640px) { .camper-gallery img { height: 220px; } }

.camper-gallery .span-2 { grid-column: span 2; }
.camper-gallery .span-2-row { grid-column: span 2; grid-row: span 2; }
.camper-gallery .span-2-row img { height: 100%; min-height: 180px; }

/* Reviews */
.reviews-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  border-radius: 1rem;
  background: white;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid rgba(226, 210, 182, 0.6);
}

.review-card svg { width: 1.5rem; height: 1.5rem; color: var(--gold); }

.review-card blockquote {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.625;
}

.review-card figcaption {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 210, 182, 0.6);
}

.review-card .name { font-weight: 600; color: var(--brand-teal); }
.review-card .trip { font-size: 0.75rem; color: var(--muted-foreground); }

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--brand-teal);
  color: var(--primary-foreground);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.final-cta-inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}

@media (min-width: 1024px) { .final-cta-inner { padding: 7rem 2rem; } }

.final-cta h2 { font-size: 1.875rem; font-weight: 600; }
@media (min-width: 640px) { .final-cta h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .final-cta h2 { font-size: 3rem; } }

.final-cta p {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(254, 251, 246, 0.85);
}

.final-cta-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Two-column layouts */
.split-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .split-grid.contact { grid-template-columns: 2fr 3fr; }
}

/* Forms */
.form-card {
  border-radius: 1rem;
  background: white;
  padding: 1.5rem;
  border: 1px solid rgba(226, 210, 182, 0.7);
}

@media (min-width: 640px) { .form-card { padding: 2rem; } }

.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }

.form-field label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-teal);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: white;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand-teal-bright);
  box-shadow: 0 0 0 3px rgba(31, 138, 140, 0.15);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--destructive);
}

.form-error {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--destructive);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.form-checkbox input { margin-top: 0.25rem; width: 1rem; height: 1rem; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-note { font-size: 0.75rem; color: var(--muted-foreground); }

.success-box {
  border-radius: 1rem;
  background: var(--sand);
  padding: 2rem;
  border: 1px solid var(--sand-deep);
  text-align: center;
}

.success-box.left { text-align: left; }

.success-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-teal);
}

.success-box p { margin-top: 0.5rem; color: var(--muted-foreground); }

.success-box button {
  margin-top: 1rem;
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-teal);
  text-decoration: underline;
  cursor: pointer;
}

.aside-card {
  border-radius: 1rem;
  background: white;
  padding: 1.5rem;
  border: 1px solid rgba(226, 210, 182, 0.7);
  margin-bottom: 1.25rem;
}

.aside-card.teal {
  background: var(--brand-teal);
  color: var(--primary-foreground);
  border: none;
}

.aside-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
}

.aside-card.teal p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(254, 251, 246, 0.85); }

.contact-list { list-style: none; margin-top: 1rem; font-size: 0.875rem; }

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-list svg { width: 1.25rem; height: 1.25rem; color: var(--brand-teal-bright); flex-shrink: 0; }

.aside-card.teal .contact-list svg { color: var(--gold); }

/* Calendar */
.calendar-wrap {
  border-radius: 1rem;
  background: white;
  padding: 1rem;
  border: 1px solid rgba(226, 210, 182, 0.7);
}

@media (min-width: 640px) { .calendar-wrap { padding: 1.5rem; } }

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar-header button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--sand);
  color: var(--brand-teal);
  cursor: pointer;
  font-size: 1.25rem;
}

.calendar-header button:hover { background: var(--sand-deep); }

.calendar-months {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) { .calendar-months { grid-template-columns: repeat(2, 1fr); } }

.calendar-month-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-teal);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted-foreground);
  padding: 0.25rem;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border: none;
  border-radius: 0.375rem;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.cal-day:hover:not(:disabled) { background: var(--sand); }

.cal-day.empty { visibility: hidden; pointer-events: none; }

.cal-day.disabled {
  background: var(--sand-deep);
  color: var(--muted-foreground);
  cursor: not-allowed;
  opacity: 0.6;
}

.cal-day.selected {
  background: var(--brand-teal);
  color: white;
}

.cal-day.range-middle {
  background: var(--sand);
  color: var(--brand-teal);
  border-radius: 0;
}

.cal-day.range-start { border-radius: 0.375rem 0 0 0.375rem; }
.cal-day.range-end { border-radius: 0 0.375rem 0.375rem 0; }

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sand-deep);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.legend-dot {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 2px;
  margin-right: 0.375rem;
  vertical-align: middle;
}

/* FAQ */
.faq-group { margin-bottom: 2.5rem; }

.faq-group h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-teal-bright);
  margin-bottom: 0.75rem;
}

.faq-list {
  border-radius: 1rem;
  background: white;
  border: 1px solid rgba(226, 210, 182, 0.7);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid rgba(226, 210, 182, 0.6); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: none;
  background: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-teal);
  cursor: pointer;
  font-family: inherit;
}

.faq-question svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.faq-item.open .faq-answer { display: block; }

/* Legal */
.legal-sections { margin-top: 2.5rem; max-width: 48rem; }

.legal-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--sand-deep);
}

.legal-section:last-child { border-bottom: none; }

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-teal);
}

.legal-section p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted-foreground);
}

/* Route cards */
.route-badge {
  display: inline-block;
  border-radius: 9999px;
  background: rgba(227, 165, 54, 0.15);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-teal);
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sand-deep);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.route-meta span { display: inline-flex; align-items: center; gap: 0.375rem; }

.price-display {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-teal);
}

.dl-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(226, 210, 182, 0.6);
  font-size: 0.875rem;
}

.dl-row dt { font-weight: 500; }
.dl-row dd { color: var(--muted-foreground); text-align: right; }

.text-link {
  color: var(--brand-teal);
  font-weight: 500;
  text-decoration: underline;
}

/* Footer */
.site-footer {
  margin-top: 5rem;
  background: var(--brand-teal);
  color: var(--primary-foreground);
}

.footer-inner { padding: 3.5rem 0; }

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand { grid-column: span 2; }

.footer-brand img {
  height: 4rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin-top: 0.75rem;
  max-width: 24rem;
  font-size: 0.875rem;
  color: rgba(254, 251, 246, 0.8);
}

.footer-contact {
  margin-top: 1.25rem;
  list-style: none;
  font-size: 0.875rem;
  color: rgba(254, 251, 246, 0.85);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-contact svg { width: 1rem; height: 1rem; color: var(--gold); flex-shrink: 0; }

.footer-col h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.footer-col ul {
  margin-top: 1rem;
  list-style: none;
  font-size: 0.875rem;
}

.footer-col li { margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(254, 251, 246, 0.15);
  font-size: 0.75rem;
  color: rgba(254, 251, 246, 0.7);
}

.icon { width: 1.5rem; height: 1.5rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
