/* ============================================================
   Central Coast Kayak Tours — shared stylesheet
   Sister brand to Central Coast Surf School: same design system
   (pill nav, Caveat + Outfit, warm cream/sand, navy), but TEAL-LED.
   Orange (--accent) is reserved exclusively for booking CTAs.
   ============================================================ */

:root {
  --accent: #E07235;   /* orange — BOOKING CTAs ONLY */
  --primary: #1C3D52;  /* navy */
  --teal: #1B7C8E;     /* lead accent on light bg: labels, links, prices, stats */
  --teal-deep: #16697A; /* teal on sand (AA: 5.29:1) */
  --teal-light: #5BB4C6; /* teal eyebrows on navy (AA: 4.78:1 vs --teal's 2.35) */
  --sand: #F2EBD9;
  --bg: #FDFAF4;
  --border: #E6DDD0;
  --font-heading: 'Caveat', cursive;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
  --card-radius: 10px;
  --nav-blur: 16px;
  --nav-top: 14px;
  --section-pad: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  color: var(--primary);
}
h1, h2, h3 { text-wrap: balance; }
img { display: block; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn-accent:focus-visible,
.nav-cta:focus-visible { outline-color: var(--primary); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content { animation: none; }
}

/* ---------- Layout helpers ---------- */
.inner { max-width: 1240px; margin: 0 auto; padding: 0 36px; }
.section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.bg-bg { background: var(--bg); }
.bg-white { background: #fff; }
.bg-sand { background: var(--sand); }
.bg-primary { background: var(--primary); }
.border-top { border-top: 1px solid var(--border); }

.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  color: var(--teal);
}
.label-accent { color: var(--teal); }
/* Eyebrow/label contrast per background (WCAG AA) */
.bg-sand .label { color: var(--teal-deep); }
.sister-callout .label,
.sister-center .label { color: var(--teal-light); }

.h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.05;
  margin: 0;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .h2 { margin-bottom: 10px; }
.section-head p { font-size: 16px; color: #5E7280; line-height: 1.6; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  border: none;
}
/* Orange = booking only */
.btn-accent {
  background: var(--teal);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 38px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-accent:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  background: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }
/* Teal = secondary brand actions */
.btn-teal {
  background: var(--teal);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 30px;
}
.btn-teal:hover { filter: brightness(1.08); transform: translateY(-1px); }

.textlink {
  font-size: 14px; font-weight: 600;
  color: var(--teal); text-decoration: none;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 3px;
}
.textlink:hover { color: var(--teal-deep); }

/* ============================================================
   PILL NAV
   ============================================================ */
.pill-nav {
  position: fixed;
  top: var(--nav-top);
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 56px;
  padding: 0 8px;
  max-width: 880px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(var(--nav-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--nav-blur)) saturate(180%);
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.72);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,0.95);
  white-space: nowrap;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  padding: 0 6px 0 4px;
  margin-right: 4px;
}
.nav-brand img {
  width: 34px; height: 34px;
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 50%;
  flex-shrink: 0;
}
.nav-brand .brand-text { line-height: 1.1; }
.nav-brand .brand-text div {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700;
}
.nav-brand .brand-1 { color: var(--primary); }
.nav-brand .brand-2 { color: var(--teal); }

.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(28,61,82,0.6);
  text-decoration: none;
  cursor: pointer;
  padding: 8px 13px;
  border-radius: 100px;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: rgba(27,124,142,0.08); color: var(--teal); }
.nav-link.active { color: var(--primary); }

