:root {
  --deep: #082b24;
  --deep-2: #123f33;
  --forest: #164734;
  --sage: #a6b7a8;
  --ivory: #f7faf8;
  --paper: #ffffff;
  --charcoal: #1a1f1e;
  --accent: #dfe9e5;
  --accent-2: #ffffff;
  --line: rgba(8, 43, 36, 0.16);
  --shadow: 0 24px 70px rgba(8, 43, 36, 0.18);
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.8;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(8, 43, 36, 0.08), transparent 38%),
    radial-gradient(circle at 20% 10%, rgba(22, 71, 52, 0.1), transparent 30%),
    var(--ivory);
}

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

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.18;
}

h2 {
  margin-bottom: 20px;
  color: var(--deep);
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.35;
}

h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 20px;
  line-height: 1.45;
}

p {
  margin-bottom: 1em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--deep);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 43, 36, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logotype {
  width: clamp(142px, 17vw, 210px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  color: rgba(8, 43, 36, 0.82);
}

.site-nav a[aria-current="page"] {
  color: var(--deep);
}

.nav-cta {
  padding: 10px 17px;
  color: var(--paper) !important;
  background: var(--deep);
  border-radius: 999px;
}

.nav-toggle,
.nav-button {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(760px, 88svh);
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  background-position: center;
  background-size: cover;
}

.hero-home {
  background-image: url("assets/hero-athlete-wide.png");
  background-position: 34% center;
}

.hero-philosophy {
  background-image: url("assets/brand-imagery.png");
}

.hero-partners {
  background-image: url("assets/hero-athlete-wide.png");
  background-position: 34% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 31, 26, 0.28) 0%, rgba(8, 43, 36, 0.2) 42%, rgba(8, 43, 36, 0.86) 72%, rgba(8, 43, 36, 0.96) 100%),
    linear-gradient(0deg, rgba(8, 43, 36, 0.28), rgba(8, 43, 36, 0.28));
}

.hero-inner {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: auto;
  margin-right: clamp(18px, 7vw, 96px);
  padding: 120px 0 96px;
}

.hero-inner.narrow {
  width: min(820px, calc(100% - 36px));
}

.hero-partners .hero-inner {
  margin-left: clamp(18px, 7vw, 96px);
  margin-right: auto;
}

.hero-home .hero-inner {
  width: min(620px, calc(100% - 36px));
}

.hero-home h1 {
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.18;
}

.hero-partners .hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 31, 26, 0.96) 0%, rgba(8, 43, 36, 0.78) 44%, rgba(8, 43, 36, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 43, 36, 0.2), rgba(8, 43, 36, 0.2));
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(17px, 1.7vw, 21px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--forest);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.3;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--deep);
  background: var(--accent-2);
}

.contact-form .button.primary {
  color: var(--paper);
  background: var(--deep);
  border-color: var(--deep);
}

.button.ghost {
  color: var(--ivory);
  background: rgba(8, 43, 36, 0.18);
}

.button.line {
  color: var(--ivory);
  background: var(--forest);
  border-color: rgba(255, 250, 242, 0.24);
}

.button.outline-dark {
  color: var(--deep);
  background: transparent;
  border-color: var(--deep);
}

.intro-section,
.news-section,
.content-section,
.cream-section,
.deep-section,
.story-section,
.contact-section,
.final-cta {
  padding: clamp(68px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.news-section {
  background: var(--ivory);
}

.section-heading.compact {
  margin-bottom: 28px;
}

.news-list {
  display: grid;
  width: min(980px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.news-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--forest);
  font-family: var(--serif);
  font-weight: 600;
}

.news-list a {
  color: var(--deep);
  font-weight: 600;
}

.news-list-large {
  width: min(1080px, 100%);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.page-hero {
  padding: clamp(84px, 10vw, 140px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 80px);
  text-align: center;
  background: var(--paper);
}

.page-hero h1 {
  margin-bottom: 0;
  color: var(--deep);
}

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

.section-label {
  width: min(1180px, 100%);
  margin: 0 auto 24px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.intro-grid,
.split {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}

.lead-block {
  color: rgba(26, 31, 30, 0.78);
  font-size: 17px;
}

.brand-concept {
  align-items: center;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1.14fr);
}

.concept-logo-panel {
  display: grid;
  min-height: 340px;
  place-items: center;
  padding: clamp(16px, 4vw, 44px);
}

.concept-logo-panel img {
  width: min(100%, 430px);
}

.value-strip {
  display: grid;
  width: min(1180px, 100%);
  margin: 62px auto 0;
  overflow: visible;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 4vw, 42px);
}

.value-strip article,
.value-grid article,
.support-grid article,
.promise-grid article,
.impact-grid article,
.plan-grid article,
.benefit-list article,
.quote-card {
  padding: 28px;
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid var(--line);
}

.value-strip article {
  padding: 0;
  background: transparent;
  border: 0;
}

.value-strip article > span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.line-icon {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--forest);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid currentColor;
}

.line-icon.globe::before {
  border-radius: 50%;
}

.line-icon.globe::after {
  inset: 10px 17px;
  border-width: 0 2px;
}

.line-icon.arrow::before {
  inset: 10px 8px;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

.line-icon.arrow::after {
  inset: 18px 9px 17px 7px;
  border-width: 2px 0 0;
}

.line-icon.book::before {
  border-radius: 3px;
  transform: skewY(-6deg);
}

.line-icon.book::after {
  inset: 8px 18px 7px;
  border-width: 0 0 0 2px;
}

.line-icon.shield::before {
  border-radius: 18px 18px 10px 10px;
}

.line-icon.shield::after {
  inset: 12px 17px 9px;
  border-width: 0 2px 0 0;
}

.cream-section {
  background: var(--ivory);
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  position: relative;
  margin: 0;
  padding: 18px 22px 18px 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.check-list p::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 22px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--forest);
  border-left: 2px solid var(--forest);
  transform: rotate(-45deg);
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:last-child {
  color: rgba(26, 31, 30, 0.72);
}

.card-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 22px;
}

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

.program-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(8, 43, 36, 0.08);
}

