/* =========================================================
   PICOTEO — Shared stylesheet
========================================================= */
:root {
  --cream: #faf3e3;
  --cream-2: #f3e9cf;
  --cream-3: #ebdfc0;
  --paper: #fdf8ec;
  --ink: #221410;
  --ink-2: #4b3626;
  --muted: #8a7558;
  --terra: #c0442c;
  --terra-dark: #8a2e1a;
  --gold: #e3a920;
  --gold-dark: #a87312;
  --olive: #6c7a3a;
  --olive-dark: #495227;
  --magenta: #d43a76;
  --lime: #7fb53f;
  --orange: #ea6a1d;
  --pink: #e5478c;
  --line: rgba(34, 20, 16, 0.14);
  --line-soft: rgba(34, 20, 16, 0.08);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream-2);
}
::-webkit-scrollbar-thumb {
  background: var(--terra);
  border-radius: 4px;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ======================================
   NAV
====================================== */
nav.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 78px;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.35s,
    backdrop-filter 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}
nav.site-nav.scrolled {
  background: rgba(253, 248, 236, 0.95);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 4px 24px rgba(34, 20, 16, 0.06);
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
}
.nav-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: height 0.3s;
}
nav.site-nav.scrolled .nav-logo {
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.3rem;
  list-style: none;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover {
  color: var(--terra);
}
.nav-links a.active {
  color: var(--terra);
  font-weight: 600;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--terra);
}

.btn-nav {
  background: var(--terra);
  color: var(--paper);
  padding: 0.7rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  border-radius: 2px;
}
.btn-nav:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

/* ======================================
   PAGE HERO (sub-pages)
====================================== */
.page-hero {
  position: relative;
  min-height: 60vh;
  padding: 160px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero.dark {
  color: var(--cream);
}
.page-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 20, 16, 0.35) 0%,
    rgba(34, 20, 16, 0.7) 100%
  );
}
.page-hero-img.light::after {
  background: linear-gradient(
    180deg,
    rgba(250, 243, 227, 0.85) 0%,
    rgba(250, 243, 227, 0.95) 100%
  );
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}
.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.15s forwards;
}
.page-hero-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.page-hero.light .page-hero-kicker {
  color: var(--terra);
}
.page-hero.light .page-hero-kicker::before {
  background: var(--terra);
}

.page-hero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}
.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}
.page-hero.light .page-hero-title em {
  color: var(--terra);
}
.page-hero-title .script {
  font-family: "Caveat", cursive;
  font-style: normal;
  color: var(--gold);
  font-size: 0.75em;
  display: inline-block;
  transform: rotate(-3deg);
  margin-right: 0.2em;
}

.page-hero-sub {
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.page-hero.dark .page-hero-sub {
  color: rgba(250, 243, 227, 0.85);
}
.page-hero.light .page-hero-sub {
  color: var(--ink-2);
}

.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.75;
}
.page-hero.dark .breadcrumb {
  color: var(--cream);
}
.page-hero.light .breadcrumb {
  color: var(--muted);
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.page-hero.light .breadcrumb a:hover {
  color: var(--terra);
}

/* ======================================
   SHARED
====================================== */
.section {
  padding: 6rem 0;
  position: relative;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terra);
}

.heading {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--ink);
}
.heading em {
  font-style: italic;
  color: var(--terra);
}
.heading .script {
  font-family: "Caveat", cursive;
  font-style: normal;
  color: var(--gold);
  transform: rotate(-3deg);
  display: inline-block;
}

.lead {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 560px;
}

.btn-primary {
  background: var(--terra);
  color: var(--paper);
  padding: 1rem 2.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(192, 68, 44, 0.22);
}
/* ===== HOME ONLY ===== */
.drinks-wrap {
  background: var(--cream);
  padding: 5rem 0;
}

