:root {
  --ink: #101318;
  --muted: #6b7280;
  --paper: #f6f1e8;
  --surface: #ffffff;
  --line: rgba(16, 19, 24, 0.12);
  --red: #c9202f;
  --green: #1f7a51;
  --blue: #1d4f91;
  --gold: #c9982d;
  --charcoal: #181b20;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: transparent;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 1px 8px rgba(0, 0, 0, 0.35);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.header-gradient {
  background: linear-gradient(180deg, rgba(16, 19, 24, 0.82), rgba(16, 19, 24, 0.18));
}

.site-header.header-dark {
  background: rgba(16, 19, 24, 0.92);
}

.site-header.header-green {
  background: rgba(31, 122, 81, 0.92);
}

.site-header.header-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  text-shadow: none;
  box-shadow: 0 1px 0 rgba(16, 19, 24, 0.1);
}

.site-header.header-light .brand-mark {
  border-color: rgba(16, 19, 24, 0.74);
}

.site-header.header-light .header-social,
.site-header.header-light .language-switcher {
  border-color: rgba(16, 19, 24, 0.18);
  background: rgba(255, 255, 255, 0.58);
}

.site-header.header-light .header-social a,
.site-header.header-light .language-switcher button,
.site-header.header-light .language-switcher .lang-link {
  color: rgba(16, 19, 24, 0.72);
}

.site-header.header-light .language-switcher button[aria-pressed="true"],
.site-header.header-light .language-switcher .lang-link.active {
  color: #fff;
  background: var(--ink);
}

/*
 * .header-scrolled/.header-pinned se declaran DESPUES de las variantes de
 * estilo (header-gradient/dark/green/light) a proposito: JS los agrega una
 * vez que se pasa el hero, y como tienen la misma especificidad que esas
 * variantes, necesitan ir ultimas en el archivo para ganarles en el
 * cascade y garantizar contraste (fondo oscuro + texto blanco) sin
 * importar que variante haya elegido el admin.
 */
.site-header.header-scrolled {
  color: #fff;
  background: rgba(16, 19, 24, 0.94);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 1px 8px rgba(0, 0, 0, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-header.header-pinned {
  position: fixed;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  font-family: Arial Black, Impact, system-ui, sans-serif;
}

nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.93rem;
  font-weight: 700;
}

nav a {
  opacity: 0.86;
}

nav a:hover,
nav a:focus-visible {
  opacity: 1;
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(16, 19, 24, 0.18);
}

.header-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-social a:hover,
.header-social a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.header-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 19, 24, 0.26);
}

.language-switcher button,
.language-switcher .lang-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"],
.language-switcher .lang-link.active {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(92vh, 760px);
  color: #fff;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
}

.hero-media::before {
  content: "";
  position: absolute;
  top: 0;
  right: -2%;
  bottom: 0;
  width: var(--hero-img-width, 62%);
  background-image: var(--hero-bg);
  background-position: center 53%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.2) 5%, #000 16%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.2) 5%, #000 16%, #000 100%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.72) 0%, rgba(10, 12, 16, 0.46) 38%, rgba(10, 12, 16, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 12, 16, 0.58), rgba(10, 12, 16, 0.02) 42%);
}

.hero-media img {
  display: none;
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 7vw, 96px);
  top: calc(var(--hero-content-position, 100) * 1%);
  transform: translateY(calc(var(--hero-content-position, 100) * -1%));
  width: min(720px, calc(100% - 36px));
  padding-top: 90px;
  padding-bottom: 110px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 7px;
  vertical-align: -1px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='12' rx='10' ry='6.4' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M4 12h16M12 7.3v9.4M8.6 9.1l1.5 1.5M8.6 14.9l1.5-1.5M15.4 9.1l-1.5 1.5M15.4 14.9l-1.5-1.5' stroke='black' stroke-width='1.3' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='12' rx='10' ry='6.4' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M4 12h16M12 7.3v9.4M8.6 9.1l1.5 1.5M8.6 14.9l1.5-1.5M15.4 9.1l-1.5 1.5M15.4 14.9l-1.5-1.5' stroke='black' stroke-width='1.3' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Arial Black, Impact, system-ui, sans-serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  color: var(--hero-name-fill, transparent);
  font-size: calc(clamp(4.2rem, 11vw, 8.8rem) * var(--hero-name-scale, 1));
  -webkit-text-stroke: var(--hero-name-stroke-width, 3px) var(--hero-name-stroke, rgba(255, 255, 255, 0.95));
  text-stroke: var(--hero-name-stroke-width, 3px) var(--hero-name-stroke, rgba(255, 255, 255, 0.95));
  text-transform: uppercase;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

h3 {
  font-size: 1.2rem;
  line-height: 1.1;
}

