/* ============================================================
   PINNACLE SPORTS MANAGEMENT
   Palette sampled from brand logo:
   ivory #FBF7F3 · navy #182538 · gold #BBA279
   Type: Cormorant Garamond (display) · Outfit (body)
   ============================================================ */

:root {
  --ivory: #FBF7F3;
  --ivory-2: #F5EEE3;
  --navy: #182538;
  --navy-deep: #101B2B;
  --ink: #1C2A3E;
  --ink-soft: #4E5B70;
  --gold: #B99F72;
  --gold-bright: #C9A96E;
  --gold-line: rgba(185, 159, 114, 0.45);
  --gold-faint: rgba(185, 159, 114, 0.16);
  --warm-white: #FBF7F3;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --caps: "Marcellus", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* multi-page site: nav switches pages, no smooth same-page glide */

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

::selection { background: var(--gold); color: var(--navy-deep); }

/* ---------- shared layout ---------- */

.wrap {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.wrap-narrow {
  width: min(820px, 92vw);
  margin-inline: auto;
}

section { position: relative; }

.section-pad { padding-block: clamp(5.5rem, 11vw, 9.5rem); }

/* eyebrow label */
.eyebrow {
  font-family: var(--caps);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-line);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-line);
}

/* display headings */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--navy); }



.display-xl {
  font-size: clamp(2.5rem, 5.4vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
}
.display-lg {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.12;
}
.display-md {
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  line-height: 1.25;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}

/* gold diamond separator */
.diamond-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  color: var(--gold);
  margin-block: 2.2rem;
}
.diamond-sep::before,
.diamond-sep::after {
  content: "";
  height: 1px;
  width: clamp(48px, 8vw, 92px);
  background: var(--gold-line);
}
.diamond-sep svg { flex-shrink: 0; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2.3rem;
  border: 1px solid var(--navy);
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease);
  cursor: pointer;
}
.btn--solid { background: var(--navy); color: var(--warm-white); }
.btn--solid:hover { background: transparent; color: var(--navy); }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--warm-white); }
.btn--gold { border-color: var(--gold); color: var(--gold-bright); background: transparent; }
.btn--gold:hover { background: var(--gold); color: var(--navy-deep); }
.btn--light { border-color: rgba(251,247,243,0.55); color: var(--warm-white); background: transparent; }
.btn--light:hover { background: var(--warm-white); color: var(--navy); border-color: var(--warm-white); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 0.45rem;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.text-link:hover { border-color: var(--gold); color: var(--gold); }
.text-link .arrow { transition: transform 0.4s var(--ease); }
.text-link:hover .arrow { transform: translateX(5px); }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), height 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(251, 247, 243, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--gold-faint);
  height: 66px;
}

.nav-inner {
  width: min(1320px, 94vw);
  margin-inline: auto;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-brand img { height: 30px; width: auto; }
.nav-brand-name {
  font-family: var(--caps);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--navy);
  transform: translateY(1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.2vw, 2.2rem);
  list-style: none;
}
.nav-links a:not(.btn) {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links .btn { padding: 0.7rem 1.5rem; font-size: 0.7rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 130;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--navy);
  margin: 6px auto;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95; /* below .nav so the toggle stays clickable */
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  margin-top: 0.8rem;
  color: var(--warm-white);
}
.mobile-menu a.btn:hover { background: transparent; color: var(--navy); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 6vw 6.5rem;
  position: relative;
  isolation: isolate;
}

/* faint sunrise glow behind the logo */
.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(880px, 90vw);
  aspect-ratio: 1.9;
  background: radial-gradient(ellipse at 50% 42%, rgba(201, 169, 110, 0.11), transparent 62%);
  z-index: -1;
}

.hero-logo {
  width: clamp(200px, 24vw, 285px);
  height: auto;
  margin-bottom: clamp(1.6rem, 3.4vh, 2.6rem);
}

.hero h1 {
  margin-inline: auto;
}
@media (max-width: 900px) {
  .hero h1 br { display: none; }
  .hero h1 { max-width: 15ch; }
}

.hero .lede {
  max-width: 34rem;
  margin: 1.7rem auto 0;
}

.hero-tagline {
  margin-top: 2rem;
  font-family: var(--caps);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
}
.hero-tagline::before,
.hero-tagline::after {
  content: "";
  height: 1px;
  width: clamp(30px, 6vw, 70px);
  background: var(--gold-line);
}

.hero-ctas {
  margin-top: 2.4rem;
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- multi-page chrome ---------- */

.page-main { padding-top: var(--nav-h); }

body.subpage .nav {
  background: rgba(251, 247, 243, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--gold-faint);
}

.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy); }

