:root {
  --black: #070707;
  --black-2: #0c0c0c;
  --red: #e10600;
  --red-hot: #ff1a12;
  --white: #f3f3f3;
  --muted: #8d8d8d;
  --line: rgba(255, 255, 255, 0.12);
  --nav: 64px;
  --pad: 20px;
  --max: 1440px;
  --display: "Big Shoulders Display", sans-serif;
  --body: "Source Sans 3", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav);
}

html,
body {
  background: var(--black);
}

body {
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

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

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

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

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
}

.skip:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Type */
.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.86;
  text-transform: uppercase;
}

.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.lede {
  color: #c8c8c8;
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 38rem;
}

.lede-wide {
  max-width: 44rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-red {
  background: var(--red);
  color: #fff;
}

.btn-red:hover {
  background: var(--red-hot);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-ghost:hover {
  border-color: #fff;
}

.btn-full {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  height: var(--nav);
  padding: 0 var(--pad);
  background: #070707;
  border-bottom: 1px solid var(--line);
}

.logo {
  display: block;
  width: 54px;
  height: 40px;
  overflow: hidden;
  flex-shrink: 0;
}

.logo img {
  width: 54px;
  height: auto;
  max-width: none;
}

.nav-links {
  display: none;
}

.nav-cta {
  margin-left: auto;
  min-height: 40px;
  padding: 0 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--red-hot);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: #fff;
  margin: 4px 8px;
}

.mobile-menu {
  display: none;
  position: sticky;
  top: var(--nav);
  z-index: 40;
  flex-direction: column;
  padding: 8px var(--pad) 20px;
  background: #0a0a0a;
  border-bottom: 1px solid var(--line);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 0;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a.is-active {
  color: var(--red);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav));
  display: grid;
  align-items: end;
  background: #000;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-media img,
.hero-wall {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 7, 7, 0.96) 0%,
    rgba(7, 7, 7, 0.55) 42%,
    rgba(7, 7, 7, 0.15) 70%
  );
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 36px var(--pad) 40px;
  max-width: 52rem;
  border-left: 5px solid var(--red);
}

.hero-copy .kicker {
  margin-bottom: 12px;
}

.hero-copy h1,
.hero-copy .sub,
.hero-copy .tag,
.hero-copy .kicker {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.75);
}

.hero-copy h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 17vw, 108px);
  line-height: 0.8;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 8px 0 14px;
}

.accent {
  color: var(--red);
}

.hero-copy .sub {
  font-family: var(--display);
  font-size: clamp(22px, 6vw, 34px);
  letter-spacing: 0.08em;
  color: #d8d8d8;
  margin-bottom: 8px;
}

.hero-copy .tag {
  font-size: 1.05rem;
  color: #dedede;
  margin-bottom: 24px;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-head {
  padding: 0 var(--pad) 36px;
}

.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 12vw, 88px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 10px 0 16px;
}

.pad {
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Banner hall */
.banner-hall {
  position: relative;
}

.banner-hall::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 52px;
  width: 56px;
  background: linear-gradient(to right, transparent, var(--black));
  pointer-events: none;
  z-index: 3;
}

.banner-runway {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px var(--pad) 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.banner-runway::-webkit-scrollbar {
  display: none;
}

.banner-runway figure {
  flex: 0 0 auto;
  width: min(70vw, 320px);
  scroll-snap-align: start;
}

.banner-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 var(--pad) 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c5c5c5;
}

.banner-hint svg {
  color: var(--red);
}

.banner-runway img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 2;
  object-fit: contain;
  background: #050505;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(225, 6, 0, 0.18);
}

.banner-arrow {
  display: none;
}

.section-cta {
  padding: 32px var(--pad) 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Editorial photos */
.photo-edit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: #050505;
}

.photo-edit figure {
  margin: 0;
  overflow: hidden;
  background: #0a0a0a;
  align-self: start;
}

.photo-edit img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.photo-edit .wide {
  grid-column: 1 / -1;
}

.photo-edit .wide img {
  aspect-ratio: 3 / 2;
  object-position: center;
}

/* Programs */
.programs {
  display: grid;
  gap: 28px;
}

.program-list {
  list-style: none;
  margin: 24px 0 28px;
  border-top: 1px solid var(--line);
}

.program-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.program-list strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.repeat {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 8vw, 56px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 18px 0 8px;
}

.repeat em {
  font-style: normal;
  color: var(--red);
}

