/* ============================================================
   Esta — main stylesheet
   Aesthetic: luxe / elegant (black + gold + serif)
   ============================================================ */

:root {
  /* Palette: black + white + wood brown */
  --c-base: #0e0c0a;
  --c-surface: #1a1410;
  --c-surface-2: #241d18;
  --c-wood: #8b5a2b;              /* primary wood (saddle) */
  --c-wood-light: #c9966a;        /* tan / light wood */
  --c-wood-dark: #4a2f1a;         /* dark walnut */
  --c-white: #faf7f2;             /* warm white */
  --c-white-soft: #f0ebe2;        /* paper */
  --c-ink: #1a1410;               /* dark text for light sections */
  --c-ink-dim: rgba(26, 20, 16, 0.72);
  --c-ink-mute: rgba(26, 20, 16, 0.5);
  --c-white-dim: rgba(250, 247, 242, 0.78);
  --c-white-mute: rgba(250, 247, 242, 0.5);
  --c-border: rgba(250, 247, 242, 0.1);
  --c-border-wood: rgba(139, 90, 43, 0.45);
  --c-border-light: rgba(26, 20, 16, 0.1);

  /* Aliases for backwards compat (some old class names still reference gold/ivory) */
  --c-gold: var(--c-wood);
  --c-gold-light: var(--c-wood-light);
  --c-ivory: var(--c-white);
  --c-ivory-dim: var(--c-white-dim);
  --c-ivory-mute: var(--c-white-mute);
  --c-border-gold: var(--c-border-wood);

  --ff-display: 'Bebas Neue', 'Archivo', 'Impact', sans-serif;
  --ff-serif: 'Bebas Neue', 'Archivo', 'Impact', sans-serif;   /* alias for legacy refs */
  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-accent: 'Archivo', 'Inter', sans-serif;                  /* for callout text */

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 32px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--c-white);
  background: var(--c-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
  color: var(--c-ivory);
}
h1 { font-size: clamp(3.25rem, 9vw, 7.5rem); letter-spacing: 0.005em; }
h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); letter-spacing: 0.03em; }
h4 { font-size: 1.25rem; letter-spacing: 0.04em; }
h2 em, h1 em { color: var(--c-wood); font-style: normal; font-weight: 400; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-wood-light);
  font-weight: 500;
  margin: 0 0 20px;
}

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  width: auto; height: auto; clip: auto;
  background: var(--c-gold); color: var(--c-base);
  padding: 12px 20px; left: 12px; top: 12px; z-index: 1000;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--ff-sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  white-space: nowrap;
}
.btn--solid { background: var(--c-wood); color: var(--c-white); }
.btn--solid:hover { background: var(--c-wood-dark); color: var(--c-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74, 47, 26, 0.35); }
.btn--ghost { color: var(--c-white); border-color: rgba(250, 247, 242, 0.3); }
.btn--ghost:hover { border-color: var(--c-wood-light); color: var(--c-wood-light); }
.btn--lg { padding: 20px 42px; font-size: 14px; }

.link-arrow {
  color: var(--c-gold);
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  display: inline-block;
  transition: opacity 0.2s, letter-spacing 0.3s;
}
.link-arrow:hover { opacity: 0.75; letter-spacing: 0.22em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.brand__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}
.brand:hover .brand__mark { background: var(--c-gold); color: var(--c-base); }
.brand__name { color: var(--c-ivory); letter-spacing: 0.06em; line-height: 1; }
.brand__text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand__loc {
  font-family: var(--ff-sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
}

.primary-nav { flex: 1; }
.primary-nav__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 40px;
}
.primary-nav__list a {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--c-ivory);
  position: relative;
  padding: 6px 0;
  display: inline-block;
}
.primary-nav__list a:hover,
.primary-nav__list .current-menu-item a { color: var(--c-gold); }
.primary-nav__list a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: right;
}
.primary-nav__list a:hover::after,
.primary-nav__list .current-menu-item a::after { transform: scaleX(1); transform-origin: left; }

.btn--reservar {
  padding: 13px 26px;
  font-size: 11px;
  letter-spacing: 0.18em;
  background: var(--c-wood);
  color: var(--c-white);
  border: 1px solid var(--c-wood);
  transition: all 0.3s ease;
}
.btn--reservar:hover {
  background: var(--c-wood-dark);
  border-color: var(--c-wood-dark);
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(74, 47, 26, 0.4);
}

.nav-toggle { display: none; }

/* Mobile-only contact extras inside the overlay — hidden on desktop */
.primary-nav__extra { display: none; }

/* Hide "Reservar" menu item on desktop (we have the prominent CTA button) */
@media (min-width: 921px) {
  .primary-nav__list li a[href*="/reservar"]:not(.btn) {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
.hero--with-photo .hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 12, 10, 0.72) 0%, rgba(14, 12, 10, 0.55) 40%, rgba(14, 12, 10, 0.92) 100%),
    url('../images/booksy/local-4.jpeg') center/cover no-repeat;
  z-index: 0;
}
.hero--with-photo .hero__decor { display: none; }
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px var(--gutter);
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-size: clamp(3rem, 9vw, 7.5rem);
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 0 0 32px;
  max-width: 14ch;
}
.hero__title em { display: inline-block; }
.hero__lead {
  max-width: 520px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--c-ivory-dim);
  margin: 0 0 48px;
  line-height: 1.55;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__decor {
  position: absolute;
  top: -10%; right: -15%;
  width: min(700px, 70vw); aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(139, 90, 43, 0.22), transparent 65%);
  pointer-events: none;
  z-index: 1;
  filter: blur(8px);
}
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
  z-index: 2;
  overflow: hidden;
}
.hero__scroll span {
  position: absolute;
  top: -56px; left: 0;
  width: 100%; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--c-ivory));
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -56px; }
  100% { top: 56px; }
}

