:root {
  --navy-950: #071229;
  --navy-900: #0b1733;
  --navy-800: #152642;
  --green-950: #07150f;
  --green-850: #123326;
  --silver-100: #f4f4f0;
  --silver-150: #e8e8e2;
  --silver-300: #c7c8c4;
  --silver-500: #80838a;
  --ink: #101723;
  --rust: #a85834;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(5, 13, 28, 0.28);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Almarai", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--silver-100);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(168, 88, 52, 0.32);
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--silver-100);
  animation: loader-exit 1s var(--ease) 1.2s forwards;
  pointer-events: none;
}

.skip-loader .loading-screen {
  display: none;
}

.loading-screen img {
  width: min(330px, 64vw);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  animation: logo-enter 0.95s var(--ease) forwards;
}

.loading-screen span {
  position: absolute;
  bottom: 12vh;
  width: 140px;
  height: 1px;
  overflow: hidden;
  background: rgba(7, 18, 41, 0.14);
}

.loading-screen span::after {
  content: "";
  display: block;
  width: 60%;
  height: 100%;
  background: var(--navy-900);
  animation: loader-bar 1.15s var(--ease) forwards;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 64px);
  color: var(--white);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
    padding 0.4s var(--ease), color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  padding-block: 14px;
  color: var(--navy-950);
  border-bottom: 1px solid rgba(7, 18, 41, 0.1);
  background: rgba(244, 244, 240, 0.83);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
}

.brand-mark img {
  width: 58px;
  height: 38px;
  object-fit: contain;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.2));
}

.site-header.is-scrolled .brand-mark img {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]:not(.nav-cta)::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 22px;
  color: var(--navy-950);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}

.site-header.is-scrolled .nav-cta,
.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--white);
  background: var(--navy-950);
}

.nav-cta[aria-current="page"] {
  outline: 1px solid rgba(168, 88, 52, 0.42);
  outline-offset: 3px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(7, 18, 41, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

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

.section-light {
  background: var(--silver-100);
}

.hero {
  position: relative;
  min-height: clamp(700px, 92vh, 920px);
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: 150px clamp(22px, 7vw, 108px) 92px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 70% 18%, rgba(244, 244, 240, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(7, 18, 41, 0.75), rgba(7, 18, 41, 0.36) 48%, rgba(7, 18, 41, 0.84)),
    linear-gradient(180deg, rgba(7, 18, 41, 0.2), rgba(7, 18, 41, 0.72));
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 76%, transparent);
  opacity: 0.5;
}

.field-line {
  position: absolute;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  opacity: 0.34;
  transform-origin: left center;
  animation: line-sweep 6s var(--ease) infinite;
}

.line-one {
  top: 32%;
  left: 8%;
  width: 42vw;
  transform: rotate(-17deg);
}

.line-two {
  right: 4%;
  bottom: 29%;
  width: 34vw;
  animation-delay: 1.7s;
  transform: rotate(19deg);
}

.hero-inner {
  width: min(900px, 100%);
  transform: translateY(-15px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #d6c0b5;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(58px, 9vw, 150px);
}

.hero h1 {
  font-size: clamp(58px, 8.66vw, 146px);
}

h2 {
  font-size: clamp(36px, 5vw, 76px);
}

.hero-lede {
  max-width: 760px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.66vw, 60px);
  line-height: 1.16;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

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

.button.primary {
  color: var(--navy-950);
  background: var(--silver-100);
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: var(--white);
  background: var(--rust);
  box-shadow: 0 28px 74px rgba(168, 88, 52, 0.32);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
}

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

.page-hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: clamp(160px, 18vw, 250px) clamp(22px, 7vw, 108px)
    clamp(84px, 9vw, 132px);
}

.page-hero-bg,
.page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.page-hero-bg {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.04);
}

.page-hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 75% 20%, rgba(244, 244, 240, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(7, 18, 41, 0.88), rgba(7, 18, 41, 0.54)),
    linear-gradient(180deg, rgba(7, 18, 41, 0.28), rgba(7, 18, 41, 0.82));
}

.page-hero-inner {
  width: min(940px, 100%);
}

.services-page .page-hero-bg {
  object-position: center 56%;
  filter: saturate(0.9) contrast(1.08);
}

