:root {
  color-scheme: dark;
  --bg: #000;
  --panel: #1f1f1f;
  --panel-2: #2b2b2b;
  --dark: #202020;
  --text: #f1f1f1;
  --muted: #c9c9c9;
  --soft: #ececec;
  --yellow: #ffe665;
  --yellow-2: #ffe97c;
  --yellow-3: #fcdf3b;
  --line: rgba(255, 230, 101, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(135deg, rgba(255, 230, 101, 0.08), transparent 26rem),
    radial-gradient(circle at 90% 8%, rgba(252, 223, 59, 0.12), transparent 23rem),
    var(--bg);
  color: var(--text);
  font-family: Mazzard, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "× ○ × ○ × ○ × ○ × ○";
  position: fixed;
  inset: 92px -12vw auto auto;
  z-index: -1;
  width: 70vw;
  color: rgba(255, 230, 101, 0.08);
  font-family: "TT Squares", Mazzard, monospace;
  font-size: clamp(42px, 6vw, 110px);
  font-weight: 900;
  letter-spacing: 18px;
  line-height: 1.35;
  word-spacing: 18px;
  transform: rotate(-12deg);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(255, 230, 101, 0.32);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "TT Squares", Mazzard, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 28px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--yellow);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(4, minmax(34px, 1fr));
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 230, 101, 0.06);
}

.language-switch button {
  min-width: 34px;
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.language-switch button[aria-pressed="true"] {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 0 22px rgba(255, 230, 101, 0.28);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 230, 101, 0.08);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 156px clamp(20px, 5vw, 72px) 40px;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.76) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.12) 58%),
    linear-gradient(135deg, rgba(255, 230, 101, 0.22), rgba(31, 31, 31, 0.18)),
    url("assets/barcelona-club-photo.png") center right / cover no-repeat;
  filter: saturate(0.98) contrast(1.14) brightness(0.86);
  transform: scale(1.02);
}

.hero-media::after {
  content: "";
  background-image:
    radial-gradient(circle at 18px 18px, rgba(255, 230, 101, 0.24) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(255, 230, 101, 0.08) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 70%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Impact, "Arial Black", Druk, Mazzard, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(54px, 10vw, 112px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.1;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #e8e8e8;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.contact-links,
.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.contact-links a,
.app-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 18px 36px rgba(255, 230, 101, 0.22);
}

.button.ghost,
.contact-links a,
.app-badges span {
  border: 1px solid var(--line);
  background: rgba(255, 230, 101, 0.08);
}

.contact-links a[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin-top: 66px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-stats div {
  min-height: 104px;
  padding: 20px;
  background: rgba(31, 31, 31, 0.86);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--yellow);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.hero-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.section-head {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

.pricing-tables,
.equipment-summary,
.keyword-grid,
.offer-row {
  display: grid;
  gap: 18px;
}

.pricing-tables {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-table,
.equipment-summary article,
.keyword-grid article,
.offer-row article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 230, 101, 0.08), transparent 48%),
    linear-gradient(145deg, rgba(43, 43, 43, 0.98), rgba(31, 31, 31, 0.98));
  box-shadow: var(--shadow);
}

.price-table.featured,
.featured-offer {
  border-color: rgba(255, 230, 101, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 230, 101, 0.18), transparent 55%),
    var(--panel);
}

.price-table-head,
.equipment-summary {
  align-items: stretch;
}

.price-table-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.price-table-head span,
.equipment-summary span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-table-head strong {
  color: var(--yellow);
  font-size: 22px;
  font-weight: 900;
}

.price-table table,
.equipment-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td,
.equipment-table th,
.equipment-table td {
  padding: 15px 12px;
  border-bottom: 1px solid rgba(255, 230, 101, 0.18);
  text-align: left;
  vertical-align: top;
}

.price-table thead th,
.equipment-table thead th {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.price-table tbody th,
.equipment-table tbody th {
  color: var(--muted);
  font-weight: 700;
}

.price-table td {
  color: var(--yellow);
  font-family: "TT Squares", Mazzard, monospace;
  font-size: 24px;
  font-weight: 900;
}

.price-table small {
  color: var(--yellow-2);
  font-size: 11px;
}

.night-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 230, 101, 0.38);
  border-radius: 12px;
  background: rgba(255, 230, 101, 0.08);
}

.night-prices strong {
  color: var(--yellow);
  font-size: 24px;
  text-transform: uppercase;
}

.night-prices span {
  color: #e9edf5;
}

.arena {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #111;
}

.arena-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.arena-visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #dfe5ef;
}

.check-list li::before {
  content: "×";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.seo-focus {
  background:
    linear-gradient(135deg, rgba(255, 230, 101, 0.1), transparent 32%),
    #000;
}

.seo-focus .section-head p:last-child {
  max-width: 920px;
}

.keyword-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.keyword-grid article {
  min-height: 220px;
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.keyword-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 230, 101, 0.36);
  border-radius: 8px;
  background: rgba(255, 230, 101, 0.1);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  text-transform: lowercase;
}

.equipment-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.equipment-summary strong {
  display: block;
  margin: 6px 0 8px;
  color: var(--yellow);
  font-family: "TT Squares", Mazzard, monospace;
  font-size: 32px;
  line-height: 1;
}

.equipment-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(31, 31, 31, 0.9);
  box-shadow: var(--shadow);
}

.equipment-table {
  min-width: 760px;
}

.equipment-table th,
.equipment-table td {
  padding: 18px;
}