/* ---------- Featured services (home) ---------- */
.featured-services {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
}
.section-head {
  max-width: 640px;
  margin: 0 auto 80px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}
.service-card {
  background: var(--c-base);
  padding: 0;
  position: relative;
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card:hover { background: var(--c-surface); }
.service-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0e0c0a;
  position: relative;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) saturate(1.05);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}
.service-card:hover .service-card__img img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}
.service-card__body {
  padding: 40px 32px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--c-gold);
  margin-bottom: 32px;
  display: block;
}
.service-card h3 { margin-bottom: 16px; }
.service-card p {
  color: var(--c-ivory-dim);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
}
.service-card__price {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-top: 1px solid var(--c-border-gold);
  padding-top: 20px;
  display: block;
}
.section-cta { text-align: center; margin-top: 64px; }

/* ---------- About strip ---------- */
.about-strip {
  background: var(--c-surface);
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.about-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip__text { max-width: 500px; }
.about-strip__text p { color: var(--c-ivory-dim); margin-bottom: 1.2em; }
.about-strip__img {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.5) 100%),
    url('../images/booksy/local-3.jpeg') center/cover;
  border: 1px solid var(--c-border-gold);
  position: relative;
  overflow: hidden;
}
.about-strip__img::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(139, 90, 43, 0.35);
  pointer-events: none;
}

/* ---------- FUT-style player cards (page-barberos) ---------- */
.page-hero--centered { text-align: center; }
.page-hero--centered h1 { max-width: none; margin-left: auto; margin-right: auto; }
.page-hero--centered .lead { margin-left: auto; margin-right: auto; }

.players {
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 12vw, 140px);
}
.players__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.player-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  perspective: 1000px;
}

.player-card__frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 2 / 3;
  position: relative;
  padding: 22px 22px 18px;
  display: grid;
  grid-template-rows: 1fr auto auto auto auto;
  gap: 12px;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255, 232, 168, 0.5), transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(166, 124, 50, 0.4), transparent 60%),
    linear-gradient(135deg, #8b5a2b 0%, #c9966a 20%, #4a2f1a 45%, #8b5a2b 70%, #c9966a 100%);
  border-radius: 16px;
  box-shadow:
    0 12px 50px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 232, 168, 0.6),
    inset 0 0 0 3px rgba(40, 30, 10, 0.5);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s;
  overflow: hidden;
}
.player-card__frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 240, 180, 0.18), transparent 60%),
    linear-gradient(180deg, #1a1308 0%, #0a0a0a 40%, #0a0a0a 70%, #1a1308 100%);
  border-radius: 11px;
  z-index: 0;
}
.player-card__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
  border-radius: 16px;
  pointer-events: none;
  z-index: 3;
  transition: transform 0.7s ease;
  transform: translateX(-100%);
}
.player-card:hover .player-card__frame {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow:
    0 24px 80px rgba(212, 175, 55, 0.25),
    0 12px 50px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 232, 168, 0.6),
    inset 0 0 0 3px rgba(40, 30, 10, 0.5);
}
.player-card:hover .player-card__frame::after { transform: translateX(100%); }

.player-card__frame > * { position: relative; z-index: 1; }

/* Head: rating block + photo */
.player-card__head {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 4px;
}
.player-card__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 4px;
}
.player-card__rating-num {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 0.9;
  color: #f5e6a8;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
  letter-spacing: -0.02em;
}
.player-card__rating-pos {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #f5e6a8;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
.player-card__flag {
  display: block;
  margin-top: 4px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
.player-card__flag svg { display: block; }

.player-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: #0a0a0a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.player-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
  transition: transform 0.6s ease;
}
.player-card:hover .player-card__photo img { transform: scale(1.05); }

/* Name */
.player-card__name {
  text-align: center;
  padding: 6px 0 4px;
}
.player-card__name-text {
  font-family: var(--ff-serif);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f5e6a8;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}

.player-card__divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
}

/* Stats */
.player-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  padding: 4px 8px;
}
.player-card__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--ff-sans);
}
.player-card__stat-value {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: #f5e6a8;
  min-width: 22px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
.player-card__stat-code {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(245, 230, 168, 0.7);
  font-weight: 500;
}

/* Foot: club + specialty */
.player-card__foot {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  text-align: center;
}
.player-card__club {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.player-card__club-mark {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border: 1px solid #f5e6a8;
  color: #f5e6a8;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
}
.player-card__club-name {
  font-family: var(--ff-sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(245, 230, 168, 0.85);
  font-weight: 500;
}
.player-card__specialty {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 12px;
  color: rgba(245, 230, 168, 0.7);
  margin: 6px 0 0;
}

/* Meta (below card) */
.player-card__meta {
  text-align: center;
  margin-top: 8px;
}
.player-card__fullname {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--c-ivory);
  letter-spacing: 0.03em;
}
.player-card__role {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 920px) {
  .players__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 620px) {
  .players__grid { grid-template-columns: 1fr; max-width: 380px; gap: 48px; }
  .player-card__frame { max-width: 300px; }
}

/* ---------- Gallery ---------- */
.gallery {
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--c-border);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--c-surface);
  display: block;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.7s ease;
  filter: brightness(0.92);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.5), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- Team ---------- */
