/* Active Surf Center — Leaflet map + orange brand header */

:root {
  --orange:       #F39323;
  --orange-dark:  #D87A12;
  --ink:          #1a1a1a;
  --ink-dim:      #4a4a4a;
  --ink-mute:     #8a8a8a;
  --white:        #ffffff;
  --line:         #e5e7eb;
  --line-2:       #e5e7eb;
  --border:        #e5e7eb;
  --border-strong: #111827;

  --r-sm:         6px;
  --r-pill:       999px;
  --shadow-1:     0 1px 0 rgba(0,0,0,0.06);
  --shadow-2:     0 6px 16px -8px rgba(15,23,42,0.18);

  --font-display: "Bebas Neue", "Oswald", Impact, system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --header-h:     88px;
}

* { box-sizing: border-box; }
html, body, #root { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: #f5f5f5;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

.app {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* ── Header ───────────────────────────────────────────────── */
.header {
  position: relative;
  z-index: 1100;
  background: var(--orange);
  color: var(--white);
  flex: 0 0 var(--header-h);
}
.header-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--r-sm);
  overflow: hidden;
  height: 36px;
}
.lang-toggle button {
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 0 12px;
  height: 100%;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-toggle button + button { border-left: 1px solid rgba(255,255,255,0.5); }
.lang-toggle button:hover { background: rgba(255,255,255,0.15); }
.lang-toggle button.is-active { background: #fff; color: var(--orange); }
.header-inner {
  height: var(--header-h);
  padding: 0 28px 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  width: 72px; height: 76px;
}
.logo-svg { width: 100%; height: 100%; display: block; }

.header-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1;
}
.header-active, .header-surf {
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
}
.header-surf::after {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  margin-left: 6px;
  transform: translateY(-6px);
}

.menu-btn {
  width: 44px; height: 44px;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  transition: background 0.2s ease;
}
.menu-btn:hover { background: rgba(255,255,255,0.15); }
.menu-btn.is-open { background: var(--white); }
.menu-btn.is-open span { background: var(--orange); }
.menu-btn span {
  width: 22px; height: 2.5px;
  background: var(--white);
  display: block;
}

.header-nav {
  position: absolute;
  top: var(--header-h);
  right: 0;
  background: var(--orange);
  border-top: 1px solid rgba(255,255,255,0.25);
  padding: 12px 28px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
  box-shadow: var(--shadow-2);
  z-index: 1200;
}
.header-nav a {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--white);
  cursor: pointer;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.header-nav a.is-active,
.header-nav a:hover { color: var(--ink); }

/* ── Map stage ────────────────────────────────────────────── */
.map-stage {
  position: relative;
  flex: 1;
  min-height: 0;
}
.leaflet-host {
  width: 100%;
  height: 100%;
}
.leaflet-container { font-family: var(--font-body); background: #aad3df; }
.leaflet-control-attribution { font-size: 10px; }
.leaflet-control-zoom a {
  border-radius: 0 !important;
  color: var(--orange) !important;
  border-color: var(--line-2) !important;
}

/* ── Pin (DivIcon) ────────────────────────────────────────── */
.surf-pin { background: none !important; border: none !important; }
.pin-wrap {
  position: relative;
  width: 36px; height: 50px;
}
.pin-svg {
  position: relative;
  width: 36px; height: 50px;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
  transition: transform 0.18s ease;
}
.pin-wrap.is-active .pin-svg { transform: scale(1.18) translateY(-2px); }

.pin-pulse {
  position: absolute;
  left: 50%; bottom: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  transform: translate(-50%, 0);
  opacity: 0.45;
  animation: pinPulse 2.6s ease-out infinite;
}
.pin-pulse.pulse-2 { animation-delay: 1.0s; opacity: 0.3; }
@keyframes pinPulse {
  0%   { transform: translate(-50%, 0) scale(0.6); opacity: 0.55; }
  100% { transform: translate(-50%, 0) scale(3.2); opacity: 0; }
}

/* ── Wind Dial (base) ─────────────────────────────────────── */
.wind-dial-wrap { position: relative; width: 110px; height: 110px; }
.wind-dial { width: 100%; height: 100%; }
.wind-readout {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none;
  transform: translateY(8px);
}
.wind-knots {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1;
  color: var(--ink);
}
.wind-knots em {
  font-style: normal;
  font-size: 11px;
  color: var(--ink-mute);
  margin-left: 2px;
  letter-spacing: 0.06em;
}
.wind-meta {
  display: flex; flex-direction: column;
  align-items: center;
  font-size: 9px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  margin-top: 2px;
  gap: 2px;
}

/* ── Tooltip override ─────────────────────────────────────── */
.spot-tooltip {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  background: var(--orange) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: var(--shadow-2);
}
.spot-tooltip::before { border-top-color: var(--orange) !important; }

/* ── Spot Detail Page ─────────────────────────────────────── */
.spot-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  animation: spotPageEnter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes spotPageEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spotPageExit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-16px);
  }
}

