/* Dream Abroad brand stylesheet
   Palette from Mini Brand Guidelines 2026
   Navy #04142C · Green #007058 · Gold #BC9020 · Ivory #F4F0E4 · Sky #C4CCD8 */

@font-face {
  font-family: "Kontora DA";
  src: url("../fonts/kontora-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kontora DA";
  src: url("../fonts/kontora-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kontora DA";
  src: url("../fonts/kontora-extra-black.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noir DA";
  src: url("../fonts/noir-std-semi-bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #04142c;
  --navy-soft: #0c2444;
  --green: #007058;
  --green-deep: #006c68;
  --gold: #bc9020;
  --gold-bright: #d0981c;
  --ivory: #f4f0e4;
  --ivory-soft: #f0e8dc;
  --sky: #c4ccd8;
  --white: #ffffff;
  --ink: #0c2444;
  --muted: #5c6b78;
  --border: rgb(4 20 44 / 18%);
  --border-light: rgb(255 255 255 / 22%);
  --shadow: 0 18px 50px rgb(4 20 44 / 16%);
  --body: "Kontora DA", Inter, "Segoe UI", sans-serif;
  --display: "Noir DA", Oswald, "Arial Black", sans-serif;
  --page: min(1180px, calc(100% - 8vw));
  --section-y: clamp(72px, 8vw, 128px);
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(22px, 2vw, 32px);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 16px;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

.wrap {
  width: var(--page);
  margin-inline: auto;
}

/* Buttons */
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  isolation: isolate;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, transparent 20%, rgb(255 255 255 / 28%) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
}

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

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgb(4 20 44 / 22%);
}

.button:hover::after {
  transform: translateX(130%);
}

.button:active {
  transform: translateY(-1px);
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
}

.button-gold:hover {
  background: var(--gold-bright);
}

.button-navy {
  background: var(--navy);
  color: var(--white);
}

.button-navy:hover {
  background: var(--navy-soft);
}

.button-green {
  background: var(--green);
  color: var(--white);
}

.button-green:hover {
  background: var(--green-deep);
}

.button-ivory {
  background: var(--ivory);
  color: var(--navy);
}

.button-ivory:hover {
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgb(255 255 255 / 55%);
  background: transparent;
}

.button-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 0 14px;
  font-size: 10px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Header */
.site-header {
  position: fixed;
  top: 20px;
  left: 4vw;
  right: 4vw;
  z-index: 120;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-h);
  padding: 3px 18px 3px 16px;
  border: 1px solid rgb(255 255 255 / 28%);
  background: rgb(4 20 44 / 78%);
  backdrop-filter: blur(18px);
  color: var(--white);
}

.site-header.is-light {
  color: var(--navy);
  background: rgb(244 240 228 / 92%);
  border-color: var(--navy);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-logo:hover {
  transform: translateY(-1px);
  opacity: 0.88;
}

.site-logo .logo-word {
  width: 168px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.4vw, 26px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.desktop-nav > a,
.nav-group > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 42px;
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  transition: color 0.18s ease;
}

.desktop-nav > a:hover,
.nav-group:hover > button,
.nav-group:focus-within > button,
.desktop-nav > a.is-active,
.nav-group.is-active > button {
  color: var(--gold);
}

.desktop-nav > a::after,
.nav-group > button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.desktop-nav > a:hover::after,
.nav-group:hover > button::after,
.nav-group:focus-within > button::after,
.desktop-nav > a.is-active::after,
.nav-group.is-active > button::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: -16px;
  min-width: 220px;
  padding: 8px;
  background: var(--ivory);
  color: var(--navy);
  border: 1px solid var(--navy);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown a {
  display: block;
  padding: 12px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

.nav-dropdown a:last-child {
  border-bottom: 0;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  background: var(--ivory-soft);
  color: var(--gold);
  padding-left: 16px;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.language-switch button {
  background: none;
  border: 0;
  color: inherit;
  padding: 0;
  opacity: 0.45;
  transition: opacity 0.18s ease, color 0.18s ease;
}

.language-switch button:hover {
  opacity: 1;
  color: var(--gold);
}

.language-switch button.is-active {
  opacity: 1;
  color: var(--gold);
  font-weight: 800;
}

.header-call {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.18s ease, letter-spacing 0.18s ease;
}

.header-call:hover {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 4px;
  background: none;
  border: 0;
  color: inherit;
}

.menu-toggle-icon {
  position: relative;
  width: 18px;
  height: 14px;
}

.menu-toggle-icon span,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.menu-toggle-icon::before {
  top: 1px;
}

.menu-toggle-icon span {
  top: 6px;
}

.menu-toggle-icon::after {
  top: 11px;
}

.menu-toggle[aria-expanded="true"] {
  color: var(--gold);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  top: 6px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  top: 6px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  padding: calc(108px + env(safe-area-inset-top, 0px)) 7vw calc(28px + env(safe-area-inset-bottom, 0px));
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  overflow-y: auto;
}

.mobile-menu nav {
  display: grid;
  border-top: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.mobile-menu nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 10px 0;
  font-family: var(--display);
  font-size: clamp(20px, 5.4vw, 28px);
  border-bottom: 1px solid var(--border-light);
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.mobile-menu nav a span[aria-hidden],
.entry-card-top i,
.arrow-link span,
.text-link span {
  font-style: normal;
  font-family: sans-serif;
  font-variant-emoji: text;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:active,
.mobile-menu nav a.is-active {
  color: var(--gold);
}

.mobile-menu .button {
  width: 100%;
  margin-top: auto;
  flex: none;
}

.mobile-lang {
  display: none;
  gap: 16px;
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.mobile-lang button {
  background: none;
  border: 0;
  color: inherit;
  opacity: 0.45;
}

.mobile-lang button.is-active {
  opacity: 1;
  color: var(--gold);
  font-weight: 800;
}

body.menu-open,
html.menu-open {
  overflow: hidden;
}

body.menu-open .cookie-banner {
  display: none;
}

/* Eyebrows */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--gold);
}

.eyebrow-light {
  color: var(--white);
}

/* Home hero */
.home-hero {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  color: var(--white);
  background: var(--navy);
}

.home-hero-image,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-image {
  background: url("../images/hero-football.jpg") center / cover no-repeat;
  animation: hero-in 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgb(4 20 44 / 94%) 0%, rgb(4 20 44 / 78%) 38%, rgb(4 20 44 / 28%) 72%, rgb(4 20 44 / 12%)),
    linear-gradient(transparent 58%, rgb(4 20 44 / 94%));
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 88vw);
  margin-left: 4vw;
  margin-right: auto;
  padding: clamp(150px, 18vh, 210px) 20px 40px;
  text-align: left;
  animation: fade-up 0.9s 0.15s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.home-hero-content .eyebrow {
  justify-content: flex-start;
}

.home-hero h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(44px, 5.6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.heading-accent {
  color: var(--gold);
}

.home-hero-intro {
  max-width: 640px;
  margin: 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
}

.home-hero .button-row {
  margin-top: 32px;
  justify-content: flex-start;
}

.hero-route {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.hero-route span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-route i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.hero-route p {
  width: 100%;
  margin: 8px 0 0;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-mark {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(38vw, 420px);
  max-width: 100%;
  opacity: 0.08;
  pointer-events: none;
}

/* Page hero */
.page-hero {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100svh;
  padding: 0 4vw 72px;
  color: var(--white);
}

.page-hero-navy {
  background: var(--navy);
}

.page-hero-green {
  background: var(--green-deep);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 80px;
  right: -140px;
  width: 480px;
  height: 480px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  padding-top: 170px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  animation: fade-up 0.8s 0.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.page-index {
  color: var(--gold);
  font-family: var(--display);
  letter-spacing: 0.08em;
}

.page-hero h1 {
  grid-column: 1 / -1;
  max-width: 1040px;
  margin: 12px 0 8px;
  font-size: clamp(44px, 7vw, 104px);
  text-transform: uppercase;
  line-height: 0.9;
}

.page-hero-intro {
  max-width: 760px;
  font-size: clamp(16px, 1.5vw, 22px);
}

.page-hero-line {
  position: absolute;
  left: 4vw;
  bottom: 0;
  width: min(200px, 28vw);
  height: 10px;
  background: var(--gold);
}

.home-hero ~ .page-stack,
.page-hero ~ .page-stack {
  position: relative;
  z-index: 4;
  background: var(--ivory);
  box-shadow: 0 -40px 80px rgb(4 20 44 / 32%);
}

/* Sections */
.section {
  padding: var(--section-y) 4vw;
}

.section > * {
  width: var(--page);
  margin-inline: auto;
}

.section-ivory {
  background: var(--ivory);
}

.section-sky {
  background: var(--sky);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-green {
  background: var(--green);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  gap: 28px;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-copy {
  align-self: end;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 20px);
}

.section-heading-light .eyebrow,
.section-heading-light .section-copy {
  color: rgb(255 255 255 / 86%);
}

/* Cards */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.entry-card {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--navy);
  background: var(--ivory);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.entry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgb(4 20 44 / 14%);
  border-color: var(--gold);
  z-index: 1;
}

.entry-card + .entry-card {
  border-left: 0;
}

.entry-card:nth-child(2) {
  background: rgb(255 255 255 / 45%);
}

.entry-card-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.entry-card-top i {
  color: var(--gold);
  font-style: normal;
  font-size: 22px;
}

.entry-card h3 {
  margin: 40px 0 16px;
  font-size: clamp(32px, 3.6vw, 52px);
}

.entry-body {
  color: var(--muted);
  font-size: 15px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0;
}

.tag-list span {
  padding: 7px 10px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.entry-card:hover .tag-list span {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.arrow-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.18s ease;
}

.arrow-link span {
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.22s ease;
}

.arrow-link:hover {
  color: var(--green);
}

.arrow-link:hover span {
  transform: translate(6px, -4px);
}

.arrow-link-light {
  border-color: var(--border-light);
}

.destination-cards .entry-card:nth-child(2) {
  background: var(--white);
}

.destination-cards .entry-card:nth-child(3) {
  background: var(--gold);
  color: var(--navy);
}

.destination-cards .entry-card:nth-child(3) .entry-card-top,
.destination-cards .entry-card:nth-child(3) .entry-card-top i {
  color: var(--navy);
}

.destination-cards .entry-card:nth-child(3) h3,
.destination-cards .entry-card:nth-child(3) p,
.destination-cards .entry-card:nth-child(3) .entry-body,
.destination-cards .entry-card:nth-child(3) .arrow-link {
  color: var(--navy);
}

.destination-cards .entry-card:nth-child(3) .tag-list span {
  border-color: var(--navy);
  color: var(--navy);
}

.destination-cards .entry-card:nth-child(3):hover .tag-list span {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* Sports */
.sports-editorial {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
}

.football-feature,
.sport-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  color: var(--white);
  background: var(--navy);
}

.football-feature {
  min-height: 680px;
}

.football-feature img,
.sport-photo-card img,
.support-image img,
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.football-feature:hover img,
.sport-photo-card:hover img {
  transform: scale(1.04);
}

.football-feature::after,
.sport-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 36%, rgb(4 20 44 / 92%));
}

.football-feature > div,
.sport-photo-card strong {
  position: absolute;
  z-index: 2;
}

.football-feature > div {
  left: 36px;
  right: 36px;
  bottom: 36px;
}

.football-feature span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.football-feature h3 {
  margin: 8px 0;
  font-size: clamp(52px, 6vw, 96px);
  text-transform: uppercase;
}

.secondary-sports {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sport-photo-card strong {
  left: 20px;
  bottom: 20px;
  z-index: 2;
}

.sport-photo-tennis {
  object-position: 42% 36%;
}

.sport-fallback {
  background:
    linear-gradient(160deg, var(--navy-soft), var(--green-deep));
}

.sport-more-card {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 32px;
  background: var(--green);
}

.sport-more-card > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 52px;
}

.sport-more-card p {
  margin: auto 0 24px;
  font-size: 18px;
}

.disclaimer-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  padding: 16px 18px;
  border: 1px solid currentColor;
}

.disclaimer-bar span {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
}

.disclaimer-bar p {
  margin: 0;
  font-size: 13px;
}

/* Lists */
.numbered-list {
  border-top: 1px solid var(--border-light);
}

.section-ivory .numbered-list,
.section-sky .numbered-list {
  border-color: var(--border);
}

.numbered-list article {
  display: grid;
  grid-template-columns: 72px 0.9fr 1.2fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  transition: padding-left 0.22s ease, background 0.22s ease;
}

.numbered-list article:hover {
  padding-left: 8px;
}

.section-ivory .numbered-list article,
.section-sky .numbered-list article {
  border-color: var(--border);
}

.numbered-list article > span {
  color: var(--gold);
  font-weight: 800;
}

.numbered-list h3,
.numbered-list p {
  margin: 0;
}

.support-preview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  padding-left: 0;
  padding-right: 0;
}

.support-preview > * {
  width: auto;
  margin: 0;
}

.support-image {
  position: relative;
  min-height: 720px;
}

.support-content {
  padding: var(--section-y) 7vw;
}

.support-content .section-heading {
  display: block;
}

.service-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}

.service-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.service-list span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.principle-grid,
.audience-grid,
.partner-grid {
  display: grid;
}

.principle-grid {
  grid-template-columns: repeat(4, 1fr);
}

.principle-grid article,
.audience-grid article,
.partner-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--border-light);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.principle-grid article:hover,
.audience-grid article:hover,
.partner-grid article:hover {
  transform: translateY(-6px);
  background: rgb(255 255 255 / 8%);
  border-color: var(--gold);
}

.principle-grid article + article,
.audience-grid article + article {
  border-left: 0;
}

.principle-grid span,
.audience-grid span,
.partner-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.principle-grid h3 {
  margin: 90px 0 14px;
}

.principle-grid p {
  opacity: 0.82;
  font-size: 14px;
}

.principle-grid-light article {
  border-color: var(--navy);
}

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

.audience-grid h3 {
  margin: 64px 0 0;
}

.placeholder-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.placeholder-pair > article {
  width: auto;
  margin: 0;
  min-height: 480px;
  padding: var(--section-y) 7vw;
}

.placeholder-pair > article + article {
  background: var(--sky);
}

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding: clamp(64px, 8vw, 110px) 4vw;
  background: var(--gold);
  color: var(--navy);
}

.cta-band > * {
  width: auto;
}

.cta-band h2 {
  margin: 0;
}

.cta-band > div:last-child {
  align-self: end;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 4;
  padding: 72px 4vw 28px;
  background: var(--navy);
  color: var(--white);
}

.site-footer > * {
  width: var(--page);
  margin-inline: auto;
}

.footer-lead {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 36px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.footer-logo:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.footer-logo .logo-word {
  width: 196px;
}

.footer-lead p {
  margin: 0;
  max-width: 520px;
  font-size: clamp(16px, 1.6vw, 22px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 44px 0;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-grid nav a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-grid nav a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact a {
  color: var(--gold);
  transition: letter-spacing 0.18s ease, color 0.18s ease;
}

.footer-contact a:hover {
  letter-spacing: 0.04em;
  color: var(--gold-bright);
}

.footer-contact p {
  color: var(--sky);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact strong,
.footer-contact a {
  display: block;
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--border-light);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-disclaimer {
  margin: 18px 0 0;
  color: var(--sky);
  font-size: 11px;
}

/* Inner pages */
.split-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6vw;
}

.split-feature .section-heading {
  margin: 0;
  display: block;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 40px;
  background: var(--navy);
  color: var(--white);
}

.quote-panel p {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.12;
}

.quote-panel span {
  margin-top: auto;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mission-grid article {
  min-height: 420px;
  padding: 44px;
  border: 1px solid var(--border-light);
}

.mission-grid article + article {
  border-left: 0;
}

.identity-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
  align-items: center;
}

.identity-section > * {
  width: auto;
  margin: 0;
}

.identity-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  padding: 48px;
  background: var(--sky);
}

.identity-mark img {
  width: 78%;
}

.placeholder-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 360px;
  padding: 28px;
  background: var(--sky);
  border: 1px dashed var(--navy);
}

.placeholder-card span {
  margin-bottom: auto;
  color: var(--green);
  font-weight: 800;
}

.programme-detail {
  display: grid;
  grid-template-columns: 72px 1fr 0.85fr;
  gap: 4vw;
  padding: clamp(56px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--navy);
}

.programme-number {
  color: var(--gold);
  font-family: var(--display);
  font-size: 40px;
}

.programme-main h2 {
  font-size: clamp(44px, 6vw, 88px);
}

.programme-facts {
  padding-left: 3vw;
  border-left: 1px solid var(--border);
}

.programme-facts > div {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.programme-facts strong {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-grid,
.service-list-grid,
.partner-grid {
  display: grid;
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--navy);
}

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

.comparison-grid > div,
.service-list-grid > div {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.comparison-grid span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.comparison-grid p {
  margin: 40px 0 0;
  font-family: var(--display);
  font-size: 22px;
}

.plus-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.plus-list li {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.plus-list li::before {
  content: "+";
  margin-right: 12px;
  color: var(--gold);
  font-size: 20px;
}

.sport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sport-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--border-light);
}

.sport-grid article:nth-child(n + 4) {
  border-top: 0;
}

.sport-grid article + article {
  border-left: 0;
}

.sport-grid article:nth-child(4) {
  border-left: 1px solid var(--border-light);
}

.deep-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: stretch;
}

.deep-split > * {
  width: auto;
  margin: 0;
}

.media-frame {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.destination-profile {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6vw;
}

.destination-profile ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.destination-profile li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.destination-profile li span {
  color: var(--gold);
  font-weight: 800;
}

.destination-considerations {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.destination-considerations > article {
  width: auto;
  margin: 0;
  min-height: 360px;
  padding: 40px;
  border: 1px solid var(--navy);
}

.destination-considerations > article + article {
  border-left: 0;
}

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

.partner-grid article {
  min-height: 260px;
  border: 1px solid var(--navy);
}

.partner-grid article:nth-child(n + 4) {
  border-top: 0;
}

.partner-grid article + article {
  border-left: 0;
}

.partner-grid article:nth-child(4) {
  border-left: 1px solid var(--navy);
}

.partner-grid h3 {
  margin: 72px 0 12px;
}

.story-empty {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 6vw;
}

.story-number {
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 280px);
  line-height: 0.75;
  color: var(--sky);
  letter-spacing: -0.08em;
}

.resource-filters {
  display: grid;
  grid-template-columns: 1fr 0.4fr 0.4fr;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--navy);
}

.resource-filters label {
  display: grid;
  gap: 8px;
}

.resource-filters span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-filters input,
.resource-filters select,
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--navy);
  background: rgb(255 255 255 / 70%);
  border-radius: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.resource-filters input:hover,
.resource-filters select:hover,
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--green);
}

.resource-filters input:focus,
.resource-filters select:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgb(188 144 32 / 22%);
}