.nav-cta {
  font-size: 13.5px;
  font-weight: 700;
  background: var(--teal);
  color: #fff;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  margin-left: 6px;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 100px;
}
.nav-hamburger span { display: block; width: 20px; height: 2px; background: var(--primary); border-radius: 2px; }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(253,250,244,0.97);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.2s ease-out;
}
.mobile-menu.open { display: flex; }
.mobile-menu .menu-inner { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; padding: 0 32px; }
.mobile-menu a.m-link {
  font-family: var(--font-heading);
  font-size: 40px; font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 14px 24px;
  cursor: pointer;
  border-radius: 14px;
  transition: background 0.15s;
  width: 100%; text-align: center;
}
.mobile-menu a.m-link:hover { background: rgba(27,124,142,0.08); }
.mobile-menu a.m-cta {
  display: block; width: 100%; text-align: center;
  font-family: var(--font-body);
  font-size: 17px; font-weight: 700;
  background: var(--teal); color: #fff;
  padding: 18px 24px; border-radius: 14px;
  text-decoration: none; margin-top: 12px;
}
.mobile-menu .menu-close {
  position: absolute; bottom: 48px;
  font-size: 13px; color: rgba(28,61,82,0.35);
  cursor: pointer; background: none; border: none;
  font-family: var(--font-body);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100lvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
}
.hero img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,38,0.34) 0%, rgba(10,22,38,0.5) 55%, rgba(10,22,38,0.62) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 110px 32px 80px;
  max-width: 820px; width: 100%;
  animation: fadeUp 0.85s ease-out;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 6px 18px; border-radius: 100px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero-badge span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 2px; }
.hero-h1 {
  font-family: var(--font-heading);
  font-size: 74px; font-weight: 800;
  color: #fff; line-height: 1.0;
  margin: 0 0 16px;
}
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0 auto 36px; max-width: 580px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-phone { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.78); margin: 18px 0 0; }
.hero-phone a { color: #fff; font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.4); }

/* ============================================================
   LOCATIONS BAR
   ============================================================ */
.locations { background: var(--primary); padding: 13px 20px; }
.locs-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.locs-inner .serving { font-size: 11px; font-weight: 700; color: var(--teal-light); letter-spacing: 2.5px; padding-right: 16px; }
.locs-inner .city { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.82); padding: 0 12px; }
.locs-inner .sep { color: rgba(255,255,255,0.2); font-size: 10px; }

/* ============================================================
   TRUST STATS
   ============================================================ */
