
:root {
  --navy: #001430;
  --sky: #2679e7;
  --cloud: #F6F8FA;
  --ink: #0A0F19;
  --white: #fff;
  --font: "Inter Tight", system-ui, sans-serif;
  --display: "Oswald", "Inter Tight", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  font-size: 18px;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--sky); }

.skip-link.screen-reader-text {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 999999;
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}
.skip-link.screen-reader-text:focus {
  left: 6px;
  top: 6px;
}

h1, h2, h3, h4 { 
  overflow-wrap: normal; 
  word-wrap: normal; 
  word-break: normal; 
  hyphens: none; 
}

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

.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 20;
  display: flex; align-items: center; gap: 32px;
  padding: 18px 48px;
  transition: background .25s, box-shadow .25s;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  z-index: 21;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.scroll-progress {
  position: absolute; top: 0; left: 0; height: 2px;
  background: var(--sky);
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
  pointer-events: none;
  width: 100%;
}
.site-header .nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-header .nav ul,
.site-header .nav .menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav li,
.site-header .nav .menu-item {
  display: block;
  float: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav li + li,
.site-header .nav .menu-item + .menu-item {
  margin-left: 28px;
}
.site-header .nav a {
  position: relative;
  transition: color .3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .site-header .nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--sky);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
  }
  .site-header .nav a:hover::after {
    transform: scaleX(1);
  }
}
.logo { height: 52px; width: auto; display: block; }
.logo img { height: 52px; width: auto; display: block; }
.logo-navy { display: none; }
.site-header[data-theme="hero"] {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.site-header[data-theme="dark"] {
  background: rgba(0, 20, 48, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.site-header[data-theme="light"] {
  background: rgba(246,248,250,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0,20,48,.08);
}
.site-header[data-theme="light"] .nav { color: var(--navy); }
.site-header[data-theme="hero"] .nav,
.site-header[data-theme="dark"] .nav { color: var(--white); }
.site-header[data-theme="light"] .logo-white { display: none; }
.site-header[data-theme="light"] .logo-navy { display: block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease;
}
.btn-sky { background: var(--sky); color: var(--navy); }
@media (hover: hover) and (pointer: fine) {
  .btn-sky:hover {
    background: #6eb9f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 121, 231, 0.3);
  }
}
.btn-lg { padding: 16px 28px; }
.watch {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 500;
  transition: opacity .3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 18px;
  padding: 0;
}
.watch:hover { opacity: 0.85; }
.play {
  width: 36px; height: 36px; border: 1.5px solid currentColor; border-radius: 50%;
  position: relative;
}
.play:after {
  content: "";
  position: absolute; left: 13px; top: 10px;
  border: 8px solid transparent; border-left-color: currentColor; border-left-width: 10px;
}
.text-link { 
  color: var(--sky); 
  font-weight: 600; 
  letter-spacing: .04em; 
  text-transform: uppercase; 
  font-size: 13px;
  transition: color .3s ease;
}
.text-link:hover { color: #6eb9f0; }
.text-link.invert { color: var(--sky); }

.hero {
  position: relative; min-height: 100vh;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-bg { 
  position: absolute; inset: 0; 
  width: 100%; height: 100%; 
  object-fit: cover; 
  object-position: 70% center;
}
.hero-bg-still {
  z-index: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-bg-still {
    animation: kenBurns 20s ease-out infinite alternate;
  }
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0, 20, 48, 0.90) 0, rgba(0, 20, 48, 0) 220px),
              linear-gradient(90deg, rgba(0,20,48,.90) 0%, rgba(10,15,25,.88) 12%, rgba(10,15,25,.65) 30%, rgba(10,15,25,.35) 48%, rgba(10,15,25,.12) 72%, rgba(10,15,25,0) 85%),
              linear-gradient(180deg, rgba(10,15,25,0) 0%, rgba(10,15,25,0) 70%, rgba(10,15,25,.72) 100%);
  z-index: 3;
}
.hero-copy { 
  position: relative; 
  padding: 120px 8vw 100px; 
  max-width: 920px;
  z-index: 4;
}
@media (min-width: 981px) {
  .hero-copy {
    padding-top: 0;
  }
}
.hero h1 {
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.hero-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}
.hero-line.animate {
  animation: fadeInUp 0.7s ease forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.2s; }
.hero-line:nth-child(3) { animation-delay: 0.5s; }
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero h1 em {
  font-style: normal;
  color: var(--white);
  box-shadow: inset 0 -8px 0 var(--sky);
}
.hero-copy p { 
  margin: 50px 0 35px; 
  max-width: 520px; 
  color: rgba(255,255,255,.86);
  opacity: 0;
  transform: translateY(16px);
}
.hero-copy p.animate {
  animation: fadeInUp 0.6s ease 0.8s forwards;
}
.hero-cta { 
  display: flex; 
  align-items: center; 
  gap: 28px; 
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}
.hero-cta.animate {
  animation: fadeInUp 0.6s ease 1.2s forwards;
}
.stats {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  list-style: none;
  background: rgba(10,15,25,.78);
  border-top: 1px solid rgba(38,121,231,.35);
  z-index: 4;
  opacity: 0;
  transform: translateY(16px);
}
.stats.animate {
  animation: fadeInUp 0.6s ease 1.6s forwards;
}
.stats li {
  position: relative;
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stats li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: var(--sky);
}
.stats strong {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  overflow-wrap: normal;
  word-wrap: normal;
  word-break: normal;
  hyphens: none;
  white-space: nowrap;
}
.stats span {
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  line-height: 1.3;
}

.press {
  background: var(--navy);
  padding: 32px 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.press-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(38,121,231,.72);
}
.press-logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px 64px;
}
.press-logos li {
  display: flex;
  align-items: center;
}
.press-logos img {
  height: 32px;
  width: auto;
  max-width: 200px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition: opacity 0.3s ease;
}
.press-logos img:hover {
  opacity: 1;
}

.busy {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--cloud);
  max-width: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.busy-copy { 
  padding: 12vh 8vw; 
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 80% at 100% 48%, rgba(38, 121, 231, 0.48) 0%, rgba(38, 121, 231, 0.20) 38%, rgba(38, 121, 231, 0) 72%),
    radial-gradient(ellipse 55% 50% at 0% 8%, rgba(38, 121, 231, 0.16) 0%, rgba(38, 121, 231, 0) 70%);
}
.busy-copy.reveal { opacity: 1; transform: translateY(0); }
.busy h2 { 
  font-size: clamp(36px, 4.4vw, 64px); 
  line-height: 1.05; 
  letter-spacing: -.03em; 
  margin-bottom: 28px; 
  color: var(--navy);
}
.busy p { max-width: 460px; margin-bottom: 16px; color: #24324a; }
.busy-photo { overflow: hidden; }
.busy-photo img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  min-height: 80vh;
  transition: transform 0.6s ease, filter 0.6s ease;
}
@media (hover: hover) and (pointer: fine) {
  .busy-photo:hover img {
    transform: scale(1.06);
    filter: brightness(1.08);
  }
}

.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  min-height: 88vh;
  background: var(--ink);
  max-width: 100%;
  width: 100%;
  position: relative;
}
.pillars article { 
  position: relative; 
  overflow: hidden; 
  min-height: 88vh; 
  max-width: 100%;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.pillars article.reveal { opacity: 1; transform: translateY(0); }
.pillars article:nth-child(1).reveal { transition-delay: 0s; }
.pillars article:nth-child(2).reveal { transition-delay: 0.08s; }
.pillars article:nth-child(3).reveal { transition-delay: 0.16s; }
.pillars article:nth-child(4).reveal { transition-delay: 0.24s; }
.pillars img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  filter: brightness(.45);
  transition: transform 0.6s ease, filter 0.6s ease;
}
@media (hover: hover) and (pointer: fine) {
  .pillars article:hover img {
    transform: scale(1.06);
    filter: brightness(.52);
  }
}
.pillars article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  background: linear-gradient(to top, rgba(0, 20, 48, 0.88) 0%, rgba(0, 20, 48, 0.42) 55%, rgba(0, 20, 48, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.pillars div {
  position: absolute; left: 28px; right: 28px; bottom: 40px; color: var(--white);
  z-index: 2;
}
.pillars h3 {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline;
  padding-bottom: 6px;
  box-shadow: inset 0 -4px 0 transparent;
}
.pillars article:first-child h3 {
  box-shadow: inset 0 -4px 0 var(--sky);
}
.pillars.is-rule-ready article:first-child h3 {
  box-shadow: none;
}
.pillars-rule {
  position: absolute;
  height: 4px;
  background: var(--sky);
  pointer-events: none;
  z-index: 4;
  left: 0;
  top: 0;
  width: 0;
  transition: left 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), top 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .pillars-rule { transition: none; }
}
.pillars p { margin-top: 16px; font-size: 15px; max-width: 240px; color: rgba(255,255,255,.86); }

.film { 
  position: relative; 
  min-height: 70vh; 
  color: var(--white); 
  display: flex; 
  align-items: flex-end;
  overflow: hidden;
}
.film img { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: transform 0.6s ease;
}
.film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,15,25,.78) 0%, rgba(10,15,25,.35) 55%, rgba(10,15,25,.25) 100%),
              linear-gradient(180deg, rgba(10,15,25,.15) 0%, rgba(10,15,25,.65) 100%);
  z-index: 1;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .film:hover img {
    transform: scale(1.06);
  }
}
.film-copy {
  position: relative;
  padding: 10vh 8vw;
  max-width: 740px;
  z-index: 2;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.film-copy.reveal { opacity: 1; transform: translateY(0); }
.film h2 { 
  font-size: clamp(40px, 5vw, 72px); 
  line-height: 1; 
  letter-spacing: -.03em; 
  margin-bottom: 16px;
}
.film-copy p {
  margin-bottom: 32px;
}
.film .watch {
  color: var(--sky);
}

.pair {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--cloud);
}

