/* ===========================================================
   GRACE LANKA TOURS — Master Stylesheet
   =========================================================== */

:root {
  --navy: #190073;
  --navy-dark: #11004f;
  --navy-light: #2d10a0;
  --gold: #c9a84c;
  --gold-dark: #a88a36;
  --white: #ffffff;
  --off-white: #f5efe6;
  --gray: #666;
  --gray-light: #e8e8e8;
  --max-width: 1200px;
  --section-pad: 56px 20px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* Skip to content for a11y */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ===== HEADER ===== */
header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled,
header.menu-open {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: border-color 0.3s ease;
}

header.scrolled .header-top,
header.menu-open .header-top {
  border-bottom-color: rgba(255,255,255,0.1);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-img { height: 32px; }
}

/* Legacy classes kept for backward compatibility (unused with new image logo) */
.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 32px; height: 32px; }

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-text sup {
  font-size: 12px;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  flex-wrap: wrap;
  gap: 10px;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  transition: background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.15);
}

.nav-links .dropdown { position: relative; }

.nav-links .dropdown-toggle::after {
  content: ' ▾';
  font-size: 9px;
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-dark);
  min-width: 240px;
  border-top: 2px solid var(--gold);
  z-index: 100;
  padding: 8px 0;
}

.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu {
  display: block;
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 11px;
  border-radius: 0;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.social-links svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-outline,
.btn-navy {
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: var(--transition);
  display: inline-block;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline.btn-dark {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline.btn-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,26,107,0.3);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #190073 0%, #2d10a0 50%, #150060 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-image, url('https://images.unsplash.com/photo-1575994532913-a9fedb04f04b?w=1600&auto=format&fit=crop&q=80')) center/cover no-repeat;
  opacity: 0.35;
}

/* Video hero variant — only when .hero-with-video is applied */
.hero-with-video .hero-bg::after { display: none; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-video {
    object-fit: cover;
    object-position: center;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(25,0,115,0.65) 0%, rgba(45,16,160,0.55) 50%, rgba(17,0,79,0.70) 100%);
  z-index: 1;
}

/* Tour-page hero — show the actual tour photo prominently (no 35% washout). */
.tour-hero .hero-bg {
  background: #000;  /* dark base so the image edges don't bleed to navy */
}
.tour-hero .hero-bg::after {
  opacity: 1;
}

/* Cinematic hero — top/bottom split, video-centered content */
.hero-cinematic .hero-overlay {
  background: linear-gradient(180deg, rgba(17,0,79,0.40) 0%, rgba(25,0,115,0.12) 35%, rgba(25,0,115,0.12) 65%, rgba(17,0,79,0.45) 100%);
}

.hero-cinematic .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  height: 100%;
  width: 100%;
  max-width: none;
  padding: 100px 20px 60px;
  text-align: center;
}

.hero-cinematic .hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-cinematic .hero-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  width: 100%;
}

.hero-cinematic .hero-middle h1 {
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(17, 0, 79, 0.55);
}

.hero-cinematic .hero-middle p {
  margin-bottom: 0;
  text-shadow: 0 1px 14px rgba(17, 0, 79, 0.6);
}

.hero-cinematic .hero-badge {
  margin-bottom: 0;
}

/* Visually hidden but accessible to screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 20px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Compact hero variant for sub pages */
.hero-compact {
  height: 55vh;
  min-height: 360px;
  max-height: 480px;
}

.hero-compact h1 {
  font-size: clamp(32px, 5vw, 56px);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--off-white);
  padding: 14px 20px;
  font-size: 12px;
  letter-spacing: 1px;
}

.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb span { color: var(--gray); margin: 0 8px; }

.breadcrumb .current { color: var(--gray); }

/* ===== SECTION COMMON ===== */
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
}

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

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== WHY CHOOSE ===== */
.why {
  padding: var(--section-pad);
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10,26,107,0.12);
  border-color: var(--gold);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  color: var(--gold);
}

.why-icon svg { width: 40px; height: 40px; margin: 0 auto; }

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 600;
}

.why-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== TOURS GRID ===== */
.tours {
  padding: var(--section-pad);
  background: var(--white);
}

.tours-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.tour-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.tour-img {
  height: 220px;
  overflow: hidden;
  background: var(--navy-light);
  position: relative;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tour-card:hover .tour-img img {
  transform: scale(1.05);
}

.tour-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
}