.services-page .page-hero-shade {
  background:
    radial-gradient(circle at 78% 18%, rgba(244, 244, 240, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(7, 18, 41, 0.86), rgba(7, 18, 41, 0.48) 56%, rgba(7, 18, 41, 0.72)),
    linear-gradient(180deg, rgba(7, 18, 41, 0.1), rgba(7, 18, 41, 0.82));
}

.services-page .page-hero {
  align-items: center;
  justify-items: center;
  min-height: clamp(618px, calc(64vh + 98px), 738px);
  padding-bottom: clamp(60px, 7vw, 92px);
}

.services-page .page-hero-inner {
  width: min(1080px, calc(100vw - clamp(44px, 14vw, 216px)));
  margin-inline: auto;
  padding-top: 66px;
  text-align: left;
  transform: translate(-67px, -164px);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(54px, 7vw, 118px);
}

.services-page .page-hero-inner .eyebrow {
  transform: translateY(10px);
}

.services-page .page-hero h1 {
  max-width: none;
  font-size: clamp(40px, 5.65vw, 76px);
  white-space: nowrap;
}

.services-hero-subtitle {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.4;
}

.page-lede,
.booking-copy p,
.final-cta-copy p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 34px);
  line-height: 1.32;
}

.intro,
.philosophy,
.testimonials,
.contact,
.advisory-section {
  padding: clamp(78px, 10vw, 150px) clamp(22px, 7vw, 108px);
}

.advisory-section {
  background:
    linear-gradient(180deg, var(--silver-100), rgba(255, 255, 255, 0.78)),
    var(--silver-100);
}

.services-page .advisory-section {
  padding-top: calc(clamp(78px, 10vw, 150px) - 20px);
}

.advisory-intro {
  display: grid;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto clamp(46px, 7vw, 84px);
  text-align: center;
}

.advisory-intro .eyebrow {
  margin-bottom: 0;
}

.advisory-intro h2 {
  font-size: clamp(44px, 6vw, 92px);
}

.advisory-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(16, 23, 35, 0.72);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.65;
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.advisory-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 640px;
  gap: 28px;
  padding: clamp(28px, 3.4vw, 46px);
  border: 1px solid rgba(7, 18, 41, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 232, 226, 0.82)),
    var(--white);
  box-shadow: 0 24px 80px rgba(7, 18, 41, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.advisory-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 90px rgba(7, 18, 41, 0.14);
}

.advisory-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 30% 0%, rgba(168, 88, 52, 0.22), transparent 34%),
    linear-gradient(150deg, var(--navy-900), var(--navy-800));
  box-shadow: 0 32px 100px rgba(7, 18, 41, 0.24);
}

.advisory-card .eyebrow {
  margin-bottom: 16px;
}

.advisory-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 2.8vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

.advisory-card p,
.advisory-card li {
  color: rgba(16, 23, 35, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.advisory-card.featured p,
.advisory-card.featured li {
  color: rgba(255, 255, 255, 0.74);
}

.advisory-card p {
  margin: 18px 0 0;
}

.advisory-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.pricing-disclosure {
  align-self: end;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 18, 41, 0.12);
}

.advisory-card.featured .pricing-disclosure {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.pricing-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.pricing-disclosure summary::-webkit-details-marker {
  display: none;
}

.pricing-disclosure summary::after {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s var(--ease);
}

.pricing-disclosure[open] summary::after {
  transform: rotate(-135deg) translateY(-2px);
}

.pricing-disclosure summary:hover,
.pricing-disclosure summary:focus-visible {
  color: var(--rust);
}

.pricing-disclosure summary:focus-visible {
  outline: 2px solid rgba(168, 88, 52, 0.38);
  outline-offset: 6px;
}

.advisory-card.featured .pricing-disclosure summary {
  color: var(--white);
}

.advisory-card.featured .pricing-disclosure summary:hover,
.advisory-card.featured .pricing-disclosure summary:focus-visible {
  color: #d6c0b5;
}

.advisory-price {
  display: grid;
  gap: 8px;
  padding-top: 14px;
}

.pricing-disclosure[open] .advisory-price {
  animation: price-reveal 0.28s var(--ease) both;
}

.advisory-price strong {
  font-size: 17px;
  line-height: 1.45;
}

.advisory-price span {
  color: rgba(16, 23, 35, 0.5);
  font-family: var(--serif);
  font-style: italic;
}

.advisory-card.featured .advisory-price span {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-950);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease);
}

.pricing-cta:hover,
.pricing-cta:focus-visible {
  color: var(--white);
  background: var(--rust);
  transform: translateY(-2px);
}

.advisory-card.featured .pricing-cta {
  color: var(--navy-950);
  background: var(--white);
}