.team {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.team-card {
  text-align: center;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.team-card--link { cursor: pointer; }
.team-card--link:hover { transform: translateY(-4px); }
.team-card__cta {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--ff-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-wood-light);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease, letter-spacing 0.3s ease;
}
.team-card--link:hover .team-card__cta {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: 0.18em;
}
.team-card__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--c-border-gold);
  background: var(--c-base);
  position: relative;
}
.team-card__img::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(139, 90, 43, 0.18);
  pointer-events: none;
  z-index: 2;
}
.team-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2) brightness(0.95);
  transition: filter 0.5s ease, transform 0.7s ease;
}
.team-card:hover .team-card__img img { filter: none; transform: scale(1.04); }
.team-card__name {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  margin: 0 0 4px;
  color: var(--c-ivory);
}
.team-card__role {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0;
  font-weight: 500;
}

/* ---------- Testimonial ---------- */
.testimonial {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 12rem;
  color: var(--c-gold);
  opacity: 0.15;
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.testimonial blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--c-ivory);
  margin: 0;
  position: relative;
  z-index: 1;
}
.testimonial blockquote p { margin: 0; }
.testimonial cite {
  display: block;
  margin-top: 40px;
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
}

/* ---------- CTA ---------- */
.cta {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--c-border);
}
.cta__inner { max-width: 600px; margin: 0 auto; }
.cta h2 { margin-bottom: 24px; }
.cta > .cta__inner > p { color: var(--c-ivory-dim); margin-bottom: 40px; font-size: 1.05rem; }

/* ---------- Page hero ---------- */
.page-hero {
  padding: clamp(120px, 16vw, 180px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--c-border);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(139, 90, 43, 0.08), transparent 60%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 20px; max-width: 14ch; }
.page-hero .lead {
  max-width: 640px;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--c-ivory-dim);
  line-height: 1.55;
}

/* ---------- Services list (page) ---------- */
.services-list {
  padding: clamp(60px, 8vw, 100px) var(--gutter) clamp(80px, 12vw, 140px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 64px 80px;
}
.services-list__group h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border-gold);
}
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--c-border);
}
.price-list li:last-child { border-bottom: 0; }
.price-list__name { color: var(--c-ivory); font-size: 1.0625rem; }
.price-list__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(245, 241, 232, 0.18);
  position: relative;
  top: -5px;
  min-width: 30px;
}
.price-list__price {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--c-gold);
  font-size: 1.2rem;
  white-space: nowrap;
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(60px, 8vw, 100px) var(--gutter) clamp(80px, 12vw, 140px);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 32px;
}
.contact__info > div { }
.contact__info h3 {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  margin: 0 0 14px;
}
.contact__info p { color: var(--c-ivory-dim); line-height: 1.8; margin: 0; }
.contact__info a:hover { color: var(--c-gold); }

.contact__form {
  background: var(--c-surface);
  padding: 56px 48px;
  border: 1px solid var(--c-border-gold);
  display: grid;
  gap: 24px;
  position: relative;
}
.contact__form::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(139, 90, 43, 0.12);
  pointer-events: none;
}
.contact__form .eyebrow { margin-bottom: 8px; }
.contact__form label {
  display: grid;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ivory-mute);
  font-weight: 500;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.2);
  padding: 12px 0;
  color: var(--c-ivory);
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 0.3s;
  border-radius: 0;
  width: 100%;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-bottom-color: var(--c-gold);
}
.contact__form select option { background: var(--c-surface); color: var(--c-ivory); }
.contact__form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact__form button { margin-top: 8px; justify-self: start; }
.contact__form .form-note {
  font-size: 12px;
  color: var(--c-ivory-mute);
  margin: 0;
  font-style: italic;
}

/* ---------- Generic page / error ---------- */
.page-content {
  padding: clamp(60px, 8vw, 100px) var(--gutter) clamp(80px, 12vw, 140px);
  max-width: 800px;
}
.page-content__body p { color: var(--c-ivory-dim); }
.page-content__body a { color: var(--c-gold); border-bottom: 1px solid currentColor; }

.error-page {
  padding: clamp(140px, 18vw, 200px) var(--gutter);
  text-align: center;
  max-width: 600px;
}
.error-page h1 { margin: 24px 0; }
.error-page p { color: var(--c-ivory-dim); margin-bottom: 40px; }

/* ---------- Post list ---------- */
.post-list { padding: clamp(60px, 8vw, 100px) var(--gutter); display: grid; gap: 64px; max-width: 800px; }
.post-card { border-bottom: 1px solid var(--c-border); padding-bottom: 48px; }
.post-card:last-child { border-bottom: 0; }
.post-card h2 { margin-bottom: 16px; }
.post-card h2 a:hover { color: var(--c-gold); }
.post-card__excerpt { color: var(--c-ivory-dim); margin-bottom: 20px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--c-border-gold);
  padding: clamp(60px, 8vw, 100px) var(--gutter) 32px;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}
