/* =============================================================
   BLOCK OUT BEACH VOLLEY CLUB — Global Styles
   Archetype: Editorial Dark (Navy) · Version: 20260627
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Brand Colors */
  --navy-900: #00102E;
  --navy-800: #00143F;   /* Primary brand background */
  --navy-700: #0D2150;
  --navy-600: #1A2A5E;
  --navy-500: #26397A;
  --navy-300: #6175BC;
  --navy-200: #A8B4DC;
  --navy-100: #D8DEEF;

  --sand-700: #C7A971;
  --sand-600: #D6BC8C;
  --sand-500: #E4D2A8;   /* Main accent — court sand */
  --sand-400: #EDDFBF;

  --gold-600: #B8922F;
  --gold-500: #D6A93A;   /* Gold — Block List accent */
  --gold-400: #E8C766;

  --white:    #FFFFFF;
  --off-white:#F6F7FA;
  --black-800:#0A0C10;
  --red:      #E0514E;   /* "¿Buscas pareja?" accent */

  /* Semantic aliases */
  --bg:       var(--navy-800);
  --bg-alt:   var(--navy-700);
  --bg-card:  var(--navy-700);
  --text:     var(--white);
  --text-muted: var(--navy-200);
  --accent:   var(--sand-500);
  --accent-strong: var(--gold-500);
  --line:     rgba(255,255,255,0.12);

  /* Typography */
  --font-impact: 'Anton', 'Oswald', Impact, sans-serif;
  --font-brand:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body:   'Work Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing & Shape */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-pill: 100px;

  /* Shorthand aliases */
  --sand:       var(--sand-500);
  --sand-300:   var(--navy-200);
  --gold:       var(--gold-500);

  /* Easing */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Layout */
  --nav-h:      72px;
  --gutter:     clamp(1.25rem, 4vw, 3rem);
  --max-w:      1280px;
}

/* =============================================================
   2. Reset & Base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; }
ul { list-style: none; padding: 0; }

::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--accent); color: var(--bg);
  z-index: 9999; border-radius: var(--radius-sm); font-weight: 600;
  font-family: var(--font-brand); transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.kicker {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.kicker::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* =============================================================
   4. Typography
   ============================================================= */
.display {
  font-family: var(--font-impact);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 {
  font-family: var(--font-brand);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--font-brand);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.text-accent { color: var(--accent); }
.text-gold   { color: var(--gold-500); }
.text-muted  { color: var(--text-muted); }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-brand);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), background 0.18s;
  will-change: transform;
}

.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--sand-400);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(228,210,168,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--gold-400);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(214,169,58,0.4);
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,10,30,0.5);
  border-color: rgba(228,210,168,0.3);
}

/* --- Form elements --- */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-family: var(--font-brand);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--navy-700);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.875rem 1.125rem;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(228,210,168,0.15);
}

.form-select option { background: var(--navy-700); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.is-solid {
  background: rgba(0, 20, 63, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-brand);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.18s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.24s var(--ease-out);
}

.nav-link:hover,
.nav-link.is-active { color: var(--white); }
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.28s var(--ease-out), opacity 0.2s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--navy-900);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile .nav-link {
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* =============================================================
   7. Hero (Home)
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,20,63,0.2) 0%,
    rgba(0,20,63,0.4) 40%,
    rgba(0,20,63,0.65) 70%,
    rgba(0,20,63,0.80) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-meta-text {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.hero-title {
  font-family: var(--font-impact);
  font-size: clamp(4.5rem, 14vw, 11rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  max-width: 14ch;
}

.hero-title .accent { color: var(--accent); }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 48ch;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero interno (para páginas interiores) */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* =============================================================
   8. Marquee
   ============================================================= */
/* Marquee — works with class .marquee (also alias .marquee-section) */
.marquee, .marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 1rem;
  background: var(--navy-900);
  user-select: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

/* Items: both .marquee-item and plain spans inside track */
.marquee-track span,
.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 1.5rem;
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.marquee-dot {
  display: inline-flex;
  align-items: center;
  padding: 0 0.5rem;
  color: var(--gold);
  font-size: 0.6rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   9. About Section
   ============================================================= */
.about-section {
  padding-block: clamp(5rem, 8vw, 9rem);
}

.about-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.about-label {
  margin-bottom: 1.25rem;
}

.about-heading {
  margin-bottom: 1.25rem;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--navy-700);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-impact);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 580px;
}

.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-soft);
}

.about-photo:hover img { transform: scale(1.04); }