@media (max-width: 768px) {
  .nav.scrolled,
  body.subpage .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(251, 247, 243, 0.97);
  }
}

/* home gateway trio */
.gateway { background: var(--ivory); }
.gateway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 3.5vw, 3.5rem);
}
.gateway-item {
  display: block;
  border-top: 1px solid var(--gold-line);
  padding-top: 1.8rem;
}
.gateway-item h2 { margin: 0.2rem 0 1.4rem; max-width: 15ch; }
.gateway-item .text-link { pointer-events: none; }
.gateway-item:hover .text-link { border-color: var(--gold); color: var(--gold); }
.gateway-item:hover .text-link .arrow { transform: translateX(5px); }
@media (max-width: 960px) {
  .gateway-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .gateway-item h2 { max-width: none; }
}

/* hero entrance */
.hero-enter {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 1.1s var(--ease) forwards;
}
.he-1 { animation-delay: 0.1s; }
.he-2 { animation-delay: 0.35s; }
.he-3 { animation-delay: 0.55s; }
.he-4 { animation-delay: 0.75s; }
.he-5 { animation-delay: 0.95s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ============================================================
   FULL-BLEED IMAGE BANDS
   ============================================================ */

.band {
  position: relative;
  height: clamp(420px, 72vh, 720px);
  overflow: hidden;
}
.band-img {
  position: absolute;
  top: -6%;
  left: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}
.band-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 27, 43, 0.42), rgba(16, 27, 43, 0.28) 45%, rgba(16, 27, 43, 0.55));
}
.band-caption {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(2rem, 5vh, 3.4rem);
  text-align: center;
  color: var(--warm-white);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* band with content overlaid (Middle East) */
.band-full {
  position: relative;
  overflow: hidden;
  color: var(--warm-white);
}
.band-full .band-veil {
  background: linear-gradient(100deg, rgba(16, 27, 43, 0.9) 8%, rgba(16, 27, 43, 0.62) 52%, rgba(16, 27, 43, 0.82));
}
.band-full-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(5.5rem, 11vw, 9rem);
}
.band-full h1, .band-full h2 { color: var(--warm-white); }
.band-full .lede { color: rgba(251, 247, 243, 0.78); }

/* ============================================================
   ABOUT
   ============================================================ */

.about { background: var(--ivory); text-align: center; }

.about-tagline {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.14;
  color: var(--navy);
  font-weight: 500;
}
.about-tagline em {
  font-style: italic;
  color: var(--gold);
}

.about-cols {
  margin-top: 3.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  text-align: left;
}
.about-cols p + p { margin-top: 1.2rem; }

/* ============================================================
   WHAT WE DO
   ============================================================ */

.services { background: var(--ivory-2); }

.services-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 4.6rem);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 3rem);
}
.pillar {
  border-top: 1px solid var(--gold-line);
  padding-top: 2rem;
}
.pillar h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}
.pillar-sub {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
  min-height: 3.2em;
}
.pillar ul { list-style: none; }
.pillar li {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding-block: 0.72rem;
  font-size: 0.98rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(24, 37, 56, 0.08);
}
.pillar li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  position: relative;
  top: -2px;
}

/* ============================================================
   ATHLETES — discreet navy interlude
   ============================================================ */

.athletes {
  background: var(--navy-deep);
  color: var(--warm-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* faint arc echo in background */
.athletes::before {
  content: "";
  position: absolute;
  top: -42%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  border: 1px solid rgba(185, 159, 114, 0.14);
  pointer-events: none;
}
.athletes h1, .athletes h2 { color: var(--warm-white); }
.athletes .lede { color: rgba(251, 247, 243, 0.72); max-width: 41rem; margin-inline: auto; }
.athletes .eyebrow { color: var(--gold-bright); }

.athletes-referral {
  margin-top: 2.6rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--gold-bright);
}

/* sports detail strip — worlds we work in, not a roster */
.sport-strip {
  margin-top: clamp(3.2rem, 6vw, 4.8rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}
.sport-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.sport-card picture { display: contents; }
.sport-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: grayscale(0.35) brightness(0.82);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.sport-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 27, 43, 0.12), rgba(16, 27, 43, 0.55));
  pointer-events: none;
}
.sport-card:hover img { transform: scale(1.04); filter: grayscale(0) brightness(0.9); }
.sport-card-label {
  position: absolute;
  left: 1.3rem;
  bottom: 1.1rem;
  z-index: 2;
  font-family: var(--caps);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(251, 247, 243, 0.9);
}

/* ============================================================
   MIDDLE EAST — properties list
   ============================================================ */