.site-footer__brand .brand__name {
  font-family: var(--ff-serif);
  font-size: 32px;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 16px;
  color: var(--c-ivory);
  line-height: 1.1;
}
.site-footer__brand .brand__name em { color: var(--c-gold); font-style: italic; font-weight: 400; }
.site-footer__tagline { color: var(--c-ivory-mute); max-width: 320px; line-height: 1.7; }
.site-footer h4 {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  margin: 0 0 18px;
}
.site-footer p { color: var(--c-ivory-mute); font-size: 14px; line-height: 1.9; margin: 0; }
.site-footer a:hover { color: var(--c-gold); }
.site-footer__bottom {
  max-width: var(--container);
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--c-border);
  text-align: center;
  color: var(--c-ivory-mute);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .site-header__inner { gap: 12px; padding: 16px var(--gutter); }

  /* Compact brand so the hamburger always fits */
  .brand { font-size: 17px; gap: 10px; }
  .brand__mark { width: 32px; height: 32px; font-size: 15px; }
  .brand__loc { display: none; } /* hide subtitle on mobile, M + name is enough */
  .brand__name { font-size: 16px; letter-spacing: 0.04em; }

  /* === FULLSCREEN MOBILE NAV === */
  .primary-nav {
    position: fixed;
    inset: 0;
    background:
      radial-gradient(circle at 80% 10%, rgba(139, 90, 43, 0.10), transparent 50%),
      radial-gradient(circle at 10% 90%, rgba(139, 90, 43, 0.06), transparent 50%),
      var(--c-base);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.45s ease, visibility 0.45s, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
    overflow-y: auto;
  }
  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .primary-nav__list {
    flex-direction: column;
    gap: 28px;
    text-align: center;
    width: 100%;
    max-width: 480px;
    align-items: center;
  }
  .primary-nav.is-open .primary-nav__list > li {
    opacity: 0;
    transform: translateY(16px);
    animation: navItemIn 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .primary-nav.is-open .primary-nav__list > li:nth-child(1) { animation-delay: 0.10s; }
  .primary-nav.is-open .primary-nav__list > li:nth-child(2) { animation-delay: 0.16s; }
  .primary-nav.is-open .primary-nav__list > li:nth-child(3) { animation-delay: 0.22s; }
  .primary-nav.is-open .primary-nav__list > li:nth-child(4) { animation-delay: 0.28s; }
  .primary-nav.is-open .primary-nav__list > li:nth-child(5) { animation-delay: 0.34s; }
  .primary-nav.is-open .primary-nav__list > li:nth-child(6) { animation-delay: 0.40s; }
  @keyframes navItemIn { to { opacity: 1; transform: translateY(0); } }

  .primary-nav__list a {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: none;
    padding: 8px 0;
  }
  .primary-nav__list a::after { bottom: -4px; height: 1px; }

  .primary-nav__extra {
    display: block;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--c-border);
    width: 100%;
    max-width: 320px;
    text-align: center;
    color: var(--c-ivory-mute);
    font-size: 13px;
    letter-spacing: 0.02em;
    opacity: 0;
    transition: opacity 0.6s 0.6s ease;
  }
  .primary-nav.is-open .primary-nav__extra { opacity: 1; }
  .primary-nav__extra a { color: var(--c-gold); }

  .btn--reservar { margin-left: auto; padding: 10px 18px; font-size: 11px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px; height: 18px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 200;
  }
  .nav-toggle span {
    display: block;
    width: 100%; height: 1px;
    background: var(--c-ivory);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.25s;
    transform-origin: center;
  }
  .nav-toggle[aria-expanded="true"] span { background: var(--c-gold); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0.3); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

  body.has-open-nav { overflow: hidden; }
  body.has-open-nav .site-header { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom-color: transparent; }
  body.has-open-nav .btn--reservar { display: none; }

  /* Layout responsive (tablet & below) */
  .about-strip__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-strip__img { max-width: 480px; margin: 0 auto; width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; gap: 48px; }
  .contact { grid-template-columns: 1fr; gap: 56px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact__form { padding: 40px 32px; }
  .contact__form .form-row { grid-template-columns: 1fr; gap: 24px; }
}

