/* ============================================================
   BRITTNEY FOX — Independent Companion
   Light-themed design — cream + teal, katijacortez.com layout
   ============================================================ */

/* --- CSS Custom Properties --------------------------------- */
:root {
  --bg: #faf8f5;
  --bg-alt: #f0ede8;
  --bg-card: #ffffff;
  --text: #1a1a1a;
  --text-muted: #777777;
  --accent: #2d8a7a;
  --accent-glow: #1a6b5e;
  --border: #e0dcd5;
  --border-light: #d0ccc5;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1100px;
  --nav-height: 70px;
  --transition: 0.3s ease;
}

/* Dark theme */
[data-theme="dark"] {
  --bg: #0a0808;
  --bg-alt: #100d0d;
  --bg-card: #1a1515;
  --text: #e0d8d0;
  --text-muted: #9a9288;
  --accent: #c9a87c;
  --accent-glow: #d4b896;
  --border: #2a2222;
  --border-light: #332828;
}
[data-theme="dark"] .navbar { background: rgba(10, 8, 8, 0.85); }
[data-theme="dark"] .navbar.scrolled { background: rgba(10, 8, 8, 0.95); }
[data-theme="dark"] .mobile-nav { background: rgba(10, 8, 8, 0.97); }
[data-theme="dark"] .mobile-bar { background: rgba(10, 8, 8, 0.95); }
[data-theme="dark"] .hero::before {
  background:
    linear-gradient(to bottom, rgba(10,8,8,0.92) 0%, rgba(10,8,8,0.35) 30%, rgba(10,8,8,0.25) 50%, rgba(10,8,8,0.35) 70%, rgba(10,8,8,0.92) 100%),
    url('../images/photo-01.jpg') center/cover no-repeat;
}
[data-theme="dark"] .cta-section {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,124,0.04), transparent);
}
[data-theme="dark"] .tour-banner {
  background: rgba(201,168,124,0.08);
  border-bottom: 1px solid rgba(201,168,124,0.15);
}
[data-theme="dark"] .lightbox {
  background: rgba(0,0,0,0.96);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

section {
  padding: 100px 0;
  position: relative;
}

/* --- Utility Classes --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-glow);
  border-color: var(--accent-glow);
  box-shadow: 0 0 24px rgba(45, 138, 122, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--text);
}

.section-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
}

/* --- Navigation -------------------------------------------- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height);
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(250, 248, 245, 0.95); }

.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  height: 100%; padding: 0 24px;
  position: relative;
}

/* Nav links — left side */
.nav-links {
  display: flex; gap: 24px; align-items: center; list-style: none;
  position: absolute; left: 24px;
}
.nav-links a {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color var(--transition); white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--accent); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

/* Logo */
.logo {
  font-family: var(--font-heading); font-size: 22px; font-weight: 400;
  letter-spacing: 0.15em; color: var(--text); text-transform: uppercase;
  text-decoration: none; text-align: center; line-height: 1.15;
  flex-shrink: 0; padding: 0 16px;
}
.logo span {
  display: block; font-family: var(--font-body); font-size: 10px;
  font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-top: 2px;
}

/* Theme toggle */
.theme-toggle {
  position: absolute; right: 24px;
  background: none; border: 1px solid var(--border); border-radius: 50%;
  width: 34px; height: 34px; cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: border-color var(--transition);
  z-index: 1001;
}
.theme-toggle:hover { border-color: var(--accent); }

/* Hamburger (mobile only) */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.nav-toggle span { width: 24px; height: 1.5px; background: var(--text); transition: 0.3s; }

/* Mobile menu group (toggle + hamburger) */

/* Mobile overlay nav */
.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999; padding: 32px 24px; overflow-y: auto;
}
.mobile-nav.active { display: block; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 20px; }
.mobile-nav a {
  color: var(--text-muted); text-decoration: none;
  font-size: 1.2rem; letter-spacing: 0.05em;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(250, 248, 245, 0.88) 0%,
      rgba(250, 248, 245, 0.15) 30%,
      rgba(250, 248, 245, 0.05) 50%,
      rgba(250, 248, 245, 0.15) 70%,
      rgba(250, 248, 245, 0.88) 100%
    ),
    url('../images/photo-01.jpg') center/cover no-repeat;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-content .subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero-content .location {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.hero-scroll span {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.scroll-indicator {
  width: 1px;
  height: 48px;
  background: var(--border-light);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* --- About ------------------------------------------------- */
#about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter var(--transition);
}

.about-image:hover img {
  filter: brightness(1);
}

.about-text .lead {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 28px;
  line-height: 1.5;
}
.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 22px;
}
.about-text p:last-of-type { margin-bottom: 0; }

/* Stats grid */
.about-stats, .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 2px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Gallery ----------------------------------------------- */
#gallery {
  background: var(--bg-alt);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-header .section-title {
  margin-bottom: 12px;
}

.gallery-header .section-text {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.85);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 138, 122, 0);
  transition: background var(--transition);
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.gallery-item:hover::after {
  background: rgba(45, 138, 122, 0.08);
}