.program-collage {
  background: #050505;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.program-collage img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.cutouts {
  background: #050505;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cutouts img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

/* Gallery finder */
.galleries-band {
  background: var(--black-2);
}

.gallery-search {
  display: grid;
  gap: 12px;
  padding: 0 var(--pad) 20px;
}

.gallery-search input,
.gallery-search select,
.sport-picker > button {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  background: #111;
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 16px;
}

.gallery-search input:focus,
.gallery-search select:focus,
.sport-picker > button:focus {
  outline: none;
  border-color: var(--red);
}

.sport-picker {
  position: relative;
}

.sport-picker > button {
  padding-right: 40px;
  text-align: left;
  cursor: pointer;
}

.sport-picker > button::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #c5c5c5;
  transform: translateY(-20%);
}

.sport-picker[data-open="true"] > button::after {
  transform: translateY(-70%) rotate(180deg);
}

.sport-picker ul[hidden] {
  display: none;
}

.sport-picker ul {
  position: absolute;
  z-index: 80;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: min(360px, 50vh);
  overflow: auto;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #111;
  border: 1px solid var(--line);
}

.sport-picker li button {
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: 0;
  color: var(--white);
  text-align: left;
  font-size: 15px;
  cursor: pointer;
}

.sport-picker li button:hover,
.sport-picker li button.is-on {
  background: #1c1c1c;
}

.gallery-meta {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.school-block {
  border-top: 1px solid var(--line);
}

.school-block summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px var(--pad);
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.school-block summary::-webkit-details-marker {
  display: none;
}

.school-block summary span {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}

.shoot-list {
  list-style: none;
  padding: 0 var(--pad) 18px;
}

.shoot-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 1.02rem;
}

.shoot-list a:hover {
  color: #fff;
}

.shoot-list em {
  font-style: normal;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gallery-empty {
  padding: 8px var(--pad) 28px;
  color: var(--muted);
}

.gallery-bridge {
  padding: 8px var(--pad) 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-bridge #gallery-more[hidden] {
  display: none;
}

.sport-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 var(--pad) 18px;
  scrollbar-width: none;
}

.sport-filters::-webkit-scrollbar {
  display: none;
}

.sport-filters button {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid var(--line);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}

.sport-filters button.is-on,
.sport-filters button:hover {
  border-color: #fff;
}

.sport-filters button.is-on {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Galleries page swaps the sport dropdown for a full chip row on desktop.
   Mobile keeps the dropdown, since 24 wrapped buttons eat the whole screen. */
#gallery-sport-chips {
  display: none;
}

@media (min-width: 860px) {
  #sport-picker {
    display: none;
  }

  #gallery-sport-chips {
    display: flex;
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.recent-shoots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin: 0 var(--pad) 24px;
}

.recent-shoots a {
  display: flex;
  flex-direction: column;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.recent-shoots a:hover {
  background: #191919;
}

.recent-shoots img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.recent-shoots strong {
  display: block;
  padding: 12px 12px 16px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 3.4vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.gallery-grid strong {
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  padding: 10px 10px 14px;
}

/* Beyond */
.beyond {
  display: grid;
  gap: 24px;
  padding: 64px 0 72px;
  background: #000;
}

.beyond-copy {
  padding: 0 var(--pad);
}

.beyond-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 12vw, 88px);
  line-height: 0.86;
  text-transform: uppercase;
  margin: 10px 0 16px;
}

.beyond .video-frame {
  margin: 0;
}

/* Video */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  margin: 0 var(--pad);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Finale */
.finale {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 72px var(--pad);
  background:
    linear-gradient(to top, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0.28) 55%),
    center / cover no-repeat;
}

.finale-athlete {
  background-image:
    linear-gradient(to top, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.35) 48%, rgba(7, 7, 7, 0.2) 100%),
    url("../assets/finale-ferncreek.jpg");
  background-size: cover;
  background-position: center 42%;
}

.finale h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(46px, 12vw, 96px);
  line-height: 0.86;
  text-transform: uppercase;
  margin: 12px 0 24px;
}

/* Page heroes */
.page-hero {
  padding: 56px var(--pad) 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 14vw, 104px);
  line-height: 0.86;
  text-transform: uppercase;
  margin: 10px 0 16px;
}