/* Very narrow phones: hide brand text entirely, keep just the M mark */
@media (max-width: 420px) {
  .brand__text { display: none; }
  .btn--reservar { padding: 9px 14px; font-size: 10px; letter-spacing: 0.14em; }
  .site-header__inner { gap: 8px; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .contact__info { grid-template-columns: 1fr; gap: 32px; }
  .services-list { gap: 48px; }
  .service-card { padding: 44px 28px; }
  .hero__inner { padding: 64px var(--gutter); }
  .hero { min-height: 80vh; }
  .testimonial::before { font-size: 8rem; }
}

/* ============================================================
   LIGHT THEME OVERRIDES
   Body = WHITE. Sections that stay dark for drama:
   site-header, hero, about-strip, team, cta, footer, player cards.
   ============================================================ */

/* Body switches to light context — variables override the dark defaults.
   Background is transparent so the .lava-bg behind shows through. */
body {
  background: transparent;
  color: var(--c-ink);
  --c-base: var(--c-white);
  --c-surface: var(--c-white-soft);
  --c-ivory: var(--c-ink);
  --c-ivory-dim: var(--c-ink-dim);
  --c-ivory-mute: var(--c-ink-mute);
  --c-border: rgba(26, 20, 16, 0.1);
}

h1, h2, h3, h4 { color: var(--c-ink); }
h1 em, h2 em { color: var(--c-wood); }
.eyebrow { color: var(--c-wood); }

/* Dark sections re-establish dark context internally.
   --c-gold remapped to wood-light (tan) here so any text using --c-gold
   stays readable on the dark background. */
.site-header,
.hero,
.about-strip,
.team,
.cta,
.site-footer {
  --c-base: #0e0c0a;
  --c-surface: #1a1410;
  --c-ivory: #faf7f2;
  --c-ivory-dim: rgba(250, 247, 242, 0.78);
  --c-ivory-mute: rgba(250, 247, 242, 0.5);
  --c-border: rgba(250, 247, 242, 0.1);
  --c-gold: #c9966a;          /* tan — readable on dark */
  --c-gold-light: #e0c089;    /* lighter tan for accents */
  --c-border-gold: rgba(201, 154, 106, 0.4);
  color: var(--c-ivory);
}
.site-header h1, .site-header h2, .site-header h3,
.hero h1, .hero h2, .hero h3,
.about-strip h1, .about-strip h2, .about-strip h3,
.team h1, .team h2, .team h3,
.cta h1, .cta h2, .cta h3,
.site-footer h2, .site-footer h3, .site-footer h4 { color: var(--c-ivory); }

.hero h1 em, .about-strip h2 em, .team h2 em, .cta h2 em { color: var(--c-wood-light); }
.hero .eyebrow, .about-strip .eyebrow, .team .eyebrow, .cta .eyebrow,
.site-footer .eyebrow { color: var(--c-wood-light); }
.hero__lead, .about-strip__text p, .cta__inner > p,
.team-card__role { /* role keeps wood-light */ }

/* Explicit dark backgrounds where missing */
.cta {
  background: var(--c-base);
  border-top: 1px solid var(--c-border);
}

/* Buttons — light context default */
.btn--solid { background: var(--c-wood); color: var(--c-white); }
.btn--solid:hover { background: var(--c-wood-dark); color: var(--c-white); }
.btn--ghost { color: var(--c-ink); border-color: rgba(26, 20, 16, 0.25); }
.btn--ghost:hover { border-color: var(--c-wood); color: var(--c-wood); }

/* Buttons inside dark sections */
.site-header .btn--ghost,
.hero .btn--ghost,
.cta .btn--ghost {
  color: var(--c-ivory);
  border-color: rgba(250, 247, 242, 0.3);
}
.site-header .btn--ghost:hover,
.hero .btn--ghost:hover,
.cta .btn--ghost:hover {
  border-color: var(--c-wood-light);
  color: var(--c-wood-light);
}

/* Link-arrow */
.link-arrow { color: var(--c-wood); }
.hero .link-arrow, .about-strip .link-arrow, .team .link-arrow, .cta .link-arrow,
.site-footer .link-arrow { color: var(--c-wood-light); }

/* Page hero — transparent so lava-bg shows through */
.page-hero {
  background: transparent;
  border-bottom: 1px solid var(--c-border);
}
.page-hero h1 { color: var(--c-ink); }
.page-hero .lead { color: var(--c-ink-dim); }
.page-hero h1 em { color: var(--c-wood); }
.page-hero .eyebrow { color: var(--c-wood); }
.page-hero::after { display: none; } /* remove the gold radial */

/* Featured services — transparent (lava bg shows through), cards have their own bg */
.featured-services { background: transparent; }
.services-grid {
  background: rgba(26, 20, 16, 0.08);
  border: 1px solid rgba(26, 20, 16, 0.08);
}
.service-card { background: var(--c-white-soft); }
.service-card:hover { background: var(--c-white); }
.service-card h3 { color: var(--c-ink); }
.service-card p { color: var(--c-ink-dim); font-size: 16px; }
.service-card__num { color: var(--c-wood); }
.service-card__price { color: var(--c-wood); border-top-color: var(--c-wood); }

/* Gallery — transparent so lava shows through */
.gallery { background: transparent; border-top: 1px solid var(--c-border); }
.gallery-item { background: var(--c-white-soft); }
.gallery-item img { filter: none; }

/* Testimonial — transparent so lava shows through */
.testimonial { background: transparent; }
.testimonial blockquote { color: var(--c-ink); }
.testimonial::before { color: var(--c-wood); opacity: 0.1; }
.testimonial cite { color: var(--c-wood); }
.rating-stars { color: var(--c-wood) !important; }

/* Services list page — transparent */
.services-list { background: transparent; }
.services-list__group h2 { color: var(--c-ink); border-bottom-color: var(--c-wood); }
.price-list li { border-bottom-color: rgba(26, 20, 16, 0.1); }
.price-list__name { color: var(--c-ink); }
.price-list__name small { color: var(--c-ink-mute) !important; }
.price-list__dots { border-bottom-color: rgba(26, 20, 16, 0.18); }
.price-list__price { color: var(--c-wood); }

.amenities { background: transparent; border-top-color: var(--c-border) !important; }
.amenities li strong { color: var(--c-wood) !important; }
.amenities li span { color: var(--c-ink-dim) !important; }

/* Contact page — light */
.contact__info h3 { color: var(--c-wood); }
.contact__info p { color: var(--c-ink-dim); }
.contact__info a { color: var(--c-ink); }
.contact__info a:hover { color: var(--c-wood); }
.contact__form { background: var(--c-white-soft); border-color: var(--c-border-wood); }
.contact__form::before { border-color: rgba(139, 90, 43, 0.15); }
.contact__form input,
.contact__form select,
.contact__form textarea {
  color: var(--c-ink);
  border-bottom-color: rgba(26, 20, 16, 0.2);
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus { border-bottom-color: var(--c-wood); }
.contact__form input::placeholder, .contact__form textarea::placeholder { color: var(--c-ink-mute); }
.contact__form .eyebrow { color: var(--c-wood); }
.contact__form label { color: var(--c-ink-mute); }
.contact__form .form-note { color: var(--c-ink-mute); }
.contact__form select option { background: var(--c-white); color: var(--c-ink); }

/* Players page — transparent (lava shows behind, FUT cards stand out) */
.players { background: transparent; }
.player-card__fullname { color: var(--c-ink); }
.player-card__role { color: var(--c-wood); }

/* Site-header — keep dark "hat" on white page */
.site-header {
  background: rgba(14, 12, 10, 0.92);
  border-bottom-color: rgba(250, 247, 242, 0.06);
}
.brand__name { color: var(--c-ivory); }
.brand__mark { border-color: var(--c-wood-light); color: var(--c-wood-light); }
.primary-nav__list a { color: var(--c-ivory); }
.primary-nav__list a:hover { color: var(--c-wood-light); }
.primary-nav__list a::after { background: var(--c-wood-light); }

/* About strip — keep its own dark surface bg */
.about-strip { background: var(--c-base); }
.about-strip__text p { color: var(--c-ivory-dim); }
.about-strip__img { border-color: var(--c-border-wood); }
.about-strip__img::before { border-color: rgba(201, 154, 106, 0.35); }

/* Team — keep dark surface */
.team { background: var(--c-base); border-top: 0; border-bottom: 0; }
.team-card__img { border-color: var(--c-border-wood); }

/* Site footer */
.site-footer { background: #050505; border-top-color: var(--c-wood-dark); }
.site-footer__brand .brand__name { color: var(--c-ivory); }
.site-footer__brand .brand__name em { color: var(--c-wood-light); }
.site-footer h4 { color: var(--c-wood-light); }
.site-footer p { color: rgba(250, 247, 242, 0.55); }
.site-footer a { color: rgba(250, 247, 242, 0.7); }
.site-footer a:hover { color: var(--c-wood-light); }
.site-footer__bottom { color: rgba(250, 247, 242, 0.4); border-top-color: rgba(250, 247, 242, 0.08); }

/* Bump some specific type sizes */
.hero__lead { font-size: clamp(1.15rem, 1.5vw, 1.4rem); }
.testimonial blockquote { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }

/* ============================================================
   ENTRY ANIMATIONS — hero text + trust strip + sections
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* Hero text stagger */
.hero__inner > * {
  opacity: 0;
  animation: fadeUp 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero__inner > .eyebrow      { animation-delay: 0.15s; }
.hero__inner > .hero__title  { animation-delay: 0.30s; }
.hero__inner > .hero__lead   { animation-delay: 0.55s; }
.hero__inner > .hero__actions{ animation-delay: 0.75s; }

/* Hero photo bg gentle zoom-in (Ken Burns lite) */
.hero--with-photo .hero__bg {
  animation: heroBgZoom 18s ease-in-out infinite alternate;
}
@keyframes heroBgZoom {
  0%   { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-12px); }
}

/* Trust strip items stagger */
.trust-strip__item {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.trust-strip__item:nth-child(1) { animation-delay: 0.9s; }
.trust-strip__item:nth-child(2) { animation-delay: 1.0s; }
.trust-strip__item:nth-child(3) { animation-delay: 1.1s; }
.trust-strip__item:nth-child(4) { animation-delay: 1.2s; }
.trust-strip__stars {
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 1.3s;
  opacity: 0;
}

/* Service cards stagger (additional to hover) */
.services-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 20, 16, 0.12);
}
.services-grid .service-card {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s, background 0.4s;
}

/* Gallery items animated entry pulse */
.gallery-item {
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.4s ease;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 12px 32px rgba(26, 20, 16, 0.15); }

/* Player card extra: gentle floating animation on idle */
.players__grid .player-card:nth-child(1) .player-card__frame { animation: floatA 6s ease-in-out infinite; }
.players__grid .player-card:nth-child(2) .player-card__frame { animation: floatB 6.5s ease-in-out infinite; }
.players__grid .player-card:nth-child(3) .player-card__frame { animation: floatA 7s ease-in-out infinite; }
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.players__grid .player-card:hover .player-card__frame {
  animation: none;
  transform: translateY(-10px) rotate(-1deg);
}

/* Trust strip number hover micro-interaction */
.trust-strip__item { transition: transform 0.3s ease; }
.trust-strip__item:hover { transform: translateY(-3px); }
.trust-strip__num,
.trust-strip__stars {
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.trust-strip__item:hover .trust-strip__num,
.trust-strip__item:hover .trust-strip__stars { transform: scale(1.06); }

/* Section heads — fade up via observer (rely on .is-revealed class added by JS) */
.section-head {
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.section-head:not(.is-revealed) {
  opacity: 0;
  transform: translateY(24px);
}

/* Buttons press feedback */
.btn { transition: all 0.3s ease, transform 0.12s ease; }
.btn:active { transform: translateY(1px) scale(0.98); }

/* ============================================================
   PAGE LOADER — fullscreen on initial load with rotating phrase
   ============================================================ */
.esta-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0e0c0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.esta-loader::before,
.esta-loader::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.esta-loader::before {
  width: 50vmax; height: 50vmax;
  top: -10vmax; left: -10vmax;
  background: radial-gradient(circle, rgba(201, 150, 106, 0.25), transparent 70%);
  animation: lavaMove1 18s ease-in-out infinite alternate;
}
.esta-loader::after {
  width: 45vmax; height: 45vmax;
  bottom: -10vmax; right: -10vmax;
  background: radial-gradient(circle, rgba(139, 90, 43, 0.18), transparent 70%);
  animation: lavaMove2 22s ease-in-out infinite alternate;
}
.esta-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.esta-loader__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 0 24px;
  text-align: center;
}
.esta-loader__mark {
  position: relative;
  width: 80px; height: 80px;
  display: grid;
  place-items: center;
  color: #c9966a;
}
.esta-loader__mark-letter {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #c9966a;
  animation: loaderPulse 1.6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.esta-loader__mark-ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: loaderRing 2.2s linear infinite;
  transform-origin: center;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 0 rgba(201, 150, 106, 0); }
  50%      { transform: scale(1.08); text-shadow: 0 0 24px rgba(201, 150, 106, 0.5); }
}
@keyframes loaderRing {
  0%   { stroke-dashoffset: 226; transform: rotate(-90deg); }
  50%  { stroke-dashoffset: 60; transform: rotate(90deg); }
  100% { stroke-dashoffset: 226; transform: rotate(270deg); }
}

.esta-loader__phrase {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  text-transform: uppercase;
  color: #faf7f2;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0;
  max-width: 14ch;
  opacity: 0;
  animation: loaderPhraseIn 0.8s 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes loaderPhraseIn {
  from { opacity: 0; transform: translateY(12px); letter-spacing: 0.12em; }
  to   { opacity: 1; transform: translateY(0); letter-spacing: 0.04em; }
}
.esta-loader__bar {
  width: 180px;
  height: 1px;
  background: rgba(250, 247, 242, 0.12);
  overflow: hidden;
  position: relative;
}
.esta-loader__bar span {
  position: absolute;
  top: 0; left: -40%;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, #c9966a, transparent);
  animation: loaderBar 1.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes loaderBar {
  0%   { left: -40%; }
  100% { left: 100%; }
}

/* ============================================================
   MARQUEE — scrolling text strip between sections
   ============================================================ */
.marquee {
  background: var(--c-base);
  border-top: 1px solid var(--c-wood-dark);
  border-bottom: 1px solid var(--c-wood-dark);
  overflow: hidden;
  padding: 28px 0;
  color: var(--c-white);
  --c-base: #0e0c0a;
  --c-ivory: #faf7f2;
}
.marquee__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-white);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee__item::after {
  content: '✦';
  color: var(--c-wood-light);
  font-size: 0.7em;
  display: inline-block;
}
.marquee__item--accent { color: var(--c-wood-light); }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   CTA SHIMMER — periodic light sweep on primary buttons
   ============================================================ */
.btn--solid,
.btn--reservar {
  position: relative;
  overflow: hidden;
}
.btn--solid::after,
.btn--reservar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  animation: btnShimmer 4.5s ease-in-out infinite;
  animation-delay: 1s;
  pointer-events: none;
}
@keyframes btnShimmer {
  0%   { left: -100%; }
  35%  { left: 200%; }
  100% { left: 200%; }
}

/* Eyebrow accent — wood dot before text, animated */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  transform-origin: left;
  animation: eyebrowDash 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  opacity: 0;
}
@keyframes eyebrowDash {
  0%   { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}

/* Number micro-pulse on featured service-card num */
.service-card__num {
  position: relative;
  display: inline-block;
}
.service-card:hover .service-card__num {
  animation: numPulse 0.6s ease;
}
@keyframes numPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); color: var(--c-wood-dark); }
  100% { transform: scale(1); }
}