.about-photo-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(0,20,63,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.about-photo-badge .badge-title {
  font-family: var(--font-brand);
  font-size: 0.9375rem;
  font-weight: 700;
  display: block;
}

.about-photo-badge .badge-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.2rem;
}

/* =============================================================
   10. Clases Preview / Cards
   ============================================================= */
.clases-section {
  padding-block: clamp(4rem, 7vw, 8rem);
  background: var(--navy-900);
}

.section-header {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-header.center { align-items: center; text-align: center; }
.section-header .kicker { margin-bottom: 0.25rem; }

.clases-grid {
  display: grid;
  gap: 1.5rem;
}

.clase-card {
  background: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.clase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,10,30,0.5);
  border-color: rgba(228,210,168,0.28);
}

.clase-tag {
  font-family: var(--font-brand);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(214,169,58,0.12);
  border: 1px solid rgba(214,169,58,0.28);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.875rem;
  display: inline-block;
  align-self: flex-start;
}

.clase-tag--kids {
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  border-color: rgba(74,222,128,0.3);
}

.clase-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.625rem);
}

.clase-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.clase-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.clase-info {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.clase-info svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

.clase-price {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--accent);
}

/* =============================================================
   11. Galería
   ============================================================= */
.gallery-section {
  padding-block: clamp(4rem, 7vw, 8rem);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-soft);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,20,63,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.28s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-alt {
  font-size: 0.875rem;
  color: var(--white);
  font-family: var(--font-brand);
  font-weight: 600;
}

/* Gallery placeholder when no image available */
.gallery-placeholder {
  width: 100%;
  height: 260px;
  background: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: var(--radius-md);
  border: 2px dashed var(--line);
}

.gallery-placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}

.gallery-placeholder-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  font-family: var(--font-brand);
}

/* =============================================================
   12. CTA / Bison Band
   ============================================================= */
.cta-section {
  padding-block: clamp(5rem, 8vw, 9rem);
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bison-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

.cta-bison-bg img {
  width: clamp(300px, 55vw, 600px);
  opacity: 0.05;
  filter: grayscale(1);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}

.cta-title {
  margin-bottom: 1.25rem;
}

.cta-sub {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================
   13. Blog / Posts Grid
   ============================================================= */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,10,30,0.5);
  border-color: rgba(228,210,168,0.28);
}

.post-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy-700);
}

.post-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-soft);
}

.post-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: var(--navy-600);
  opacity: 0.5;
}

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