.equipment-table td {
  color: #f1f4fa;
  font-size: 18px;
}

.equipment-summary p,
.offer-row p,
.arena-copy p,
.seo-focus p,
.mobile-app p,
.contact p {
  color: var(--muted);
}

.offers {
  background:
    linear-gradient(135deg, rgba(255, 230, 101, 0.1), transparent 34%),
    #080808;
}

.offer-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mobile-app {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(26px, 6vw, 88px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 230, 101, 0.18), transparent 22rem),
    var(--panel);
}

.mobile-app::before {
  content: "× ○ × ○ × ○";
  position: absolute;
  right: 4vw;
  bottom: 24px;
  color: rgba(255, 230, 101, 0.11);
  font-family: "TT Squares", Mazzard, monospace;
  font-size: clamp(46px, 8vw, 130px);
  font-weight: 900;
  letter-spacing: 14px;
  pointer-events: none;
}

.app-copy {
  position: relative;
  z-index: 1;
}

.app-badges span {
  flex-direction: column;
  align-items: flex-start;
  min-width: 164px;
  min-height: 58px;
  padding: 8px 18px;
  line-height: 1.1;
}

.app-badges small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: none;
}

.phone-mockup {
  position: relative;
  z-index: 1;
  width: min(320px, 100%);
  justify-self: center;
  padding: 14px;
  border: 1px solid rgba(255, 230, 101, 0.34);
  border-radius: 34px;
  background: #050505;
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 560px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 230, 101, 0.16), transparent 38%),
    #101010;
}

.phone-logo {
  color: var(--yellow);
  font-family: "TT Squares", Mazzard, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.phone-screen strong {
  margin-top: 42px;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.phone-balance,
.phone-pill {
  border-radius: 12px;
  background: var(--yellow);
  color: #000;
  font-weight: 900;
}

.phone-balance {
  padding: 18px;
  font-family: "TT Squares", Mazzard, monospace;
  font-size: 24px;
}

.phone-line {
  height: 8px;
  width: 72%;
  margin: 18px 0;
  border-radius: 99px;
  background: rgba(255, 230, 101, 0.22);
}

.phone-pill {
  padding: 14px 16px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: stretch;
}

.terms-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.terms-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--yellow);
  flex: 0 0 auto;
}

.terms-consent a,
.footer-legal a,
.footer-legal button {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #111827;
  box-shadow: var(--shadow);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.45) contrast(1.08);
}

.map-consent {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 230, 101, 0.12), transparent),
    #111;
}

.map-consent p {
  max-width: 420px;
  margin: 0 auto;
  color: var(--muted);
}

.map-consent .button {
  justify-self: center;
  border: 0;
  cursor: pointer;
}

.map-overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(12px);
}

.map-overlay span,
.map-overlay strong {
  position: relative;
  display: block;
}

.map-overlay span {
  color: var(--muted);
  text-transform: uppercase;
}

.map-overlay strong {
  font-family: Impact, "Arial Black", Druk, Mazzard, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050505;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-legal button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.legal-section {
  background:
    linear-gradient(135deg, rgba(255, 230, 101, 0.08), transparent 30%),
    #080808;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(31, 31, 31, 0.92);
  box-shadow: var(--shadow);
}

.legal-grid article:target {
  border-color: rgba(255, 230, 101, 0.82);
}

.legal-grid p {
  color: var(--muted);
  font-size: 15px;
}

.legal-grid strong {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  gap: 16px;
  width: min(620px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(255, 230, 101, 0.58);
  border-radius: 12px;
  background: rgba(5, 5, 5, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden],
.cookie-panel[hidden],
.map-consent[hidden],
.map-card iframe[hidden] {
  display: none;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 20px;
  text-transform: uppercase;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .button {
  border: 1px solid var(--line);
  cursor: pointer;
}

.cookie-panel {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cookie-panel label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(255, 230, 101, 0.16);
  border-radius: 8px;
  background: rgba(255, 230, 101, 0.06);
}

.cookie-panel input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--yellow);
  flex: 0 0 auto;
}

.cookie-panel span {
  color: var(--text);
  font-weight: 800;
}

.cookie-panel small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 12px;
    font-size: 12px;
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .header-actions {
    gap: 10px;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .pricing-tables,
  .arena,
  .keyword-grid,
  .equipment-summary,
  .offer-row,
  .mobile-app,
  .contact,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    width: min(280px, 100%);
  }

  .phone-screen {
    min-height: 460px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch {
    grid-template-columns: repeat(2, minmax(31px, 1fr));
  }

  .language-switch button {
    min-width: 31px;
    min-height: 27px;
    padding: 0 6px;
    font-size: 11px;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 96vh;
    padding: 126px 18px 28px;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0.76) 54%, rgba(0, 0, 0, 0.32) 100%),
      linear-gradient(135deg, rgba(255, 230, 101, 0.2), rgba(31, 31, 31, 0.1)),
      url("assets/barcelona-club-photo.png") 62% center / cover no-repeat;
  }

  h1 {
    font-size: 52px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .section {
    padding: 66px 18px;
  }

  .price-table,
  .equipment-summary article,
  .keyword-grid article,
  .offer-row article {
    min-height: 0;
    padding: 24px;
  }

  .price-table {
    overflow-x: auto;
  }

  .price-table table {
    min-width: 520px;
  }

  .night-prices {
    align-items: flex-start;
    flex-direction: column;
  }

  .phone-screen {
    min-height: 420px;
  }

  .map-card {
    min-height: 280px;
  }
}