.resource-count {
  margin: 24px 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.resource-card {
  border: 1px solid var(--navy);
  background: var(--ivory-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgb(4 20 44 / 14%);
  border-color: var(--gold);
}

.resource-cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  padding: 24px;
}

.resource-cover-1 {
  background: var(--navy);
  color: var(--white);
}

.resource-cover-2 {
  background: var(--green);
  color: var(--white);
}

.resource-cover-3 {
  background: var(--gold);
}

.resource-cover span {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
}

.resource-card-body {
  padding: 24px;
}

.resource-card-body h2 {
  font-size: 26px;
}

.faq-list {
  border-top: 1px solid var(--navy);
}

.faq-list details {
  border-bottom: 1px solid var(--navy);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 32px);
  transition: color 0.18s ease;
}

.faq-list summary:hover {
  color: var(--green);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary small {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-list summary > span:last-child {
  color: var(--gold);
  font-size: 28px;
  transition: transform 0.18s ease;
}

.faq-list details[open] summary > span:last-child {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 760px;
  padding: 0 0 22px;
  color: var(--muted);
}

.form-intro {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 6vw;
  align-items: end;
}

.form-intro .section-heading {
  display: block;
  margin: 0;
}

.form-side-note {
  display: grid;
  grid-template-columns: 36px 1fr;
  border-top: 1px solid var(--navy);
}

.form-side-note span,
.form-side-note p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.form-side-note span {
  color: var(--gold);
  font-weight: 800;
}

.enquiry-form,
.partner-form {
  display: grid;
  gap: 48px;
}

.form-section {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--navy);
}

.form-step {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field > span,
.consent-field {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.form-field-wide {
  margin-top: 18px;
}

.consent-field {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  line-height: 1.45;
}

.consent-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.form-submit {
  margin-top: 22px;
  border: 0;
}

.form-error,
.form-status.is-error {
  color: #8d1b1b;
  font-weight: 700;
}

.form-status {
  margin: 16px 0 0;
  font-weight: 700;
}

.form-status.is-pending {
  color: var(--navy);
}

.form-submit[disabled] {
  opacity: 0.55;
  pointer-events: none;
}

.form-confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 8vw, 100px) clamp(24px, 4vw, 60px);
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.form-confirmation > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 26px;
  margin-bottom: 20px;
}

.form-confirmation > h2 {
  margin-bottom: 8px;
}

.form-confirmation > p {
  color: var(--navy);
  opacity: 0.7;
  max-width: 380px;
  line-height: 1.6;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 1px !important;
  width: 1px !important;
}

.legal-content article {
  max-width: 860px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.legal-updated {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-note {
  max-width: 860px;
  margin-top: 36px;
  padding: 22px;
  background: var(--sky);
  border: 1px solid var(--navy);
}

.cookie-banner {
  position: fixed;
  z-index: 500;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  width: auto;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background: var(--ivory);
  border: 1px solid var(--navy);
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
}

.cookie-banner > div:last-child {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: none;
}

.cookie-banner > div:last-child > button:first-child {
  background: none;
  border: 0;
  text-decoration: underline;
}

.principle-grid-light article:hover {
  background: rgb(255 255 255 / 70%);
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 10px;
    font-size: 11px;
  }

  .desktop-cta {
    display: none;
  }
}

@media (max-width: 920px) {
  :root {
    --page: calc(100% - 40px);
    --section-y: 64px;
    --header-h: 64px;
    --body: Inter, "Segoe UI", sans-serif;
    --display: Oswald, "Arial Black", sans-serif;
  }

  h1,
  h2,
  h3 {
    font-family: Oswald, "Arial Black", sans-serif;
    letter-spacing: 0.01em;
    line-height: 1.12;
    overflow-wrap: break-word;
    word-break: normal;
  }

  h2 {
    font-size: clamp(28px, 8vw, 44px);
  }

  body {
    font-family: Inter, "Segoe UI", sans-serif;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    top: max(10px, env(safe-area-inset-top, 0px));
    left: 12px;
    right: 12px;
    min-height: 64px;
    padding: 3px 12px;
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-lang {
    display: flex;
  }

  .mobile-menu {
    padding-top: calc(88px + env(safe-area-inset-top, 0px));
  }

  .page-hero::after {
    display: none;
  }

  .home-hero {
    min-height: 100dvh;
    height: auto;
    overflow: visible;
  }

  .home-hero-content {
    width: auto;
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    padding: calc(108px + env(safe-area-inset-top, 0px)) 0 40px;
    text-align: left;
    overflow: visible;
  }

  .hero-route {
    justify-content: flex-start;
  }

  .home-hero h1 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.12;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
    overflow: visible;
  }

  .home-hero h1 .heading-accent {
    display: block;
  }

  .home-hero-intro {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-hero {
    min-height: 0;
    height: auto;
    padding: 0 20px 28px;
  }

  .page-hero-grid {
    width: auto;
    padding-top: 108px;
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 8vw, 40px);
    margin: 8px 0 12px;
    line-height: 1.06;
    max-width: none;
  }

  .page-hero-intro {
    grid-column: 1 / -1;
    font-size: 16px;
    line-height: 1.5;
    max-width: none;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section > * {
    width: auto;
  }

  .section-heading,
  .entry-grid,
  .sports-editorial,
  .support-preview,
  .placeholder-pair,
  .cta-band,
  .footer-lead,
  .footer-grid,
  .split-feature,
  .mission-grid,
  .identity-section,
  .form-intro,
  .deep-split,
  .destination-profile,
  .resource-grid,
  .partner-grid,
  .audience-grid,
  .sport-grid,
  .service-list-grid,
  .secondary-sports,
  .story-empty,
  .destination-considerations,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .section-heading .section-copy {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .entry-card {
    min-height: 0;
    padding: 24px;
  }

  .entry-card + .entry-card,
  .principle-grid article + article,
  .mission-grid article + article,
  .destination-considerations > article + article,
  .audience-grid article + article,
  .sport-grid article + article,
  .partner-grid article + article {
    border-left: 1px solid var(--navy);
    border-top: 0;
  }

  .principle-grid,
  .audience-grid,
  .sport-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article,
  .audience-grid article,
  .partner-grid article,
  .sport-grid article {
    min-height: 0;
  }

  .principle-grid h3,
  .audience-grid h3,
  .partner-grid h3 {
    margin-top: 28px;
  }

  .numbered-list article,
  .programme-detail,
  .form-section {
    grid-template-columns: 48px 1fr;
  }

  .numbered-list article h3,
  .numbered-list article p {
    grid-column: 2;
  }

  .programme-facts {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
    margin-top: 16px;
  }

  .football-feature {
    min-height: 420px;
    margin-bottom: 16px;
  }

  .football-feature h3 {
    font-size: clamp(40px, 12vw, 64px);
  }

  .football-feature > div {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .sport-photo-card,
  .sport-more-card {
    min-height: 220px;
  }

  .support-image,
  .media-frame,
  .identity-mark,
  .quote-panel,
  .mission-grid article {
    min-height: 280px;
  }

  .support-content {
    padding: 48px 20px;
  }

  .placeholder-pair > article {
    min-height: 0;
    padding: 48px 20px;
  }

  .cta-band {
    gap: 24px;
    padding: 48px 20px;
  }

  .cta-band .button-row,
  .home-hero .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .header-actions .button,
  .menu-toggle {
    width: auto;
  }

  .footer-lead,
  .footer-grid,
  .footer-bottom,
  .footer-bottom nav,
  .footer-grid nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-number {
    font-size: 80px;
  }

  .resource-filters {
    grid-template-columns: 1fr;
  }

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

  .form-section {
    display: block;
  }

  .form-step {
    margin-bottom: 12px;
  }

  .faq-list summary {
    font-size: 20px;
    align-items: flex-start;
  }

  .site-footer {
    padding: 48px 20px 24px;
  }

  .programme-main h2 {
    font-size: clamp(32px, 9vw, 48px);
  }
}

@media (max-width: 786px) {
  .home-hero-overlay {
    background:
      linear-gradient(180deg, rgb(4 20 44 / 78%) 0%, rgb(4 20 44 / 55%) 42%, rgb(4 20 44 / 88%) 100%);
  }

  .home-hero-content {
    margin-left: 16px;
    margin-right: 16px;
    padding: calc(100px + env(safe-area-inset-top, 0px)) 12px 36px;
    text-align: center;
  }

  .home-hero-content .eyebrow,
  .home-hero .button-row,
  .hero-route {
    justify-content: center;
  }

  .home-hero h1,
  .home-hero-intro,
  .hero-route p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .home-hero h1 .heading-accent {
    display: block;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 32px);
  }

  .language-switch {
    display: none;
  }

  .site-logo .logo-word {
    width: 118px;
  }

  .page-hero {
    padding: 0 20px 20px;
  }

  .page-hero-grid {
    padding-top: 92px;
  }

  .page-hero h1 {
    font-size: clamp(24px, 7.2vw, 32px);
    margin: 6px 0 10px;
    line-height: 1.1;
  }

  .page-hero-intro {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-index {
    font-size: 13px;
  }

  .home-hero-image {
    background-position: 63% center;
  }

  .hero-route p {
    display: none;
  }

  .entry-card h3 {
    font-size: 30px;
    margin-top: 28px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    left: 12px;
    right: 12px;
    width: auto;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    gap: 12px;
    padding: 14px;
  }

  .cookie-banner > div:last-child {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-banner .button {
    flex: 1;
    width: auto;
  }

  .form-field input,
  .form-field select,
  .form-field textarea,
  .resource-filters input,
  .resource-filters select {
    font-size: 16px;
    min-height: 48px;
  }

  .comparison-grid p {
    margin-top: 20px;
    font-size: 18px;
  }

  .legal-content article h2 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (hover: none) {
  .entry-card:hover,
  .resource-card:hover,
  .principle-grid article:hover,
  .audience-grid article:hover,
  .partner-grid article:hover,
  .button:hover {
    transform: none;
    box-shadow: none;
  }
}