.crumbs {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.crumbs a:hover {
  color: #fff;
}

/* Split layouts */
.split {
  display: grid;
  gap: 0;
}

.split img {
  width: 100%;
  height: auto;
}

.split-copy {
  padding: 36px var(--pad);
}

.split-copy h2 {
  font-family: var(--display);
  font-size: clamp(36px, 9vw, 64px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 10px 0 14px;
}

/* This list sits in a narrow grid column on the homepage, but full width here,
   so it needs its own cap to stay readable on a wide screen. */
.about-services .program-list {
  max-width: 44rem;
}

/* Founder note. The headshot is supporting detail, not the lead, so it is
   capped at a fixed width instead of filling a half-page column. */
.owner-note {
  border-top: 1px solid var(--line);
}

.owner-note-inner {
  display: grid;
  gap: 22px;
  padding: 0 var(--pad);
}

.owner-photo {
  background: #1a120c;
  max-width: 200px;
}

.owner-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.owner-note-copy h2 {
  font-family: var(--display);
  font-size: clamp(32px, 7vw, 46px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 8px 0 14px;
}

.owner-note-copy p + p {
  margin-top: 14px;
}

/* Senior banners proof row */
.proof {
  padding: 56px 0 40px;
}

.proof-head {
  padding: 0 var(--pad) 32px;
}

.proof-head h1,
.proof-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 12vw, 88px);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 10px 0 16px;
}

.proof-head h1 {
  font-size: clamp(48px, 14vw, 104px);
}

.proof-row {
  display: flex;
  gap: 10px;
  padding: 0 var(--pad);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.proof-row::-webkit-scrollbar {
  display: none;
}

.proof-row figure {
  flex: 0 0 auto;
  width: min(58vw, 240px);
}

.proof-row img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 2;
  object-fit: contain;
  background: #050505;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(225, 6, 0, 0.16);
}

body.banners .banner-hall {
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 20px;
  border-top: 1px solid var(--line);
}

body.banners .proof + section .section-head {
  padding-top: 64px;
}

.hung .section-head {
  padding-top: 24px;
  padding-bottom: 32px;
}

.hung-cta {
  position: relative;
}

.hung-cta img {
  width: 100%;
  height: min(72vh, 780px);
  object-fit: cover;
  object-position: center;
}

body.photos .hung-cta img {
  object-position: center 22%;
}

body.departments .proof + section .section-head {
  padding-top: 64px;
}

.dept-visual {
  padding: 8px var(--pad) 0;
  display: flex;
  justify-content: center;
}

.dept-visual img {
  width: min(100%, 1200px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

body.departments .photo-edit {
  margin-top: 12px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

body.departments .faq {
  padding-top: 56px;
  padding-bottom: 64px;
}

body.departments .hung-cta img {
  height: min(70vh, 900px);
  min-height: 280px;
  object-fit: contain;
  object-position: center;
  background: #070707;
}

/* Wide team shot fills the band on desktop. Narrow screens stay on contain,
   where cover would crop the ends off the group. */
@media (min-width: 860px) {
  body.departments .hung-cta img {
    object-fit: cover;
    object-position: center 62%;
  }
}

.hung-cta-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 88px var(--pad) 56px;
  background: linear-gradient(to top, rgba(7, 7, 7, 0.94), rgba(7, 7, 7, 0.42) 55%, transparent);
}

.hung-cta-copy h2,
.hung-cta-copy h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 9vw, 80px);
  line-height: 0.88;
  text-transform: uppercase;
  max-width: 16ch;
  margin: 0 0 22px;
}

/* Process */
.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.steps article {
  padding: 22px var(--pad);
  border-bottom: 1px solid var(--line);
}

.steps h3 {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.steps p {
  color: #c5c5c5;
  margin-top: 6px;
}

/* FAQ */
.faq {
  padding: 32px var(--pad) 56px;
}

body.banners .faq {
  padding-top: 56px;
  padding-bottom: 64px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq p {
  margin-top: 10px;
  color: #c5c5c5;
  max-width: 40rem;
}

/* Contact */
.contact-grid {
  display: grid;
}

.contact-panel {
  padding: 40px var(--pad) 56px;
}

.contact-panel h1,
.contact-panel h2 {
  font-family: var(--display);
  font-size: clamp(42px, 11vw, 72px);
  line-height: 0.88;
  text-transform: uppercase;
  margin: 10px 0 16px;
}

.contact-phone a {
  font-family: var(--display);
  font-size: clamp(32px, 9vw, 52px);
  letter-spacing: 0.04em;
  color: var(--red);
}

.contact-mail {
  margin: 4px 0 28px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #111;
  border: 1px solid var(--line);
  padding: 12px;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
  font-family: var(--body);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-nudge {
  margin: 0 0 22px;
  color: var(--muted);
}

.gallery-nudge a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gallery-nudge a:hover {
  color: var(--red);
}

.thanks-actions {
  padding-left: 0;
  padding-right: 0;
}

.page-hero .lede a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 40px var(--pad) 64px;
  border-top: 1px solid var(--line);
  color: #bdbdbd;
  font-size: 14px;
}

.site-footer > div:first-child {
  grid-column: 1 / -1;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
}

.site-footer .kicker {
  margin-bottom: 10px;
}

.site-footer a {
  display: block;
  padding: 6px 0;
}

.site-footer a:hover {
  color: #fff;
}

.ig-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 10px;
  padding: 0;
  border: 1px solid var(--line);
  color: #fff;
}

.ig-link:hover {
  border-color: #fff;
  background: #111;
}

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

@media (min-width: 640px) {
  :root {
    --pad: 28px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 200px;
  }

  .banner-runway figure {
    width: min(42vw, 380px);
  }

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

  .photo-edit .wide {
    grid-column: 1 / -1;
  }

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

  .contact-form .full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px) {
  :root {
    --nav: 76px;
    --pad: 40px;
  }

  .nav-toggle,
  .mobile-menu,
  .mobile-menu.is-open {
    display: none;
  }

  .nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cfcfcf;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    color: #fff;
  }

  .nav-cta {
    margin-left: 0;
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
  }

  .logo,
  .logo img {
    width: 66px;
  }

  .logo {
    height: 48px;
  }

  .hero-copy {
    padding: 56px var(--pad) 52px;
  }

  .hero-copy h1 {
    font-size: clamp(80px, 9vw, 132px);
  }

  .banners-foot .lede-wide {
    max-width: none;
  }

  .section {
    padding: 112px 0;
  }

  .page-hero {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .proof {
    padding: 72px 0 56px;
  }

  .banner-hint,
  .banner-hall--fit::after {
    display: none;
  }

  .proof-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    gap: 14px;
  }

  .proof-row figure {
    width: auto;
  }

  .banner-runway {
    gap: 22px;
    padding-left: 64px;
    padding-right: 64px;
    padding-bottom: 32px;
  }

  .banner-runway figure {
    width: auto;
    height: min(82vh, 860px);
  }

  .banner-runway img {
    width: auto;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
  }

  .banner-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 42%;
    z-index: 4;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(7, 7, 7, 0.72);
    color: #fff;
    cursor: pointer;
  }

  .banner-arrow:hover {
    border-color: #fff;
  }

  .banner-arrow.prev {
    left: 12px;
  }

  .banner-arrow.next {
    right: 12px;
  }

  .photo-edit {
    grid-template-columns: repeat(6, 1fr);
  }

  .photo-edit .span-2 {
    grid-column: span 2;
  }

  .photo-edit .span-3 {
    grid-column: span 3;
  }

  .photo-edit .wide {
    grid-column: 1 / -1;
  }

  .programs,
  .split,
  .contact-grid,
  .beyond {
    grid-template-columns: 1fr 1.05fr;
    align-items: stretch;
  }

  .owner-note-inner {
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
  }

  .owner-note-copy {
    max-width: 64ch;
  }

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

  .beyond {
    padding: 0;
    align-items: center;
  }

  .beyond-copy {
    padding: 72px var(--pad);
  }

  .programs .section-head,
  .split-copy {
    padding: 8px 24px 0 var(--pad);
  }

  /* The collage column is far taller than this copy, so centring keeps the
     leftover height balanced instead of dumping it all below the button. */
  .programs .section-head {
    align-self: center;
  }

  .program-collage {
    min-height: 100%;
    padding: 24px 24px 24px 0;
  }

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

  .steps article {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 28px 24px 32px;
  }

  .site-footer {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .site-footer > div:first-child {
    grid-column: auto;
  }

  .gallery-search {
    grid-template-columns: 1fr 220px auto;
    align-items: center;
  }

  .galleries-band .gallery-search {
    grid-template-columns: 1fr auto;
  }

  /* The middle column held the sport dropdown, which is hidden at this width. */
  .gallery-search--page {
    grid-template-columns: 1fr auto;
  }

  .finale {
    min-height: 64vh;
  }
}

/* Only pin the copy when the viewport is tall enough to hold all of it,
   otherwise the button would sit below the fold for the whole scroll. */
@media (min-width: 860px) and (min-height: 820px) {
  .programs .section-head {
    position: sticky;
    top: calc(var(--nav) + 32px);
    align-self: start;
  }
}

@media (min-width: 1100px) {
  .nav-links {
    gap: 30px;
  }

  .nav-links a {
    font-size: 13px;
    position: relative;
  }

  /* Hairline sits inside the flex gap, so it adds no width of its own.
     Only above 1100px, where the gap is wide enough to give it air. */
  .nav-links a + a::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    width: 1px;
    height: 16px;
    transform: translateY(-50%);
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.28), transparent);
  }

  .banner-hall--fit .banner-runway {
    overflow: hidden;
    justify-content: center;
    gap: 16px;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .banner-hall--fit .banner-runway figure {
    flex: 1 1 0;
    width: auto;
    height: auto;
    max-width: 260px;
  }

  .banner-hall--fit .banner-runway img {
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 1 / 2;
    object-fit: contain;
  }

  .banner-hall--fit .banner-arrow {
    display: none;
  }

  body.home .banner-hall--fit .banner-runway {
    gap: 3px;
    padding: 0;
    justify-content: stretch;
  }

  body.home .banner-hall--fit .banner-runway figure {
    max-width: none;
  }

  body.home .banner-hall--fit .banner-runway img {
    box-shadow: none;
    background: #000;
  }
}

