:root {
  --bg: #050505;
  --bg-soft: #111111;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 215, 140, 0.2);
  --text: #FFFFFF;
  --muted: #c8c0b3;
  --gold: #d0a85c;
  --gold-soft: #f0d29a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(208, 168, 92, 0.2), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #14110c 0%, #080808 28%, #050505 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.page-shell {
  width: min(100%, calc(var(--max-width) + 3rem));
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(240, 210, 154, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.54));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(208, 168, 92, 0.16);
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  color: #FFFFFF;
  font-family: "Exo 2", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-away {
  color: #FFC800;
}

.brand-football,
.brand-away,
.brand-domain {
  font-size: inherit;
}

.brand-domain {
  margin-left: 0.08em;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: #FFC800;
  color: #100d08;
  box-shadow: 0 10px 25px rgba(208, 168, 92, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 16px 32px rgba(208, 168, 92, 0.35);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.button-whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: #071b0e;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  border-color: #2ee66f;
  background: #2ee66f;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.3);
}

.section {
  padding: 3.5rem 0;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
  object-position: center 52%;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.96) 0%, rgba(4, 4, 4, 0.82) 30%, rgba(4, 4, 4, 0.32) 58%, rgba(4, 4, 4, 0.06) 78%),
    linear-gradient(0deg, rgba(4, 4, 4, 0.68) 0%, transparent 38%);
}

.hero-content {
  display: flex;
  align-items: flex-start;
  width: min(calc(100% - 2.5rem), var(--max-width));
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: 3rem 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 40rem;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.58);
}

.eyebrow,
.card-kicker {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: #FFC800;
}

.card-kicker {
  color: var(--gold-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  max-width: 18ch;
}

.hero h1 {
  max-width: none;
  white-space: nowrap;
  margin-top: 0.75rem;
}

.hero-copy .hero-text {
  margin-top: 0.75rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  max-width: 18ch;
}

h3 {
  font-size: 1.55rem;
}

p,
li,
label,
input,
textarea,
select,
button,
span,
em,
small {
  font-size: 1rem;
  line-height: 1.65;
}

.hero-text,
.section-heading p,
.section-description,
.feature-card p,
.benefit-card p,
.story-card p,
.destination-card span,
.about-layout p,
.quote-card footer,
.form-note,
.info-tile p,
.route-card p,
.testimonial-note,
.process-step p,
.form-support-card li {
  color: var(--muted);
}

.hero-text {
  max-width: 34rem;
  margin: 0;
  font-size: 1.1rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-actions {
  flex-direction: column;
  align-items: flex-start;
}

.hero-support {
  max-width: 32rem;
  margin: 1.25rem 0 0;
  color: var(--gold-soft);
  font-size: 0.98rem;
}

.hero-points {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.75rem 0 0;
  list-style: none;
  color: var(--muted);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-metrics article {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-metrics strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-soft);
}

.hero-metrics span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-points li::before,
.feature-card li::before,
.about-panel li::before,
.form-support-card li::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.card-grid,
.benefit-grid,
.about-layout,
.section-grid {
  display: grid;
  gap: 1.25rem;
}

.story-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card,
.benefit-card,
.destination-card,
.story-card,
.quote-card,
.about-panel,
.info-tile,
.final-cta-card,
.enquiry-form,
.form-support-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.benefit-card,
.destination-card,
.story-card,
.quote-card,
.about-panel,
.info-tile,
.final-cta-card {
  padding: 1.5rem;
}

.info-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 15rem;
  text-align: center;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--gold);
  overflow: hidden;
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1), filter 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  backface-visibility: hidden;
}

.info-tile h2 {
  margin: 0;
  width: 100%;
  text-align: center;
  transition: transform 300ms ease;
}

.feature-card,
.benefit-card,
.destination-card,
.story-card,
.quote-card {
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1), filter 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease;
  backface-visibility: hidden;
}

/* Subtle Zoom & Brightening Hover Effects for Tiles & Cards */
.info-tile:hover,
.destination-card:hover,
.inclusion-item:hover {
  transform: translateY(-5px) scale(1.025);
  filter: brightness(1.15) contrast(1.02);
  border-color: #FFC800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 200, 0, 0.25);
}

.info-tile:hover h2 {
  transform: scale(1.03);
}

.feature-card:hover,
.benefit-card:hover,
.story-card:hover,
.quote-card:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: var(--gold-soft);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(240, 210, 154, 0.15);
}

.card-title {
  margin: 0;
}
.feature-card ul,
.about-panel ul,
.form-support-card ul {
  padding: 0;
  list-style: none;
  margin: 1rem 0 0;
}