.spot-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 28px;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  box-shadow: none;
}
.spot-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line-2);
  background: #fff;
  padding: 8px 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  border-radius: var(--r-sm);
  transition: all 0.15s ease;
}
.spot-back:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.spot-back svg { flex: 0 0 20px; }

.spot-header-info { flex: 1; min-width: 200px; }
.spot-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--orange);
}
.spot-title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  margin: 2px 0 4px;
  color: var(--ink);
}
.spot-subtitle {
  font-size: 13px;
  color: var(--ink-dim);
  margin: 0;
}
.spot-flag-badge {
  padding: 6px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  border-radius: var(--r-sm);
  white-space: nowrap;
}

/* ── Spot Content Area ────────────────────────────────────── */
.spot-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 0 40px;
  background: #f5f5f5;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Spot sections stagger animation */
.spot-section {
  padding: 24px 28px;
  animation: sectionSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: both;
}

.spot-section:nth-child(1) { animation-delay: 0.05s; }
.spot-section:nth-child(2) { animation-delay: 0.12s; }
.spot-section:nth-child(3) { animation-delay: 0.19s; }
.spot-section:nth-child(4) { animation-delay: 0.26s; }
.spot-section:nth-child(5) { animation-delay: 0.33s; }
.spot-section:nth-child(6) { animation-delay: 0.40s; }
.spot-section:nth-child(7) { animation-delay: 0.47s; }

@keyframes sectionSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero section entrance */
.hero-section {
  animation: heroEnter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 1000px;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth transitions for interactive elements */
.spot-back, .spot-cta, .cta-btn, .season-card, .wind-char-item, .seabed-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.spot-back:active, .spot-cta:active, .cta-btn:active {
  transform: scale(0.98);
}

/* Sport tab smooth transitions */
.sport-tab-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sport-detail {
  animation: sportDetailEnter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes sportDetailEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
  background: #fff;
  margin-bottom: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0 0 16px;
}

/* ── Wind Row ─────────────────────────────────────────────── */
.spot-wind-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: center;
}
.spot-wind-card {
  width: 160px; height: 160px;
  position: relative;
}
.spot-wind-card .wind-dial-wrap { width: 160px; height: 160px; }
.spot-wind-card .wind-dial { width: 100%; height: 100%; }
.spot-wind-card .wind-readout { transform: translateY(12px); }
.spot-wind-card .wind-knots { font-size: 36px; }
.spot-wind-card .wind-knots em { font-size: 13px; }
.spot-wind-card .wind-meta { font-size: 10px; }

.wind-direction-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}
.wind-direction-desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin: 0 0 16px;
}
.spot-quick-stats {
  display: flex;
  gap: 12px;
}
.qs-cell {
  background: #faf6ed;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  min-width: 80px;
}
.qs-key {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.qs-val {
  font-family: var(--font-display);
  font-size: 22px;
  margin-top: 2px;
  color: var(--ink);
}

/* ── Wind Forecast Table (Open-Meteo) ─────────────────────── */
.wf-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  overflow: hidden;
}
.wf-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.wf-empty {
  padding: 36px 16px;
  text-align: center;
  color: var(--ink-mute);
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
}
.wf-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 720px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.wf-table th, .wf-table td {
  padding: 6px 4px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.wf-table tr:last-child td { border-bottom: 0; }
.wf-table th:last-child, .wf-table td:last-child { border-right: 0; }
.wf-label {
  text-align: left !important;
  padding-left: 14px !important;
  font-weight: 600;
  color: var(--ink-dim);
  background: #fafafa;
  white-space: nowrap;
  border-right: 1px solid var(--border) !important;
  position: sticky;
  left: 0;
  z-index: 1;
}
.wf-day {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 600;
  background: #fafafa;
}
.wf-day.is-new { color: var(--orange); }
.wf-hour {
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-mute);
  background: #fafafa;
}
.wf-num { font-weight: 600; }
.wf-mute { color: var(--ink-mute); font-weight: 500; }
.wf-gust { color: var(--ink-dim); }
.wf-dir  { color: var(--ink); line-height: 0; }