@media (min-width: 1200px) {
  :root {
    --pad: 64px;
  }
}

/* Homepage campaign */
.hero-home {
  min-height: calc(100svh - var(--nav));
}

.hero-home .hero-copy {
  width: 100%;
  max-width: none;
  min-height: calc(100svh - var(--nav));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 0;
  padding: 48px var(--pad) 28px;
}

.hero-home h1 {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
  font-size: clamp(72px, 16.5vw, 248px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.03em;
}

.hero-home h1 span {
  display: block;
}

.hero-bar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 40rem;
}

.hero-bar p {
  font-size: 1.05rem;
  color: #dedede;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050505;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  width: max-content;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 52px);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-banners {
  padding-top: 48px;
  padding-bottom: 0;
}

.banners-head {
  padding-bottom: 18px;
}

.banners-head h2 {
  margin-bottom: 0;
}

.banners-foot {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 22px var(--pad) 56px;
}

.section-photos {
  position: relative;
  overflow: hidden;
}

.ghost-mark {
  position: absolute;
  top: 8px;
  left: var(--pad);
  right: var(--pad);
  z-index: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(80px, 18vw, 220px);
  line-height: 0.78;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  user-select: none;
}

.section-photos .section-head {
  position: relative;
  z-index: 1;
}

.photo-edit--home {
  position: relative;
  z-index: 1;
}