.hero-role {
  margin: 18px 0 0;
  color: #f7f2e8;
  font-family: Arial Black, Impact, system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 800;
}

.hero-tagline {
  margin: 10px 0 0;
  color: var(--gold);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 580px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

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

.custom-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  grid-column: 1 / -1;
}

.section > .custom-buttons {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  font-weight: 800;
}

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.hero-actions .button.primary {
  background: #ffcc00;
  border-color: #ffcc00;
  color: var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.09);
}

#btn-hero-download,
#btn-hero-contact,
#btn-form-submit {
  background: var(--btn-bg);
  border-color: var(--btn-bg);
  color: var(--btn-text);
  padding-inline: calc(18px * var(--btn-scale, 1));
  font-size: calc(1rem * var(--btn-scale, 1));
}

#btn-hero-download,
#btn-hero-contact {
  min-height: calc(46px * var(--btn-scale, 1));
}

#btn-form-submit {
  min-height: calc(64px * var(--btn-scale, 1));
}

.custom-button {
  background: var(--btn-bg);
  border-color: var(--btn-bg);
  color: var(--btn-text);
  min-height: calc(46px * var(--btn-scale, 1));
  padding-inline: calc(18px * var(--btn-scale, 1));
  font-size: calc(1rem * var(--btn-scale, 1));
}

.stat-strip {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 7vw, 96px);
  right: clamp(18px, 7vw, 96px);
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--stat-bar-bg, rgba(16, 19, 24, 0.4));
  backdrop-filter: blur(8px);
  color: var(--stat-bar-text-color, #fff);
}

.stat-strip article {
  min-width: 0;
  padding: calc(10px * var(--stat-bar-height-scale, 1)) 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-strip article:last-child {
  border-right: 0;
}

.stat-strip span {
  display: block;
  color: inherit;
  opacity: 0.68;
  font-size: calc(0.68rem * var(--stat-bar-text-scale, 1));
  font-weight: 700;
  text-transform: uppercase;
}

.stat-strip strong {
  display: block;
  margin-top: 4px;
  color: inherit;
  font-family: Arial Black, Impact, system-ui, sans-serif;
  font-size: calc(clamp(0.9rem, 1.6vw, 1.3rem) * var(--stat-bar-text-scale, 1));
  line-height: 1.05;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 6vw, 88px);
}

#profile,
#career,
#matches,
#updates,
#contact {
  background: var(--section-bg);
  min-height: var(--section-min-height, auto);
}

.intro-grid,
.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-section {
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
}

.profile-copy p,
.contact-section p {
  margin: 0 0 18px;
  color: #39404b;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.75;
}

.dark-band {
  color: #fff;
  background: var(--charcoal);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 48px);
  padding-bottom: 20px;
  border-bottom: 3px solid var(--green);
}

.highlight-grid,
.updates-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.highlight-grid article,
.updates-grid article {
  min-height: 172px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.highlight-grid span,
.updates-grid span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 20px;
}

.highlight-icon svg {
  width: 30px;
  height: 30px;
}

.club-spotlight {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.club-spotlight-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--line);
}

.club-spotlight-body {
  min-width: 0;
}

.club-spotlight-kicker {
  margin: 0 0 6px;
  color: var(--red);
  font-family: Arial Black, Impact, system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.club-spotlight-title {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
}

.club-spotlight-detail {
  margin: 0;
  color: #565f6d;
  line-height: 1.65;
}

@media (max-width: 620px) {
  .club-spotlight {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
}

.timeline {
  position: relative;
  display: grid;
  gap: 12px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 150px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: 150px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--section-bg, var(--paper));
  transform: translateX(-50%);
  z-index: 1;
}

.timeline article:first-child::before {
  background: var(--gold);
  width: 18px;
  height: 18px;
}

.timeline time {
  color: var(--red);
  font-family: Arial Black, Impact, system-ui, sans-serif;
  font-weight: 800;
}

.timeline p,
.updates-grid p {
  margin: 10px 0 0;
  color: #565f6d;
  line-height: 1.65;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.match-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.match-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 19, 24, 0.08);
}