.region-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.region-points { margin-top: 2.4rem; display: grid; gap: 1.5rem; }
.region-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: baseline;
}
.region-point-mark {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  position: relative;
  top: -1px;
}
.region-point strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 0.25rem;
}
.region-point p { font-size: 0.95rem; color: rgba(251, 247, 243, 0.7); }

.properties {
  border-left: 1px solid rgba(185, 159, 114, 0.35);
  padding-left: clamp(1.6rem, 3vw, 2.8rem);
}
.properties-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.6rem;
}
.properties ul { list-style: none; }
.properties li {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  padding-block: 0.68rem;
  border-bottom: 1px solid rgba(251, 247, 243, 0.1);
  color: rgba(251, 247, 243, 0.92);
}
.properties li span {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 247, 243, 0.5);
  margin-top: 0.15rem;
}

/* ============================================================
   FOR BRANDS
   ============================================================ */

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

.brands-head { max-width: 46rem; }

.steps {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.6rem);
  counter-reset: step;
}
.step {
  border-top: 1px solid var(--gold-line);
  padding-top: 1.6rem;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.35rem; margin-bottom: 0.55rem; }
.step p { font-size: 0.93rem; color: var(--ink-soft); }

.brands-cta { margin-top: clamp(3rem, 6vw, 4.2rem); }

/* ============================================================
   LEADERSHIP
   ============================================================ */

.leadership { background: var(--ivory-2); }

.leaders {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.leader {
  background: var(--ivory);
  border: 1px solid rgba(185, 159, 114, 0.28);
  padding: clamp(2.2rem, 4vw, 3.2rem);
}
.leader-mark {
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
}
.leader-role {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.leader h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.leader p { font-size: 0.97rem; color: var(--ink-soft); }

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  background: var(--navy);
  color: var(--warm-white);
}
.contact .eyebrow { color: var(--gold-bright); }
.contact h1, .contact h2 { color: var(--warm-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info .lede { color: rgba(251, 247, 243, 0.72); margin-top: 1.4rem; }

.contact-rows { margin-top: 2.8rem; display: grid; gap: 1.7rem; }
.contact-row {
  display: grid;
  gap: 0.3rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(251, 247, 243, 0.12);
}
.contact-row-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.contact-row a, .contact-row span.value {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--warm-white);
  transition: color 0.35s var(--ease);
}
.contact-row a:hover { color: var(--gold-bright); }

/* form */
.form { display: grid; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field { display: grid; gap: 0.5rem; }
.field label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251, 247, 243, 0.65);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(251, 247, 243, 0.28);
  padding: 0.75rem 0.1rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--warm-white);
  border-radius: 0;
  transition: border-color 0.35s var(--ease);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field select option { color: var(--ink); background: var(--ivory); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-bright);
}
.field textarea { resize: vertical; min-height: 110px; }
.form .btn { justify-self: start; margin-top: 0.6rem; }
.form-note { font-size: 0.8rem; color: rgba(251, 247, 243, 0.45); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy-deep);
  color: rgba(251, 247, 243, 0.6);
  padding: 4.5rem 0 calc(2.6rem + env(safe-area-inset-bottom));
  text-align: center;
}
.footer-links a { display: inline-block; padding: 0.5rem 0.2rem; }
.footer-mark { display: flex; justify-content: center; margin-bottom: 1.6rem; }
.footer-name {
  font-family: var(--caps);
  font-size: 1.45rem;
  letter-spacing: 0.34em;
  color: var(--warm-white);
  text-indent: 0.34em; /* balance tracking */
}
.footer-sub {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}
.footer-links {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 247, 243, 0.6);
  transition: color 0.35s var(--ease);
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-fine {
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(251, 247, 243, 0.08);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .about-cols,
  .region-grid,
  .contact-grid,
  .leaders { grid-template-columns: 1fr; }
  .services-head { grid-template-columns: 1fr; align-items: start; }
  .pillars { grid-template-columns: 1fr; gap: 2.4rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .properties { border-left: none; padding-left: 0; border-top: 1px solid rgba(185,159,114,0.35); padding-top: 2rem; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .hero-tagline { font-size: 0.72rem; letter-spacing: 0.3em; white-space: nowrap; }
  .hero-tagline::before, .hero-tagline::after { display: none; }
  .sport-strip { grid-template-columns: 1fr; }
  .sport-card { aspect-ratio: 4 / 3; }
  .form-row { grid-template-columns: 1fr; }
  .band { height: 60vh; min-height: 340px; }
  .hero { padding-inline: 7vw; }
  .hero-ctas .btn { width: 100%; }
}

/* ============================================================
   MOTION SAFETY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-enter { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .band-img { transform: none !important; }
  * { transition-duration: 0.01ms !important; }
}

/* visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