.cktl-band {
  background: var(--paper);
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--line-soft);
  position: relative;
}
.cktl-band-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-soft);
}
.cktl-band-title {
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  color: var(--ink);
  font-style: italic;
}
.cktl-band-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: "DM Serif Display", serif;
}
.cktl-band-price .big {
  font-size: 3rem;
  color: var(--terra);
  line-height: 1;
}
.cktl-band-price .sm {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.cktl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2.5rem;
}
.cktl {
  padding: 1.1rem 0;
  border-bottom: 1px dashed var(--line-soft);
}
.cktl-name {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-style: italic;
}
.cktl-ing {
  font-size: 0.78rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.drinks-cols {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.drinks-box {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 2.2rem;
}
.box-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 0.3rem;
}
.box-sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.4rem;
  font-weight: 600;
}

.drink-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line-soft);
  gap: 1rem;
}
.drink-line:last-child {
  border-bottom: 0;
}
.dl-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}
.dl-meta {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: "DM Serif Display", serif;
  font-style: italic;
}
.dl-price {
  font-family: "DM Serif Display", serif;
  font-size: 0.98rem;
  color: var(--terra);
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .cktl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .drinks-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .cktl-grid {
    grid-template-columns: 1fr;
  }
  .cktl-band {
    padding: 2rem 1.5rem;
  }
}

.menu-head-strip {
  background: var(--paper);
  padding: 3rem 0;
  border-bottom: 1px solid var(--line-soft);
}
/* ── Sport Hero ── */
.sport-hero {
  min-height: 85vh;
}
.sport-hero .page-hero-img::after {
  background: linear-gradient(
    180deg,
    rgba(34, 20, 16, 0.55) 0%,
    rgba(34, 20, 16, 0.85) 100%
  );
}
.sport-hero .sport-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.4rem;
  border-radius: 2px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

/* ── Intro ── */
.sport-intro {
  background: var(--cream);
  padding: 6rem 0;
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-img {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-img::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  left: 20px;
  bottom: 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.streamers {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  align-items: center;
}
.streamer-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.5rem;
}
.streamer {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
}
.streamer + .streamer::before {
  content: " · ";
  color: var(--terra);
  margin-right: 0.6rem;
}

/* ── Live Matches Feed ── */
.matches-section {
  background: var(--paper);
  padding: 5rem 0;
  position: relative;
}
.matches-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--terra) 20%,
    var(--gold) 50%,
    var(--terra) 80%,
    transparent 100%
  );
  opacity: 0.4;
}
.matches-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.matches-head .kicker {
  justify-content: center;
}
.matches-head .kicker::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terra);
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  margin-right: 0.6rem;
  vertical-align: middle;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.6);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 8px rgba(231, 76, 60, 0);
  }
}

.matches-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.matches-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.8rem;
  background: rgba(34, 20, 16, 0.95);
  color: var(--cream);
}
.matches-header-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.matches-header-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  font-style: italic;
}
.matches-header-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--terra);
  color: var(--cream);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}
.matches-header-src {
  font-size: 0.65rem;
  color: rgba(250, 243, 227, 0.5);
  font-family: "Outfit", sans-serif;
}
.matches-header-src a {
  color: rgba(250, 243, 227, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.matches-header-src a:hover {
  color: var(--gold);
}

.match-day-group {
  border-bottom: 1px solid var(--line-soft);
}
.match-day-group:last-child {
  border-bottom: none;
}
.match-day-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.8rem;
  background: rgba(34, 20, 16, 0.04);
  border-bottom: 1px solid var(--line-soft);
}
.match-day-date {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
}
.match-day-count {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: auto;
}

.match-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.85rem 1.8rem;
  border-bottom: 1px solid rgba(34, 20, 16, 0.05);
  transition: all 0.25s;
}
.match-item:last-child {
  border-bottom: none;
}
.match-item:hover {
  background: rgba(192, 68, 44, 0.03);
}