.program-card img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.program-card div {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sports-tabs {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.sports-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sport-tab-buttons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 28px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 max(0px, calc((100% - 620px) / 2)) 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sport-tab-buttons::-webkit-scrollbar {
  display: none;
}

.sport-tab-button {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  cursor: pointer;
  color: var(--deep);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sport-tab-button:hover {
  transform: translateY(-1px);
}

#tab-handball:checked ~ .sport-tab-buttons label[for="tab-handball"],
#tab-basketball:checked ~ .sport-tab-buttons label[for="tab-basketball"],
#tab-lacrosse:checked ~ .sport-tab-buttons label[for="tab-lacrosse"] {
  color: var(--paper);
  background: var(--deep);
  border-color: var(--deep);
}

.sport-panels {
  position: relative;
}

.sport-panel {
  display: none;
  min-height: 380px;
  overflow: hidden;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.82fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 248, 0.88)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

#tab-handball:checked ~ .sport-panels .sport-panel:nth-child(1),
#tab-basketball:checked ~ .sport-panels .sport-panel:nth-child(2),
#tab-lacrosse:checked ~ .sport-panels .sport-panel:nth-child(3) {
  display: grid;
}

.sport-panel h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.22;
}

.sport-panel-copy p {
  color: rgba(26, 31, 30, 0.72);
}

.destination-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.destination-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.destination-list dt {
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.destination-list dd {
  margin: 0;
  color: var(--deep);
  font-weight: 600;
}

.sport-destination-card,
.coming-soon {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(8, 43, 36, 0.18), rgba(8, 43, 36, 0.86)),
    url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=1400&q=80") center / cover;
  border-radius: 18px;
}

.sport-destination-card span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sport-destination-card strong {
  display: block;
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.15;
}

.sport-destination-card p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.program-cta {
  width: fit-content;
  min-width: 220px;
  flex: 0 0 auto;
  align-self: flex-start;
  border-color: var(--paper);
}

.preparing-panel {
  background: var(--paper);
}

.coming-soon {
  align-items: center;
  min-height: 260px;
  justify-content: center;
  color: var(--deep);
  background: var(--accent);
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 600;
}

.deep-section {
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(8, 43, 36, 0.96), rgba(18, 63, 51, 0.94)),
    var(--deep);
}

.section-heading.light h2,
.section-heading.light p,
.deep-section h3 {
  color: var(--ivory);
}

.support-grid,
.promise-grid,
.impact-grid,
.plan-grid,
.value-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

.support-grid article,
.promise-grid article,
.plan-grid article {
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(255, 250, 242, 0.16);
}

.support-grid p,
.promise-grid p,
.plan-grid p {
  color: rgba(255, 250, 242, 0.76);
}

.flow-list {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 72px 190px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.flow-list span,
.benefit-list span {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.flow-list p {
  margin: 0;
  color: rgba(26, 31, 30, 0.72);
}

.testimonial-layout {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: 0.9fr 1fr 1fr;
  gap: 18px;
}

.quote-card {
  border-radius: 16px;
}

.quote-card p {
  font-family: var(--serif);
  color: var(--deep);
  font-size: 22px;
  line-height: 1.7;
}

.quote-card footer {
  color: rgba(26, 31, 30, 0.64);
  font-size: 14px;
  font-weight: 700;
}

.faq-list {
  display: grid;
  width: min(920px, 100%);
  margin: 0 auto;
  gap: 12px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--deep);
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(26, 31, 30, 0.72);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 32px;
  align-items: center;
  color: var(--ivory);
  background: var(--deep);
}

.final-cta h2 {
  color: var(--ivory);
}

.final-cta p {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.78);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(8, 43, 36, 0.72);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

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

.value-grid article {
  border-radius: 18px;
}

.value-grid article > span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.philosophy-brand-hero {
  min-height: 680px;
  color: var(--deep);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 248, 0.82)),
    var(--paper);
}

.philosophy-brand-hero .hero-inner {
  margin-left: clamp(18px, 7vw, 96px);
  margin-right: auto;
}