.testimonial-slider {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: center;
  column-gap: 12px;
  padding: 80px 28px;
  width: 100%;
  max-width: 860px;
  justify-self: center;
  align-self: center;
  align-content: center;
  height: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonial-slider.reveal {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-cards {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  width: 100%;
  max-width: 640px;
  min-height: 340px;
}

.testimonial-card {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(0,20,48,0.08);
  box-shadow: 0 12px 40px rgba(0,20,48,0.08);
  padding: 44px 48px;
}

.testimonial-card-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonial-card blockquote {
  margin: 0 0 40px 0;
}

.testimonial-card blockquote p {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
  color: var(--navy);
  font-weight: 700;
  margin: 0;
  overflow-wrap: normal;
  word-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.testimonial-card blockquote p::before {
  content: """;
}

.testimonial-card blockquote p::after {
  content: """;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: #EEF1F4;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-style: normal;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0;
  text-transform: none;
}

.testimonial-role {
  font-size: 14px;
  color: #5b6b82;
  letter-spacing: 0;
  text-transform: none;
}

.testimonial-nav {
  position: static;
  transform: none;
  grid-row: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,20,48,0.12);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  z-index: 10;
}

.testimonial-nav-prev {
  grid-column: 1;
}

.testimonial-nav-next {
  grid-column: 3;
}

.testimonial-nav:hover {
  border-color: var(--navy);
  background: rgba(0,20,48,0.04);
}

.testimonial-dots {
  grid-column: 1 / -1;
  grid-row: 2;
  display: none;
  gap: 10px;
  margin-top: 20px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d5dde6;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.testimonial-dot:hover {
  transform: scale(1.2);
}

.testimonial-dot-active {
  background: var(--sky);
}
.scorecard { 
  background: var(--cloud); 
  padding: 80px 56px; 
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scorecard.reveal { opacity: 1; transform: translateY(0); }
.scorecard h2 { font-size: 42px; line-height: 1.05; color: var(--navy); margin-bottom: 12px; }
.scorecard p { margin-bottom: 28px; color: #24324a; }
.scorecard ul { list-style: none; margin-bottom: 28px; }
.scorecard li { display: grid; grid-template-columns: 140px 1fr; align-items: center; gap: 16px; margin-bottom: 14px; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
.scorecard i {
  display: block; height: 2px; background: #d5dde6; position: relative;
}
.scorecard i:after {
  content: ""; position: absolute; left: 0; top: -4px; height: 10px; width: 10px; border-radius: 50%;
  background: var(--sky); left: calc(var(--v) * 100% - 5px);
}
.scorecard i:before {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: calc(var(--v) * 100%);
  background: var(--sky);
}
.scorecard small { margin-top: 12px; color: #5b6b82; font-size: 13px; }

.weekend {
  background: var(--cloud);
  padding: 10vh 8vw 8vh;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.weekend.reveal { opacity: 1; transform: translateY(0); }
.weekend h2 { 
  font-size: clamp(36px, 4vw, 58px); 
  line-height: 1.05; 
  margin-bottom: 56px;
  color: var(--navy);
  text-align: left;
}
.weekend-copy {
  display: flex;
  flex-direction: column;
}
.weekend-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin: 0 0 48px;
}
.weekend-day {
  position: relative;
}
.weekend-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 32px;
}
.weekend-step {
  position: relative;
  padding-left: 36px;
  margin-bottom: 40px;
}
.weekend-step:last-child {
  margin-bottom: 0;
}
.weekend-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: -40px;
  width: 1.5px;
  background: var(--sky);
}
.weekend-step:last-child::before {
  bottom: 0;
}
.weekend-step::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sky);
}
.weekend-step h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.weekend-step p {
  font-size: 16px;
  line-height: 1.5;
  color: #5b6b82;
}
.weekend-cta {
  text-align: left;
  padding-top: 16px;
}
.weekend-photo {
  width: 100%;
  overflow: hidden;
  align-self: stretch;
}
.weekend-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease, filter 0.6s ease;
}
@media (hover: hover) and (pointer: fine) {
  .weekend-photo:hover img {
    transform: scale(1.04);
    filter: brightness(1.06);
  }
}

@media (min-width: 981px) {
  .weekend {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: stretch;
  }
  .weekend-photo {
    margin-top: 0;
  }
}

.brent-band {
  display: grid; grid-template-columns: .8fr 1.2fr;
  background: var(--ink); color: var(--white);
  overflow: hidden;
  min-height: 75vh;
}
.brent-band > :first-child { overflow: hidden; }
.brent-band img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center top; 
  min-height: 75vh;
  transition: transform 0.6s ease, filter 0.6s ease;
}
@media (hover: hover) and (pointer: fine) {
  .brent-band img:hover {
    transform: scale(1.06);
    filter: brightness(1.08);
  }
}
.brent-band > div { 
  padding: 10vh 8vw; 
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.brent-band div.reveal { opacity: 1; transform: translateY(0); }
.brent-band .brent-eyebrow {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 600;
  margin-bottom: 12px !important;
}
.brent-band h2 { 
  font-size: clamp(40px, 4vw, 56px); 
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.brent-band p { 
  max-width: 520px; 
  margin-bottom: 16px; 
  color: rgba(255,255,255,.84); 
  line-height: 1.6;
  font-size: 16px;
}
.brent-stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin: 20px 0 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(38,121,231,.25);
  max-width: none;
  width: auto;
}
.brent-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: auto;
  text-align: left;
}
.brent-stat strong {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.02em;
  color: var(--white);
}
.brent-stat span {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.brent-band .btn {
  width: auto;
  align-self: flex-start;
  display: inline-flex;
  margin-top: 30px;
}
.brent-band .text-link {
  color: var(--sky);
  display: inline-block;
  margin-top: 8px;
}

.events { 
  padding: 10vh 8vw 8vh; 
  background: var(--cloud);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.events.reveal { opacity: 1; transform: translateY(0); }
.events h2 { 
  font-size: clamp(36px, 4vw, 58px); 
  color: var(--navy); 
  margin-bottom: 40px;
}
.event-lead {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: center;
  margin-bottom: 48px; color: var(--navy);
  max-width: 100%;
  overflow: hidden;
}
.event-lead h3 { 
  font-size: clamp(48px, 6vw, 84px); 
  line-height: .9; 
  text-transform: uppercase; 
  letter-spacing: -.03em;
  max-width: 100%;
  margin-bottom: 12px;
}
.event-badge {
  display: inline-flex;
  align-items: center;
  background: var(--sky);
  color: var(--white);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.event-lead .event-date {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.event-lead .event-venue {
  font-size: 17px;
  color: #24324a;
  margin-bottom: 8px;
  line-height: 1.5;
  font-weight: 500;
}
.event-lead .event-time {
  font-size: 15px;
  color: #5b6b82;
  margin-bottom: 20px;
}
.event-lead .btn {
  margin-top: 8px;
}
.event-lead-media { 
  overflow: hidden; 
}
.event-lead-media img { 
  width: 100%; 
  height: 420px; 
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
@media (hover: hover) and (pointer: fine) {
  .event-lead-media:hover img {
    transform: scale(1.06);
    filter: brightness(1.08);
  }
}

.event-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px;
}
.event-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.event-card.reveal { opacity: 1; transform: translateY(0); }
.event-card:nth-child(1).reveal { transition-delay: 0s; }
.event-card:nth-child(2).reveal { transition-delay: 0.08s; }
.event-card:nth-child(3).reveal { transition-delay: 0.16s; }
.event-card:nth-child(4).reveal { transition-delay: 0.24s; }
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 20, 48, 0.92) 0%, rgba(0, 20, 48, 0.55) 45%, rgba(0, 20, 48, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.event-card-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--white);
  padding: 0 24px 32px;
  z-index: 2;
}
.event-card h4 {
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.event-card-date {
  color: rgba(255,255,255,.96);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.event-card-extra {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-card-venue {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}
.event-card-extra .btn {
  font-size: 13px;
  padding: 12px 20px;
  align-self: flex-start;
}

@media (min-width: 981px) {
  .event-card-extra {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.5s ease;
  }
  .event-card:hover .event-card-extra,
  .event-card:focus-within .event-card-extra {
    max-height: 9rem;
    opacity: 1;
    margin-top: 16px;
  }
  .event-card:hover img,
  .event-card:focus-within img {
    transform: scale(1.05);
  }
  @media (prefers-reduced-motion: reduce) {
    .event-card-extra {
      max-height: 9rem;
      opacity: 1;
      margin-top: 16px;
      overflow: visible;
    }
  }
}

.faq { 
  padding: 10vh 8vw; 
  background: var(--cloud);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  max-width: 1200px;
  margin: 0 auto;
}
.faq.reveal { opacity: 1; transform: translateY(0); }
.faq h2 { font-size: 36px; color: var(--navy); margin-bottom: 28px; }
.faq details { 
  border-top: 1px solid #d5dde6; 
  padding: 16px 0;
  transition: background-color 0.3s ease;
}
.faq details:last-of-type { border-bottom: 1px solid #d5dde6; }
.faq details:hover { background-color: rgba(38, 121, 231, 0.04); }
.faq summary { 
  cursor: pointer; 
  font-weight: 600; 
  color: var(--navy); 
  list-style: none;
  position: relative;
  padding-right: 28px;
  transition: color 0.3s ease;
}
.faq summary:hover { color: var(--sky); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--sky);
  border-bottom: 2px solid var(--sky);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.faq details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin-top: 10px; color: #24324a; max-width: 520px; }

.cta-band {
  background-color: #eaf3fc;
  background-image: url("../images/cta-swoosh.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10vh 8vw;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  position: relative;
  overflow: hidden;
}
.cta-band.reveal { opacity: 1; transform: translateY(0); }
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-band-copy h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 16px;
  font-family: var(--font);
}
.cta-band-copy p {
  font-size: 18px;
  color: #24324a;
  line-height: 1.5;
}
.cta-band-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta-band-action .btn {
  position: relative;
}
.cta-band-action .btn::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .cta-band-action .btn:hover::after {
    transform: translateX(4px);
  }
}
.cta-band-action .text-link {
  color: var(--navy);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .cta-band-action .text-link:hover {
    opacity: 1;
  }
}

.footer { background: var(--navy); color: var(--white); padding: 72px 8vw 28px; }
.footer-top { 
  display: grid; 
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; 
  gap: 48px; 
  margin-bottom: 48px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.footer .logo { height: 52px; margin-bottom: 14px; }
.footer .logo img { height: 52px; width: auto; }
.footer h4 { 
  font-size: 12px; 
  letter-spacing: .16em; 
  text-transform: uppercase; 
  color: var(--sky); 
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,.88);
  margin-top: 12px;
  line-height: 1.5;
}
.footer-links a, .footer-social a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.82);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-links a:hover, .footer-social a:hover {
  color: var(--sky);
}
.footer .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .widget li {
  margin: 0 0 10px 0;
}
.footer .widget a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.82);
  transition: color 0.3s ease;
}
.footer .widget a:hover {
  color: var(--sky);
}
.footer .widget-title {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer .widget.footer-brand .widget-title {
  display: none;
}
.footer .widget p {
  font-size: 15px;
  color: rgba(255,255,255,.88);
  margin-top: 12px;
  line-height: 1.5;
}
.footer-contact a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.82);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: var(--sky);
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: rgba(255,255,255,.82);
  transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  margin-bottom: 0;
}
.footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
@media (hover: hover) and (pointer: fine) {
  .social-icons a:hover {
    border-color: var(--sky);
    color: var(--sky);
    background: rgba(38,121,231,.08);
  }
}
.social-icons i {
  font-size: 18px;
  line-height: 1;
}
.footer-newsletter p {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  line-height: 1.5;
  max-width: 280px;
}
.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.footer-newsletter input {
  padding: 12px 14px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.footer-newsletter input::placeholder {
  color: rgba(255,255,255,.5);
}
.footer-newsletter input:focus {
  outline: none;
  border-color: var(--sky);
  background: rgba(255,255,255,.12);
}
.footer-newsletter .btn {
  border: 0;
  font-family: inherit;
  cursor: pointer;
  background: var(--sky);
  color: var(--navy);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: .06em;
  align-self: flex-start;
  transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-newsletter .btn:hover {
    background: #6eb9f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 121, 231, 0.3);
  }
}
.footer-bottom { 
  display: flex; 
  justify-content: space-between; 
  border-top: 1px solid rgba(38,121,231,.25); 
  padding-top: 18px; 
  font-size: 12px; 
  color: rgba(255,255,255,.6);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom a { 
  display: inline; 
  transition: color 0.3s ease;
}
.footer-bottom a:hover {
  color: var(--sky);
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, .85);
  color: var(--white);
}
.video-lightbox.is-open {
  display: grid;
  place-items: center;
}
.video-container {
  position: relative;
  width: 92vw;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, .6);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, transform .3s ease;
}
.video-close:hover {
  background: rgba(0, 0, 0, .8);
  transform: scale(1.1);
}
body.video-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 16px;
    gap: 16px;
  }
  .logo, .logo img {
    height: 40px;
  }
  .hamburger {
    display: flex;
  }
  .site-header .nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(0, 20, 48, 0.98);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .site-header .nav ul,
  .site-header .nav .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .site-header .nav li,
  .site-header .nav .menu-item {
    width: 100%;
  }
  .site-header .nav li + li,
  .site-header .nav .menu-item + .menu-item {
    margin-left: 0;
  }
  .site-header .nav a {
    display: block;
    padding: 16px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
  }
  .site-header .nav li:last-child a {
    border-bottom: none;
  }
  .nav-open .site-header .nav {
    display: flex;
  }
  body.nav-open {
    overflow: hidden;
  }
  .site-header .btn {
    padding: 10px 18px;
    font-size: 12px;
  }
  .hero h1 {
    font-size: clamp(40px, 12vw, 72px);
  }
  .hero-copy p {
    margin: 32px 0 28px;
    max-width: 100%;
  }
  .hero-cta {
    gap: 20px;
  }
  .busy, .pillars, .pair, .brent-band, .event-lead, .footer-top, .cta-band-inner, .weekend {
    grid-template-columns: 1fr;
  }
  .busy, .weekend, .brent-band > div, .events, .faq, .cta-band, .scorecard {
    padding-left: 24px;
    padding-right: 24px;
  }
  .busy-copy {
    background:
      radial-gradient(ellipse 100% 80% at 80% 100%, rgba(38, 121, 231, 0.42) 0%, rgba(38, 121, 231, 0.16) 42%, rgba(38, 121, 231, 0) 74%),
      radial-gradient(ellipse 50% 40% at 10% 0%, rgba(38, 121, 231, 0.14) 0%, rgba(38, 121, 231, 0) 70%);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats li {
    padding: 20px 12px;
  }
  .stats li:nth-child(2)::after,
  .stats li:nth-child(4)::after {
    display: none;
  }
  .weekend-timeline {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .weekend-photo {
    margin-top: 32px;
  }
  .weekend-photo img {
    height: 320px;
    min-height: 320px;
  }
  .event-lead-media {
    order: -1;
  }
  .event-lead-media img {
    height: 300px;
  }
  .event-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .event-card {
    aspect-ratio: 16 / 10;
  }
  .event-card-extra {
    max-height: none;
    opacity: 1;
    margin-top: 16px;
    overflow: visible;
  }
  .pillars article { min-height: 50vh; }
  .hero-copy { padding: 120px 24px 32px; }
  .press { padding: 28px 24px; }
  .press-logos { gap: 32px 40px; }
  .press-logos img { height: 28px; }
  .cta-band-inner {
    gap: 32px;
  }
  .cta-band-action {
    align-items: stretch;
  }
  .cta-band-action .btn {
    width: 100%;
    text-align: center;
  }
  .brent-band img {
    min-height: 50vh;
  }
  .footer-top {
    gap: 48px;
  }
  .footer-links a, .footer-contact a {
    margin-bottom: 14px;
  }
  .video-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
  .testimonial-nav {
    display: none;
  }
  .testimonial-dots {
    display: flex;
  }
  .testimonial-slider {
    grid-template-columns: 1fr;
    padding: 60px 32px;
  }
  .testimonial-cards {
    grid-column: 1;
  }
  .testimonial-card {
    padding: 36px 32px;
  }
}

@media (max-width: 640px) {
  .event-card-extra .btn {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: clamp(40px, 12vw, 72px);
  }
  @media (prefers-reduced-motion: no-preference) {
    .hero-bg-still {
      animation: kenBurnsShort 15s ease-out infinite alternate;
    }
  }
  @keyframes kenBurnsShort {
    from { transform: scale(1); }
    to { transform: scale(1.04); }
  }
}

@media (max-width: 480px) {
  .brent-stats {
    flex-direction: column;
    gap: 16px;
  }
  .brent-stat {
    width: 100%;
  }
}
