@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,700&family=Nunito+Sans:wght@400;600;700;800&display=swap");

:root {
  --ink: #111111;
  --charcoal: #303030;
  --gold: #d9a13b;
  --gold-light: #f0c86c;
  --cream: #fff9ed;
  --paper: #ffffff;
  --line: #d9d0bf;
  --muted: #67645e;
  --radius: 1.5rem;
  --shadow: 0 1rem 3rem rgb(17 17 17 / 0.12);
  --shell: min(72rem, calc(100% - 2.5rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: "Nunito Sans", sans-serif; font-size: 1rem; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 0.2rem solid #166bb5; outline-offset: 0.25rem; }
.section-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding-block: clamp(4rem, 8vw, 7rem); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; left: 1rem; top: 1rem; z-index: 100; padding: 0.8rem 1rem; background: var(--paper); transform: translateY(-200%); }
.skip-link:focus { transform: none; }

h1, h2, h3 { margin: 0; font-family: "Barlow Condensed", sans-serif; font-weight: 800; line-height: 0.95; text-transform: uppercase; text-wrap: balance; }
h1 { font-size: clamp(3.7rem, 10vw, 8.5rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.7rem, 3vw, 2.25rem); }
h1 em, h2 span, h2 em { color: var(--gold); font-style: italic; }
p { margin: 0 0 1rem; }
.lede { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 700; line-height: 1.45; }
.eyebrow { margin: 0 0 1rem; color: #8c5d00; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow--light { color: var(--gold-light); }

.site-header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid rgb(17 17 17 / 0.1); background: rgb(255 249 237 / 0.94); backdrop-filter: blur(0.8rem); }
.site-header__inner { display: flex; width: var(--shell); min-height: 5.5rem; margin-inline: auto; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink); font-family: "Barlow Condensed", sans-serif; font-size: 1.05rem; font-weight: 800; line-height: 0.87; letter-spacing: 0.04em; text-decoration: none; text-transform: uppercase; }
.brand img { width: 3.7rem; height: 3.7rem; object-fit: contain; mix-blend-mode: multiply; }
.site-nav ul { display: flex; margin: 0; padding: 0; align-items: center; gap: 0.35rem; list-style: none; }
.site-nav a { display: block; padding: 0.65rem 0.8rem; border-radius: 999px; font-size: 0.88rem; font-weight: 800; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--gold); }
.nav-toggle { display: none; width: 3rem; height: 3rem; padding: 0.7rem; border: 0; border-radius: 50%; background: var(--ink); }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 0.28rem 0; background: white; }