.match-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.match-competition-tag {
  display: inline-block;
  width: max-content;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.match-date {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.match-fixture {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 900;
  color: var(--ink);
}

.match-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.updates-section {
  background: #fff;
}

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

.updates-grid article {
  background: var(--paper);
  border-color: var(--line);
}

.update-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.update-image {
  display: block;
  width: 100%;
  aspect-ratio: 1080 / 1278;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  margin-bottom: 14px;
}

.update-more {
  display: inline-block;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
}

.section-more-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
}

.section-heading + .section-more-link {
  margin-top: -4px;
}

.list-page-intro {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.list-page-back {
  display: inline-block;
  margin-bottom: 14px;
  color: inherit;
  opacity: 0.7;
  font-weight: 700;
  text-decoration: underline;
}

.media-section {
  background: #fff;
}

.media-subtitle {
  margin: 36px 0 18px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.media-subtitle:first-of-type {
  margin-top: 0;
}

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

.photo-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.photo-card-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.photo-card-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 12px 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  text-align: left;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px;
  background: rgba(10, 12, 16, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  margin: 0;
  max-width: min(920px, 90vw);
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.lightbox img {
  display: block;
  max-width: 100%;
  max-height: 74vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  object-fit: contain;
}

.photo-lightbox-image-wrap {
  position: relative;
  width: max-content;
  max-width: 100%;
  max-height: 74vh;
}

.photo-lightbox-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 20px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.lightbox figcaption {
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.5;
  max-width: 640px;
}

.lightbox figcaption:empty {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: clamp(18px, 6vw, 48px);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.note-lightbox-card {
  margin: 0;
  width: min(480px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

.note-lightbox-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1080 / 1278;
  object-fit: cover;
}

.note-lightbox-card img[src=""] {
  display: none;
}

.note-lightbox-body {
  padding: 24px 26px 30px;
}

.note-lightbox-tag {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 10px;
}

.note-lightbox-body h3 {
  margin: 0 0 14px;
}

.note-lightbox-body p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: #39404b;
}

.note-lightbox-body p:empty {
  display: none;
}

.note-lightbox-body p:last-child {
  margin-bottom: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.video-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  color: inherit;
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
}

.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(16, 19, 24, 0.72);
  color: #fff;
  font-size: 1.1rem;
  padding-left: 3px;
}

.video-title {
  display: block;
  padding: 12px 14px;
  font-weight: 800;
}

.media-actions {
  margin-top: 28px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.press-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.press-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 19, 24, 0.08);
}

.press-thumb {
  display: block;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--charcoal);
}

.press-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.press-outlet {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.press-title {
  font-weight: 800;
}

.contact-section {
  position: relative;
  color: #fff;
  background: var(--green);
  overflow: hidden;
}

.contact-intro,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-intro {
  padding-top: 0;
}

.contact-intro h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(2.15rem, 4.1vw, 3.65rem);
  line-height: 1.06;
}

.contact-section .section-kicker {
  color: #f2d596;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.contact-section .section-kicker::after,
.contact-form h3::after {
  content: none;
}

.contact-section p {
  max-width: 680px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.6;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: clamp(28px, 4vw, 44px);
}

.contact-info-block {
  display: grid;
  align-content: start;
  gap: 16px;
}

.contact-info-block + .contact-info-block {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-info-block h3,
.contact-form h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-form h3 {
  margin-bottom: 10px;
  text-transform: none;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.contact-info-block a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-info-block a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-info-block a[href^="tel"] span {
  white-space: nowrap;
}

.contact-info-block svg {
  width: 23px;
  height: 23px;
  color: #9ad21f;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  display: grid;
  gap: 14px;
  grid-column: 2;
  padding-top: 8px;
}

.contact-form label {
  display: grid;
  gap: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form label span {
  position: absolute;
  left: -9999px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: #fff;
  background: rgba(16, 19, 24, 0.22);
  font: inherit;
  font-size: 1.05rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 255, 255, 0.62);
  outline-offset: 2px;
}

.contact-form .button {
  width: 100%;
  min-height: 64px;
  margin-top: 10px;
  padding-block: 20px;
  cursor: pointer;
}

.form-status {
  padding: 13px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status[data-status="sent"] {
  color: #173b29;
  background: #d8f2e2;
}

.form-status[data-status="error"] {
  color: #5d1018;
  background: #f8d7da;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 88px);
  color: #fff;
  background: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  .header-social {
    display: none;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 980px;
  }

  .hero-media::before {
    background-position: 30% 53%;
  }

  .hero-content {
    left: 18px;
    padding-bottom: 180px;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 5.9rem);
  }

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

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

  .stat-strip article:nth-child(2) {
    border-right: 0;
  }

  .stat-strip article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .intro-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-column: auto;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-info-block + .contact-info-block {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .highlight-grid,
  .updates-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .hero {
    min-height: 900px;
  }

  .hero-content {
    padding-bottom: 180px;
  }

  .contact-intro h2 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .contact-form h3 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }

  .stat-strip {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .stat-strip article {
    padding: calc(10px * var(--stat-bar-height-scale, 1));
  }

  .timeline::before,
  .timeline article::before {
    display: none;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }

  .timeline article:first-child {
    border-top: 0;
  }

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

  footer {
    flex-direction: column;
  }
}