.trust { background: #fff; border-bottom: 1px solid var(--border); }
.trust-grid { max-width: 1240px; margin: 0 auto; padding: 0 36px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-cell { padding: 28px 20px; text-align: center; border-right: 1px solid var(--border); }
.trust-cell:last-child { border-right: none; }
.trust-cell .stat { font-family: var(--font-heading); font-size: 42px; font-weight: 800; color: var(--teal); line-height: 1; }
.trust-cell .stat-label { font-size: 13px; font-weight: 600; color: var(--primary); margin-top: 3px; }
.trust-cell .stat-sub { font-size: 11px; color: #677787; margin-top: 2px; }

/* ============================================================
   TOUR CARDS (home services-style grid)
   ============================================================ */
.tours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.tour-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  display: block;
}
.tour-card:hover { box-shadow: 0 8px 30px rgba(28,61,82,0.12); transform: translateY(-2px); }
.tour-card .card-img { height: 200px; overflow: hidden; }
.tour-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tour-card:hover .card-img img { transform: scale(1.04); }
.tour-card .card-body { padding: 22px 26px 26px; }
.tour-card .cat { font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: 1.8px; margin-bottom: 5px; }
.tour-card h3 { font-family: var(--font-heading); font-size: 27px; font-weight: 700; color: var(--primary); margin: 0 0 8px; }
.tour-card p { font-size: 14px; color: #5E7280; line-height: 1.6; margin: 0 0 16px; }
.tour-card .card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tour-card .price { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--teal); }
.tour-card .meta { font-size: 13px; color: #677787; white-space: nowrap; }

/* ============================================================
   FEATURE TRIO (why full-service)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature { text-align: center; padding: 8px 16px; }
.feature .ficon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; line-height: 1;
}
.feature h3 { font-family: var(--font-heading); font-size: 27px; font-weight: 700; color: var(--primary); margin: 0 0 8px; }
.feature p { font-size: 14px; color: #5E7280; line-height: 1.65; margin: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.rating-badge { display: flex; align-items: center; gap: 14px; padding: 14px 20px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; flex-shrink: 0; }
.rating-badge .big { font-family: var(--font-heading); font-size: 34px; font-weight: 800; color: var(--primary); line-height: 1; }
.rating-badge .stars { color: var(--teal); font-size: 13px; letter-spacing: 1px; margin-top: 2px; }
.rating-badge .lbl { font-size: 13px; font-weight: 600; color: var(--primary); }
.rating-badge .sub { font-size: 12px; color: #677787; }

.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.review-card { background: var(--bg); border-radius: var(--card-radius); padding: 22px; border: 1px solid var(--border); }
.review-card .stars { color: var(--teal); font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; }
.review-card p { font-size: 14px; color: #3A4E5C; line-height: 1.65; margin: 0 0 16px; }
.review-card .who { display: flex; align-items: center; gap: 10px; }
.review-card .avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0; }
.review-card .avatar.primary { background: var(--primary); }
.review-card .avatar.teal { background: var(--teal); }
.review-card .name { font-size: 13px; font-weight: 600; color: var(--primary); }

/* ============================================================
   ABOUT SNIPPET / OUR STORY
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.about-photo .frame { border-radius: var(--card-radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 10px 40px rgba(28,61,82,0.14); }
.about-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .badge {
  position: absolute; bottom: -12px; left: 16px;
  background: var(--teal); color: #fff;
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  padding: 10px 20px; border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.about-text h2 { font-family: var(--font-heading); font-size: 46px; font-weight: 800; color: var(--primary); line-height: 1.05; margin: 0 0 18px; }
.about-text p { font-size: 15px; color: #4A5D6C; line-height: 1.75; margin: 0 0 14px; }
.about-features { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 10px; }
.about-features .feat { display: flex; align-items: center; gap: 8px; }
.about-features .feat .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.about-features .feat span { font-size: 14px; font-weight: 600; color: var(--primary); }

/* ============================================================
   GALLERY + LIGHTBOX
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 10px; }
.gallery-grid .cell { border-radius: var(--card-radius); overflow: hidden; cursor: pointer; }
.gallery-grid .cell:first-child { grid-row: 1 / 3; }
.gallery-grid .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-grid .cell:hover img { transform: scale(1.04); }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(10,22,38,0.92); display: none; align-items: center; justify-content: center; animation: fadeIn 0.2s ease-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox .lb-btn { position: absolute; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox .lb-btn:hover { background: rgba(255,255,255,0.22); }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-close { top: 24px; right: 24px; }

/* ============================================================
   SISTER COMPANY CALLOUT (→ surf school)
   ============================================================ */
.sister-callout { position: relative; overflow: hidden; background: var(--primary); }
.sister-callout > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.sister-callout .overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,61,82,0.97) 0%, rgba(28,61,82,0.55) 100%); }
.sister-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.sister-callout h2 { font-family: var(--font-heading); font-size: 50px; font-weight: 800; color: #fff; line-height: 1.05; margin: 0 0 14px; }
.sister-callout .desc { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.75; margin: 0 0 26px; }
.sister-callout .visit-btn { font-size: 14px; font-weight: 600; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; border-bottom: 2px solid rgba(255,255,255,0.3); padding-bottom: 4px; transition: border-color 0.2s; }
.sister-callout .visit-btn:hover { border-color: rgba(255,255,255,0.8); }
.sister-photo { border-radius: var(--card-radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 8px 30px rgba(0,0,0,0.35); }
.sister-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CTA BAND (soft — orange reserved for the button only)
   ============================================================ */
.cta-band { background: var(--sand); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding: 52px 36px; }
.cta-band-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; width: 100%; }
.cta-band-title { font-family: var(--font-heading); font-size: 44px; font-weight: 800; color: var(--primary); line-height: 1.05; margin: 0 0 6px; }
.cta-band p { font-size: 15px; color: #5E7280; margin: 0; }
.cta-band .cta-btn { font-size: 16px; font-weight: 700; background: var(--teal); color: #fff; padding: 16px 40px; border-radius: 8px; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.1); transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; flex-shrink: 0; }
.cta-band .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header { position: relative; background: var(--primary); padding: 132px 36px 64px; text-align: center; overflow: hidden; }
.page-header > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.page-header .ph-inner { position: relative; max-width: 760px; margin: 0 auto; }
.page-header .label { margin-bottom: 12px; color: var(--teal-light); }
.page-header h1 { font-family: var(--font-heading); font-size: 60px; font-weight: 800; color: #fff; line-height: 1.0; margin: 0 0 14px; }
.page-header .ph-sub { font-size: 17px; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.6; }

/* ============================================================
   INCLUSIONS STRIP (tours)
   ============================================================ */
.inclusions { background: var(--sand); border-bottom: 1px solid var(--border); padding: 18px 36px; }
.inclusions-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 40px; }
.inclusions .inc { display: flex; align-items: center; gap: 8px; }
.inclusions .inc svg { width: 17px; height: 17px; stroke: var(--teal); flex-shrink: 0; }
.inclusions .inc span { font-size: 13px; font-weight: 600; color: var(--primary); }

/* ============================================================
   TOUR DETAIL BLOCKS (tours)
   ============================================================ */
.tour-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1100px; margin: 0 auto; }
.tour-detail .td-photo { aspect-ratio: 4/3; border-radius: var(--card-radius); overflow: hidden; box-shadow: 0 8px 30px rgba(28,61,82,0.14); }
.tour-detail .td-photo img { width: 100%; height: 100%; object-fit: cover; }
.tour-detail.reverse .td-photo { order: 2; }
.td-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; margin-bottom: 14px; background: var(--sand); color: var(--teal-deep); }
.td-tag.popular { background: var(--teal); color: #fff; }
.tour-detail h2 { font-family: var(--font-heading); font-size: 42px; font-weight: 800; color: var(--primary); margin: 0 0 6px; line-height: 1.05; }
.tour-detail .td-meta { font-size: 13px; color: #677787; margin-bottom: 16px; }
.tour-detail p { font-size: 15px; color: #5E7280; line-height: 1.7; margin: 0 0 14px; }
.td-chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 26px; }
.td-chips .chip { font-size: 12px; color: var(--teal-deep); background: var(--sand); padding: 6px 14px; border-radius: 100px; }
.td-buy { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.td-buy .amt { font-family: var(--font-heading); font-size: 40px; font-weight: 800; color: var(--teal); line-height: 1; }
.td-buy .per { font-size: 14px; color: #677787; }
.td-buy .book { font-size: 14px; font-weight: 700; background: var(--teal); color: #fff; padding: 12px 28px; border-radius: 8px; text-decoration: none; transition: filter 0.2s; }
.td-buy .book:hover { filter: brightness(1.08); }
.tour-divider { max-width: 1100px; margin: 0 auto; padding: 0 36px; }
.tour-divider hr { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ============================================================
   STEPS (what to expect)
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { text-align: center; }
.step .num { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 26px; font-weight: 800; color: var(--teal); }
.step h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--primary); margin: 0 0 8px; }
.step p { font-size: 13px; color: #5E7280; line-height: 1.6; margin: 0; }

/* ============================================================
   PRICING TABLE (tours)
   ============================================================ */
.price-table { max-width: 900px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden; }
.price-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; align-items: center; padding: 18px 24px; border-bottom: 1px solid var(--border); }
.price-row:last-child { border-bottom: none; }
.price-row.head { background: var(--primary); padding: 16px 24px; }
.price-row.head span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }
.price-row.alt { background: var(--bg); }
.price-row .pt-name { font-size: 15px; font-weight: 600; color: var(--primary); }
.price-row .pt-name small { font-size: 12px; font-weight: 400; color: #677787; margin-left: 8px; }
.price-row .pt-dur, .price-row .head-c { text-align: center; }
.price-row .pt-dur { font-size: 14px; color: var(--primary); text-align: center; }
.price-row .pt-price { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--teal); text-align: center; }
.price-row .pt-book { text-align: center; }
.price-row .pt-book a { font-size: 12px; font-weight: 700; color: var(--teal); text-decoration: none; }
.price-row .pt-book a:hover { filter: brightness(1.08); }
.price-note { font-size: 13px; color: #5E7280; text-align: center; max-width: 900px; margin: 20px auto 0; }
.price-note a { color: var(--teal); text-decoration: none; font-weight: 600; }

/* ============================================================
   FULL-SERVICE CARDS (about)
   ============================================================ */
.fs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.fs-card { background: #fff; border: 1px solid var(--border); border-radius: var(--card-radius); padding: 30px 32px; display: flex; gap: 20px; align-items: flex-start; }
.fs-card .fs-icon { width: 46px; height: 46px; border-radius: 11px; background: var(--sand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 24px; line-height: 1; }
.fs-card h3 { font-family: var(--font-heading); font-size: 25px; font-weight: 700; color: var(--primary); margin: 0 0 6px; }
.fs-card p { font-size: 14px; color: #5E7280; line-height: 1.65; margin: 0; }

/* ============================================================
   BY THE NUMBERS (about)
   ============================================================ */
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.number { text-align: center; padding: 30px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--card-radius); }
.number .n { font-family: var(--font-heading); font-size: 54px; font-weight: 800; color: var(--teal); line-height: 1; }
.number .nl { font-size: 13px; font-weight: 600; color: var(--primary); margin-top: 8px; }

/* ============================================================
   LOCATIONS LIST (about) + CONTACT CARDS
   ============================================================ */
.loc-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.loc-list .loc { display: flex; align-items: center; gap: 12px; }
.loc-list .loc .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.loc-list .loc span { font-size: 14px; color: var(--primary); }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 860px; margin: 0 auto; }
.contact-cell { background: var(--bg); border: 1px solid var(--border); border-radius: var(--card-radius); padding: 30px 24px; text-align: center; }
.contact-cell h3 { font-family: var(--font-heading); font-size: 23px; font-weight: 700; color: var(--primary); margin: 0 0 8px; }
.contact-cell a { font-size: 15px; color: var(--teal); text-decoration: none; font-weight: 600; overflow-wrap: anywhere; }
.contact-cell p { font-size: 14px; color: #5E7280; line-height: 1.5; margin: 0; }

/* Sister callout — centered variant (about) */
.sister-center { position: relative; background: var(--primary); text-align: center; }
.sister-center .inner { max-width: 720px; }
.sister-center h2 { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: #fff; margin: 0 0 14px; line-height: 1.05; }
.sister-center p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.65; margin: 0 0 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary); }
.footer-grid { max-width: 1240px; margin: 0 auto; padding: 60px 36px 28px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.footer-brand img { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; object-position: 50% 50%; }
.footer-brand .ft { line-height: 1.05; }
.footer-brand .ft div { font-family: var(--font-heading); font-size: 17px; font-weight: 700; }
.footer-brand .ft .l1 { color: #fff; }
.footer-brand .ft .l2 { color: var(--teal-light); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0 0 16px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.1); text-decoration: none; transition: background 0.2s; }
.footer-socials a:hover { background: rgba(255,255,255,0.14); }
.footer-col .col-label { font-size: 10px; font-weight: 700; color: var(--teal-light); letter-spacing: 1.5px; margin-bottom: 14px; }
.footer-col .col-items { display: flex; flex-direction: column; gap: 9px; }
.footer-col .contact-items { display: flex; flex-direction: column; gap: 7px; }
.footer-col .contact-items div { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-col a.f-link, .footer-col .f-link { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.footer-col a.f-link:hover { color: #fff; }
.footer-col p.sister { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0 0 10px; }
.footer-col a.sister-link { font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; }
.footer-col a.sister-link:hover { text-decoration: underline; }
.footer-bottom { max-width: 1240px; margin: 0 auto; padding: 20px 36px 28px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom div { font-size: 11px; color: rgba(255,255,255,0.22); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .pill-nav { left: 16px; right: 16px; transform: none; border-radius: 20px; max-width: none; }
  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .tours-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-grid { grid-template-columns: 1fr; }
  .sister-grid { grid-template-columns: 1fr; }
  .tour-detail { grid-template-columns: 1fr; gap: 28px; }
  .tour-detail.reverse .td-photo { order: 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fs-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .inner { padding-left: 20px; padding-right: 20px; }
  .tours-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .sister-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1.6fr 1fr 1fr; }
  .price-row .pt-book, .price-row .head-c.book-c { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 44px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-title { font-size: 34px; }
  .page-header { padding: 116px 20px 48px; }
  .page-header h1 { font-size: 46px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .cell:first-child { grid-row: auto; }
  .gallery-grid .cell { height: 160px; }
  .locs-inner { gap: 4px 0; }
  .locs-inner .serving { flex-basis: 100%; text-align: center; padding-right: 0; padding-bottom: 4px; }
  .locs-inner .city { padding: 0 8px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-cell:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust-cell:nth-child(even) { border-right: none; }
  .trust-cell:nth-child(1), .trust-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .inclusions-inner { gap: 10px 24px; }
}