.hero { position: relative; min-height: min(48rem, calc(100svh - 5.5rem)); overflow: hidden; background: var(--ink); color: white; }
.hero__media, .hero__media picture, .hero__media img, .hero__scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; }
.hero__scrim { background: linear-gradient(90deg, rgb(17 17 17 / 0.94) 0%, rgb(17 17 17 / 0.72) 30%, transparent 68%); }
.hero__content { position: relative; z-index: 1; display: flex; min-height: min(48rem, calc(100svh - 5.5rem)); padding-block: clamp(4rem, 9vw, 8rem); flex-direction: column; align-items: flex-start; justify-content: center; }
.hero h1 { max-width: 48rem; }
.hero__content > p:not(.eyebrow) { max-width: 37rem; margin-top: 1.5rem; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero__tag { position: absolute; z-index: 2; right: clamp(1rem, 4vw, 4rem); bottom: 2rem; padding: 1rem 1.4rem; background: var(--gold); color: var(--ink); font-family: "Barlow Condensed", sans-serif; font-size: clamp(1.15rem, 2.4vw, 1.65rem); font-weight: 800; text-transform: uppercase; transform: rotate(-2deg); box-shadow: 0.35rem 0.35rem 0 white; }
.button-row, .contact-actions { display: flex; margin-top: 1.25rem; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
.button { display: inline-flex; min-height: 3.25rem; padding: 0.75rem 1.3rem; border: 2px solid transparent; border-radius: 999px; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }
.button--gold { background: var(--gold); color: var(--ink); }
.button--gold:hover { background: var(--gold-light); }
.button--ghost { border-color: white; color: white; }
.button--ghost:hover { background: white; color: var(--ink); }
.button--dark { background: var(--ink); color: white; }
.button--outline { border-color: var(--ink); }
.button--disabled { border-color: #a5a097; color: #77736c; cursor: not-allowed; }
.contact-actions small { flex-basis: 100%; color: var(--muted); }

.intro, .page-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr); gap: clamp(3rem, 9vw, 8rem); }
.intro__copy, .prose { align-self: center; }
.text-link { display: inline-flex; padding-block: 0.25rem; border-bottom: 2px solid var(--gold); align-items: center; gap: 0.65rem; font-weight: 800; text-decoration: none; }
.text-link:hover span { transform: translateX(0.2rem); }

.programs { position: relative; overflow: hidden; background: var(--gold); }
.programs::before { position: absolute; width: 23rem; height: 23rem; right: -9rem; top: -11rem; border: 3px solid rgb(17 17 17 / 0.18); border-radius: 50%; content: ""; }
.section-heading { display: flex; margin-bottom: 2.5rem; align-items: end; justify-content: space-between; gap: 2rem; }
.section-heading h2 { max-width: 42rem; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.program-grid--two { grid-template-columns: repeat(2, 1fr); }
.program-card { position: relative; min-height: 21rem; padding: 2rem; overflow: hidden; border-radius: var(--radius); background: var(--cream); box-shadow: 0.4rem 0.4rem 0 var(--ink); }
.program-card__number { position: absolute; right: 1.4rem; top: 1rem; color: rgb(17 17 17 / 0.1); font-family: "Barlow Condensed", sans-serif; font-size: 5rem; font-weight: 800; line-height: 1; }
.program-card h3 { max-width: 13rem; margin: 5rem 0 1rem; }

.values { display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(3rem, 7vw, 6rem); align-items: center; }
.values__image { position: relative; }
.values__image img { width: 100%; min-height: 34rem; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.sticker { position: absolute; right: -1rem; bottom: 1.5rem; padding: 1rem 1.3rem; background: var(--gold); font-family: "Barlow Condensed", sans-serif; font-size: 1.5rem; font-weight: 800; line-height: 1; text-align: center; text-transform: uppercase; transform: rotate(-4deg); box-shadow: 0.3rem 0.3rem 0 var(--ink); }
.value-list { margin: 2.5rem 0 0; padding: 0; list-style: none; }
.value-list li { display: grid; padding: 1rem 0; border-top: 1px solid var(--line); grid-template-columns: 8rem 1fr; gap: 1rem; }
.value-list strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.3rem; text-transform: uppercase; }
.value-list span { color: var(--muted); }

.story { display: grid; gap: clamp(4rem, 9vw, 8rem); }
.story__intro { max-width: 48rem; }
.story__feature { margin: 0; }
.story__feature img { width: 100%; max-height: 44rem; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.story figcaption { margin-top: 0.8rem; color: var(--muted); font-size: 0.9rem; }
.story__chapter { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.story__chapter--reverse > div:first-child { order: 2; }
.story__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.story__pair picture { min-width: 0; }
.story__pair img { width: 100%; height: clamp(25rem, 42vw, 36rem); border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.story__pair picture:nth-child(2) img { margin-top: 1.5rem; }

.cta { display: flex; margin-bottom: clamp(4rem, 8vw, 7rem); padding: clamp(2rem, 5vw, 4rem); border-radius: calc(var(--radius) * 1.25); align-items: center; justify-content: space-between; gap: 2rem; background: var(--gold); box-shadow: 0.5rem 0.5rem 0 var(--ink); }
.cta h2 { max-width: 40rem; }
.contact-actions--cta { display: grid; grid-template-columns: repeat(3, minmax(7.5rem, max-content)); justify-content: end; }
.contact-actions--cta .button { width: 100%; }

.page-hero { position: relative; min-height: 31rem; padding-block: clamp(5rem, 10vw, 8rem); overflow: hidden; }
.page-hero::after { position: absolute; width: 38rem; height: 19rem; right: -10rem; bottom: -12rem; border: 3px solid var(--gold); border-radius: 50%; content: ""; transform: rotate(-8deg); }
.page-hero__copy { position: relative; z-index: 1; max-width: 61rem; }
.page-hero__lede { max-width: 44rem; margin-top: 2rem; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.doodle--ball { position: absolute; width: 8rem; height: 8rem; right: 8%; top: 14%; border: 0.22rem solid var(--ink); border-radius: 50%; opacity: 0.08; }
.doodle--ball::before, .doodle--ball::after { position: absolute; inset: -0.22rem 3.2rem; border: 0.22rem solid var(--ink); border-block: 0; border-radius: 50%; content: ""; }
.doodle--ball::after { inset: 3.2rem -0.22rem; border: 0.22rem solid var(--ink); border-inline: 0; }
.page-grid__intro h2 { max-width: 31rem; }

.skill-band { padding-block: 5rem; background: var(--ink); color: white; }
.skill-band h2 { max-width: 48rem; }
.skill-list { display: flex; margin: 2.5rem 0 0; padding: 0; flex-wrap: wrap; gap: 0.75rem; list-style: none; }
.skill-list li { padding: 0.75rem 1.1rem; border: 1px solid rgb(255 255 255 / 0.4); border-radius: 999px; font-weight: 700; }
.detail-list { display: grid; margin: 0; border-top: 1px solid var(--line); grid-template-columns: 1fr 1fr; }
.detail-row { display: grid; padding: 1.4rem 0; border-bottom: 1px solid var(--line); grid-template-columns: minmax(7rem, 0.55fr) 1fr; gap: 1rem; }
.detail-row:nth-child(odd) { padding-right: 2rem; }
.detail-row:nth-child(even) { padding-left: 2rem; }
.detail-row dt { font-weight: 800; }
.detail-row dd { margin: 0; }
.client-placeholder { color: #78520c; font-style: italic; }
.client-placeholder--block { display: inline-block; margin-block: 1.5rem; padding: 0.8rem 1rem; border: 1px dashed #9a762f; border-radius: 0.8rem; }
.detail-list--compact { display: block; }
.detail-list--compact .detail-row { padding-inline: 0; }

.camp-rhythm, .coach { background: var(--gold); }
.rhythm-grid { display: grid; margin-top: 2.5rem; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.rhythm-grid article { padding: 1.5rem; border-top: 3px solid var(--ink); }
.rhythm-grid span { font-family: "Barlow Condensed", sans-serif; font-size: 2.5rem; font-weight: 800; opacity: 0.35; }
.rhythm-grid h3 { margin: 2rem 0 0.7rem; }
.coach__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.coach__portrait { display: grid; min-height: 31rem; border: 2px dashed rgb(17 17 17 / 0.45); border-radius: var(--radius); place-items: center; background: rgb(255 255 255 / 0.25); font-weight: 800; text-align: center; text-transform: uppercase; }
.coach__photo { position: relative; margin: 0; padding: 0.7rem; border-radius: calc(var(--radius) + 0.35rem); background: var(--cream); box-shadow: 0.45rem 0.45rem 0 var(--ink); transform: rotate(-0.7deg); }
.coach__photo img { width: 100%; max-height: 40rem; border-radius: var(--radius); object-fit: cover; }
.coach__photo figcaption { display: flex; padding: 1rem 0.35rem 0.35rem; flex-direction: column; font-size: 0.9rem; line-height: 1.35; }
.coach__photo figcaption strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.35rem; text-transform: uppercase; }
.coach__photo figcaption span { color: var(--muted); font-weight: 700; }
.coach__promise { margin: 2rem 0; padding: 1.25rem 1.5rem; border-left: 0.35rem solid var(--ink); background: rgb(255 255 255 / 0.35); font-family: "Barlow Condensed", sans-serif; font-size: clamp(1.35rem, 2.5vw, 1.8rem); font-weight: 700; line-height: 1.25; }
.value-cards { display: grid; margin-top: 2rem; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.value-cards article { padding: 1.5rem; border: 1px solid var(--line); border-radius: 1rem; background: white; }
.value-cards strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.6rem; text-transform: uppercase; }
.value-cards p { margin: 0.5rem 0 0; color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(3rem, 8vw, 7rem); }
.contact-card { padding: clamp(2rem, 4vw, 3.5rem); border-radius: var(--radius); background: var(--gold); box-shadow: 0.4rem 0.4rem 0 var(--ink); }
.contact-card__phone { margin-block: 2rem; font-family: "Barlow Condensed", sans-serif; font-size: 1.8rem; font-weight: 800; }
.contact-card__phone a, .contact-card__email a { text-underline-offset: 0.2em; }
.contact-card__email { margin-top: -1.5rem; font-weight: 800; }
.not-found { display: flex; min-height: 65vh; padding-block: 6rem; flex-direction: column; align-items: flex-start; justify-content: center; }
.not-found h1 { max-width: 50rem; }
.not-found p:not(.eyebrow) { margin-top: 1.5rem; font-size: 1.25rem; }

.site-footer { padding-block: 4rem 2rem; background: var(--ink); color: white; }
.site-footer__inner { display: grid; width: var(--shell); margin-inline: auto; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.brand--footer { color: white; }
.brand--footer img { mix-blend-mode: normal; filter: drop-shadow(0 0 0.15rem white); }
.site-footer p { max-width: 28rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.site-footer nav a { font-weight: 700; text-decoration-color: var(--gold); text-underline-offset: 0.25rem; }
.site-footer small { grid-column: 1 / -1; padding-top: 2rem; border-top: 1px solid rgb(255 255 255 / 0.2); color: #bbb; }

@media (max-width: 760px) {
  :root { --shell: min(100% - 1.5rem, 42rem); }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; right: 0.75rem; left: 0.75rem; top: calc(100% + 0.5rem); display: none; padding: 0.75rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--cream); box-shadow: var(--shadow); }
  .site-nav[data-open] { display: block; }
  .site-nav ul { align-items: stretch; flex-direction: column; }
  .site-nav a { padding: 0.85rem 1rem; }
  .hero { min-height: 45rem; }
  .hero__media img { object-position: 64% center; }
  .hero__scrim { background: linear-gradient(0deg, rgb(17 17 17 / 0.96) 0%, rgb(17 17 17 / 0.66) 58%, rgb(17 17 17 / 0.18) 100%); }
  .hero__content { min-height: 45rem; padding-bottom: 8rem; justify-content: flex-end; }
  .hero__tag { right: 1rem; bottom: 1rem; }
  .intro, .page-grid, .values, .coach__grid, .contact-layout, .site-footer__inner { grid-template-columns: 1fr; }
  .program-grid, .program-grid--two, .rhythm-grid, .value-cards { grid-template-columns: 1fr; }
  .story__chapter { grid-template-columns: 1fr; }
  .story__chapter--reverse > div:first-child { order: 0; }
  .story__pair img { height: clamp(19rem, 68vw, 28rem); }
  .story__pair picture:nth-child(2) img { margin-top: 0; }
  .program-card { min-height: 18rem; }
  .section-heading, .cta { align-items: flex-start; flex-direction: column; }
  .contact-actions--cta { width: 100%; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .values__image img { min-height: 25rem; }
  .sticker { right: 0.5rem; }
  .detail-list { display: block; }
  .detail-row:nth-child(n) { padding-inline: 0; }
  .rhythm-grid article { padding-inline: 0; }
  .coach__portrait { min-height: 22rem; }
}

@media (max-width: 420px) {
  .brand span { display: none; }
  .button-row .button, .contact-actions .button { width: 100%; }
  .hero h1 { font-size: 3.4rem; }
  .value-list li, .detail-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .story__pair { grid-template-columns: 1fr; }
  .story__pair img { height: 28rem; }
  .contact-actions--cta { grid-template-columns: 1fr; }
}

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