.feature-card li,
.about-panel li,
.form-support-card li {
  margin-top: 0.75rem;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.inclusion-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 9rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--gold);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1), filter 300ms ease, border-color 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
  backface-visibility: hidden;
}

.inclusion-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px rgba(6, 6, 6, 0.18);
}

.inclusion-image span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 300ms ease;
}

.inclusion-item:hover span {
  transform: scale(1.04);
}

.section-divider {
  width: min(100%, 72rem);
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, rgba(240, 210, 154, 0), rgba(240, 210, 154, 0.5), rgba(240, 210, 154, 0));
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading .eyebrow {
  color: #FFC800;
}

.section-heading h2 + p {
  margin-top: 1rem;
}

.section-heading p:not(.eyebrow),
.section-description {
  text-align: justify;
}

.section-dark {
  position: relative;
  padding: clamp(2.5rem, 4vw, 3.5rem) 1.5rem;
  border: 1px solid rgba(240, 210, 154, 0.12);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

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

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

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid rgba(240, 210, 154, 0.26);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(208, 168, 92, 0.18), rgba(208, 168, 92, 0.04));
  color: var(--gold-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 24px rgba(208, 168, 92, 0.12);
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-icon svg path,
.benefit-icon svg rect,
.benefit-icon svg circle,
.benefit-icon svg line,
.benefit-icon svg polygon {
  vector-effect: non-scaling-stroke;
}

.benefit-card {
  border-color: var(--gold);
}

.benefit-card h3 {
  margin: 0;
  text-align: center;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

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

.destination-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  border: 1px solid var(--gold);
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.2) 0%, rgba(10, 10, 12, 0.85) 100%);
  z-index: 0;
  transition: opacity 300ms ease;
}

.destination-card:hover::before {
  opacity: 0.75;
}

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

.destination-card p {
  margin: 0.25rem 0 0;
  color: var(--gold-soft);
  font-weight: 700;
}

.destination-card h3 {
  color: #FFFFFF;
}

.destination-topline {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
  transition: transform 300ms ease;
}

.destination-card:hover .destination-topline {
  transform: scale(1.04);
}
  align-items: center;
  color: #FFFFFF;
}

.destination-topline small {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-card em {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(208, 168, 92, 0.14);
  color: var(--gold-soft);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card {
  overflow: hidden;
  padding: 0;
}

.story-media {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(240, 210, 154, 0.16);
  filter: saturate(0.9) brightness(0.78);
}

.story-card h3,
.story-card p {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.story-card h3 {
  padding-top: 1.4rem;
}

.story-card p {
  padding-bottom: 1.5rem;
}

.about-layout {
  display: block;
}

.about-section::after {
  content: "";
  display: block;
  clear: both;
}

.about-panel {
  float: right;
  width: 32%;
  margin: 0 0 1.25rem 1.5rem;
  padding: 0;
}

.about-panel-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-section {
  position: relative;
  padding: clamp(2.5rem, 4vw, 3.5rem) 1.5rem;
  border: 1px solid rgba(240, 210, 154, 0.12);
  border-radius: 32px;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.66) 42%, rgba(5, 5, 5, 0.42));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-dark + .about-section {
  margin-top: 1.5rem;
}

.about-section .section-heading {
  margin-bottom: 1.25rem;
}

.about-brand-heading {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.trust-section {
  padding-bottom: 4rem;
}

.logo-carousel {
  width: 100%;
}

.logo-viewport {
  overflow: hidden;
  border-top: 1px solid rgba(240, 210, 154, 0.18);
  border-bottom: 1px solid rgba(240, 210, 154, 0.18);
}

.logo-track {
  display: flex;
  transition: transform 500ms ease;
}

.logo-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 11rem));
  gap: 1rem;
  justify-content: center;
  padding: 1.25rem 0;
}

.logo-card {
  display: grid;
  place-items: center;
  min-height: 8rem;
  padding: 0.75rem;
  border: 1px solid rgba(240, 210, 154, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(226, 221, 210, 0.9));
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1), border-color 300ms ease, box-shadow 300ms ease;
  backface-visibility: hidden;
}

.logo-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--gold-soft);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), 0 0 14px rgba(240, 210, 154, 0.2);
}

.logo-card img {
  width: min(100%, 9rem);
  height: 6rem;
  object-fit: contain;
}

.logo-placeholder {
  color: #17130d;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.logo-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.carousel-button,
.carousel-dot {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  cursor: pointer;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
}

.carousel-button:hover,
.carousel-button:focus-visible,
.carousel-dot:hover,
.carousel-dot:focus-visible,
.carousel-dot.is-active {
  border-color: var(--gold-soft);
  background: rgba(208, 168, 92, 0.2);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border-radius: 50%;
}

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

.process-step {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.process-step span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--gold-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
}

.process-step h2 {
  font-size: 1.9rem;
  max-width: none;
}

.form-section .section-heading {
  margin-bottom: 1.5rem;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
}

.form-intro {
  display: grid;
  gap: 1rem;
}

.form-support-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
}