.post-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-category {
  font-family: var(--font-brand);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.post-title {
  font-family: var(--font-brand);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.post-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.post-date {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.post-cta {
  font-family: var(--font-brand);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.18s;
}

.post-cta:hover { gap: 0.625rem; }

/* =============================================================
   14. Reserva / Form Page
   ============================================================= */
.reserva-section {
  padding-block: clamp(2rem, 4vw, 4rem);
}

.reserva-grid {
  display: grid;
  gap: 3rem;
}

.reserva-form-wrap {
  background: var(--navy-700);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-sub {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
  margin-top: 2px;
  cursor: pointer;
}

.form-check label {
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-check a { color: var(--accent); }

.form-submit {
  margin-top: 1.75rem;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success.is-visible { display: block; }

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Info sidebar */
.reserva-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: var(--navy-700);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.info-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.875rem;
}

.info-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.info-card p,
.info-card li {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.info-card ul { display: flex; flex-direction: column; gap: 0.5rem; }

.info-card li::before {
  content: '🦬 ';
}

/* =============================================================
   15. Footer
   ============================================================= */
.footer {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 5vw, 5rem) 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand { max-width: 320px; }

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 1px solid var(--line);
  font-size: 1.125rem;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-nav h4 {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.18s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* =============================================================
   16. Scroll Reveals
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-split] {
  opacity: 1;   /* Safety: don't hide split-text parents */
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* =============================================================
   17. Custom Cursor (desktop only)
   ============================================================= */
.cursor {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  z-index: 9000;
  opacity: 0;
  transition: opacity 0.3s;
}

.cursor.is-ready { opacity: 1; }

.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin: -4px 0 0 -4px;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(228,210,168,0.6);
  margin: -18px 0 0 -18px;
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), margin 0.2s var(--ease-out), border-color 0.2s;
}

.cursor-ring.is-hover {
  width: 56px; height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--accent);
}

/* =============================================================
   18. View Transitions (multi-page)
   ============================================================= */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.45s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
::view-transition-old(root) { animation-name: vt-out; }
::view-transition-new(root) { animation-name: vt-in; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-10px); } }
@keyframes vt-in  { from { opacity: 0; transform: translateY(10px); } }

/* =============================================================
   19. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .nav-links  { display: flex; }
  .nav-burger { display: none; }

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

  .clases-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

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

  .reserva-grid { grid-template-columns: 1fr 360px; align-items: start; }
}

@media (min-width: 960px) {
  .about-grid { grid-template-columns: 1fr 420px; gap: 6rem; }
  .clases-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid    { grid-template-columns: repeat(3, 1fr); }
  .gallery-item img { height: 320px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (min-width: 1280px) {
  .clases-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   20. Reduced Motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-dot { animation: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* =============================================================
   21. Supplemental / Page-specific helpers
   ============================================================= */

/* Generic section utility */
.section {
  padding-block: clamp(4rem, 7vw, 8rem);
}

/* Section background alternation */
.section--dark  { background: var(--navy-900); }
.section--mid   { background: var(--navy-800); }
.section--light { background: var(--navy-700); }

/* Section sub-heading */
.section-sub {
  max-width: 56ch;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Section CTA footer */
.section-footer {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  display: flex;
  justify-content: center;
}

/* Kicker variant on dark/light bands */
.kicker--light {
  color: rgba(228,210,168,0.6);
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-brand);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(228,210,168,.45);
  z-index: 10;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(228,210,168,.5), transparent);
  animation: scrollHintLine 2s ease-in-out infinite;
}
@keyframes scrollHintLine {
  0%, 100% { transform: scaleY(1); opacity: .5; }
  50%       { transform: scaleY(.6); opacity: 1; }
}
@media (max-width: 640px) { .hero-scroll-hint { display: none; } }

/* About section aliases */
.about { padding-block: clamp(5rem, 8vw, 9rem); }

.about-visual {
  position: relative;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 580px;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-soft);
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(0,20,63,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}
.about-img-badge-num {
  font-family: var(--font-impact);
  font-size: 1.75rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.about-img-badge-label {
  font-size: .8rem;
  color: var(--text-muted);
  display: block;
  margin-top: .25rem;
  font-weight: 600;
  font-family: var(--font-brand);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Stats grid (built by JS into data-stats) */
.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(3rem, 5vw, 5rem);
}
@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* CTA band */
.cta-band {
  background: var(--navy-800);
  border-top: 1px solid rgba(228,210,168,.08);
  border-bottom: 1px solid rgba(228,210,168,.08);
  padding-block: clamp(5rem, 9vw, 10rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(214,169,58,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-impact);
  font-size: clamp(16rem, 30vw, 28rem);
  line-height: 1;
  color: rgba(228,210,168,.03);
  user-select: none;
  pointer-events: none;
  letter-spacing: -.02em;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta-band-title {
  font-family: var(--font-impact);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--text);
}
.cta-band-title em {
  font-style: normal;
  color: var(--accent);
}
.cta-band-sub {
  max-width: 50ch;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: .5rem;
}

/* CTA band — versión fondo claro */
.cta-band--light {
  background: var(--off-white);
  border-top-color:    rgba(0,20,63,.08);
  border-bottom-color: rgba(0,20,63,.08);
}
.cta-band--light::before {
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(214,169,58,.07) 0%, transparent 65%);
}
.cta-band--light .cta-band-watermark {
  color: rgba(0,20,63,.04);
}
.cta-band--light .kicker,
.cta-band--light .kicker--light {
  color: var(--gold-600);
}
.cta-band--light .kicker::before,
.cta-band--light .kicker--light::before {
  background: var(--gold-600);
}
.cta-band--light .cta-band-title {
  color: var(--navy-900);
}
.cta-band--light .cta-band-title em {
  color: var(--gold-600);
}
.cta-band--light .cta-band-sub {
  color: var(--navy-600);
}

/* Btn size variant */
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Ghost light variant — visible on dark backgrounds */
.btn-ghost--light {
  border-color: rgba(228,210,168,.6);
  color: #E4D2A8;
}
.btn-ghost--light:hover {
  background: rgba(228,210,168,.15);
  border-color: rgba(228,210,168,.9);
  color: #fff;
}

/* footer-col = alias for footer-nav */
.footer-col h4 {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a, .footer-col span {
  font-size: 0.9375rem;
  color: rgba(255,255,255,.65);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--accent); }

/* footer-socials = alias for footer-social */
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* footer-brand img auto-margin */
.footer-brand img {
  margin-bottom: 1.25rem;
}

/* Social link icon size */
.social-link svg {
  width: 18px;
  height: 18px;
}