/* Wind speed color scale (subtle, brand-aligned) */
.wf-w-low     { color: #9aa1ab; }
.wf-w-mid     { color: var(--ink); background: #f0f7ff; }
.wf-w-good    { color: #fff; background: #f39323; }
.wf-w-strong  { color: #fff; background: #d87a12; }
.wf-w-extreme { color: #fff; background: #c0392b; }

.wf-attr {
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  border-top: 1px solid var(--border);
  background: #fafafa;
}

/* ── Windguru container (legacy, no longer used) ──────────── */
.windguru-container {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow-x: auto;
  overflow-y: hidden;
  background: #ffffff;
  max-width: 920px;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
}

.windguru-container iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: none;
}
@media (max-width: 900px) {
  .windguru-container iframe { min-width: 880px; height: 320px; }
}
.windguru-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease, transform 0.15s ease;
}
.windguru-link-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}
.wg-card-icon {
  font-size: 32px;
  line-height: 1;
}
.wg-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.wg-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.wg-card-url {
  font-size: 13px;
  opacity: 0.7;
  font-family: var(--font-body);
}
.wg-card-arrow {
  font-size: 24px;
  font-weight: 700;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}
.windguru-link-card:hover .wg-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ── Sport Tabs ───────────────────────────────────────────── */
.sport-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.sport-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  background: #fff;
  cursor: pointer;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.15s ease;
}
.sport-tab-btn:hover { border-color: var(--orange); }
.sport-tab-btn.is-active {
  color: #fff;
  border-color: var(--orange);
}
.stb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.sport-tab-btn:not(.is-active) .stb-icon { color: var(--orange); }
.sport-tab-btn.is-active .stb-icon { color: #fff; }
.stb-name { font-weight: 600; }

/* ── Sport Detail (description + inline pricing) ─────────── */
.sport-detail {
  animation: tabFade 0.3s ease;
}
.sport-desc {
  padding: 18px 20px;
  background: #faf6ed;
  border-left: 3px solid var(--orange);
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.7;
  margin: 0 0 16px;
}
@keyframes tabFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Sport Pricing Block ─────────────────────────────────── */
.sport-pricing-block {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 12px;
}
.spb-header {
  padding: 10px 18px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spb-header .icon { color: #fff; }
.wci-label .icon { color: var(--orange); vertical-align: -3px; margin-right: 4px; }
.spb-items {
  background: #fff;
}
.spb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s ease;
}
.spb-row:last-child { border-bottom: none; }
.spb-row:hover { background: #fffaf0; }
.spb-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.spb-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.spb-duration {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.spb-prices {
  display: flex;
  gap: 20px;
  align-items: baseline;
}
.spb-half {
  font-size: 14px;
  color: var(--ink-dim);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.spb-half em, .spb-price em {
  font-style: normal;
  font-size: 9px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}
.spb-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--orange);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* ── Contact & CTA ────────────────────────────────────────── */
.spot-contact { background: #fafafa !important; }
.sc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.sc-item {
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
}
.sc-item:hover { color: var(--orange); }
.spot-note {
  padding: 10px 14px;
  background: #fff5e3;
  border-left: 3px solid var(--orange);
  font-size: 12px;
  font-style: italic;
  color: var(--ink-dim);
  line-height: 1.5;
  margin: 0 0 16px;
}
.spot-cta {
  display: inline-block;
  padding: 14px 32px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border-radius: var(--r-sm);
  text-decoration: none;
  text-align: center;
  transition: filter 0.15s ease;
}
.spot-cta:hover { filter: brightness(0.88); }

/* ── Floating club switcher ───────────────────────────────── */
.club-pills {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: none;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 600;
  min-width: 170px;
}
.pills-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.pill {
  display: flex; align-items: center; gap: 10px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 7px 10px;
  cursor: pointer;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  transition: all 0.15s ease;
}
.pill:hover { background: #fff5e3; border-color: var(--orange); }
.pill.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.pill-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 9px;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
}
.pill-name { letter-spacing: 0.04em; }

/* ── HERO SECTION ──────────────────────────────────────────– */
.hero-section {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #000;
  animation: heroFadeIn 0.8s ease-out;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.45) 70%,
    rgba(0,0,0,0.6) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 28px;
  color: var(--white);
  animation: slideUpHero 0.8s ease-out 0.1s backwards;
}

.hero-title {
  margin: 0 0 8px 0;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.4;
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUpHero {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CONTENT BLOCKS ────────────────────────────────────────– */
.content-block {
  animation: slideUpContent 0.6s ease-out;
}

.content-block-title {
  margin: 0 0 20px 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.content-block-title .icon { color: var(--orange); flex: 0 0 auto; }

/* Wind Characteristics Block */
.wind-char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.wind-char-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #ffffff;
  transition: all 0.3s ease;
}

.wind-char-item:hover {
  border-color: var(--orange);
  background: #fff7e6;
  transform: translateY(-2px);
}

.wci-label {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wci-desc {
  margin: 0;
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* Seabed Info Block */
.seabed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.seabed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fafafa;
}

.seabed-icon {
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.seabed-text {
  flex: 1;
}

.seabed-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.seabed-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* Webcam Block */
.webcam-wrapper {
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.webcam-wrapper iframe {
  display: block;
}

/* Seasons Block */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.season-card {
  padding: 20px 16px;
  border-radius: var(--r-sm);
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.season-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: none;
}

.season-emoji {
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
}
.season-peak    .season-emoji { color: var(--orange); }
.season-summer  .season-emoji { color: var(--orange); }
.season-winter  .season-emoji { color: #2BB3D9; }
.season-badge-best .badge-emoji { display: inline-flex; align-items: center; color: var(--orange); margin-right: 8px; vertical-align: -3px; }

.season-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin-bottom: 6px;
}

.season-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.season-peak { background: #fafafa; border-color: var(--border); border-left: 3px solid #3FB36F; }
.season-summer { background: #ffffff; border-color: rgba(243,147,35,0.2); }
.season-winter { background: #fafafa; border-color: var(--border); border-left: 3px solid #2BB3D9; }
.season-best {
  background: #fff7e6;
  border-color: var(--orange);
}

@keyframes slideUpContent {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CTA BUTTONS ───────────────────────────────────────────– */
.cta-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fafafa;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: currentColor;
}
.cta-whatsapp .cta-icon { color: #25D366; }
.cta-email    .cta-icon { color: #EA4335; }
.cta-phone    .cta-icon { color: var(--orange); }
.cta-maps     .cta-icon { color: #4285F4; }

.cta-text {
  width: 100%;
}

.cta-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  margin-bottom: 3px;
}

.cta-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

/* CTA Button Variants */
.cta-whatsapp {
  border-color: #25D366;
  background: #ffffff;
}

.cta-whatsapp:hover {
  border-color: #20BA5A;
  background: #f0fbf4;
}

.cta-email {
  border-color: #EA4335;
  background: #ffffff;
}

.cta-email:hover {
  border-color: #D33426;
  background: #fef2f0;
}

.cta-phone {
  border-color: var(--orange);
  background: #ffffff;
}

.cta-phone:hover {
  border-color: var(--orange-dark);
  background: #fff7e6;
}

.cta-maps {
  border-color: #4285F4;
  background: #ffffff;
}

.cta-maps:hover {
  border-color: #3367D6;
  background: #f0f5fe;
}

/* Primary CTA Button */
.spot-cta.primary {
  display: block;
  width: 100%;
  padding: 18px;
  margin-top: 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--orange) !important;
  border: 1px solid var(--orange-dark);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: none;
}

.spot-cta.primary:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .header-active, .header-surf { font-size: 30px; }
  .club-pills { top: auto; bottom: 18px; left: 18px; }
  .spot-header { padding: 12px 16px; gap: 12px; }
  .spot-title { font-size: 30px; }
  .spot-section { padding: 18px 16px; }
  .spot-wind-row { grid-template-columns: 1fr; }
  .spot-wind-card { width: 130px; height: 130px; margin: 0 auto; }
  .spot-wind-card .wind-dial-wrap { width: 130px; height: 130px; }
  .spot-quick-stats { flex-wrap: wrap; }
  .spb-row { flex-wrap: wrap; gap: 8px; }
  .spb-price { font-size: 18px; }

  /* Hero section mobile */
  .hero-section { height: 250px; }
  .hero-content { padding: 28px 16px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 14px; }

  /* Content blocks mobile */
  .wind-char-grid { grid-template-columns: 1fr; }
  .seabed-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .season-card { padding: 16px 12px; }
  .season-emoji { margin-bottom: 6px; }
  .season-title { font-size: 10px; }
  .season-value { font-size: 12px; }

  /* CTA Buttons mobile */
  .cta-buttons-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
  .cta-btn { padding: 16px 12px; gap: 8px; }
  .cta-icon { font-size: 24px; }
  .cta-label { font-size: 9px; margin-bottom: 2px; }
  .cta-value { font-size: 12px; }

  /* Spot page overall mobile improvements */
  .spot-page { min-height: 0; }
  .spot-wind-info { margin-top: 16px; }
  .spot-content { max-height: calc(100vh - 88px - 100px); overflow-y: auto; }

  /* Windguru iframe mobile */
  .windguru-container {
    margin: 16px auto !important;
    max-width: calc(100vw - 36px) !important;
    padding: 0 !important;
  }
  .windguru-container iframe { 
    height: 280px !important; 
    max-width: 100% !important;
  }

  /* Sport detail mobile */
  .sport-detail { padding: 0; }
  .sport-pricing-block { margin-bottom: 16px; }
  .spb-items { grid-template-columns: 1fr; }
  .spb-prices { flex-direction: column; gap: 6px; }

  /* Spot contact mobile */
  .spot-contact { padding: 16px; }
  .sc-row { flex-direction: column; gap: 8px; margin-bottom: 12px; }
  .sc-item { font-size: 13px; }

  /* Smooth scrolling on mobile */
  .spot-content { -webkit-overflow-scrolling: touch; scroll-behavior: smooth; }
}

/* ─────────────────────────────────────────────────────────────
   NEW SECTIONS (Why Us, Rescue, Services, Brands, Testimonials)
   ───────────────────────────────────────────────────────────── */

.section-title {
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 36px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.section-title .icon { color: var(--orange); }

/* ────── WHY US SECTION ────── */
.why-us-section {
  padding: 60px 40px;
  background: #fafafa;
  animation: sectionSlideUp 0.8s ease forwards;
  opacity: 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-us-card {
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 32px 24px;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: none;
}

.wuc-icon {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.wuc-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wuc-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mute);
}

/* ────── TESTIMONIALS SECTION ────── */
.testimonials-section {
  padding: 60px 40px;
  background: var(--white);
  animation: sectionSlideUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f9f9f9;
  border-left: 4px solid var(--orange);
  border-radius: var(--r-sm);
  padding: 24px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: #f5f5f5;
  box-shadow: none;
}

.tc-stars {
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.tc-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin-bottom: 16px;
  font-style: italic;
}

.tc-author {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.tc-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}

.tc-source {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* ────── RESCUE BOAT SECTION ────── */
.rescue-boat-section {
  padding: 60px 40px;
  background: #fafafa;
  border-top: 2px solid var(--line);
  animation: sectionSlideUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.rescue-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.rescue-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

.rescue-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rescue-points li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-dim);
  margin-bottom: 12px;
}

.rescue-btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--r-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;
  white-space: nowrap;
}

.rescue-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ────── SERVICES SECTION ────── */
.services-section {
  padding: 60px 40px;
  background: var(--white);
  animation: sectionSlideUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fafafa;
  border-radius: var(--r-sm);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: none;
}

.svc-icon {
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  width: 44px; height: 44px;
}

.svc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.svc-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin-bottom: 12px;
}

.svc-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(243, 147, 35, 0.1);
  color: var(--orange);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 700;
}

/* ────── BRANDS SECTION ────── */
.brands-section {
  padding: 60px 40px;
  background: #fafafa;
  animation: sectionSlideUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

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

.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.brand-card:hover {
  border-color: var(--orange);
  box-shadow: none;
  transform: scale(1.05);
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* ────── TEST-RENT-BUY SECTION WITH OZONE BRAND ────── */
.test-rent-buy-section {
  padding: 60px 40px;
  background: var(--orange);
  color: var(--white);
  animation: sectionSlideUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.trb-content {
  max-width: 1000px;
  margin: 0 auto;
}

/* Ozone Brand Showcase */
.ozone-brand-showcase {
  text-align: center;
  margin-bottom: 40px;
  padding: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  backdrop-filter: none;
}

.ozone-logo-box {
  animation: fadeIn 0.6s ease forwards;
}

.ozone-logo-container {
  width: 280px;
  height: 100px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ozone-logo-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  animation: slideInDown 0.6s ease-out;
}

.ozone-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-style: italic;
}

/* Ozone Products Section */
.ozone-products-section {
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  padding: 32px;
  margin-bottom: 32px;
}

.ozone-products-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-category {
  margin-bottom: 16px;
}

.category-toggle {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-toggle:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateX(4px);
}

.category-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
  animation: slideDown 0.3s ease forwards;
}

.product-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  margin: 0;
  padding: 12px 16px 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
}

.product-category-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 600;
  margin: 8px 16px 0 16px;
  text-transform: uppercase;
  width: fit-content;
}

.product-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 8px 16px 12px 16px;
  padding: 0;
}

/* Trb Content */
.trb-text {
  text-align: center;
  margin-bottom: 32px;
}

.trb-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trb-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0.95;
}

/* Trb Buttons */
.trb-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.trb-btn {
  padding: 16px 24px;
  border-radius: var(--r-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.trb-test {
  background: var(--white);
  color: var(--orange);
}

.trb-test:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.trb-rent {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.trb-rent:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.trb-buy {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.trb-buy:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

/* ────────────────────────────────── */

/* ────── MOBILE RESPONSIVE ────── */
@media (max-width: 760px) {
  .section-title {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .why-us-section,
  .testimonials-section,
  .rescue-boat-section,
  .services-section,
  .brands-section,
  .test-rent-buy-section {
    padding: 40px 18px;
  }

  .why-us-grid,
  .testimonials-grid,
  .services-grid,
  .brands-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rescue-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .category-products {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-image {
    height: 140px;
  }

  .product-name {
    font-size: 12px;
    padding: 10px 14px 0 14px;
  }

  .product-desc {
    font-size: 11px;
    margin: 6px 14px 10px 14px;
  }

  .wuc-icon {
    font-size: 36px;
  }

  .wuc-title {
    font-size: 14px;
  }

  .wuc-desc {
    font-size: 13px;
  }

  .trb-buttons {
    grid-template-columns: 1fr;
  }

  .trb-text h3 {
    font-size: 18px;
  }

  .trb-text p {
    font-size: 13px;
  }

  .rescue-text h3 {
    font-size: 18px;
  }

  .rescue-points li {
    font-size: 13px;
  }

  .rescue-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-size: 12px;
  }
}

/* ─────────────────────────────────────────────────────────────
   PAGE CONTENT STYLES
   ───────────────────────────────────────────────────────────── */

.page-content {
  flex: 1;
  overflow-y: auto;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--line-2);
  padding-bottom: 30px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 48px;
  margin: 0 0 10px 0;
  color: var(--ink);
}

.page-header p {
  font-size: 18px;
  color: var(--ink-mute);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   SPOT SELECTOR
   ───────────────────────────────────────────────────────────── */

.spot-selector {
  margin-bottom: 40px;
  padding: 20px;
  background: white;
  border-radius: var(--r-sm);
  box-shadow: none;
}

.spot-selector label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}

.spot-selector select {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-body);
}

.spot-selector select:hover,
.spot-selector select:focus {
  border-color: var(--orange);
  outline: none;
}

/* ─────────────────────────────────────────────────────────────
   SPOT GALLERY
   ───────────────────────────────────────────────────────────── */

.spot-gallery {
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  border-radius: var(--r-sm);
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--r-sm);
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: none;
}

/* ─────────────────────────────────────────────────────────────
   LESSONS & RENTALS GRID
   ───────────────────────────────────────────────────────────── */

.lessons-grid,
.rentals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.lessons-card,
.rentals-card {
  background: white;
  border-radius: var(--r-sm);
  padding: 24px;
  box-shadow: none;
  border-left: 4px solid var(--orange);
}

.lessons-card h3,
.rentals-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 10px 0;
  color: var(--ink);
}

.sport-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.sport-header h3 {
  margin: 0;
  flex: 1;
}

.sport-desc {
  color: var(--ink-dim);
  margin: 10px 0;
  line-height: 1.6;
}

.spot-note {
  color: var(--orange);
  font-size: 14px;
  margin: 15px 0;
  padding: 10px;
  background: rgba(243, 147, 35, 0.05);
  border-radius: var(--r-sm);
}

/* ─────────────────────────────────────────────────────────────
   TABLES
   ───────────────────────────────────────────────────────────── */

.lessons-table,
.rentals-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.lessons-table thead,
.rentals-table thead {
  background: var(--orange);
  color: white;
}

.lessons-table th,
.rentals-table th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}

.lessons-table td,
.rentals-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
}

.lessons-table tbody tr:hover,
.rentals-table tbody tr:hover {
  background: #f9f9f9;
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────── */

.btn-book,
.btn-shop {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-book:hover,
.btn-shop:hover {
  background: var(--orange-dark);
}

.btn-book {
  width: 100%;
  padding: 10px;
}

.btn-shop {
  display: block;
  margin-top: 12px;
  width: 100%;
  text-align: center;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
}

.btn-whatsapp:hover {
  background: #20BA5C;
  box-shadow: none;
  transform: translateY(-2px);
}

.btn-reserve-rental {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: none;
}

.btn-reserve-rental:hover {
  background: #20BA5C;
  box-shadow: none;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────
   VIDEO CONTAINER
   ───────────────────────────────────────────────────────────── */

.video-container {
  margin: 16px 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: none;
}

.video-container iframe {
  border-radius: var(--r-sm);
}

/* ─────────────────────────────────────────────────────────────
   SHOP PAGE
   ───────────────────────────────────────────────────────────── */

.shop-section {
  margin-bottom: 50px;
}

.shop-section h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--line-2);
  padding-bottom: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.product-card {
  background: white;
  border-radius: var(--r-sm);
  padding: 20px;
  box-shadow: none;
  border-top: 3px solid var(--orange);
  transition: box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: none;
}

.product-card h4 {
  font-size: 18px;
  margin: 0 0 8px 0;
  color: var(--ink);
  font-weight: 700;
}

.product-card p {
  color: var(--ink-dim);
  font-size: 14px;
  margin: 8px 0;
  line-height: 1.5;
}

.product-card em {
  color: var(--orange);
  font-style: italic;
  font-size: 12px;
}

/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.contact-card {
  background: white;
  border-radius: var(--r-sm);
  padding: 28px;
  box-shadow: none;
  border-left: 4px solid var(--orange);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 8px 0;
  color: var(--ink);
}

.contact-card p {
  margin: 12px 0;
  color: var(--ink-dim);
  line-height: 1.6;
}

.contact-card strong {
  color: var(--ink);
  display: inline-block;
  min-width: 80px;
}

.contact-card a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE FIXES FOR PAGES
   ───────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .page-content {
    padding: 24px 16px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .page-header p {
    font-size: 16px;
  }

  .lessons-grid,
  .rentals-grid {
    grid-template-columns: 1fr;
  }

  .lessons-card,
  .rentals-card {
    padding: 16px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }

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

  .spot-selector select {
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }

  .gallery-image {
    height: 150px;
  }

  .lessons-table,
  .rentals-table {
    font-size: 12px;
  }

  .lessons-table th,
  .rentals-table th {
    padding: 8px;
  }

  .lessons-table td,
  .rentals-table td {
    padding: 8px;
  }

  .btn-book {
    font-size: 11px;
    padding: 6px;
  }
}


/* ─────────────────────────────────────────────
   GALLERY PAGE
   ───────────────────────────────────────────── */
.page-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  padding: 0 16px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.page-gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #111;
  transition: transform .25s ease, box-shadow .25s ease;
}
.page-gallery-item:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.page-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-empty {
  text-align: center; padding: 60px 20px; color: #888; font-size: 15px;
}
.gallery-lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; padding: 20px; cursor: zoom-out;
}
.gallery-lightbox img {
  max-width: 95vw; max-height: 92vh; object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.6); border-radius: 4px;
}
.gallery-lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: rgba(255,255,255,.1); color: #fff;
  border: none; width: 44px; height: 44px; border-radius: 50%;
  font-size: 28px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.gallery-lightbox-close:hover { background: rgba(255,255,255,.2); }
@media (max-width: 640px) {
  .page-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 0 8px 30px; }
}