.match-time {
  font-family: "DM Serif Display", serif;
  font-size: 1.05rem;
  color: var(--terra);
  font-style: italic;
  text-align: center;
}
.match-teams {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.match-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.match-channel {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(34, 20, 16, 0.85);
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  border-radius: 2px;
}

.matches-loading,
.matches-empty {
  padding: 3rem 2rem;
  text-align: center;
}
.matches-loading {
  color: var(--muted);
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 1rem;
}
.matches-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--line-soft);
  border-top-color: var(--terra);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.matches-empty-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.matches-empty-title {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.matches-empty-text {
  font-size: 0.82rem;
  color: var(--muted);
}

.matches-footer {
  padding: 1rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-soft);
  background: rgba(34, 20, 16, 0.02);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.matches-footer-note {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
  font-family: "DM Serif Display", serif;
}
.matches-footer-cta {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  text-decoration: none;
  transition: color 0.3s;
}
.matches-footer-cta:hover {
  color: var(--ink);
}

/* ── Activities ── */
.activities-section {
  color: var(--cream);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/cover.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.activities-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(20, 12, 8, 0.82) 0%,
      rgba(30, 20, 12, 0.78) 50%,
      rgba(20, 12, 8, 0.92) 100%
    ),
    radial-gradient(
      ellipse 70% 50% at 50% 50%,
      rgba(72, 82, 39, 0.35) 0%,
      transparent 70%
    );
}
.activities-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
}
.activities-section .container {
  position: relative;
  z-index: 2;
}
.activities-section .activity {
  background: rgba(20, 12, 8, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media (max-width: 900px) {
  .activities-section {
    background-attachment: scroll;
  }
}
.activities-section .kicker {
  color: var(--gold);
}
.activities-section .kicker::before {
  background: var(--gold);
}
.activities-section .heading {
  color: var(--cream);
}
.activities-section .heading em {
  color: var(--gold);
}

.activities-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.activities-head .kicker {
  justify-content: center;
}
.activities-head .kicker::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.activities-head p {
  color: rgba(250, 243, 227, 0.78);
  margin: 1.2rem auto 0;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.activity {
  position: relative;
  background: rgba(250, 243, 227, 0.05);
  border: 1px solid rgba(250, 243, 227, 0.18);
  overflow: hidden;
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  min-height: 340px;
}
.activity:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.act-photo {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.act-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s;
}
.activity:hover .act-photo img {
  transform: scale(1.08);
}
.act-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 20, 16, 0.15) 0%,
    rgba(72, 82, 39, 0.55) 100%
  );
}
.act-body {
  padding: 1.5rem 1.4rem 1.7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.act-name {
  font-family: "DM Serif Display", serif;
  font-size: 1.3rem;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.act-price {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  font-family: "Outfit", sans-serif;
  margin-top: auto;
}
.act-unit {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 243, 227, 0.65);
  margin-top: 0.55rem;
}
.act-info {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: auto;
  line-height: 1.3;
}

.big-booking {
  grid-column: 1 / -1;
  margin-top: 1rem;
  background: var(--gold);
  color: var(--ink);
  border: none;
  text-align: left;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.big-booking:hover {
  background: var(--cream);
  transform: none;
}
.big-booking h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}
.big-booking p {
  font-size: 0.92rem;
  color: var(--ink-2);
  max-width: 560px;
}
.big-booking a {
  background: var(--ink);
  color: var(--cream);
  padding: 0.9rem 1.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  flex-shrink: 0;
}
.big-booking a:hover {
  background: var(--terra);
  color: var(--cream);
}

/* ── Premium Events ── */
.events-section {
  background: var(--cream);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.events-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--terra) 20%,
    var(--gold) 50%,
    var(--terra) 80%,
    transparent 100%
  );
  opacity: 0.4;
}
.events-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.events-head .kicker {
  justify-content: center;
}
.events-head .kicker::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terra);
}
.events-head .lead {
  margin-top: 1.2rem;
  color: var(--ink-2);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.ev-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ev-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(34, 20, 16, 0.25);
  border-color: rgba(192, 68, 44, 0.2);
}
.ev-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.ev-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.ev-card:hover .ev-img img {
  transform: scale(1.08);
}
.ev-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 20, 16, 0.1) 0%,
    rgba(34, 20, 16, 0.5) 70%,
    rgba(34, 20, 16, 0.75) 100%
  );
  transition: opacity 0.4s;
}
.ev-num {
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  font-style: italic;
  line-height: 1;
  color: rgba(250, 243, 227, 0.15);
  z-index: 2;
  transition: all 0.4s;
}
.ev-card:hover .ev-num {
  color: rgba(227, 169, 32, 0.35);
  transform: translateY(-3px);
}