.advisory-card.featured .pricing-cta:hover,
.advisory-card.featured .pricing-cta:focus-visible {
  color: var(--white);
  background: var(--rust);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(280px, 420px);
  justify-content: center;
  gap: clamp(46px, 6vw, 96px);
  align-items: center;
}

.intro-copy,
.philosophy-copy {
  max-width: 720px;
}

.body-stack {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.body-stack p,
.contact-copy p {
  margin: 0;
  color: rgba(16, 23, 35, 0.76);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
}

.highlight {
  position: relative;
  color: var(--ink) !important;
  font-weight: 800;
}

.highlight::after {
  position: absolute;
  right: 0;
  bottom: calc(0.12em - 8px);
  left: 0;
  z-index: -1;
  height: 0.45em;
  content: "";
  background: rgba(168, 88, 52, 0.18);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease);
}

.highlight.is-visible::after {
  transform: scaleX(1);
}

.portrait-stack {
  display: grid;
  gap: 16px;
  width: 100%;
}

.portrait-wrap {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.portrait-wrap::before {
  position: absolute;
  inset: 14px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 5px;
  pointer-events: none;
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.portrait-wrap:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.08);
}

.portrait-credentials {
  display: grid;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 4px;
  color: rgba(16, 23, 35, 0.72);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.55;
  list-style: none;
  text-align: left;
  text-transform: uppercase;
}

.portrait-credentials li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 7px;
  align-items: start;
}

.portrait-credentials li::before {
  content: "-";
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(320px, 560px) minmax(0, 640px);
  justify-content: center;
  gap: clamp(46px, 6vw, 96px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(232, 232, 226, 0.72), transparent 40%),
    var(--white);
}

.stadium-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(7, 18, 41, 0.16);
}

.stadium-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, transparent 58%, rgba(168, 88, 52, 0.22));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.stadium-frame:hover::after {
  opacity: 1;
}

.stadium-frame img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 45% center;
  transition: transform 0.8s var(--ease);
}

.stadium-frame:hover img {
  transform: scale(1.04);
}

.athlete-experience {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(300px, 460px);
  justify-content: center;
  gap: clamp(46px, 6vw, 90px);
  align-items: center;
  background:
    linear-gradient(90deg, transparent 56%, rgba(232, 232, 226, 0.62)),
    var(--white);
}

.athlete-copy {
  max-width: 620px;
}

.athlete-copy h2 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 58px);
}

.athlete-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(7, 18, 41, 0.16);
}

.athlete-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 18, 41, 0.02), rgba(7, 18, 41, 0.16));
  pointer-events: none;
}

.athlete-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 48% center;
  transition: transform 0.8s var(--ease);
}

.athlete-frame:hover img {
  transform: scale(1.04);
}

.section-kicker {
  display: grid;
  max-width: 960px;
  gap: 14px;
  margin-bottom: 44px;
}

.section-kicker h2 {
  max-width: 820px;
}

.testimonials .section-kicker {
  max-width: 1040px;
}

.testimonials .section-kicker h2 {
  max-width: 1040px;
  font-size: clamp(46px, 4.8vw, 68px);
}

.testimonials .section-kicker h2 span {
  display: block;
  white-space: nowrap;
}

.testimonials .section-kicker h2 span:nth-of-type(2) {
  font-size: clamp(44px, 4.46vw, 64px);
}

.testimonials {
  margin-top: -45px;
}

.home-page .philosophy + .testimonials,
.home-page .athlete-experience + .testimonials {
  margin-top: 0;
  padding-top: clamp(64px, 8vw, 112px);
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.testimonial-card {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: clamp(32px, 5vw, 68px);
  border: 1px solid rgba(7, 18, 41, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 232, 226, 0.92)),
    var(--silver-150);
  box-shadow: 0 18px 70px rgba(7, 18, 41, 0.08);
  opacity: 0.48;
  transform: scale(0.98);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.testimonial-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card p {
  max-width: 1040px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 50px);
  line-height: 1.18;
  text-align: center;
}

.testimonial-card footer {
  max-width: 1040px;
  margin-top: clamp(28px, 4vw, 54px);
  color: rgba(16, 23, 35, 0.66);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 24px;
}

