/* ============================================================
   Central Coast Surf School — shared stylesheet
   Design tokens and components recreated from the Claude Design
   handoff (pixel-accurate). Colors/typography/spacing are final.
   ============================================================ */

:root {
  --accent: #E07235;
  --primary: #1C3D52;
  --teal: #1B7C8E;
  --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;
  --hero-height: 600px;
  --hero-pad-top: 110px;
  --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: visible branded ring for tab/keyboard users only
   (mouse clicks don't trigger :focus-visible, so the visual is unchanged). */
: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 ---------- */
/* Only the hero/landing content animates (see .hero-content). The rest of the
   site renders statically — no scroll-in effects. The [data-animate] attributes
   left in the HTML are inert (no matching styles). */
@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;
}
.label-teal { color: var(--teal); }
.label-accent { color: var(--accent); }

.h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.05;
  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 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); }
.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.15); }

/* ============================================================
   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: 8px;
  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(--accent); }

.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(28,61,82,0.06); color: var(--primary); }
.nav-link.active { color: var(--primary); }
.nav-link.kayak:hover { color: var(--teal); }

.nav-cta {
  font-size: 13.5px;
  font-weight: 700;
  background: var(--accent);
  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.kayak { color: var(--teal); }
.mobile-menu a.m-link:hover { background: rgba(28,61,82,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: 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: var(--hero-height); /* fallback for old browsers */
  min-height: 100svh;             /* fill the device screen */
  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.16) 0%, rgba(10,22,38,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--hero-pad-top) 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(--accent); }
.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: 72px;
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  margin: 0 0 16px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 560px;
}
.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;
  letter-spacing: 0.1px;
}
.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(--accent);
  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: 40px; font-weight: 800;
  color: var(--accent); 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; }