.ev-badge {
  position: absolute;
  bottom: -24px;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terra);
  border: 3px solid var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(192, 68, 44, 0.35);
  transition: all 0.4s;
}
.ev-card:hover .ev-badge {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 28px rgba(192, 68, 44, 0.45);
}

.ev-overlay-text {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  z-index: 2;
}
.ev-overlay-kicker {
  font-family: "Caveat", cursive;
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.9;
}

.ev-body {
  padding: 2rem 1.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ev-kicker {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.7rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.ev-card:hover .ev-kicker {
  opacity: 1;
}

.ev-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.55rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}
.ev-card:hover .ev-title {
  color: var(--terra);
}

.ev-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1rem;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.ev-card:hover .ev-divider {
  width: 80px;
}

.ev-text {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.ev-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}
.ev-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(192, 68, 44, 0.05);
  border: 1px solid rgba(192, 68, 44, 0.12);
  padding: 0.3rem 0.7rem;
  transition: all 0.3s;
}
.ev-card:hover .ev-tag {
  background: rgba(192, 68, 44, 0.1);
  border-color: rgba(192, 68, 44, 0.25);
}

.events-quote {
  margin-top: 4rem;
  text-align: center;
  position: relative;
  padding: 2.5rem 2rem;
}
.events-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.events-quote-text {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--ink);
  max-width: 600px;
  margin: 0 auto 0.8rem;
  line-height: 1.4;
}
.events-quote-attr {
  font-family: "Caveat", cursive;
  font-size: 1.1rem;
  color: var(--terra);
}