.tour-tag.gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.tour-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 600;
}

.tour-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.tour-meta span::before {
  content: '•';
  margin-right: 6px;
  color: var(--gold);
}

.tour-meta span:first-child::before { content: ''; margin: 0; }

.tour-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.tour-link {
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
  align-self: flex-start;
}

.tour-link:hover { color: var(--gold); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad);
  background: var(--navy);
}

.testimonials .section-title { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}

.stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== CTA ===== */
.cta {
  padding: var(--section-pad);
  background: var(--off-white);
  text-align: center;
}

.cta .section-title { margin: 0 auto 16px; max-width: 600px; }
.cta .section-sub { margin: 0 auto 36px; }

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== TOUR DETAIL PAGE ===== */
/* ===== TOUR PAGE: SNAPSHOT ROW ===== */
.tour-snapshot {
  background: var(--off-white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 28px 20px;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.snap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.snap:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(0,0,0,0.1);
}

.snap-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.snap-value {
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

/* ===== TOUR PAGE: HIGHLIGHTS ===== */
.tour-highlights {
  padding: var(--section-pad);
  background: #fff;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.highlight-card {
  position: relative;
  padding: 28px 24px 24px;
  border-top: 2px solid var(--gold);
  background: var(--off-white);
}

.highlight-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.highlight-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 600;
}

.highlight-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== TOUR PAGE: ROUTE MAP ===== */
.tour-route {
  padding: var(--section-pad);
  background: var(--off-white);
}

/* 2-column on desktop: text left, map right */
.route-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.route-text .section-label,
.route-text .section-title {
  text-align: left;
}

.route-text .section-title {
  margin-bottom: 20px;
}

.route-summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}

.route-description {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 32px;
}

.route-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gold);
}

.route-stat dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.route-stat dd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}

.route-map-wrap {
  background: transparent;
  padding: 0;
  border: none;
  max-width: 460px;
  margin: 0 auto;
}

.route-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== TOUR PAGE: ITINERARY (existing, refined) ===== */
.tour-itinerary-section {
  padding: var(--section-pad);
  background: #fff;
}

/* ===== TOUR PAGE: INCLUDES (with checkmarks) ===== */
.tour-includes-section {
  padding: var(--section-pad);
  background: var(--off-white);
}

.includes-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  border-bottom: none;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.check.yes {
  background: var(--gold);
  color: var(--navy);
}

.check.no {
  background: rgba(0,0,0,0.1);
  color: #666;
}

/* ===== TOUR PAGE: FEATURED TESTIMONIAL ===== */
.tour-testimonial {
  padding: var(--section-pad);
  background: #fff;
  text-align: center;
}

.featured-testimonial {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.featured-testimonial .stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.featured-testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  font-weight: 500;
  margin: 0 0 24px;
  position: relative;
}

.featured-testimonial blockquote::before {
  content: '"';
  font-size: 80px;
  color: var(--gold);
  position: absolute;
  top: -30px;
  left: -50px;
  opacity: 0.3;
  font-family: 'Cormorant Garamond', serif;
}

.featured-testimonial figcaption {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== TOUR PAGE: RELATED TOURS ===== */
.tour-related {
  padding: var(--section-pad);
  background: var(--off-white);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.related-card {
  display: block;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(25,0,115,0.12);
}

.related-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  background-size: cover;
  background-position: center;
}

.related-body {
  padding: 24px;
}

.related-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.related-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}

.related-meta {
  font-size: 13px;
  color: #777;
}

/* ===== TOUR PAGE: existing styles below ===== */
.tour-detail {
  padding: var(--section-pad);
}

.tour-overview {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 0;
}

.tour-overview-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}

.tour-facts {
  background: var(--off-white);
  padding: 32px;
  border-left: 3px solid var(--gold);
  align-self: start;
  position: sticky;
  top: 180px;
}

.tour-facts h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
}

.tour-facts dl { font-size: 13px; }

.tour-facts dt {
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 11px;
}

.tour-facts dd {
  color: var(--gray);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-light);
}

.tour-facts dd:last-child { border-bottom: none; }

/* Itinerary */
.itinerary { margin-bottom: 60px; }

.itinerary h2,
.includes h2,
.gallery h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 32px;
}

