/* ============================================================
   Avila Beach Surf School - shared stylesheet
   Warm-coastal theme. Independent design; page structure is
   related to the affiliated Central Coast Surf School site but
   the palette, typography, and navigation are distinct.
   ============================================================ */

:root {
  /* Warm coastal palette */
  --primary: #3A2A1E;     /* deep driftwood brown - dark bands, headings, footer */
  --accent:  #C25A38;     /* terracotta - CTAs, primary accent */
  --teal:    #5E7150;     /* beach-grass sage - secondary accent (name kept for component reuse) */
  --teal-deep: #47563C;   /* deeper sage */
  --teal-light: #8AA06F;  /* lighter sage */
  --gold:    #D89A4A;     /* warm gold - highlights */
  --sand:    #F1E4CD;     /* warm sand sections */
  --bg:      #FBF6EC;     /* warm cream page background */
  --border:  #E7D7BD;     /* warm border */
  --muted:   #6E6152;     /* warm body text */
  --muted-soft: #8A7C6B;  /* lighter warm body text */

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --card-radius: 12px;
  --nav-h: 74px;
  --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; }

/* Keyboard focus ring for tab users only */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn-accent:focus-visible,
.nav-cta:focus-visible,
.cta-band .cta-btn:focus-visible { outline-color: var(--primary); }

/* ---------- Animations ---------- */
@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;
  text-transform: uppercase;
}
.label-teal { color: var(--teal); }
.label-accent { color: var(--accent); }

.h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
  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: none;
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 38px;
  box-shadow: 0 6px 22px rgba(58,42,30,0.25);
}
.btn-accent:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.55);
  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.85); }
.btn-primary {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
}
.btn-primary:hover { filter: brightness(1.2); }

/* ============================================================
   SITE NAV - transparent over hero, solid on scroll
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-nav .nav-inner {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-nav.scrolled {
  background: rgba(251,246,236,0.94);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 4px 24px rgba(58,42,30,0.09);
  border-bottom-color: var(--border);
}

/* Brand */
.nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.nav-logo {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(58,42,30,0.22);
}
.nav-brand .brand-text { display: flex; flex-direction: column; line-height: 1.02; }
.nav-brand .brand-1 {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.3px;
  color: #fff;
  transition: color 0.3s ease;
}
.nav-brand .brand-2 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.site-nav.scrolled .nav-brand .brand-1 { color: var(--primary); }

/* Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  cursor: pointer;
  padding: 9px 15px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: rgba(255,255,255,0.14); color: #fff; }
.nav-link.active { color: #fff; font-weight: 600; }
.site-nav.scrolled .nav-link { color: var(--muted); }
.site-nav.scrolled .nav-link:hover { background: rgba(58,42,30,0.06); color: var(--primary); }
.site-nav.scrolled .nav-link.active { color: var(--primary); }

.nav-cta {
  font-size: 14px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  margin-left: 10px;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 3px 14px rgba(194,90,56,0.35);
  flex-shrink: 0;
}
.nav-cta:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.site-nav.scrolled .nav-hamburger span { background: var(--primary); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(251,246,236,0.98);
  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: 34px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: 14px;
  transition: background 0.15s;
  width: 100%;
  text-align: center;
}
.mobile-menu a.m-link:hover { background: rgba(58,42,30,0.06); }
.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(--accent);
  color: #fff;
  padding: 18px 24px;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 16px;
}
.mobile-menu .menu-close {
  position: absolute;
  bottom: 48px;
  font-size: 13px;
  color: var(--muted-soft);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  letter-spacing: 1px;
}

/* ============================================================
   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;
  object-position: 50% 55%;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40,26,14,0.28) 0%, rgba(40,26,14,0.52) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 32px 80px;
  max-width: 840px;
  width: 100%;
  animation: fadeUp 0.85s ease-out;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.24);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-badge span {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 2px;
}
.hero-h1 {
  font-family: var(--font-heading);
  font-size: 74px;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 18px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.86);
  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.8);
  margin: 20px 0 0;
}
.hero-phone a {
  color: #fff; font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.45);
}

/* ============================================================
   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(--gold);
  letter-spacing: 2.5px;
  padding-right: 16px;
}
.locs-inner .city {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.84);
  padding: 0 12px;
}
.locs-inner .sep { color: rgba(255,255,255,0.22); 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: 30px 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(--accent); line-height: 1;
}
.trust-cell .stat-label {
  font-size: 13px; font-weight: 600;
  color: var(--primary); margin-top: 6px;
}
.trust-cell .stat-sub { font-size: 11px; color: var(--muted-soft); margin-top: 2px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.services-grid > .service-card { grid-column: span 2; }
.services-grid > .service-card:nth-child(4) { grid-column: 2 / span 2; }
.services-grid > .service-card:nth-child(5) { grid-column: 4 / span 2; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.service-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover { box-shadow: 0 10px 34px rgba(58,42,30,0.12); transform: translateY(-2px); }
.service-card .card-img { height: 190px; overflow: hidden; }
.service-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card .card-body { padding: 22px 26px 26px; }
.service-card .cat {
  font-size: 11px; font-weight: 700;
  color: var(--teal); letter-spacing: 1.8px;
  margin-bottom: 6px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 700;
  color: var(--primary); margin: 0 0 8px;
}
.service-card p {
  font-size: 14px; color: var(--muted);
  line-height: 1.6; margin: 0 0 14px;
}
.service-card .card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.service-card .price {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 700; color: var(--accent);
}
.service-card .book-link {
  font-size: 13px; font-weight: 600;
  color: var(--teal); text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
}

.rental-card {
  background: var(--primary);
  border-radius: var(--card-radius);
  padding: 30px 32px;
}
.rental-card .cat { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1.8px; margin-bottom: 8px; }
.rental-card h3 { font-family: var(--font-heading); font-size: 27px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.rental-card p { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.6; margin: 0 0 18px; }
.rental-card .rates { display: flex; gap: 28px; }
.rental-card .rate-num { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; }
.rental-card .rate-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }

.kayak-card {
  background: var(--sand);
  border-radius: var(--card-radius);
  padding: 30px 32px;
  border: 1px solid var(--border);
}
.kayak-card .cat { font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: 1.8px; margin-bottom: 8px; }
.kayak-card h3 { font-family: var(--font-heading); font-size: 27px; font-weight: 700; color: var(--primary); margin: 0 0 8px; }
.kayak-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 18px; }
.kayak-card .chips { display: flex; gap: 10px; flex-wrap: wrap; }
.kayak-card .chip {
  background: #fff; border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 6px;
  font-size: 12px; font-weight: 600; color: var(--primary);
}
.kayak-card .chip-link {
  background: var(--teal); padding: 6px 14px; border-radius: 6px;
  font-size: 12px; font-weight: 600; color: #fff; text-decoration: none;
}
.kayak-card .chip-link:hover { filter: brightness(1.08); }

/* ============================================================
   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 14px 44px rgba(58,42,30,0.18);
}
.about-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .badge {
  position: absolute;
  bottom: -12px; left: 16px;
  background: var(--accent); color: #fff;
  font-family: var(--font-heading);
  font-size: 17px; font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(58,42,30,0.2);
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 42px; font-weight: 800;
  color: var(--primary); line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
}
.about-text p { font-size: 15px; color: var(--muted); 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(--accent); flex-shrink: 0; }
.about-features .feat span { font-size: 14px; font-weight: 600; color: var(--primary); }

/* ============================================================
   GALLERY
   ============================================================ */
.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 */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(40,26,14,0.93);
  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; }

/* ============================================================
   KAYAK CALLOUT
   ============================================================ */