/* ── CTA ── */
.sport-cta {
  background: var(--terra);
  color: var(--paper);
  padding: 5rem 0;
  text-align: center;
}
.sport-cta h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--paper);
  margin-bottom: 0.8rem;
  font-style: italic;
}
.sport-cta p {
  color: rgba(253, 248, 236, 0.85);
  max-width: 540px;
  margin: 0 auto 2rem;
}
.sport-cta .ctas {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.sport-cta .btn-sport {
  background: var(--paper);
  color: var(--terra);
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.sport-cta .btn-sport:hover {
  background: var(--ink);
  color: var(--cream);
}
.sport-cta .btn-sport-g {
  color: var(--paper);
  border: 1px solid var(--paper);
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.sport-cta .btn-sport-g:hover {
  background: var(--paper);
  color: var(--terra);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
  .events-grid .ev-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .match-item {
    grid-template-columns: 50px 1fr auto;
    gap: 0.8rem;
    padding: 0.75rem 1.2rem;
  }
}
@media (max-width: 600px) {
  .activity-grid {
    grid-template-columns: 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .events-grid .ev-card:last-child {
    max-width: 100%;
  }
  .ev-img {
    height: 200px;
  }
  .intro-img {
    height: 340px;
  }
  .match-item {
    grid-template-columns: 45px 1fr;
    gap: 0.6rem;
  }
  .match-channel {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .matches-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.menu-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav::-webkit-scrollbar {
  display: none;
}
.menu-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.menu-nav a:hover {
  color: var(--ink);
}
.menu-nav a.active {
  color: var(--terra);
  border-bottom-color: var(--terra);
  font-weight: 600;
}

.family-box {
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream) 100%);
  border: 1px solid var(--terra);
  padding: 2.4rem;
  margin-top: 2.5rem;
  position: relative;
  border-radius: 2px;
}
.family-box::before {
  content: "Para Compartir";
  position: absolute;
  top: -12px;
  left: 2.4rem;
  background: var(--terra);
  color: var(--paper);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
}
.family-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
  font-style: italic;
}
.family-text {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.8;
}

.menu-wrap {
  background: var(--cream);
  padding: 5rem 0;
}
.allergy-note {
  text-align: center;
  font-family: "DM Serif Display", serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.lunch-wrap {
  background: var(--cream);
  padding: 5rem 0;
}

.lunch-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 1.8rem 2.5rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  max-width: 800px;
  margin: 0 auto 4rem;
}
.lunch-info-cell {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}
.lunch-info-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.lunch-info-val {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  color: var(--ink);
  font-style: italic;
}

.days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.day {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 1.7rem 1.4rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.day:hover {
  border-color: var(--terra);
  box-shadow: 0 18px 40px -15px rgba(34, 20, 16, 0.14);
  transform: translateY(-4px);
}
.day-name {
  font-family: "DM Serif Display", serif;
  font-size: 1.45rem;
  color: var(--terra);
  margin-bottom: 0.35rem;
  font-style: italic;
}
.day-divider {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.2rem;
}
.dish {
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px dashed var(--line-soft);
}
.dish:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.dish-cat {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
}
.dish-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.dish-desc {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.extras {
  margin-top: 3rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 2.5rem;
}
.extras-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.extras-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

@media (max-width: 1100px) {
  .days {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .days {
    grid-template-columns: 1fr;
  }
}

/* ── Main layout ── */
.booking-page {
  background: var(--cream);
  padding: 4rem 0 5rem;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

/* ── Left: Booking ── */
.booking-main {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 2rem;
  box-shadow: 0 20px 50px -25px rgba(34, 20, 16, 0.12);
}
.booking-head {
  margin-bottom: 1.5rem;
}
.booking-head h2 {
  margin-bottom: 0.6rem;
}
.booking-copy {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 560px;
}

.booking-frame-wrap {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  padding: 0.8rem;
}
.booking-frame {
  width: 100%;
  height: 700px;
  border: 0;
  display: block;
  background: #fff;
}

.booking-fallback {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.booking-fallback a {
  color: var(--terra);
  text-decoration: none;
}
.booking-fallback a:hover {
  text-decoration: underline;
}

/* ── Right: Info ── */
.booking-side {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 2rem;
}
.side-block + .side-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}
.side-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
}
.side-value {
  font-family: "DM Serif Display", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
}
.side-value a {
  color: var(--ink);
  text-decoration: none;
}
.side-value a:hover {
  color: var(--terra);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 0.88rem;
}
.hours-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.hours-day {
  color: var(--ink-2);
}
.hours-time {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  color: var(--ink);
  white-space: nowrap;
}

.side-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.side-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.95rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.side-btn-primary {
  background: var(--terra);
  color: var(--paper);
}
.side-btn-primary:hover {
  background: var(--terra-dark);
}
.side-btn-ghost {
  border: 1px solid var(--line-soft);
  color: var(--ink);
  background: transparent;
}
.side-btn-ghost:hover {
  border-color: var(--terra);
  color: var(--terra);
  background: var(--cream);
}

.side-note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .booking-main,
  .booking-side {
    padding: 1.4rem;
  }
  .booking-frame {
    height: 640px;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 60% 55% at 88% 12%,
      rgba(227, 169, 32, 0.14) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 70% 60% at 5% 95%,
      rgba(192, 68, 44, 0.08) 0%,
      transparent 60%
    ),
    var(--cream);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 14px;
  background: repeating-linear-gradient(
    45deg,
    var(--terra) 0 10px,
    var(--gold) 10px 20px,
    var(--lime) 20px 30px,
    var(--magenta) 30px 40px,
    var(--orange) 40px 50px,
    var(--cream-2) 50px 60px
  );
  opacity: 0.85;
  z-index: 3;
}

/* Desktop: 4-photo collage */
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 180px);
  position: relative;
  z-index: 2;
}

/* Hero text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.15s forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--terra);
}
.hero-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--terra);
}
.hero-title .script {
  font-family: "Caveat", cursive;
  font-style: normal;
  color: var(--gold);
  font-size: 0.7em;
  display: inline-block;
  transform: rotate(-3deg);
  margin-right: 0.2em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 460px;
  margin-bottom: 2.2rem;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.hero-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.8rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.meta-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-val {
  font-family: "DM Serif Display", serif;
  font-size: 1.05rem;
  color: var(--ink);
}

/* Desktop collage */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
  height: 640px;
}
.hv-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(34, 20, 16, 0.3);
  border: 4px solid var(--paper);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}
.hv-img:hover {
  z-index: 20 !important;
  transform: scale(1.03) rotate(0deg) !important;
  box-shadow: 0 35px 70px -15px rgba(34, 20, 16, 0.45);
}
.hv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hv-1 {
  top: 0;
  left: 12%;
  width: 62%;
  height: 58%;
  transform: rotate(-2deg);
  z-index: 3;
}
.hv-2 {
  top: 38%;
  right: 0;
  width: 50%;
  height: 40%;
  transform: rotate(3deg);
  z-index: 4;
}
.hv-3 {
  top: 40%;
  left: 0;
  width: 38%;
  height: 32%;
  transform: rotate(-4deg);
  z-index: 2;
}
.hv-4 {
  bottom: 0;
  left: 18%;
  width: 35%;
  height: 28%;
  transform: rotate(2.5deg);
  z-index: 5;
}

.hero-stamp {
  position: absolute;
  top: -15px;
  right: -10px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(12deg);
  box-shadow: 0 15px 40px rgba(192, 68, 44, 0.4);
  z-index: 10;
  border: 3px solid var(--paper);
}
.hero-stamp-big {
  font-family: "Caveat", cursive;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
}
.hero-stamp-sm {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Mobile hero video */
.mobile-hero-video {
  display: none;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.mobile-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.mobile-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 8, 0.45);
}
.mobile-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 2rem 80px;
  text-align: center;
}
.mobile-hero-content .hero-eyebrow,
.mobile-hero-content .hero-title,
.mobile-hero-content .hero-sub,
.mobile-hero-content .hero-ctas {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.mobile-hero-content .hero-eyebrow::before {
  background: white;
}
.mobile-hero-content .hero-eyebrow {
  color: white;
}
.mobile-hero-content .hero-title em {
  color: var(--gold);
}
.mobile-hero-content .hero-title .script {
  color: var(--gold);
}
.mobile-hero-content .hero-sub {
  font-size: 1.1rem;
  max-width: 460px;
  margin: 0 auto 2rem;
}
.mobile-hero-content .hero-ctas {
  justify-content: center;
}

/* ── Show video on mobile, hide collage ── */
@media (max-width: 900px) {
  .hero-grid {
    display: none;
  }
  .mobile-hero-video {
    display: block;
  }
}

/* ── Teasers ── */
.teasers {
  background: var(--paper);
  padding: 7rem 0;
}
.teasers-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.teaser {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.teaser:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px -20px rgba(34, 20, 16, 0.25);
}
.teaser-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.teaser:hover .teaser-img img {
  transform: scale(1.06);
}
.teaser-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(34, 20, 16, 0.35));
}
.teaser-body {
  padding: 1.8rem 1.8rem 2rem;
}
.teaser-k {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
}
.teaser-h {
  font-family: "DM Serif Display", serif;
  font-size: 1.7rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.teaser-t {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.teaser-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  transition: gap 0.3s;
}
.teaser:hover .teaser-arrow {
  gap: 1rem;
}

/* ── About ── */
.about {
  position: relative;
  padding: 7rem 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img {
  position: relative;
  height: 560px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--terra);
  z-index: -1;
}
.about-quote {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-style: italic;
  line-height: 1.32;
  color: var(--ink);
  margin-bottom: 1.5rem;
  position: relative;
}
.about-quote::before {
  content: '"';
  position: absolute;
  font-size: 6rem;
  line-height: 1;
  color: var(--terra);
  opacity: 0.3;
  top: -2rem;
  left: -1.5rem;
  font-family: "DM Serif Display", serif;
}
.about-attr {
  font-family: "Caveat", cursive;
  font-size: 1.3rem;
  color: var(--terra);
  margin-bottom: 2rem;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: 2rem;
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 1.5rem 1.4rem;
  transition: all 0.3s;
}
.pillar:hover {
  border-color: var(--terra);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -10px rgba(34, 20, 16, 0.15);
}
.pillar-num {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--terra);
  margin-bottom: 0.5rem;
}
.pillar-title {
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.pillar-body {
  font-size: 0.8rem;
  color: var(--ink-2);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .hero {
    padding: 0;
    min-height: auto;
  }
  .hero::after {
    display: none;
  }
  .hero-grid {
    display: none;
  }
  .mobile-hero-video {
    display: block;
  }
  .mobile-hero-content {
    padding: 280px 2rem 100px;
  }
}
/* ── CTA Band ── */
.cta-band {
  background: var(--olive-dark);
  color: var(--cream);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-band .kicker {
  color: var(--gold);
  justify-content: center;
}
.cta-band .kicker::before {
  background: var(--gold);
}
.cta-band .kicker::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.cta-band h2 {
  color: var(--cream);
}
.cta-band h2 em {
  color: var(--gold);
}
.cta-band .lead {
  color: rgba(250, 243, 227, 0.8);
  margin: 1.5rem auto 2.5rem;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
    height: 520px;
  }
  .teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 780px) {
  .teaser-grid {
    grid-template-columns: 1fr;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .about-img {
    height: 380px;
  }
}

.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(192, 68, 44, 0.32);
}
.btn-ghost {
  background: #ffffff;
  color: #1a1a1a;
  padding: 1rem 2.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #1a1a1a;
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover {
  background: #1a1a1a;
  color: #ffffff;
}
.btn-ghost.onlight {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-ghost.onlight:hover {
  background: #ffffff;
  color: #1a1a1a;
}

.fi {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.fi.on {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}

.tile-rule {
  height: 14px;
  background: repeating-linear-gradient(
    45deg,
    var(--terra) 0 10px,
    var(--gold) 10px 20px,
    var(--lime) 20px 30px,
    var(--magenta) 30px 40px,
    var(--orange) 40px 50px,
    var(--cream-2) 50px 60px
  );
  opacity: 0.85;
}

/* ======================================
   MENU ITEMS (reusable)
====================================== */
.items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3.5rem;
}
.items.single {
  grid-template-columns: 1fr;
}

.item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.05rem 0;
  gap: 1rem;
  border-bottom: 1px dashed var(--line-soft);
  transition: padding 0.22s;
}
.item:hover {
  padding-left: 0.55rem;
}
.item:hover .iname {
  color: var(--terra);
}
.ileft {
  flex: 1;
  min-width: 0;
}
.iname {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.22rem;
  letter-spacing: 0.03em;
  transition: color 0.22s;
}
.idesc {
  font-size: 0.83rem;
  color: var(--ink-2);
  font-family: "DM Serif Display", serif;
  font-style: italic;
  line-height: 1.5;
}
.iprice {
  font-family: "DM Serif Display", serif;
  font-size: 1.05rem;
  color: var(--terra);
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 400;
}
.iprice-add {
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  margin-left: 0.5rem;
  white-space: nowrap;
}

.menu-block {
  margin-bottom: 4.5rem;
}
.menu-block:last-child {
  margin-bottom: 0;
}
.menu-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.menu-block-title {
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1;
}
.menu-block-sp {
  font-family: "Caveat", cursive;
  font-size: 1.35rem;
  color: var(--terra);
}

/* ======================================
   FOOTER
====================================== */
footer.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 2rem;
  position: relative;
}
footer.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    45deg,
    var(--terra) 0 10px,
    var(--gold) 10px 20px,
    var(--lime) 20px 30px,
    var(--magenta) 30px 40px,
    var(--orange) 40px 50px,
    var(--cream-2) 50px 60px
  );
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-logo {
  max-width: 220px;
  margin-bottom: 1rem;
  filter: brightness(1.05);
}
.footer-tag {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(250, 243, 227, 0.65);
  line-height: 1.5;
  max-width: 280px;
}
.footer-sig {
  font-family: "Caveat", cursive;
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 1.2rem;
}

.footer-col-h {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(250, 243, 227, 0.75);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-links li {
  font-size: 0.85rem;
  color: rgba(250, 243, 227, 0.75);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 243, 227, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(250, 243, 227, 0.5);
}
.footer-viva {
  font-family: "Caveat", cursive;
  font-size: 1.3rem;
  color: var(--gold);
}

/* ======================================
   ANIMATIONS & RESPONSIVE
====================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 780px) {
  nav.site-nav {
    padding: 0 1.3rem;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .container,
  .page-hero-inner {
    padding: 0 1.5rem;
  }
  .items {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .section {
    padding: 4.5rem 0;
  }
  .page-hero {
    padding: 130px 0 60px;
    min-height: 50vh;
  }
  .menu-block-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