.day {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-light);
}

.day:last-child { border-bottom: 1px solid var(--gray-light); }

.day-num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.day-num strong {
  display: block;
  font-size: 36px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0;
}

.day-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}

.day-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

/* Includes */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.includes-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 16px;
}

.includes-col ul { list-style: none; padding: 0; }

/* ===== RATES TABLE ===== */
.rates-section { padding: var(--section-pad); }

.rates-table-wrap { overflow-x: auto; margin: 32px 0; }

.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}

.rates-table thead {
  background: var(--navy);
  color: var(--white);
}

.rates-table th {
  padding: 18px 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
}

.rates-table td {
  padding: 16px;
  border-bottom: 1px solid var(--gray-light);
  vertical-align: top;
}

.rates-table tr:hover { background: var(--off-white); }

.rates-table .vehicle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
}

.rates-table .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.rates-note {
  background: var(--off-white);
  padding: 24px;
  border-left: 3px solid var(--gold);
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}

/* ===== POPULAR DESTINATIONS PAGE ===== */
.destinations-section { padding: var(--section-pad); }

/* In-page quick nav (anchor list at top) */
.dest-quick-nav {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 24px 0 48px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e8e2d4;
  line-height: 2;
}

.dest-quick-nav a {
  color: var(--navy);
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s ease;
}

.dest-quick-nav a:hover {
  color: var(--gold);
}

/* Destination rows — alternating left/right magazine layout */
.dest-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  scroll-margin-top: 100px; /* offset for fixed header on anchor jump */
}

.dest-row.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.dest-row.reverse .dest-img { order: 2; }
.dest-row.reverse .dest-text { order: 1; }

.dest-img {
  height: 500px;
  background: var(--navy-light);
  overflow: hidden;
  position: relative;
}

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.dest-row:hover .dest-img img {
  transform: scale(1.03);
}

.dest-text {
  padding: 0 8px;
}

.dest-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 24px;
}

.dest-text p {
  font-size: 15.5px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* Featured in tour chips */
.dest-tour-list {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e8e2d4;
}

.dest-tour-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

.dest-tour-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dest-tour-chip {
  display: inline-block;
  padding: 8px 14px;
  background: var(--off-white);
  color: var(--navy);
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  border: 1px solid #e8e2d4;
  transition: all 0.2s ease;
}

.dest-tour-chip:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-1px);
}

/* Final CTA block */
.dest-cta {
  text-align: center;
  padding: 60px 20px 20px;
  border-top: 1px solid #e8e2d4;
  margin-top: 40px;
}

.dest-cta .section-label {
  display: block;
  margin-bottom: 12px;
}

.dest-cta .section-title {
  margin-bottom: 16px;
}

.dest-cta p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.8;
}

.dest-cta .cta-btns {
  justify-content: center;
}

@media (max-width: 968px) {
  .dest-row,
  .dest-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 64px;
  }
  .dest-row.reverse .dest-img { order: 1; }
  .dest-row.reverse .dest-text { order: 2; }
  .dest-img { height: 360px; }
  .dest-name { font-size: 42px; }
}

@media (max-width: 600px) {
  .dest-img { height: 260px; }
  .dest-name { font-size: 36px; margin-bottom: 16px; }
  .dest-text p { font-size: 15px; }
  .dest-quick-nav { display: none; }
  .dest-row { margin-bottom: 48px; }
  .dest-tour-chip { font-size: 12px; padding: 7px 12px; }
}

/* Vehicle card grid (Rates page) */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  margin-bottom: 24px;
}

.vehicle-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #e8e2d4;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vehicle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(25, 0, 115, 0.08);
}

.vehicle-img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(135deg, #190073, #2d10a0);
}

.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vehicle-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vehicle-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.vehicle-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

.vehicle-rate {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.vehicle-rate-unit {
  font-size: 13px;
  color: var(--gray);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

.vehicle-models {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 16px;
  line-height: 1.5;
}

.vehicle-models em {
  text-transform: none;
  letter-spacing: 0;
  color: #aaa;
  font-style: italic;
  font-size: 11.5px;
}

.vehicle-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
}

.vehicle-meta li {
  margin-bottom: 6px;
}

.vehicle-meta strong {
  color: var(--navy);
  font-weight: 500;
}

.vehicle-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: var(--off-white);
  border-left: 2px solid var(--gold);
  font-size: 12.5px;
  color: var(--navy);
  line-height: 1.55;
}

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