/* ============================================================
   SERVICES
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.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;
}
.service-card:hover { box-shadow: 0 6px 28px rgba(28,61,82,0.10); }
.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: 5px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 700;
  color: var(--primary); margin: 0 0 8px;
}
.service-card p {
  font-size: 14px; color: #5E7280;
  line-height: 1.6; margin: 0 0 14px;
}
.service-card .card-foot {
  display: flex; align-items: center; justify-content: space-between;
}
.service-card .price {
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 700; color: var(--accent);
}
.service-card .book-link {
  font-size: 13px; font-weight: 600;
  color: var(--teal); text-decoration: none;
}

.rental-card {
  background: var(--primary);
  border-radius: var(--card-radius);
  padding: 30px 32px;
}
.rental-card .cat { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 1.8px; margin-bottom: 8px; }
.rental-card h3 { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.rental-card p { font-size: 14px; color: rgba(255,255,255,0.62); 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(--accent); line-height: 1; }
.rental-card .rate-label { font-size: 11px; color: rgba(255,255,255,0.45); 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: 28px; font-weight: 700; color: var(--primary); margin: 0 0 8px; }
.kayak-card p { font-size: 14px; color: #5E7280; 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 #DDD4C4;
  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.1); }

/* ============================================================
   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(--accent); 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(--accent); 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 .avatar.accent { background: var(--accent); }
.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(--accent); 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(--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(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; }

/* ============================================================
   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.22;
}
.kayak-callout .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,61,82,0.97) 0%, rgba(28,61,82,0.55) 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: 50px; font-weight: 800;
  color: #fff; line-height: 1.05;
  margin: 0 0 14px;
}
.kayak-callout .desc { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.75; margin: 0 0 26px; }
.kayak-callout .visit-btn {
  font-size: 14px; font-weight: 600;
  background: var(--accent); color: #fff;
  padding: 12px 26px; border-radius: 8px;
  text-decoration: none; display: inline-block;
  transition: filter 0.2s;
}
.kayak-callout .visit-btn:hover { filter: brightness(1.08); }
.kayak-tours { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kayak-tours .tour {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.kayak-tours .tour .t-name { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.kayak-tours .tour .t-sub { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 52px 36px;
}
.cta-band-title {
  font-family: var(--font-heading);
  font-size: 42px; font-weight: 800;
  color: #fff; line-height: 1.05;
  margin: 0 0 6px;
}
.cta-band p { font-size: 15px; color: rgba(255,255,255,0.85); margin: 0; }
.cta-band .cta-btn {
  font-size: 16px; font-weight: 700;
  background: #fff; color: var(--accent);
  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: 100px 36px 64px;
  text-align: center;
  overflow: hidden;
}
.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.16;
}
.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: 58px; font-weight: 800;
  color: #fff; line-height: 1.0;
  margin: 0 0 10px;
}
.page-header .ph-sub { font-size: 16px; color: rgba(255,255,255,0.62); 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 6px 28px rgba(28,61,82,0.08); }
.price-card .ribbon {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px; font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.ribbon-accent { background: var(--accent); color: #fff; }
.ribbon-sand { background: var(--sand); color: var(--primary); }
.price-card .cat { font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: 1.5px; margin-bottom: 5px; }
.price-card h2 { font-family: var(--font-heading); font-size: 26px; 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: 50px; font-weight: 800; color: var(--primary); line-height: 1; }
.price-card .price-row .per { font-size: 14px; color: #677787; }
.price-card ul { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.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: #4A5D6C; }

/* 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));
  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(--accent); 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.5); }
.deal-banner .deal-cta {
  font-size: 14px; font-weight: 600;
  background: var(--accent); color: #fff;
  padding: 10px 22px; border-radius: 8px;
  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: 28px; 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: #677787; }
.addon-card .fine { font-size: 12px; color: #677787; 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: #677787; }
.addon-card .desc { font-size: 14px; color: #5E7280; 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(--accent); font-weight: 700; }
.time-slot.outline { border: 2px solid #DDD4C4; }
.time-slot.outline .t { color: var(--primary); }
.time-slot.outline .tag { color: #677787; font-weight: 600; }
.time-slot .t { font-family: var(--font-heading); font-size: 30px; font-weight: 800; }
.time-slot .tag { font-size: 10px; margin-top: 4px; letter-spacing: 1px; }
.times-note { font-size: 14px; color: #5E7280; 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 4px 20px rgba(28,61,82,0.08); }
.camp-card.featured {
  border-color: var(--accent);
  position: relative;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.camp-card.featured:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.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: 4px 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: #677787; 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: #4A5D6C; }
.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: 24px; font-weight: 700; color: var(--accent); margin: 0 0 8px; }
.expect-card p { font-size: 14px; color: #5E7280; line-height: 1.65; margin: 0; }
.section-h2-left {
  font-family: var(--font-heading);
  font-size: 44px; font-weight: 800;
  color: var(--primary); margin: 0 0 28px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-text p { font-size: 15px; color: #4A5D6C; 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 10px 40px rgba(28,61,82,0.14);
}
.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: 30px; font-weight: 800; color: var(--accent); margin: 0 0 10px; }
.apart-card p { font-size: 14px; color: #5E7280; 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: 44px; font-weight: 800; color: var(--primary); margin: 0 0 14px; }
.contact-card .lead { font-size: 15px; color: #5E7280; 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: 8px;
  text-decoration: none; transition: filter 0.2s;
  margin-bottom: 20px;
}
.contact-card .book-btn:hover { filter: brightness(1.08); }
.contact-card .or { font-size: 15px; color: #5E7280; 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: 8px;
  text-decoration: none; border: 1px solid var(--border);
  transition: background 0.2s;
}
.contact-card .socials a:hover { background: var(--sand); }

/* ============================================================
   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.1; }
.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(--accent); }
.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(--accent); 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; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .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; }
}
@media (max-width: 600px) {
  .inner { padding-left: 20px; padding-right: 20px; }
  .grid-3 { 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: 42px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .cta-band-title { font-size: 34px; }
  .page-header { padding: 88px 20px 48px; }
  .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: 0 8px; }
  .addons-grid { grid-template-columns: 1fr; }
  .times-flex { flex-direction: column; align-items: stretch; }
  .reviews-grid { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr; }
  .apart-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; }
}