.kayak-callout {
  position: relative;
  overflow: hidden;
  background: var(--primary);
}
.kayak-callout > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.24;
}
.kayak-callout .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(58,42,30,0.96) 0%, rgba(58,42,30,0.58) 100%);
}
.kayak-callout .kayak-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.kayak-callout h2 {
  font-family: var(--font-heading);
  font-size: 44px; font-weight: 800;
  color: #fff; line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}
.kayak-callout .desc { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.75; margin: 0 0 26px; }
.kayak-callout .visit-btn {
  font-size: 14px; font-weight: 700;
  background: var(--accent); color: #fff;
  padding: 13px 28px; border-radius: 100px;
  text-decoration: none; display: inline-block;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 3px 14px rgba(194,90,56,0.35);
}
.kayak-callout .visit-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.kayak-tours { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kayak-tours .tour {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
}
.kayak-tours .tour .t-name { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.kayak-tours .tour .t-sub { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 54px 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: 40px; font-weight: 800;
  color: #fff; line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 0 6px;
}
.cta-band p { font-size: 15px; color: rgba(255,255,255,0.9); margin: 0; }
.cta-band .cta-btn {
  font-size: 16px; font-weight: 700;
  background: #fff; color: var(--accent);
  padding: 16px 40px; border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(58,42,30,0.16);
  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 10px 26px rgba(58,42,30,0.22); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  position: relative;
  background: var(--primary);
  padding: 130px 36px 66px;
  text-align: center;
  overflow: hidden;
}
.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.20;
}
.page-header .ph-inner { position: relative; max-width: 1240px; margin: 0 auto; }
.page-header .label { margin-bottom: 12px; }
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 56px; font-weight: 800;
  color: #fff; line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 12px;
}
.page-header .ph-sub { font-size: 16px; color: rgba(255,255,255,0.7); margin: 0; }

/* ============================================================
   PRICING (lessons + camps)
   ============================================================ */
.pricing-grid {
  max-width: 1040px;
  margin: 0 auto;
  padding: 60px 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.price-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 34px;
  border: 2px solid var(--border);
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.price-card:hover { border-color: var(--teal); box-shadow: 0 8px 30px rgba(58,42,30,0.1); }
.price-card .ribbon {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px; font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ribbon-accent { background: var(--accent); color: #fff; }
.ribbon-sand { background: var(--sand); color: var(--primary); }
.ribbon-primary { background: var(--primary); color: #fff; }
.price-card .ribbon + .ribbon { top: 46px; }
.price-card .cat { font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: 1.5px; margin-bottom: 6px; }
.price-card h2 { font-family: var(--font-heading); font-size: 25px; font-weight: 700; color: var(--primary); margin: 0 0 14px; }
.price-card .price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 18px; }
.price-card .price-row .amt { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--primary); line-height: 1; }
.price-card .price-row .per { font-size: 14px; color: var(--muted-soft); }
.price-card ul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.price-card ul li { display: flex; align-items: center; gap: 9px; }
.price-card ul li .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.price-card ul li span { font-size: 14px; color: var(--muted); }

/* Deal banner */
.deal-wrap { background: var(--bg); }
.deal-wrap .deal-inner { max-width: 1040px; margin: 0 auto; padding: 0 36px 44px; }
.deal-banner {
  background: linear-gradient(135deg, var(--primary), var(--teal-deep));
  border-radius: var(--card-radius);
  padding: 26px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.deal-banner .deal-left { display: flex; align-items: center; gap: 14px; }
.deal-banner .deal-num { font-family: var(--font-heading); font-size: 42px; font-weight: 800; color: var(--gold); line-height: 1; flex-shrink: 0; }
.deal-banner .deal-title { font-size: 17px; font-weight: 700; color: #fff; }
.deal-banner .deal-sub { font-size: 13px; color: rgba(255,255,255,0.6); }
.deal-banner .deal-cta {
  font-size: 14px; font-weight: 700;
  background: var(--accent); color: #fff;
  padding: 11px 24px; border-radius: 100px;
  text-decoration: none; flex-shrink: 0;
  transition: filter 0.2s;
}
.deal-banner .deal-cta:hover { filter: brightness(1.08); }

/* Rentals / add-ons (lessons page) */
.addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.addon-card {
  background: var(--bg);
  border-radius: var(--card-radius);
  padding: 32px;
  border: 1px solid var(--border);
}
.addon-card h3 { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--primary); margin: 0 0 14px; }
.addon-card .cat { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 1.5px; margin-bottom: 8px; }
.addon-card .rate-row { display: flex; justify-content: space-between; align-items: center; }
.addon-card .rate-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.addon-card .rate-list > div:first-child { padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.addon-card .rate-name { font-size: 15px; font-weight: 500; color: var(--primary); }
.addon-card .rate-price { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--primary); }
.addon-card .rate-price small { font-size: 13px; font-weight: 400; color: var(--muted-soft); }
.addon-card .fine { font-size: 12px; color: var(--muted-soft); margin: 0; }
.addon-card .price-big { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.addon-card .price-big .amt { font-family: var(--font-heading); font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; }
.addon-card .price-big .per { font-size: 14px; color: var(--muted-soft); }
.addon-card .desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Best surf times */
.times-flex { display: flex; justify-content: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.time-slot { padding: 16px 34px; border-radius: 10px; text-align: center; }
.time-slot.primary { background: var(--primary); }
.time-slot.primary .t { color: #fff; }
.time-slot.primary .tag { color: var(--gold); font-weight: 700; }
.time-slot.outline { border: 2px solid var(--border); }
.time-slot.outline .t { color: var(--primary); }
.time-slot.outline .tag { color: var(--muted-soft); font-weight: 600; }
.time-slot .t { font-family: var(--font-heading); font-size: 28px; font-weight: 800; }
.time-slot .tag { font-size: 10px; margin-top: 4px; letter-spacing: 1px; }
.times-note { font-size: 14px; color: var(--muted); max-width: 460px; margin: 0 auto; line-height: 1.65; }

/* ============================================================
   CAMPS
   ============================================================ */
.grid-camp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.camp-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.camp-card:hover { border-color: var(--accent); box-shadow: 0 6px 22px rgba(58,42,30,0.1); }
.camp-card.featured { border-color: var(--accent); position: relative; box-shadow: 0 8px 26px rgba(58,42,30,0.1); }
.camp-card.featured:hover { box-shadow: 0 8px 26px rgba(58,42,30,0.1); }
.camp-card .pop-ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
  white-space: nowrap; letter-spacing: 0.5px;
}
.camp-card .cat { font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: 1.5px; margin-bottom: 10px; }
.camp-card .amt { font-family: var(--font-heading); font-size: 50px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.camp-card .sub { font-size: 13px; color: var(--muted-soft); margin-bottom: 20px; }
.camp-card ul { list-style: none; margin: 0 0 24px; padding: 0; text-align: left; display: flex; flex-direction: column; gap: 8px; }
.camp-card ul li { display: flex; align-items: center; gap: 8px; }
.camp-card ul li .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.camp-card ul li span { font-size: 13px; color: var(--muted); }
.camp-deal { text-align: center; margin-top: 18px; }
.camp-deal .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; padding: 10px 22px;
  border-radius: 100px; border: 1px solid var(--border);
}
.camp-deal .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.camp-deal .pill span { font-size: 13px; font-weight: 600; color: var(--primary); }

/* What to expect */
.expect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.expect-card {
  background: var(--bg);
  border-radius: var(--card-radius);
  padding: 26px;
  border: 1px solid var(--border);
}
.expect-card h3 { font-family: var(--font-heading); font-size: 23px; font-weight: 700; color: var(--accent); margin: 0 0 8px; }
.expect-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; }
.section-h2-left {
  font-family: var(--font-heading);
  font-size: 42px; font-weight: 800;
  color: var(--primary); letter-spacing: -0.5px; margin: 0 0 28px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin: 0 0 14px; }
.about-page-text p:last-child { margin-bottom: 0; }
.about-page-photo {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(58,42,30,0.18);
}
.about-page-photo img { width: 100%; height: 100%; object-fit: cover; }

.apart-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.apart-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 30px;
  border: 1px solid var(--border);
  text-align: center;
}
.apart-card h3 { font-family: var(--font-heading); font-size: 27px; font-weight: 800; color: var(--accent); margin: 0 0 10px; }
.apart-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }

.contact-card {
  background: var(--bg);
  border-radius: var(--card-radius);
  padding: 48px 52px;
  border: 1px solid var(--border);
  text-align: center;
}
.contact-card h2 { font-family: var(--font-heading); font-size: 42px; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; margin: 0 0 14px; }
.contact-card .lead { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0 0 28px; }
.contact-card .book-btn {
  display: inline-block;
  font-size: 16px; font-weight: 700;
  background: var(--accent); color: #fff;
  padding: 16px 44px; border-radius: 100px;
  text-decoration: none; transition: filter 0.2s;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(194,90,56,0.3);
}
.contact-card .book-btn:hover { filter: brightness(1.06); }
.contact-card .or { font-size: 15px; color: var(--muted); margin: 0 0 28px; }
.contact-card .or a { color: var(--primary); font-weight: 700; text-decoration: none; }
.contact-card .socials { display: flex; gap: 10px; justify-content: center; }
.contact-card .socials a {
  font-size: 13px; font-weight: 600;
  background: #fff; color: var(--primary);
  padding: 10px 22px; border-radius: 100px;
  text-decoration: none; border: 1px solid var(--border);
  transition: background 0.2s;
}
.contact-card .socials a:hover { background: var(--sand); }

/* ============================================================
   INCLUSIONS STRIP (kayak 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 (kayak 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 12px 40px rgba(58,42,30,0.16); }
.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: 100px; 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: 38px; font-weight: 800; color: var(--primary); margin: 0 0 6px; line-height: 1.1; letter-spacing: -0.5px; }
.tour-detail .td-meta { font-size: 13px; color: var(--muted-soft); margin-bottom: 16px; }
.tour-detail p { font-size: 15px; color: var(--muted); 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(--accent); line-height: 1; }
.td-buy .per { font-size: 14px; color: var(--muted-soft); }
.td-buy .book { font-size: 14px; font-weight: 700; background: var(--accent); color: #fff; padding: 13px 28px; border-radius: 100px; text-decoration: none; transition: filter 0.2s; box-shadow: 0 3px 14px rgba(194,90,56,0.32); }
.td-buy .book:hover { filter: brightness(1.06); }
.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)
   ============================================================ */
.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: var(--muted); line-height: 1.6; margin: 0; }
.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: 24px; font-weight: 800; color: var(--teal); }
.step h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--primary); margin: 0 0 8px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

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

