:root {
  --navy: #063b26;
  --ink: #151a17;
  --charcoal: #151a17;
  --surface: #ffffff;
  --mist: #f7f8f4;
  --text: #151a17;
  --muted: #66736b;
  --green: #03763d;
  --gold: #fdbb2d;
  --line: #dde3da;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(7, 18, 31, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--mist);
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  padding: 0.6rem 0.9rem;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: rgba(7, 18, 31, 0.96);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.section,
.footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: grid;
  gap: 0.1rem;
  text-decoration: none;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand span {
  color: #bfd0dc;
  font-size: 0.78rem;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: #fff;
  background: transparent;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.55rem 0.72rem;
  color: #dce7ef;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav a:focus-visible {
  background: rgba(242, 201, 76, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 18, 31, 0.94) 0%, rgba(7, 18, 31, 0.84) 46%, rgba(7, 18, 31, 0.54) 100%),
    url("/assets/images/landon-hero-1.jpg") center / cover;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background:
    linear-gradient(135deg, transparent 30%, rgba(242, 201, 76, 0.16) 30% 31%, transparent 31%),
    linear-gradient(165deg, transparent 45%, rgba(255, 255, 255, 0.08) 45% 46%, transparent 46%),
    linear-gradient(to top, rgba(255, 255, 255, 0.08), transparent);
  clip-path: polygon(0 68%, 12% 38%, 20% 55%, 34% 20%, 48% 70%, 61% 36%, 74% 63%, 88% 30%, 100% 56%, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  min-height: 640px;
  padding: 5.5rem 0 6rem;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
}

.hero h1,
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.9rem, 5.5vw, 4.35rem);
  max-width: 680px;
}

.page-hero h1 {
  max-width: 9ch;
}

.hero .subhead,
.page-hero .subhead {
  max-width: 680px;
  margin: 1.15rem 0 0;
  color: #d7e2ea;
  font-size: clamp(1.18rem, 3vw, 1.65rem);
  font-weight: 700;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #c6d3de;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  overflow-wrap: anywhere;
}

.button.primary {
  color: var(--navy);
  background: var(--gold);
}

.button.primary:hover {
  background: #ffd94f;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero .button-row .button.secondary:hover,
.hero .button-row .button.secondary:focus-visible {
  color: var(--navy);
  border-color: var(--gold);
  background: var(--gold);
}

.snapshot {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.snapshot h2 {
  color: #fff;
  font-size: 1.25rem;
}

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

.stat {
  min-height: 84px;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 18, 31, 0.32);
}

.stat span {
  display: block;
  color: #aebdcc;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stat strong {
  display: block;
  margin-top: 0.2rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.sport-stat > span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.sport-emoji {
  display: inline-block;
  flex: 0 0 auto;
  font-size: 1.05rem;
  line-height: 1;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.28));
}

.sport-stat strong {
  display: grid;
  gap: 0.08rem;
}

.sport-stat strong span {
  display: block;
  color: #fff;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: none;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section.tight {
  padding-top: 2rem;
}

.section-title {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

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

.grid > * {
  min-width: 0;
}

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

.card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(7, 18, 31, 0.06);
}

.card h3 {
  font-size: 1.25rem;
}

.card h2 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.card p,
.card li {
  color: var(--muted);
}

.accent-card {
  border-top: 5px solid var(--green);
}

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

.list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.32rem 0.6rem;
  border: 1px solid #c9d6df;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
  background: #f7fafc;
}

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

.history-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.history-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
}

.history-card span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links .button.secondary {
  color: var(--ink);
  border-color: #c8d5de;
  background: #fff;
}

.band {
  background: var(--mist);
}

.section.band {
  width: 100%;
}

.section.band > .section-title,
.section.band > .grid {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.page-hero {
  color: #fff;
  background: linear-gradient(135deg, #07121f, #12304a);
}

.page-hero .section {
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.content-prose {
  max-width: 830px;
}

.content-prose p {
  color: #405060;
  font-size: 1.05rem;
}

.profile-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.profile-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.profile-row dt {
  color: var(--muted);
  font-weight: 800;
}

.profile-row dd {
  margin: 0;
}

[hidden] {
  display: none !important;
}

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

.photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 18, 31, 0.06);
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--mist);
}

.photo-card figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

.media-placeholder {
  display: grid;
  min-height: 210px;
  padding: 1.25rem;
  place-items: end start;
  border: 1px solid #2b3b4b;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 18, 31, 0.9), rgba(16, 36, 58, 0.9)),
    url("/assets/images/placeholders/athlete-placeholder.svg") center / cover;
  min-width: 0;
}

.media-placeholder h3,
.media-placeholder p {
  margin: 0;
  color: #fff;
}

.media-placeholder a {
  color: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.media-link-card {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  min-width: 0;
}

.media-link-card .button {
  width: fit-content;
  max-width: 100%;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--green);
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #c8d5de;
  border-radius: var(--radius);
  font: inherit;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.turnstile-wrap {
  min-height: 65px;
}

.site-footer {
  padding: 3rem 0;
  color: #d6e2ec;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
}

.site-footer p {
  margin: 0.45rem 0 0;
}

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

.footer-profile-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-profile-links {
  gap: 0.65rem;
  max-width: 760px;
  margin-top: 1rem;
}

.footer-profile-links a,
.footer-profile-soon,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  text-decoration: none;
}