@media (max-width: 600px) {
  .vehicle-grid { grid-template-columns: 1fr; gap: 24px; }
  .vehicle-head h3 { font-size: 24px; }
  .vehicle-rate { font-size: 20px; }
}

/* ===== ABOUT PAGE ===== */
.about-section { padding: var(--section-pad); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-grid.reverse { grid-template-columns: 1fr 1fr; }
.about-grid.reverse .about-text { order: 2; }
.about-grid.reverse .about-img { order: 1; }

.about-img {
  height: 420px;
  background: var(--navy-light);
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 60px;
  padding: 40px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--gold);
  display: block;
  font-weight: 600;
  line-height: 1;
}

.stat .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
  color: rgba(255,255,255,0.75);
}

a.stat.stat-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
a.stat.stat-link:hover { transform: translateY(-2px); opacity: 0.92; }
a.stat.stat-link:hover .label { color: rgba(255,255,255,0.95); }
a.stat.stat-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }

/* ===== FAQ ===== */
.faq-section { padding: var(--section-pad); background: var(--cream); }

.faq-category { margin-bottom: 56px; }
.faq-category:last-child { margin-bottom: 0; }

.faq-category .section-title {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--navy);
}

.faq-list {
  border-top: 1px solid rgba(25, 0, 115, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(25, 0, 115, 0.12);
  background: var(--white);
}

.faq-item summary {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  padding: 20px 48px 20px 24px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  background: rgba(201, 168, 76, 0.06);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.faq-answer {
  padding: 0 24px 24px 24px;
  color: rgba(25, 0, 115, 0.78);
  line-height: 1.7;
}

.faq-answer p { margin: 0; }

@media (max-width: 768px) {
  .faq-item summary { padding: 16px 40px 16px 16px; font-size: 15px; }
  .faq-item summary::after { right: 16px; }
  .faq-answer { padding: 0 16px 20px 16px; }
}

/* ===== CONTACT FORM ===== */
.contact-section { padding: var(--section-pad); }

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

/* Grid items default to `min-width: auto`, which lets intrinsic content
   (long `<option>` text, native date-picker UI, etc.) expand the item past
   its grid track. On narrow mobile viewports this pushed `.contact-form`
   ~16px past the container's right edge and the page read as right-shifted.
   Forcing `min-width: 0` makes both columns obey their track widths. */
.contact-grid > * { min-width: 0; }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* Same root cause as `.contact-grid > * { min-width: 0 }` above: on mobile
   the row collapses to a single 1fr track, and the date-range field's two
   `<input type="date">` UAs have an intrinsic min-content (mm/dd/yyyy +
   calendar glyph) that pushed the field past the track and forced the
   document to scroll 10px past the viewport. */
.contact-form .form-row > * { min-width: 0; }

.contact-form .form-field { margin-bottom: 16px; }

.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form label .req { color: #b94a48; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cdc6b8;
  background: var(--white);
  font-family: inherit;
  font-size: 14px;
  color: #333;
  transition: border-color 0.2s;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

/* honeypot */
.hp-field { position: absolute; left: -9999px; }

/* Date range picker (From → To) */
.contact-form .date-range {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form .date-range input[type="date"] {
  flex: 1;
  min-width: 0;
  padding: 13px 12px;
  font-size: 14px;
  color: #333;
  /* iOS-only: stop the OS forcing its own font */
  font-family: inherit;
}
.contact-form .date-range input[type="date"]:invalid,
.contact-form .date-range input[type="date"]:not(:valid) {
  color: #999;  /* placeholder-style colour when empty */
}
.contact-form .date-sep {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
}

.contact-info {
  background: var(--off-white);
  padding: 40px;
  border-top: 3px solid var(--gold);
  align-self: start;
}

/* On mobile, the 40px box-padding pushes contact-info content noticeably
   farther right than the form labels above (which only have container's 20px).
   Reduce to align visually with the rest of the page. */
@media (max-width: 768px) {
  .contact-info {
    padding: 28px 20px;
  }
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-info-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
}

.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-info-item .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
  display: block;
  font-weight: 600;
}

.contact-info-item a:hover { color: var(--gold); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 60px 20px 30px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* Legacy footer-logo (text variant) kept for backward compatibility */
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social svg { width: 14px; height: 14px; }

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold); }

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  z-index: 9999;
  transition: var(--transition);
  box-sizing: border-box;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.7);
}