.enquiry-form {
  padding: 1.5rem;
}

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

label {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.9rem 1rem;
  font-family: inherit;
}

option {
  background: #ffffff;
  color: #1c2824;
}

input::placeholder,
textarea::placeholder {
  color: #9f988d;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(208, 168, 92, 0.5);
  outline-offset: 2px;
}

.full-width {
  grid-column: 1 / -1;
}

.form-note,
.form-status {
  margin: 0;
}

.form-status {
  margin-top: 1rem;
  min-height: 1.5rem;
  color: var(--gold-soft);
}

.testimonial-note {
  margin-top: 1.5rem;
  text-align: center;
}

.quote-card {
  position: relative;
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: -0.3rem;
  right: 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(240, 210, 154, 0.14);
}

.final-cta-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background:
    radial-gradient(circle at top, rgba(208, 168, 92, 0.2), transparent 46%),
    rgba(255, 255, 255, 0.04);
}

.site-footer {
  margin-top: 1rem;
  padding: 1.5rem 1rem 0.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  max-width: 960px;
  margin: 0 0 1.25rem;
}

.footer-locations {
  margin: 0;
}

.footer-locations-title {
  margin: 0 0 0.9rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-align: left;
}

.footer-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.footer-location-column {
  text-align: left;
}

.footer-location-column p {
  margin: 0.15rem 0;
  line-height: 1.5;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-location-country {
  font-size: 0.88rem;
}

.footer-socials {
  min-width: 11rem;
}

.footer-social-list {
  display: grid;
  gap: 0.65rem;
  justify-items: start;
}

.footer-social-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social-list a:hover,
.footer-social-list a:focus-visible {
  color: var(--gold-soft);
  transform: translateX(0.2rem);
}

.footer-social-list svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .about-panel {
    float: none;
    width: 100%;
    margin: 0 0 1.25rem;
  }

  .two-up,
  .three-up,
  .benefit-grid,
  .destination-grid,
  .process-strip,
  .form-layout,
  .hero-metrics,
  .intro-strip,
    .footer-content,
  .footer-location-grid {
    grid-template-columns: 1fr;
  }

  .footer-socials {
    min-width: 0;
    order: -1;
  }
}

@media (min-width: 721px) {
  .hero {
    aspect-ratio: 2.15 / 1;
  }
}

@media (min-width: 981px) {
  h2 {
    max-width: none;
    white-space: nowrap;
  }

  .section-heading {
    max-width: none;
  }

  .section-heading p {
    max-width: 42rem;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 1rem 1rem 1.25rem;
  }

  .site-header {
    top: 0.5rem;
    gap: 0.85rem;
    padding: 0.9rem;
  }

  .brand {
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 0.6rem;
  }

  .brand-text {
    font-size: clamp(1.1rem, 6.2vw, 1.55rem);
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 0.75rem;
    overflow: visible;
    padding: 0;
    font-size: 0.9rem;
  }

  .site-nav a {
    line-height: 1.35;
  }

  .trust-section {
    scroll-margin-top: 13rem;
  }

  .logo-slide {
    grid-template-columns: repeat(3, minmax(0, 7.5rem));
    gap: 0.5rem;
  }

  .logo-card {
    min-height: 6rem;
    padding: 0.5rem;
    border-radius: 14px;
  }

  .logo-card img {
    height: 4.5rem;
  }

  .hero {
    width: calc(100% + 2rem);
    min-height: 0;
    aspect-ratio: auto;
    margin-left: -1rem;
    overflow: hidden;
  }

  .hero-media {
    position: relative;
    display: block;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    z-index: auto;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 2rem 1rem 2.5rem;
    background:
      radial-gradient(circle at top left, rgba(208, 168, 92, 0.14), transparent 38%),
      #090909;
  }

  .hero-copy {
    gap: 1.25rem;
    max-width: 34rem;
    text-shadow: none;
  }

  .hero h1 {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(2.2rem, 11vw, 3.3rem);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-text {
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .form-actions {
    margin-top: 0.75rem;
  }

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

  .header-cta {
    width: 100%;
  }

  .brand-logo {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .inclusions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .inclusion-item {
    min-height: 7rem;
    padding: 0.75rem;
  }

  .inclusion-image span {
    font-size: 0.85rem;
    line-height: 1.25;
    white-space: normal;
    word-break: break-word;
  }
}