.photo-edit--home .lead {
  grid-column: 1 / -1;
}

.photo-edit--home figure {
  position: relative;
}

@media (min-width: 640px) {
  .hero-bar {
    max-width: none;
  }
}

@media (min-width: 860px) {
  .hero-bar {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }

  .hero-bar p {
    margin-bottom: 4px;
  }

  .hero-home .hero-actions {
    flex-shrink: 0;
  }

  .banners-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .banners-foot .lede {
    margin: 0;
  }

  .photo-edit--home {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .photo-edit--home .lead {
    grid-column: 1;
    grid-row: span 2;
    align-self: stretch;
  }

  .photo-edit--home .lead img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .photo-edit--home .wide {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.7s ease forwards;
  }

  .photo-edit img,
  .recent-shoots img {
    transition: transform 0.6s ease;
  }

  .photo-edit figure:hover img,
  .recent-shoots a:hover img {
    transform: scale(1.04);
  }

  .banner-hint svg {
    animation: nudge 1.35s ease-in-out infinite;
  }

  .hero-home .hero-media img {
    animation: wall-pan 32s ease-in-out infinite alternate;
    will-change: transform;
  }

  .marquee-track {
    animation: marquee 36s linear infinite;
  }

  body.home .banner-runway figure {
    transition: transform 0.35s ease, filter 0.35s ease;
  }

  body.home .banner-hall--fit .banner-runway:hover figure {
    filter: brightness(0.55);
  }

  body.home .banner-hall--fit .banner-runway figure:hover {
    filter: brightness(1);
    transform: translateY(-10px);
    z-index: 2;
  }
}

@keyframes wall-pan {
  from {
    transform: scale(1.08) translate3d(1.5%, 0, 0);
  }
  to {
    transform: scale(1.16) translate3d(-2.5%, 1.5%, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
