:root {
  --ink: #132219;
  --muted: #647168;
  --green: #06432e;
  --green-2: #1f7a4b;
  --deep: #071c12;
  --fairway: #e4f0dc;
  --gold: #c59a33;
  --gold-light: #efd17a;
  --paper: #fbfaf2;
  --white: #ffffff;
  --line: rgba(23, 35, 28, 0.14);
  --shadow: 0 28px 80px rgba(15, 39, 24, 0.18);
  --soft-shadow: 0 18px 45px rgba(18, 43, 27, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(197, 154, 51, 0.13), transparent 28%),
    linear-gradient(180deg, #fffdf4 0%, var(--paper) 42%, #f4f7ee 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 10px 12px 10px 16px;
  background: rgba(255, 255, 249, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 16px 45px rgba(14, 38, 24, 0.12);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
}

.brand-mark {
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(197, 154, 51, 0.42);
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fff2, #e6f0dc);
  box-shadow: 0 10px 22px rgba(6, 67, 46, 0.16);
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-green {
  fill: var(--green);
}

.logo-gold {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-width: 4;
}

.logo-gold-fill {
  fill: var(--gold);
}

.logo-ball {
  fill: var(--white);
  stroke: var(--green);
  stroke-width: 2;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  color: #304136;
  font-size: 0.84rem;
  font-weight: 700;
}

.nav a {
  padding: 9px 12px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover {
  color: var(--green);
  background: rgba(31, 122, 75, 0.09);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #0c5b3f, #062f22);
  box-shadow: 0 14px 30px rgba(6, 67, 46, 0.25);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(6, 67, 46, 0.28);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(23, 35, 28, 0.12);
  border-radius: 8px;
  color: var(--green);
  background: #f2f7ed;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(690px, calc(100svh - 74px));
  display: grid;
  align-items: end;
  margin-top: -92px;
  padding-top: 128px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 28%, rgba(197, 154, 51, 0.17), transparent 26%),
    linear-gradient(90deg, rgba(4, 20, 13, 0.9), rgba(4, 20, 13, 0.61) 48%, rgba(4, 20, 13, 0.16)),
    linear-gradient(0deg, rgba(4, 20, 13, 0.72), rgba(4, 20, 13, 0.04) 48%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 7vh, 72px) clamp(18px, 8vw, 96px);
  color: var(--white);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 10vw, 8.8rem);
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 5rem);
  max-width: 980px;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-event-card {
  position: absolute;
  right: clamp(18px, 6vw, 80px);
  bottom: clamp(28px, 8vw, 76px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  width: min(380px, calc(100% - 36px));
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(7, 28, 18, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.hero-event-card h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.hero-event-card p {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.date-block {
  display: flex;
  min-width: 92px;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 12px;
  color: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff5cf, var(--gold-light));
  box-shadow: inset 0 -10px 18px rgba(197, 154, 51, 0.18);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.date-block strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.05;
}

.date-block small {
  display: block;
  margin-top: 4px;
  color: rgba(7, 28, 18, 0.66);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

section {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.intro-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), #ffffff),
    repeating-linear-gradient(115deg, rgba(31, 122, 75, 0.04) 0 2px, transparent 2px 18px);
}

.intro-band::before,
.event-section::before,
.results-section::before {
  position: absolute;
  content: "";
  width: 260px;
  height: 260px;
  border: 1px solid rgba(197, 154, 51, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.intro-band::before {
  right: -90px;
  top: -80px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin: 0 auto 38px;
  max-width: 1180px;
}

.intro-grid,
.testimonial-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid article,
.testimonial-grid figure,
.video-link,
.prize-panel,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.intro-grid article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 30px;
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.intro-grid article::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  content: "";
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(19, 34, 25, 0.09) 0 2px, transparent 2px 10px),
    rgba(228, 240, 220, 0.75);
}

.intro-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(37, 55, 39, 0.13);
}

.card-dot {
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 22%, transparent 23%),
    var(--gold-light);
  box-shadow: 22px 0 0 rgba(31, 122, 75, 0.18), 44px 0 0 rgba(31, 122, 75, 0.1);
}

.metric {
  display: block;
  margin-bottom: 16px;
  color: var(--green-2);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-grid p,
.coach-copy p,
.contact-section p {
  color: var(--muted);
}

.event-section,
.learning-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(197, 154, 51, 0.16), transparent 24%),
    linear-gradient(180deg, #eef6e8, #f8faf2);
}

.event-section::before {
  left: -104px;
  bottom: 40px;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.event-card.featured {
  display: grid;
  grid-template-columns: minmax(270px, 0.76fr) minmax(280px, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.event-poster {
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(6, 67, 46, 0.1), rgba(197, 154, 51, 0.1)),
    #f6f4e8;
}

.event-poster img {
  min-height: 560px;
  border-radius: 6px;
  box-shadow: 0 20px 45px rgba(16, 35, 22, 0.18);
}

.event-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 56px);
}

.event-copy h3 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.tag {
  margin-bottom: 12px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-details {
  display: grid;
  gap: 16px;
  margin: 20px 0 28px;
}

.event-details div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.event-details dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-details dd {
  margin: 3px 0 0;
  font-size: 1.03rem;
  font-weight: 800;
}

.prize-panel {
  align-self: stretch;
  padding: 30px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 8%, rgba(239, 209, 122, 0.26), transparent 30%),
    linear-gradient(160deg, #0b5539, #071c12 74%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.prize-panel h3 {
  margin-bottom: 22px;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 2.25rem;
  letter-spacing: -0.03em;
}

.prize-panel ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prize-panel li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.prize-panel span {
  color: rgba(255, 255, 255, 0.72);
}

.mini-event {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-event img {
  aspect-ratio: 1;
  border-radius: 6px;
}

.mini-event span,
.mini-event small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-event strong {
  display: block;
  margin: 4px 0;
  line-height: 1.18;
}

.results-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fbfaf2, #ffffff 52%, #f4f7ee);
}

.results-section::before {
  right: -120px;
  top: 90px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.result-card {
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 65px rgba(18, 43, 27, 0.18);
}

.result-card.large {
  grid-column: span 2;
}

.result-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 28, 18, 0.86), rgba(7, 28, 18, 0.08) 62%);
}

.result-card img {
  position: absolute;
  inset: 0;
  transition: transform 450ms ease;
}

.result-card:hover img {
  transform: scale(1.04);
}

.result-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.result-card .tag {
  color: #e8c56f;
}

.learning-section .section-heading,
.learning-section .video-grid {
  max-width: 1180px;
}

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

.video-link {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-link::before {
  position: absolute;
  right: 18px;
  top: 18px;
  content: "";
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 0 38%, var(--green) 39% 63%, transparent 64%),
    var(--fairway);
  clip-path: polygon(30% 22%, 30% 78%, 78% 50%);
  opacity: 0.42;
}

.video-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(37, 55, 39, 0.14);
}

.video-link span {
  color: var(--gold);
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 800;
}

.video-link strong {
  display: block;
  margin-top: auto;
  font-size: 1.15rem;
  line-height: 1.25;
}

.video-link small {
  margin-top: 16px;
  color: var(--green-2);
  font-weight: 900;
}

.coach-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #f0f6e8 58%);
}

