:root {
  --ink: #111318;
  --muted: #6c717a;
  --paper: #f7f6f1;
  --panel: #ffffff;
  --line: rgba(17, 19, 24, 0.13);
  --green: #b6ff21;
  --red: #c31924;
  --charcoal: #20242a;
  --shadow: 0 22px 60px rgba(18, 21, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 56px);
  background: rgba(247, 246, 241, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: #ebe8df;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switcher button {
  min-width: 36px;
  min-height: 32px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
}

.language-switcher button.active {
  color: #fff;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 66px);
  padding: clamp(36px, 7vw, 76px) clamp(18px, 6vw, 72px) clamp(44px, 8vw, 92px);
  overflow: hidden;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.hero-lead {
  max-width: 590px;
  color: #3b4047;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  color: #111;
  background: var(--green);
  border-color: var(--green);
}

.button.secondary {
  background: transparent;
}

.button:hover,
.button:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-1px);
}

.hero-media {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  inset: 8% 0 4% 14%;
  z-index: -1;
  background: var(--charcoal);
  border-radius: 34px;
  content: "";
  transform: rotate(-4deg);
}

.hero-media img {
  width: min(100%, 680px);
  height: min(72vh, 720px);
  object-fit: cover;
  object-position: 50% 44%;
  border: 10px solid #111;
  border-radius: 28px;
  box-shadow: var(--shadow);
  filter: saturate(1.07) contrast(1.04);
}

.hero-note {
  position: absolute;
  right: clamp(10px, 5vw, 50px);
  bottom: 28px;
  min-width: 190px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(17, 19, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-note span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
}

.trusted-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 28px;
  padding: 22px clamp(18px, 6vw, 72px);
  color: #fff;
  background: var(--ink);
}

.trusted-strip p,
.trusted-strip ul {
  margin: 0;
}

.trusted-strip p {
  color: #cfd3d8;
  font-weight: 700;
}

.trusted-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.trusted-strip li {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 800;
}

.feature,
.football-section,
.players-section,
.gallery-section,
.contact-section {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 6vw, 72px);
}

.feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
}

.feature-text {
  max-width: 520px;
}

.feature-text p:not(.eyebrow),
.travel-copy p,
.section-heading h2 + p,
.contact-section p {
  color: var(--muted);
}

.padel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  grid-auto-rows: clamp(165px, 18vw, 220px);
  gap: 14px;
}

.media-tile {
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #111;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-tile.tall {
  grid-row: span 2;
  min-height: 0;
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.football-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.football-copy {
  max-width: 610px;
}

.football-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.football-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
}

.football-points span {
  padding: 9px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.button.dark {
  color: #fff;
  background: var(--ink);
}

.football-media {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(160px, 0.7fr);
  gap: 14px;
  align-items: stretch;
}

.football-media img {
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(18, 21, 26, 0.1);
}

.football-main {
  min-height: 430px;
  object-fit: cover;
  object-position: 50% 50%;
}

.football-stack {
  display: grid;
  gap: 14px;
}

.football-stack img {
  min-height: 0;
  object-fit: cover;
}

.football-stack img:first-child {
  object-position: 22% 50%;
}

.travel-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 6vw, 72px);
  color: #fff;
  background: var(--charcoal);
}

.travel-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.travel-image img {
  width: 100%;
  height: clamp(360px, 62vw, 720px);
  object-fit: cover;
  object-position: 47% 54%;
  filter: saturate(1.06) contrast(1.05);
}

.travel-copy {
  max-width: 560px;
}

.travel-copy .eyebrow {
  color: var(--green);
}

.travel-copy p {
  color: #d7dce0;
  font-size: 1.08rem;
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.product-points span {
  padding: 9px 13px;
  color: #111;
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(24px, 4vw, 46px);
}

.section-heading.compact {
  max-width: 720px;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.player-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(18, 21, 26, 0.08);
}

.player-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(1.04) contrast(1.03);
}

.player-card:nth-child(2) img {
  object-position: 52% 42%;
}

.player-card:nth-child(3) img {
  object-position: 50% 35%;
}

.player-card div {
  padding: 18px;
}

.player-card p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 21, 26, 0.09);
}

.gallery img:nth-child(5) {
  object-fit: cover;
  object-position: center;
  background: #111;
}

.gallery img:first-child {
  grid-row: span 2;
  background: #111;
}

 

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  max-width: 780px;
}

.contact-section p {
  max-width: 620px;
}

.contact-link {
  gap: 10px;
  color: #fff;
  background: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 6vw, 72px);
  color: #d5d8dc;
  background: #111318;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .feature,
  .football-section,
  .travel-showcase,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    width: 100%;
    height: min(760px, 96vw);
  }

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

  .football-media {
    grid-template-columns: 1fr;
  }

  .football-main {
    min-height: 330px;
  }

  .football-stack {
    grid-template-columns: 1fr 1fr;
  }

  .player-card {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
  }

  .player-card img {
    height: 100%;
  }

  .contact-link {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    font-size: 0.82rem;
  }

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

  .language-switcher button {
    min-width: 31px;
    min-height: 30px;
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-note {
    right: 14px;
    bottom: 16px;
  }

  .padel-grid,
  .football-stack,
  .gallery {
    grid-template-columns: 1fr;
  }

  .padel-grid {
    grid-auto-rows: clamp(220px, 65vw, 280px);
  }

  .media-tile,
  .media-tile.tall {
    min-height: 0;
  }

  .player-card {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 260px;
  }

  .gallery img:first-child {
    grid-row: span 1;
  }

  .site-footer {
    flex-direction: column;
  }
}