/* ============================================================
   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: 11px; margin-bottom: 14px; text-decoration: none; }
.footer-brand .footer-logo {
  width: 44px; height: 44px; border-radius: 11px;
  display: block;
  flex-shrink: 0;
}
.footer-brand .ft { line-height: 1.05; display: flex; flex-direction: column; }
.footer-brand .ft .l1 { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.footer-brand .ft .l2 { font-size: 10px; font-weight: 600; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-top: 2px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.62); 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(--gold); letter-spacing: 1.5px; margin-bottom: 14px; text-transform: uppercase; }
.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.62); line-height: 1.5; }
.footer-col a.f-link, .footer-col .f-link {
  font-size: 13px; color: rgba(255,255,255,0.62);
  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.55); line-height: 1.65; margin: 0 0 10px; }
.footer-col a.sister-link { font-size: 13px; font-weight: 700; color: var(--gold); 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.08);
  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.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid > .service-card,
  .services-grid > .service-card:nth-child(4),
  .services-grid > .service-card:nth-child(5) { grid-column: auto; }
  .grid-camp { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .kayak-callout .kayak-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 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; }
  .apart-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .inner { padding-left: 20px; padding-right: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-camp { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .kayak-callout .kayak-grid { grid-template-columns: 1fr; }
  .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, .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-title { font-size: 32px; }
  .page-header { padding: 116px 20px 48px; }
  .page-header h1 { font-size: 42px; }
  .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; }
  .addons-grid { grid-template-columns: 1fr; }
  .times-flex { flex-direction: column; align-items: stretch; }
  .expect-grid { grid-template-columns: 1fr; }
  .apart-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .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); }
  .contact-card { padding: 36px 24px; }
  .price-table .price-row { grid-template-columns: 1.6fr 1fr 1fr; }
  .price-table .pt-book, .price-table .head-c.book-c { display: none; }
  .inclusions-inner { gap: 10px 24px; }
}