.coach-image {
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 12px solid #ffffff;
}

.coach-copy {
  max-width: 760px;
}

.mentor-title {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
}

.mentor-title span {
  display: block;
  width: fit-content;
  padding: 10px 14px;
  border-left: 4px solid var(--gold);
  color: var(--green);
  background: rgba(228, 240, 220, 0.7);
  font-weight: 900;
}

.coach-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.coach-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: linear-gradient(180deg, #eef7e7, #dbeace);
  font-size: 0.9rem;
  font-weight: 800;
}

blockquote {
  margin: 0;
}

.coach-copy blockquote {
  padding-left: 24px;
  border-left: 4px solid var(--gold);
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.testimonials-section {
  background: var(--paper);
}

.testimonial-grid figure {
  margin: 0;
  min-height: 270px;
  padding: 28px;
  border-radius: 8px;
  position: relative;
}

.testimonial-grid figure::before {
  display: block;
  content: '"';
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "Sora", "Inter", system-ui, sans-serif;
  font-size: 4rem;
  line-height: 0.7;
}

.testimonial-grid blockquote {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.testimonial-grid figcaption {
  margin-top: 28px;
  color: var(--muted);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 18%, rgba(239, 209, 122, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(5, 45, 31, 0.98), rgba(5, 45, 31, 0.84)),
    url("assets/group-summer.jpeg") center/cover;
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section h2 {
  color: var(--white);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.contact-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  font-weight: 900;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-card a::after {
  content: "->";
  flex: 0 0 auto;
  color: var(--gold-light);
}

.contact-card a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.social-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 26px auto 0;
  padding: 24px;
  border: 1px solid rgba(23, 35, 28, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.social-panel h3 {
  margin-bottom: 0;
  max-width: 560px;
}

.social-links,
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links a {
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px;
  color: var(--green);
  background: #eef7e7;
  border: 1px solid rgba(31, 122, 75, 0.16);
  font-weight: 900;
}

.social-links svg,
.footer-social svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: var(--green);
}

.social-links a.is-placeholder,
.footer-social a.is-placeholder {
  cursor: default;
  opacity: 0.62;
}

.social-links a.is-placeholder:hover,
.footer-social a.is-placeholder:hover {
  transform: none;
  color: var(--green);
  background: #eef7e7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #071c12;
  font-weight: 800;
}

.footer-social a {
  width: 42px;
  height: 42px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social a:hover {
  transform: translateY(-2px);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.14);
}

.footer-social a.is-placeholder:hover {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.09);
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-cta {
    position: absolute;
    top: 15px;
    right: 18px;
  }

  .nav {
    justify-content: flex-start;
  }

  .event-layout,
  .coach-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .prize-panel {
    align-self: auto;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    top: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 12px;
    width: 100%;
    margin: 0;
    padding: 10px 14px 12px;
    border-width: 0 0 1px;
    border-color: rgba(23, 35, 28, 0.12);
    border-radius: 0;
    background: rgba(255, 255, 249, 0.98);
    box-shadow: 0 8px 24px rgba(14, 38, 24, 0.1);
    backdrop-filter: none;
  }

  .brand {
    grid-column: 1 / 2;
    grid-row: 1;
    min-width: 0;
    padding-right: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .header-cta {
    position: static;
    width: auto;
    min-height: 40px;
    padding: 10px 13px;
    font-size: 0.84rem;
  }

  .header-actions {
    grid-column: 2 / 3;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .menu-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 0;
    gap: 8px;
    overflow: hidden;
    padding: 0;
    font-size: 0.92rem;
    white-space: normal;
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease, padding-top 180ms ease;
  }

  .menu-open .nav {
    max-height: 330px;
    padding-top: 12px;
    opacity: 1;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 12px 14px;
    border: 1px solid rgba(23, 35, 28, 0.1);
    border-radius: 8px;
    background: #f2f7ed;
    color: var(--green);
    text-align: left;
    line-height: 1.15;
  }

  .nav a::after {
    content: ">";
    color: rgba(6, 67, 46, 0.48);
    font-weight: 900;
  }

  .hero {
    margin-top: 0;
    padding-top: 0;
    min-height: min(700px, calc(100svh - 118px));
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(7, 28, 18, 0.86), rgba(7, 28, 18, 0.26) 70%),
      linear-gradient(90deg, rgba(7, 28, 18, 0.58), rgba(7, 28, 18, 0.1));
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 34px;
  }

  .hero .eyebrow {
    max-width: 310px;
    line-height: 1.45;
    white-space: normal;
  }

  .hero-copy {
    margin-bottom: 18px;
  }

  .hero-event-card {
    display: none;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro-grid,
  .testimonial-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .social-panel {
    grid-template-columns: 1fr;
  }

  .social-links {
    align-items: stretch;
    flex-direction: column;
  }

  .event-card.featured {
    grid-template-columns: 1fr;
  }

  .event-card img {
    min-height: 430px;
  }

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

  .result-card.large {
    grid-column: auto;
  }

  .result-card {
    min-height: 390px;
  }

  .coach-image {
    min-height: 430px;
  }
}