.philosophy-brand-hero .eyebrow,
.philosophy-brand-hero h1,
.philosophy-brand-hero .hero-copy {
  color: var(--deep);
}

.philosophy-hero-mark {
  position: absolute;
  right: clamp(-120px, -6vw, -40px);
  bottom: -16%;
  width: min(58vw, 720px);
  max-width: none;
  opacity: 0.12;
  pointer-events: none;
}

.origin-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  padding: clamp(68px, 8vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--ivory);
}

.origin-mark {
  display: grid;
  place-items: center;
}

.origin-mark img {
  width: min(100%, 360px);
}

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

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

.story-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--paper);
}

.story-image img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.story-copy {
  max-width: 680px;
}

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

.impact-grid article {
  border-radius: 18px;
}

.benefit-list {
  display: grid;
  width: min(1080px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 84px 260px 1fr;
  gap: 22px;
  align-items: start;
  border-radius: 16px;
}

.benefit-list p {
  margin: 0;
  color: rgba(26, 31, 30, 0.72);
}

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

.plan-grid strong {
  color: var(--accent-2);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip-row span {
  padding: 8px 14px;
  color: var(--deep);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

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

.contact-form {
  display: grid;
  width: min(980px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-weight: 700;
}

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

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  cursor: pointer;
}

@media (max-width: 1020px) {
  .card-grid.four,
  .support-grid,
  .impact-grid,
  .plan-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-layout,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .benefit-list article {
    grid-template-columns: 64px 1fr;
  }

  .benefit-list p {
    grid-column: 2;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .origin-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .nav-button {
    position: relative;
    z-index: 22;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(8, 43, 36, 0.22);
    border-radius: 50%;
  }

  .nav-button span,
  .nav-button span::before,
  .nav-button span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--deep);
    content: "";
    transition: transform 0.2s ease;
  }

  .nav-button span::before {
    transform: translateY(-7px);
  }

  .nav-button span::after {
    transform: translateY(5px);
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 22px;
    background: rgba(255, 255, 255, 0.98);
  }

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(8, 43, 36, 0.1);
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: 0 !important;
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .hero {
    min-height: 82svh;
    background-position: 30% center;
  }

  .hero-home {
    min-height: 90svh;
    background-position: 31% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 43, 36, 0.04) 0%, rgba(8, 43, 36, 0.1) 38%, rgba(8, 43, 36, 0.78) 74%, rgba(8, 43, 36, 0.94) 100%),
      linear-gradient(0deg, rgba(8, 43, 36, 0.08), rgba(8, 43, 36, 0.08));
  }

  .hero-inner {
    margin: 0 auto;
    padding: 44svh 0 56px;
  }

  .hero-partners .hero-inner,
  .philosophy-brand-hero .hero-inner {
    margin: 0 auto;
  }

  .hero-partners .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 31, 26, 0.18) 0%, rgba(8, 43, 36, 0.36) 45%, rgba(8, 43, 36, 0.92) 100%),
      linear-gradient(0deg, rgba(8, 43, 36, 0.08), rgba(8, 43, 36, 0.08));
  }

  h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .intro-grid,
  .split,
  .story-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .concept-logo-panel {
    min-height: 280px;
  }

  .value-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-strip article {
    border: 0;
  }

  .flow-list li {
    grid-template-columns: 56px 1fr;
  }

  .flow-list p {
    grid-column: 2;
  }

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

  .button-row {
    width: 100%;
  }

  .button {
    flex: 1 1 220px;
  }

  .program-cta {
    flex: 0 0 auto;
    min-width: 230px;
    align-self: flex-start;
  }

  .sport-tab-buttons {
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .sport-tab-button {
    flex: 0 0 auto;
  }

  .news-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .philosophy-hero-mark {
    right: -44%;
    bottom: -8%;
    width: 110vw;
  }
}

@media (max-width: 560px) {
  body {
    line-height: 1.75;
  }

  .intro-section,
  .content-section,
  .cream-section,
  .deep-section,
  .story-section,
  .contact-section,
  .final-cta {
    padding: 56px 18px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .card-grid.four,
  .support-grid,
  .impact-grid,
  .plan-grid,
  .value-grid,
  .value-strip {
    grid-template-columns: 1fr;
  }

  .value-strip {
    border-radius: 0;
  }

  .value-strip article {
    border: 0;
  }

  .value-strip article:last-child {
    border-bottom: 0;
  }

  .program-card img {
    aspect-ratio: 1.35;
  }

  .sport-panel {
    min-height: auto;
    padding: 24px;
    border-radius: 18px;
  }

  .destination-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .sport-destination-card,
  .coming-soon {
    min-height: 240px;
    padding: 22px;
  }

  .program-cta {
    min-width: 230px;
    min-height: 48px;
    flex: 0 0 auto;
    align-self: flex-start;
  }

  .benefit-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .benefit-list p {
    grid-column: auto;
  }

  .flow-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-list p {
    grid-column: auto;
  }

  .quote-card p {
    font-size: 19px;
  }
}