.footer-profile-links a,
.footer-profile-soon {
  --profile-accent: var(--gold);
  gap: 0.55rem;
  justify-content: center;
  min-height: 46px;
  padding: 0.44rem 0.8rem 0.44rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f8fbf9;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 22px rgba(0, 0, 0, 0.18);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.footer-profile-links a img,
.footer-profile-soon img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  padding: 2px;
  border-radius: 9px;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.footer-profile-links a span,
.footer-profile-soon span {
  color: currentColor;
  white-space: nowrap;
}

.footer-profile-soon {
  color: rgba(248, 251, 249, 0.78);
}

.footer-profile-soon small {
  display: block;
  margin-top: 0.18rem;
  color: #acc0b7;
  font-size: 0.68rem;
  font-weight: 800;
}

.footer-profile-links a:hover,
.footer-profile-links a:focus-visible {
  color: var(--navy);
  border-color: var(--profile-accent);
  background: var(--profile-accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 14px 28px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.footer-profile-links a[href*="instagram"] {
  --profile-accent: #fdbb2d;
}

.footer-profile-links a[href*="youtube"] {
  --profile-accent: #ff3b30;
}

.footer-profile-links a[href*="ncsasports"] {
  --profile-accent: #f26d21;
}

.footer-profile-links a[href*="web.gc.com"] {
  --profile-accent: #48a868;
}

.footer-links {
  margin-top: 0;
}

.footer-links a {
  min-height: 40px;
  padding: 0.45rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #d6e2ec;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.fine-print {
  color: #acc0b7;
  font-size: 0.9rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.cta-panel p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

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

  .site-nav {
    position: absolute;
    inset: 72px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: #07121f;
    box-shadow: var(--shadow);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .hero-grid,
  .grid,
  .grid.two,
  .history-grid,
  .photo-grid,
  .cta-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 11ch;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 620px) {
  .stat-grid,
  .profile-row,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero h1 {
    max-width: 100%;
    overflow-wrap: normal;
  }
}

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

/* Recruiting profile homepage */
.brand-with-mark {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
}

.brand-with-mark img,
.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-with-mark small {
  display: block;
  color: #bfd0dc;
  font-size: 0.76rem;
  font-weight: 600;
}

.recruiting-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(6, 59, 38, 0.98) 0%, rgba(6, 59, 38, 0.9) 44%, rgba(21, 26, 23, 0.76) 100%),
    url("/assets/images/landon-hero-1.jpg") center / cover;
}

.recruiting-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.recruiting-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  min-height: 560px;
  padding: clamp(3.25rem, 6vw, 4.75rem) 0;
  margin-inline: auto;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  max-width: 620px;
}

.hero-copy .subhead {
  max-width: 760px;
  margin: 1rem 0 0;
  color: #e8eee9;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 650;
  line-height: 1.45;
}

.profile-line {
  max-width: 760px;
  margin: 1rem 0 0;
  color: #cfdad2;
  font-weight: 800;
}

.recruiting-hero .button-row .button.secondary:hover,
.recruiting-hero .button-row .button.secondary:focus-visible {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 0.8rem;
  align-items: stretch;
}

.hero-photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 156px;
  object-fit: cover;
}

.main-photo {
  grid-row: span 2;
}

.main-photo img {
  min-height: 370px;
}

.compact-title {
  margin-bottom: 1.25rem;
}

.no-margin {
  margin-bottom: 0;
}

.profile-card-grid,
.measurables-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.profile-card,
.measure-card {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(6, 59, 38, 0.06);
}

.profile-card span,
.measure-card span,
.card-kicker,
.contact-placeholder span,
.update-card span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-card strong,
.measure-card strong,
.contact-placeholder strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.measure-card strong {
  color: var(--green);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.contact-card {
  grid-column: span 2;
}

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

.film-card {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  border-top: 5px solid var(--green);
}

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

.film-card .button {
  width: fit-content;
  max-width: 100%;
}

.dark-button {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.dark-button:hover,
.dark-button:focus-visible {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

.sport-profile-section {
  background: var(--surface);
}

.sport-profile-section.alternate {
  background: var(--mist);
}

.sport-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.sport-profile.reverse .sport-image-card {
  order: -1;
}

.sport-profile h2,
.about-layout h2,
.contact-layout h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.sport-profile p,
.about-layout p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.04rem;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}

.fact-list div {
  padding: 0.78rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0.18rem 0 0;
  color: var(--ink);
  font-weight: 850;
}

.compact-facts {
  grid-template-columns: 1fr;
  margin: 0;
}

.sport-image-card,
.about-layout img {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.sport-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

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

.hobby-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-placeholder {
  display: grid;
  gap: 0.25rem;
  align-content: start;
}

.update-card {
  border-left: 5px solid var(--green);
}

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

.faq-item {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-item h3 {
  font-size: 1.05rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.recruiting-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.field select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #c8d5de;
  border-radius: var(--radius);
  color: var(--text);
  background: #fff;
  font: inherit;
}

.full-field,
.recruiting-form .turnstile-wrap,
.recruiting-form .button,
.recruiting-form [data-contact-status] {
  grid-column: 1 / -1;
}

.final-cta .cta-panel {
  background: linear-gradient(135deg, #ffffff, #f7f8f4);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 980px) {
  .recruiting-hero-inner,
  .sport-profile,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 620px;
  }

  .profile-card-grid,
  .measurables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-card-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .sport-profile.reverse .sport-image-card {
    order: 0;
  }
}

@media (max-width: 620px) {
  .recruiting-hero-inner {
    min-height: auto;
    padding: 3.25rem 0;
  }

  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .hero-copy .subhead {
    font-size: 1rem;
  }

  .recruiting-hero .hero-visual {
    display: none;
  }

  .hero-visual,
  .profile-card-grid,
  .measurables-grid,
  .fact-list,
  .hobby-grid,
  .recruiting-form {
    grid-template-columns: 1fr;
  }

  .main-photo img,
  .hero-photo img {
    min-height: 220px;
  }

  .contact-card {
    grid-column: span 1;
  }
}