/* ===== 404 ===== */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--off-white);
}

.not-found .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 15vw, 180px);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}

/* ===== THANK YOU ===== */
.thank-you {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--off-white);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-overview { grid-template-columns: 1fr; gap: 32px; }
  .tour-facts { position: static; }
  .about-grid,
  .about-grid.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-grid.reverse .about-text { order: 1; }
  .about-grid.reverse .about-img { order: 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: stretch;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
  }

  .nav-links .dropdown-menu {
    position: static;
    display: block;
    background: rgba(255,255,255,0.05);
    border-top: none;
    padding-left: 16px;
  }

  .social-links { display: none; }

  .hero { height: 70vh; }
  .hero-compact { height: 45vh; }

  /* Top padding clears the two-row mobile header (logo + hamburger). */
  .hero-cinematic .hero-content {
    padding: 140px 20px 40px;
    gap: 24px;
  }

  /* Compact hero on tour/sub pages: same header-clearance on mobile */
  .hero-compact .hero-content {
    padding-top: 90px;
  }

  /* Smaller, less-intrusive WhatsApp button on mobile */
  .whatsapp-btn {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
    padding: 11px;
    box-shadow: 0 3px 14px rgba(37,211,102,0.45);
  }

  .tours-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

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

  .includes-grid { grid-template-columns: 1fr; gap: 32px; }

  .day { grid-template-columns: 60px 1fr; gap: 16px; }
  .day-num strong { font-size: 28px; }

  .footer-bottom { justify-content: center; }
}

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

/* ===== TOUR PAGE: MOBILE ===== */
@media (max-width: 968px) {
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
  .snap:nth-child(2)::after { display: none; }
  .highlights-grid { grid-template-columns: 1fr; gap: 20px; }
  .related-grid { grid-template-columns: 1fr; gap: 24px; }
  .route-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .featured-testimonial blockquote { font-size: 22px; }
  .featured-testimonial blockquote::before { left: -10px; top: -20px; font-size: 60px; }
  .snap-value { font-size: 17px; }
}

/* ===== MOBILE UX OPTIMIZATION (≤600px) ===== */
/* Reduces vertical scroll on mobile by tightening stats bar layout,
   shrinking About image height, and reducing section padding.
   K identified bounce-rate risk from tall mobile content. */
@media (max-width: 600px) {
  /* Tighter section padding (saves ~20px per section × 5-6 sections per page) */
  :root { --section-pad: 36px 16px; }

  /* About image: 420px → 280px (saves 140px × 3 sections = 420px = ~1 mobile viewport) */
  .about-img { height: 280px; }

  /* Stats bar: 1-column stack (huge) → 2×2 grid with smaller fonts */
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 12px;
    padding: 24px 16px;
    margin-top: 40px;
  }
  .stat .num {
    font-size: 24px;
    line-height: 1.1;
  }
  .stat .label {
    font-size: 9.5px;
    letter-spacing: 1px;
    margin-top: 4px;
    line-height: 1.4;
  }

  /* About grid gap reduction */
  .about-grid, .about-grid.reverse {
    gap: 20px;
    margin-bottom: 40px;
  }
}

/* ===== LEGAL PAGES (Terms, Privacy) ===== */
.legal-section {
  padding: var(--section-pad);
}

.legal-section .container {
  max-width: 760px;
}

.legal-effective {
  font-size: 13px;
  color: var(--navy);
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 10px 16px;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.legal-intro {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.legal-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 14px;
  font-weight: 600;
}

.legal-section p {
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 15px;
}

.legal-section ul {
  margin: 0 0 14px 24px;
  line-height: 1.75;
}

.legal-section ul li {
  margin-bottom: 6px;
}

.legal-section a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold);
}

.legal-section a:hover {
  color: var(--gold);
}

.legal-contact {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--off-white);
  border-top: 3px solid var(--gold);
}

.legal-contact p {
  margin-bottom: 4px;
  font-size: 15px;
}

.legal-contact p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .legal-section h3 {
    font-size: 22px;
    margin-top: 32px;
  }
  .legal-contact {
    padding: 16px 18px;
  }
}