/* --- Rates ------------------------------------------------- */
#rates {
  background: var(--bg);
}

.rates-header {
  text-align: center;
  margin-bottom: 48px;
}

.rates-header .section-text {
  margin: 0 auto;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rate-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px 32px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
  border-radius: 2px;
  position: relative;
}

.rate-card.featured {
  border-color: var(--accent);
}

.rate-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 4px 16px;
}

.rate-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(45, 138, 122, 0.06);
}

.rate-duration {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.rate-price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.rate-currency {
  font-size: 54%;
  vertical-align: super;
  margin-right: 2px;
}

.rate-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Services ---------------------------------------------- */
#services {
  background: var(--bg-alt);
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-header .section-text {
  margin: 0 auto;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: center;
  transition: all var(--transition);
  border-radius: 2px;
  cursor: default;
}

.service-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(45, 138, 122, 0.04);
}

/* --- Testimonials ------------------------------------------ */
#testimonials {
  background: var(--bg);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header .section-text {
  margin: 0 auto;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-card {
  text-align: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
}
.testimonial-card:last-child { border-bottom: none; }

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* --- Contact ----------------------------------------------- */
#contact {
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-note .section-title {
  margin-bottom: 16px;
}

.contact-note .section-text {
  margin-bottom: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent);
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
}

.contact-item-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  color: var(--text);
}

.contact-item-value a {
  color: var(--accent);
}

.contact-item-value a:hover {
  color: var(--accent-glow);
}

/* --- Footer ------------------------------------------------ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.footer-bottom span {
  color: var(--accent);
}

/* --- Lightbox ---------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2001;
}

.lightbox-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border-light);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2001;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Animations -------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* --- Mobile Bottom Bar ------------------------------------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  z-index: 998;
}

.mobile-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mobile-bar .btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.mobile-bar .btn-secondary {
  flex: 0.6;
}

/* --- Mobile (JS-driven .is-mobile class) --- */
body.is-mobile .nav-links { display: none !important; }
body.is-mobile .nav-toggle { display: flex !important; }
body.is-mobile .theme-toggle { position: absolute; left: 24px; right: auto; }

/* --- Responsive: 640px --- */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .theme-toggle { position: absolute; left: 24px; right: auto; }
}

  section {
    padding: 72px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 400px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .rates-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

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

  .lightbox-prev,
  .lightbox-next {
    display: none;
  }

  .mobile-bar {
    display: block;
  }

  body {
    padding-bottom: 72px;
  }
}

/* --- Responsive: 600px ------------------------------------- */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 56px 0;
  }

  .hero-name {
    font-size: clamp(36px, 10vw, 56px);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-image img {
    height: 320px;
  }

  .about-stats, .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat-item {
    padding: 16px 8px;
  }

  .stat-value {
    font-size: 24px;
  }

  .stat-label {
    font-size: 9px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .rate-card {
    padding: 36px 24px;
  }

  .rate-price {
    font-size: 40px;
  }

  .services-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .service-tag {
    padding: 14px 16px;
    font-size: 11px;
  }

  .testimonial-card blockquote {
    font-size: 18px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .contact-grid {
    gap: 32px;
  }
}

/* ============================================================
   BRIDGE RULES — matching demo HTML class patterns
   ============================================================ */

/* Section headers (used by all sections) */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.text-accent { color: var(--accent); }

/* Section alternates */
.section--alt { background: var(--bg-alt); }
section { padding: 100px 0; }

/* Rate card note */
.rate-note {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 12px;
}

/* Touring banner */
.tour-banner {
  text-align: center;
  padding: 14px 24px;
  background: rgba(45,138,122,0.08);
  border-bottom: 1px solid rgba(45,138,122,0.15);
}
.tour-banner p {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Availability */
.availability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.avail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  border-radius: 2px;
}
.avail-card .day {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.avail-card .time {
  color: var(--accent);
  font-size: 13px;
}

/* Social link */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  margin-top: 20px;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Footer credit */
.footer-credit a {
  color: var(--accent);
  text-decoration: none;
}
.footer-credit a:hover { text-decoration: underline; }

/* Mobile bar */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  justify-content: center; gap: 12px;
}
.mobile-bar .btn { flex: 1; text-align: center; }

/* CTA section */
.cta-section {
  padding: 100px 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(45,138,122,0.04), transparent);
}

/* Desktop nav visibility */
.desktop-nav { display: flex; }

/* Mobile responsive additions */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: flex; }
  .availability-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px 0; }
}

@media (max-width: 600px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 70px; }
  .hero-content h1 { font-size: 36px; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 28px; }
  .rates-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { gap: 32px; }
  .about-stats, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section { padding: 60px 0; }
  .section { padding: 60px 0; }
}