.carousel-button {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(7, 18, 41, 0.14);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--white);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(7, 18, 41, 0.24);
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--navy-950);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 640px);
  gap: clamp(38px, 8vw, 112px);
  align-items: center;
  background:
    radial-gradient(circle at 12% 22%, rgba(168, 88, 52, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.spacious-contact {
  min-height: calc(100vh - 102px);
  padding-top: clamp(148px, 14vw, 220px);
  padding-bottom: clamp(86px, 9vw, 150px);
}

.contact-copy {
  max-width: 620px;
}

.final-cta-copy > .eyebrow,
.contact-copy > .eyebrow,
.booking-copy > .eyebrow {
  transform: translateY(-5px);
}

.contact-copy h1,
.booking-copy h1 {
  max-width: 580px;
  font-size: clamp(44px, 4.7vw, 72px);
  line-height: 1.1;
}

.contact-copy p {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(30px, 4.6vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 6vw, 96px);
  padding: clamp(76px, 9vw, 134px) clamp(22px, 7vw, 108px);
  background:
    radial-gradient(circle at 14% 24%, rgba(168, 88, 52, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.final-cta h2 {
  max-width: 720px;
  font-size: clamp(40px, 6vw, 86px);
}

.services-page .final-cta-copy {
  padding-left: 17px;
}

.final-cta .button {
  flex: 0 0 auto;
}

.service-detail {
  padding-top: clamp(80px, 9vw, 138px);
}

.booking {
  position: relative;
  min-height: calc(100vh - 102px);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(148px, 14vw, 220px) clamp(22px, 7vw, 108px)
    clamp(84px, 9vw, 146px);
}

.booking-bg,
.booking-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.booking-bg {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) contrast(1.05);
  transform: scale(1.05);
}

.booking-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 244, 240, 0.15), transparent 32%),
    linear-gradient(90deg, rgba(7, 18, 41, 0.94), rgba(7, 18, 41, 0.72)),
    linear-gradient(180deg, rgba(7, 18, 41, 0.1), rgba(7, 18, 41, 0.92));
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(500px, 650px);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.booking-copy {
  max-width: 640px;
}

.booking-copy h1 {
  max-width: 640px;
  font-size: clamp(52px, 5.6vw, 86px);
}

.booking-copy-stack {
  display: grid;
  gap: 18px;
  max-width: 620px;
  margin-top: 34px;
}

.booking-copy-stack p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--sans);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

.booking-copy-stack strong {
  color: var(--white);
  font-weight: 800;
}

.booking-form {
  gap: 24px;
  padding: clamp(32px, 5vw, 64px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(7, 18, 41, 0.18);
}

.form-intro {
  display: grid;
  gap: 10px;
  padding-bottom: 8px;
}

.form-intro .eyebrow {
  margin-bottom: 0;
}

.form-intro h2 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.1;
}

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

label {
  display: grid;
  gap: 9px;
}

label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

label small {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 400;
  margin-left: 4px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 18, 41, 0.24);
  outline: 0;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

input {
  min-height: 54px;
  padding: 0 16px;
}

textarea {
  min-height: 170px;
  resize: vertical;
  padding: 16px;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(7, 18, 41, 0.38);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--rust);
}

.checkbox-row span {
  font-weight: 400;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.form-message.is-error {
  color: #ffd6c9;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 34px clamp(22px, 7vw, 108px);
  color: rgba(7, 18, 41, 0.68);
  background: var(--silver-100);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
}

.footer-brand,
.footer-nav,
.footer-contact {
  display: flex;
  align-items: center;
}

.footer-brand {
  justify-self: start;
  gap: 12px;
}

.footer-brand img {
  width: 52px;
  height: 34px;
  object-fit: contain;
}

.footer-nav {
  justify-self: center;
  gap: clamp(18px, 3vw, 34px);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
}

.footer-nav a,
.footer-contact a {
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--navy-950);
  transform: translateY(-1px);
}

.footer-contact {
  justify-self: end;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.35;
}

.footer-contact a,
.pricing-disclosure,
.advisory-price {
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logo-enter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loader-bar {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(180%);
  }
}

@keyframes loader-exit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(-0.8%, -0.8%, 0);
  }
  to {
    transform: scale(1.08) translate3d(0.8%, 0.6%, 0);
  }
}