/* Accessibility — respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .lava-bg__blob,
  .esta-loader::before,
  .esta-loader::after,
  .esta-loader__mark-letter,
  .esta-loader__mark-ring,
  .esta-loader__bar span,
  .marquee__track,
  .btn--solid::after,
  .btn--reservar::after,
  .eyebrow::before { animation: none; }

  .hero__inner > *,
  .trust-strip__item,
  .trust-strip__stars,
  .players__grid .player-card__frame { animation: none; opacity: 1; transform: none; }

  .hero--with-photo .hero__bg { animation: none; }
  .eyebrow::before { opacity: 1; transform: scaleX(1); }
  .esta-loader__phrase { opacity: 1; transform: none; }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============================================================
   LAVA BACKGROUND — animated organic blobs behind white sections
   ============================================================ */
.lava-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: var(--c-white);
}
.lava-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.lava-bg__blob--1 {
  width: 55vmax; height: 55vmax;
  background: radial-gradient(circle, rgba(201, 150, 106, 0.22), transparent 70%);
  top: -15vmax; left: -10vmax;
  animation: lavaMove1 26s ease-in-out infinite alternate;
}
.lava-bg__blob--2 {
  width: 45vmax; height: 45vmax;
  background: radial-gradient(circle, rgba(245, 230, 200, 0.55), transparent 70%);
  top: 35vh; right: -15vmax;
  animation: lavaMove2 32s ease-in-out infinite alternate;
}
.lava-bg__blob--3 {
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle, rgba(230, 215, 185, 0.4), transparent 70%);
  bottom: -20vmax; left: 25vw;
  animation: lavaMove3 38s ease-in-out infinite alternate;
}
.lava-bg__blob--4 {
  width: 40vmax; height: 40vmax;
  background: radial-gradient(circle, rgba(212, 175, 130, 0.28), transparent 70%);
  top: 60vh; left: -10vmax;
  animation: lavaMove4 42s ease-in-out infinite alternate;
}
@keyframes lavaMove1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(20vw, 15vh) scale(1.15); }
  66%  { transform: translate(-10vw, 30vh) scale(0.9); }
  100% { transform: translate(15vw, -10vh) scale(1.05); }
}
@keyframes lavaMove2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-25vw, 20vh) scale(0.85); }
  66%  { transform: translate(-10vw, -15vh) scale(1.2); }
  100% { transform: translate(-30vw, 10vh) scale(1); }
}
@keyframes lavaMove3 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-15vw, -25vh) scale(1.1); }
  66%  { transform: translate(20vw, -15vh) scale(0.95); }
  100% { transform: translate(5vw, -30vh) scale(1.15); }
}
@keyframes lavaMove4 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30vw, -20vh) scale(1.2); }
  66%  { transform: translate(40vw, 10vh) scale(0.8); }
  100% { transform: translate(20vw, 25vh) scale(1.1); }
}