@keyframes line-sweep {
  0%,
  100% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  38%,
  58% {
    opacity: 0.36;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes price-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1440px) {
  .intro,
  .philosophy,
  .athlete-experience,
  .testimonials,
  .contact,
  .advisory-section {
    padding-top: clamp(104px, 7vw, 132px);
    padding-bottom: clamp(104px, 7vw, 132px);
  }

  .services-page .advisory-section {
    padding-top: clamp(88px, 6vw, 112px);
  }

  .home-page .philosophy + .testimonials,
  .home-page .athlete-experience + .testimonials {
    padding-top: clamp(72px, 5.5vw, 96px);
  }

  .final-cta {
    padding-top: clamp(96px, 6vw, 112px);
    padding-bottom: clamp(96px, 6vw, 112px);
  }

  .booking {
    padding-top: clamp(154px, 9vw, 188px);
    padding-bottom: clamp(92px, 7vw, 116px);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: var(--navy-950);
    background: rgba(244, 244, 240, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px;
  }

  .site-nav a:not(.nav-cta) {
    width: fit-content;
  }

  .site-nav a:not(.nav-cta)::after {
    bottom: 10px;
    left: 16px;
    width: calc(100% - 32px);
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .services-page .page-hero {
    align-items: start;
  }

  .services-page .page-hero-inner {
    width: min(760px, 100%);
    padding-top: 0;
    text-align: left;
    transform: none;
  }

  .services-page .page-hero-inner .eyebrow {
    transform: none;
  }

  .services-page .page-hero h1 {
    font-size: clamp(42px, 7.5vw, 64px);
    white-space: normal;
  }

  .intro,
  .philosophy,
  .athlete-experience,
  .contact,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .advisory-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .advisory-card {
    min-height: auto;
  }

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

  .booking-copy {
    position: static;
  }

  .portrait-stack {
    max-width: 480px;
  }

  .philosophy {
    background: var(--white);
  }

  .stadium-frame {
    order: 2;
  }

  .stadium-frame img {
    min-height: 360px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand,
  .footer-nav,
  .footer-contact {
    justify-self: start;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }
}

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

  .brand-mark span {
    font-size: 15px;
  }

  .brand-mark img {
    width: 48px;
    height: 32px;
  }

  .hero {
    min-height: 88vh;
    align-items: end;
    padding: 118px 22px 78px;
  }

  .page-hero {
    min-height: 66vh;
    padding: 132px 22px 70px;
  }

  .services-page .page-hero {
    align-items: start;
    padding-top: 112px;
    padding-bottom: 108px;
  }

  .services-page .page-hero-inner {
    padding-top: 0;
    text-align: left;
    transform: none;
  }

  .services-page .page-hero-inner .eyebrow {
    transform: none;
  }

  .page-hero h1,
  .contact-copy h1,
  .booking-copy h1 {
    font-size: clamp(42px, 11.6vw, 56px);
    overflow-wrap: normal;
    word-break: normal;
  }

  .services-page .page-hero h1 {
    font-size: clamp(35px, 9.8vw, 40px);
    line-height: 1.12;
    white-space: normal;
  }

  .testimonials .section-kicker h2 span {
    white-space: normal;
  }

  .services-hero-subtitle {
    max-width: 340px;
    margin-top: 16px;
    font-size: 18px;
  }

  .page-lede,
  .booking-copy p,
  .final-cta-copy p {
    font-size: 20px;
  }

  .booking-copy-stack p {
    font-size: 16px;
  }

  .hero-bg {
    object-position: 52% center;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
    overflow-wrap: anywhere;
  }

  .hero-lede {
    max-width: 360px;
    font-size: clamp(28px, 9vw, 42px);
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    min-height: 50px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .intro,
  .philosophy,
  .athlete-experience,
  .testimonials,
  .contact,
  .advisory-section {
    padding: 72px 22px;
  }

  .services-page .advisory-section {
    padding-top: 52px;
  }

  .advisory-intro {
    gap: 14px;
    margin-bottom: 34px;
    text-align: left;
  }

  .advisory-intro p {
    margin: 0;
  }

  .advisory-card {
    gap: 22px;
    padding: 26px;
  }

  .spacious-contact,
  .booking {
    padding: 122px 22px 72px;
  }

  .booking-layout {
    gap: 34px;
  }

  .final-cta {
    padding: 70px 22px;
  }

  .portrait-stack {
    order: -1;
  }

  .portrait-wrap img {
    aspect-ratio: 1 / 1;
  }

  .body-stack {
    margin-top: 26px;
  }

  .testimonial-card {
    min-height: 460px;
    padding: 28px;
  }

  .testimonial-card p {
    font-size: 28px;
  }

  .testimonials .section-kicker h2 {
    font-size: clamp(42px, 11vw, 56px);
  }

  .testimonials .section-kicker h2 span {
    white-space: normal;
  }

  .carousel-controls {
    justify-content: space-between;
  }

  .carousel-dots {
    flex: 1;
    justify-content: center;
  }

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

  .contact-form {
    gap: 18px;
    padding: 22px;
  }

  .booking-form {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