/* ============================================================
   URBAN TYPE OVERRIDES — Bebas Neue + Archivo
   ============================================================ */

/* Brand: uppercase + lighter letter-spacing for Bebas Neue */
.brand__name {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 22px;
  font-weight: 400;
}
.brand__mark {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: normal;
}

/* Hero — extra-bold poster vibe */
.hero__title {
  letter-spacing: -0.005em;
  line-height: 0.92;
}

/* Player card text — keep readable in Bebas */
.player-card__fullname { letter-spacing: 0.04em; }
.player-card__name-text { letter-spacing: 0.08em; }
.player-card__rating-num { letter-spacing: -0.02em; line-height: 0.85; }

/* Trust strip numbers heavier */
.trust-strip__num { letter-spacing: -0.005em; line-height: 0.9; }

/* Eyebrows: Archivo bolder for punchier vibe */
.eyebrow {
  font-family: var(--ff-accent);
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* Buttons: heavier weight, tighter tracking for urban */
.btn {
  font-family: var(--ff-accent);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.btn--reservar {
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* Testimonial quote: keep a HUMAN voice — Inter italic, not Bebas */
.testimonial blockquote {
  font-family: var(--ff-sans);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.005em;
  text-transform: none;
}
.testimonial cite {
  font-family: var(--ff-accent);
  font-weight: 600;
}

/* Section CTAs (link-arrow) — heavier */
.link-arrow {
  font-family: var(--ff-accent);
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* Service card meta tighter + heavier */
.service-card__num {
  font-family: var(--ff-display);
  font-style: normal;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.service-card__price {
  font-family: var(--ff-accent);
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* Sharper card top border accent for urban feel */
.service-card {
  border-top: 3px solid var(--c-wood);
}

/* Trust strip stronger */
.trust-strip__label {
  font-family: var(--ff-accent);
  font-weight: 600;
}

/* Page hero / regular page H1 — slight tightening */
.page-hero h1 { letter-spacing: 0.005em; }

/* Nav links: keep sans, urban tight tracking */
.primary-nav__list a {
  font-family: var(--ff-accent);
  font-weight: 600;
  letter-spacing: 0.16em;
}

/* Brand loc subtitle (Ourense) — Archivo medium weight */
.brand__loc {
  font-family: var(--ff-accent);
  font-weight: 600;
}

/* ============================================================
   TRUST STRIP — social proof bar right below the hero
   ============================================================ */
.trust-strip {
  background: rgba(250, 247, 242, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: clamp(28px, 5vw, 48px) 0;
}
.trust-strip__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.trust-strip__item + .trust-strip__item::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  width: 1px;
  height: 32px;
  background: rgba(26, 20, 16, 0.12);
  transform: translateY(-50%);
}
.trust-strip__stars {
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--c-wood);
  line-height: 1;
}
.trust-strip__num {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--c-wood);
  line-height: 1;
}
.trust-strip__label {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  font-weight: 500;
}
@media (max-width: 760px) {
  .trust-strip__list { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .trust-strip__item + .trust-strip__item::before { display: none; }
  .trust-strip__item:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: -8px; top: 50%;
    width: 1px; height: 32px;
    background: rgba(26, 20, 16, 0.12);
    transform: translateY(-50%);
  }
}

/* ============================================================
   TESTIMONIAL — rating + quote (centered, refactored)
   ============================================================ */
.testimonial__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.testimonial__stars {
  font-size: 28px;
  letter-spacing: 0.28em;
  color: var(--c-wood);
  line-height: 1;
}
.testimonial__rating {
  font-family: var(--ff-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-wood);
  margin: 0;
  font-weight: 600;
}
