@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --red: #e53a2f;
  --red-dark: #bd271f;
  --blue: #0e78bd;
  --ink: #101010;
  --paper: #f7f5f1;
  --muted: #6a6a6a;
  --line: #d9d7d2;
  --wrap: 1240px;
  --radius: 2px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  --font-sans: "Manrope", Arial, Helvetica, sans-serif;
  --font-accent: Georgia, serif;
  --weight-regular: 400;
  --weight-strong: 600;
  --text-sm: 0.8125rem;
  --text-base: 1rem;
  --text-lg: clamp(1.125rem, calc(1rem + 0.25vw), 1.25rem);
  --heading-sm: clamp(1.5rem, calc(1.25rem + 0.75vw), 2.125rem);
  --heading-intro: clamp(1.75rem, calc(1.5rem + 0.85vw), 2.5rem);
  --heading-md: clamp(2.125rem, calc(1.75rem + 1.35vw), 3.25rem);
  --heading-lg: clamp(3rem, calc(2.25rem + 2vw), 4rem);
  --line-body: 1.65;
  --line-heading: 1.05;
  --tracking-tight: -0.03em;
  --tracking-label: 0.045em;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-sans); font-size: var(--text-base); font-weight: var(--weight-regular); line-height: var(--line-body); }
body.menu-open, body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

:is(.hero h1, .section-heading-row h2, .programs-section h2, .intro-copy h2, .intro-copy h3, .program-card h3, .conditioning-copy h2, .app-promo-copy h2, .membership-copy h2, .about-copy h2, .app-promo-dark-copy h2, .training-copy h1, .contact-copy h1, .contact-details h2, .shop-hero-copy h1, .shop-intro-copy h2, .shop-product-copy h2, .shop-final-copy h2, .not-found-copy h1, .teamup-dialog h2, .statement-band p) {
  font-weight: var(--weight-strong);
  line-height: var(--line-heading);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
}

:is(.site-navigation, .menu-toggle, .button, .program-card a, .shop-product-link, .app-promo-copy .app-label, .app-promo-dark-copy .app-label, .site-footer h2) {
  font-size: var(--text-sm);
  font-weight: var(--weight-strong);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 14px; background: #fff; color: #000; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.wrap { width: min(calc(100% - 48px), var(--wrap)); margin-inline: auto; }
.section-space { padding-block: clamp(72px, 9vw, 132px); }

.site-header { min-height: 94px; padding: 16px max(24px, calc((100vw - var(--wrap)) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 28px; background: rgba(255,255,255,.98); border-bottom: 1px solid #eceae7; position: relative; z-index: 50; }
.brand img { width: 188px; height: auto; }
.site-navigation { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); }
.site-navigation > a:not(.button), .nav-dropdown .nav-label { position: relative; }
.site-navigation > a:not(.button)::after, .nav-dropdown .nav-label::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.site-navigation > a:hover::after, .site-navigation > a:focus-visible::after, .nav-dropdown summary:hover .nav-label::after, .nav-dropdown summary:focus-visible .nav-label::after { transform: scaleX(1); transform-origin: left; }
.nav-dropdown { position: relative; }
.nav-dropdown summary { display: inline-flex; align-items: center; gap: 9px; list-style: none; cursor: pointer; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-chevron { width: 8px; height: 8px; flex: 0 0 auto; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-3px) rotate(45deg); transform-origin: center; transition: transform .2s ease; }
.nav-dropdown[open] .nav-chevron { transform: translateY(1px) rotate(225deg); }
.nav-dropdown-panel { position: absolute; top: calc(100% + 16px); left: 50%; min-width: 190px; padding: 10px; background: #fff; box-shadow: var(--shadow); transform: translateX(-50%); }
.nav-dropdown-panel a { display: block; padding: 10px 12px; }
.nav-dropdown-panel a:hover { background: var(--paper); color: var(--red-dark); }
.menu-toggle { display: none; border: 0; background: transparent; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 13px 24px; border: 1px solid transparent; border-radius: var(--radius); transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: var(--red); }
.button-primary { background: var(--red); color: #fff; }
.button-primary:hover { background: var(--ink); }
.button-light { background: #fff; color: var(--ink); }
.button-light:hover { background: var(--red); color: #fff; }

.hero { min-height: min(700px, calc(100svh - 94px)); position: relative; display: grid; align-items: end; overflow: hidden; background: #090909; color: #fff; }
.hero-media, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: center 42%; }
.hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 48%, rgba(0,0,0,.08) 72%), linear-gradient(0deg, rgba(0,0,0,.7), transparent 55%); }
.hero-content { position: relative; z-index: 1; padding-bottom: clamp(54px, 8vw, 112px); }
.hero h1 { max-width: 850px; margin: 0 0 18px; font-size: var(--heading-lg); text-wrap: balance; }
.hero h1 span { display: block; color: var(--red); }
.hero-lead { margin: 0 0 28px; font-size: var(--text-lg); }
.hero-subpage { min-height: clamp(440px, 48vw, 580px); align-items: center; }
.hero-subpage .hero-content { padding-block: clamp(64px, 8vw, 104px); }
.membership-hero .hero-media { object-position: center 38%; }

.membership-overview { overflow: hidden; background: #fff; }
.membership-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr); align-items: center; gap: clamp(48px, 9vw, 132px); }
.membership-copy { max-width: 540px; }
.membership-copy h2 { margin: 0 0 28px; font-size: var(--heading-md); text-wrap: balance; }
.membership-copy > p:not(.membership-note) { margin: 0 0 20px; font-size: var(--text-lg); }
.membership-copy .button { margin-top: 14px; }
.membership-note { max-width: 420px; margin: 14px 0 0; color: var(--muted); font-size: var(--text-sm); }
.membership-media { position: relative; }
.membership-media::before { content: ""; position: absolute; inset: 12% -5% -8% 9%; background: var(--red); }
.membership-media img { width: 100%; aspect-ratio: 3 / 2; position: relative; z-index: 1; object-fit: cover; box-shadow: var(--shadow); }

.about-hero .hero-media { object-position: center 34%; }
.about-section { overflow: hidden; background: #fff; }
.about-row { display: grid; grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr); align-items: center; gap: clamp(48px, 9vw, 132px); }
.about-row + .about-row { margin-top: clamp(82px, 11vw, 154px); }
.about-row-reverse { grid-template-columns: minmax(420px, 1.15fr) minmax(0, .85fr); }
.about-row-reverse .about-copy { grid-column: 2; grid-row: 1; }
.about-row-reverse .about-media { grid-column: 1; grid-row: 1; }
.about-copy { max-width: 560px; }
.about-copy h2 { margin: 0 0 26px; font-size: var(--heading-md); }
.about-copy p { margin: 0 0 20px; font-size: var(--text-lg); }
.about-media { position: relative; }
.about-media::before { content: ""; position: absolute; inset: 10% -6% -8% 10%; background: var(--red); }
.about-row-reverse .about-media::before { inset: 10% 10% -8% -6%; }
.about-media img { width: 100%; aspect-ratio: 4 / 3; position: relative; z-index: 1; object-fit: cover; box-shadow: var(--shadow); }
.about-media-legacy img { object-position: center 34%; }

.app-promo-dark { overflow: hidden; background: var(--ink); color: #fff; }
.app-promo-dark-grid { display: grid; grid-template-columns: minmax(420px, 1.15fr) minmax(0, .85fr); align-items: center; gap: clamp(42px, 8vw, 120px); }
.app-promo-dark-media img { width: 100%; filter: drop-shadow(0 24px 35px rgba(0,0,0,.35)); }
.app-promo-dark-copy h2 { max-width: 560px; margin: 0 0 22px; font-size: var(--heading-md); }
.app-promo-dark-copy > p:not(.app-label) { max-width: 540px; margin: 0 0 26px; color: #d6d6d6; font-size: var(--text-lg); }
.app-promo-dark-copy .app-label { margin: 0 0 12px; }

.training-overview { min-height: 520px; display: grid; align-items: center; background: #fff; }
.training-inner { max-width: 980px; }
.training-copy h1 { margin: 0 0 28px; font-size: var(--heading-md); }
.training-copy p { margin: 0 0 20px; font-size: var(--text-lg); }
.training-actions { margin-top: clamp(36px, 5vw, 58px); text-align: center; }
.training-actions p { max-width: 500px; margin: 14px auto 0; color: var(--muted); font-size: var(--text-sm); }

.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr); align-items: center; gap: clamp(52px, 8vw, 116px); }
.contact-copy h1 { margin: 0 0 24px; font-size: var(--heading-md); }
.contact-lead { max-width: 520px; margin: 0 0 42px; font-size: var(--text-lg); }
.contact-details { padding-top: 30px; border-top: 1px solid var(--line); }
.contact-details h2 { margin: 0 0 24px; font-size: var(--heading-sm); }
.contact-item { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 18px; margin: 14px 0; }
.contact-item span { color: var(--muted); font-size: var(--text-sm); font-weight: var(--weight-strong); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.contact-item a { width: fit-content; overflow-wrap: anywhere; }
.contact-item a:hover, .contact-directions:hover { color: var(--red-dark); }
.contact-directions { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; color: var(--red-dark); font-size: var(--text-sm); font-weight: var(--weight-strong); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.contact-map { position: relative; }
.contact-map::before { content: ""; position: absolute; inset: 8% -4% -7% 8%; background: var(--red); }
.contact-map iframe { width: 100%; min-height: 520px; position: relative; z-index: 1; display: block; border: 0; box-shadow: var(--shadow); }

.shop-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse at 8% 115%, rgba(229, 58, 47, .48), transparent 48%),
    radial-gradient(ellipse at 68% -20%, rgba(14, 120, 189, .15), transparent 38%),
    repeating-linear-gradient(118deg, transparent 0 19px, rgba(255, 255, 255, .045) 19px 20px, transparent 20px 43px),
    linear-gradient(145deg, #1d1d1d 0%, #070707 64%, #111 100%);
  color: #fff;
}
.shop-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(108deg, transparent 0 43.5%, rgba(229, 58, 47, .2) 44%, transparent 44.7%),
    repeating-linear-gradient(8deg, transparent 0 54px, rgba(229, 58, 47, .075) 54px 55px);
  clip-path: polygon(0 0, 58% 0, 47% 100%, 0 100%);
  pointer-events: none;
}
.shop-hero-grid { height: clamp(330px, 29vw, 380px); min-height: 0; position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .86fr) minmax(440px, 1.14fr); align-items: stretch; gap: clamp(42px, 7vw, 104px); }
.shop-hero-copy { align-self: center; padding-block: clamp(34px, 4vw, 52px); }
.shop-hero-copy h1 { max-width: 610px; margin: 0 0 24px; font-size: var(--heading-lg); text-wrap: balance; }
.shop-hero-copy h1 span { display: block; color: var(--red); }
.shop-hero-copy p { margin: 0; color: #d6d6d6; font-size: var(--text-lg); }
.shop-hero-media { min-width: 0; min-height: 0; display: grid; place-items: center; overflow: hidden; background: #070707; box-shadow: 30vw 0 #070707; }
.shop-hero-media img { width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center 58%; }

.shop-intro { background: #fff; }
.shop-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr); align-items: end; gap: clamp(48px, 8vw, 112px); }
.shop-intro-copy { max-width: 720px; }
.shop-intro-copy h2 { margin: 0 0 28px; font-size: var(--heading-md); }
.shop-intro-copy p { margin: 0 0 20px; font-size: var(--text-lg); }
.shop-intro-action { max-width: 430px; justify-self: end; }
.shop-intro-action .button { width: 100%; }
.shop-intro-action p { margin: 14px 0 0; color: var(--muted); font-size: var(--text-sm); text-align: center; }

.shop-products { background: var(--paper); }
.shop-product-list { border-top: 1px solid var(--line); }
.shop-product { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(36px, 6vw, 80px); padding-block: clamp(34px, 4.5vw, 58px); border-bottom: 1px solid var(--line); }
.shop-product-media { aspect-ratio: 16 / 10; overflow: hidden; background: #fff; }
.shop-product-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .35s ease; }
.shop-product-media:hover img { transform: scale(1.025); }
.shop-product-copy { max-width: 540px; }
.shop-product-copy h2 { margin: 0 0 24px; font-size: var(--heading-intro); text-wrap: balance; }
.shop-product-copy p { margin: 0 0 18px; font-size: var(--text-lg); }
.shop-product-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 10px; color: var(--red-dark); }
.shop-product-link:hover { color: var(--ink); }
.shop-product:nth-child(even) .shop-product-media { grid-column: 2; grid-row: 1; }
.shop-product:nth-child(even) .shop-product-copy { grid-column: 1; grid-row: 1; }

.shop-final { background: var(--red); color: #fff; }
.shop-final-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: clamp(40px, 8vw, 112px); }
.shop-final-copy { max-width: 720px; }
.shop-final-copy h2 { margin: 0 0 20px; font-size: var(--heading-md); }
.shop-final-copy p { margin: 0; font-size: var(--text-lg); }
.shop-final .button { min-width: 280px; }

.not-found-main { min-height: calc(100svh - 94px); display: grid; background: var(--ink); color: #fff; }
.not-found-section { display: grid; align-items: center; }
.not-found-grid { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr); align-items: center; gap: clamp(42px, 8vw, 112px); }
.not-found-code { color: var(--red); font-size: clamp(8rem, 22vw, 18rem); font-weight: var(--weight-strong); line-height: .78; letter-spacing: -.08em; }
.not-found-copy h1 { margin: 0 0 24px; font-size: var(--heading-lg); }
.not-found-copy > p { max-width: 580px; margin: 0 0 34px; color: #d6d6d6; font-size: var(--text-lg); }
.not-found-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.not-found-english { max-width: 290px; display: grid; gap: 3px; color: #ccc; font-size: var(--text-sm); }
.not-found-english strong { color: #fff; font-size: var(--text-base); text-transform: uppercase; }
.not-found-english span:last-child { margin-top: 5px; color: var(--red); font-weight: var(--weight-strong); text-transform: uppercase; }

.teamup-dialog { width: min(calc(100% - 32px), 1120px); max-height: calc(100dvh - 32px); margin: auto; padding: 0; overflow: auto; border: 0; background: #fff; color: var(--ink); box-shadow: 0 28px 90px rgba(0,0,0,.38); }
.teamup-dialog::backdrop { background: rgba(0,0,0,.76); backdrop-filter: blur(3px); }
.teamup-dialog-header { position: sticky; z-index: 4; top: 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px clamp(20px, 4vw, 42px); background: var(--ink); color: #fff; }
.teamup-dialog h2 { margin: 0; font-size: var(--heading-sm); }
.teamup-dialog-close { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; }
.teamup-dialog-close span { font-size: 30px; font-weight: 300; line-height: 1; transform: translateY(-1px); }
.teamup-dialog-close:hover, .teamup-dialog-close:focus-visible { border-color: #fff; background: var(--red); }
.teamup-dialog-intro { margin: 0; padding: 28px clamp(20px, 4vw, 42px) 0; font-size: var(--text-lg); }
.teamup-embed { min-height: 620px; padding: 24px clamp(12px, 3vw, 32px) 36px; }
.teamup-embed #teamup-widget-container, .teamup-embed iframe { width: 100% !important; }
.teamup-embed iframe { min-height: 620px; border: 0; }
.teamup-status { margin: 0; padding: 52px 20px; color: var(--muted); text-align: center; }

.statement-band { min-height: 94px; display: grid; place-items: center; padding: 20px 24px; background: var(--red); color: #fff; text-align: center; }
.statement-band p { margin: 0; font-size: var(--heading-sm); }

.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.section-heading-row h2, .programs-section h2 { margin: 0; font-size: var(--heading-md); }
.section-heading-row > a { color: var(--red-dark); font-weight: var(--weight-strong); }
.instagram-widget behold-widget { display: block; min-height: 260px; }
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.social-image { overflow: hidden; background: #ddd; aspect-ratio: 1; }
.social-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.social-image:hover img { transform: scale(1.04); }

.intro-section { background: var(--ink); color: #fff; }
.intro-grid { max-width: 960px; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(70px, 8vw, 112px) clamp(16px, 2vw, 24px); align-items: center; }
.intro-media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.intro-media-primary { grid-column: 1 / span 6; grid-row: 1; }
.intro-copy-primary { grid-column: 8 / span 4; grid-row: 1; }
.intro-media-secondary { grid-column: 6 / span 6; grid-row: 2; }
.intro-copy-secondary { grid-column: 1 / span 4; grid-row: 2; }
.intro-copy h2 { margin: 0 0 28px; font-size: var(--heading-intro); }
.intro-copy h3 { margin: 0 0 12px; font-size: var(--heading-intro); }
.heading-line { display: block; }
.heading-accent { color: var(--red); }
.intro-copy p { color: #d6d6d6; }
.intro-copy .handwritten { margin: 28px 0 0; color: var(--red); font-family: var(--font-accent); font-size: var(--heading-sm); font-style: italic; line-height: 1.15; }

.programs-section { background: #fff; }
.programs-section h2 { max-width: 900px; margin-bottom: 38px; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.program-card { min-height: 560px; position: relative; overflow: hidden; background: #181818; color: #fff; }
.program-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: transform .45s ease; }
.program-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.94), rgba(0,0,0,.02) 68%); }
.program-card-overlay { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 34px; }
.program-card h3 { margin: 0 0 8px; font-size: var(--heading-sm); }
.program-card p { margin: 0 0 18px; color: #ddd; }
.program-card:hover > img { transform: scale(1.04); }

.conditioning-section { padding-block: clamp(72px, 8vw, 112px); background: var(--red); color: #fff; }
.conditioning-layout { display: grid; gap: clamp(28px, 3vw, 44px); }
.conditioning-copy { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr); gap: 32px clamp(56px, 8vw, 112px); align-items: start; padding-bottom: clamp(32px, 4vw, 52px); border-bottom: 1px solid rgba(255,255,255,.48); }
.conditioning-copy h2 { max-width: 560px; margin: 0; font-size: var(--heading-md); text-wrap: balance; }
.conditioning-copy > p:last-child { max-width: 560px; margin: 0; justify-self: end; font-size: var(--text-lg); }
.photo-strip { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.3fr) minmax(0, .85fr); gap: clamp(10px, 1.4vw, 18px); }
.photo-strip img { width: 100%; height: clamp(280px, 31vw, 430px); object-fit: cover; }

.app-promo { overflow: hidden; background: #f0eee9; }
.app-promo-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(400px, 1.2fr); align-items: center; gap: clamp(42px, 8vw, 120px); }
.app-promo-copy h2 { max-width: 660px; margin: 0 0 22px; font-size: var(--heading-md); }
.app-promo-copy > p:not(.app-label) { max-width: 560px; margin: 0 0 26px; font-size: var(--text-lg); color: #3e3e3e; }
.app-promo-copy .app-label { margin: 0 0 12px; }
.store-buttons-large img { width: 144px; }
.app-promo-media { position: relative; }
.app-promo-media::before { content: ""; position: absolute; inset: 8% -12% -12% 10%; background: var(--red); transform: rotate(-4deg); }
.app-promo-media img { position: relative; z-index: 1; width: 100%; filter: drop-shadow(0 24px 35px rgba(0,0,0,.18)); }

.site-footer { padding: clamp(60px, 8vw, 100px) 24px; background: #080808; color: #fff; }
.footer-grid { width: min(100%, var(--wrap)); margin: auto; display: grid; grid-template-columns: 1.35fr .7fr .8fr 1.2fr; gap: 48px; }
.footer-brand img { width: 190px; height: auto; margin-bottom: 18px; }
.footer-brand p { margin: 6px 0; color: #aaa; font-size: var(--text-sm); }
.site-footer h2 { margin: 0 0 18px; }
.site-footer a:not(.store-buttons a) { display: block; width: fit-content; margin: 9px 0; color: #c9c9c9; font-size: var(--text-sm); }
.site-footer a:hover { color: #fff; }
.footer-app-title { margin-top: 26px !important; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.store-buttons img { width: 128px; height: auto; }

@media (max-width: 920px) {
  .site-header { min-height: 78px; padding-block: 12px; }
  .brand img { width: 150px; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; }
  .menu-icon, .menu-icon::before, .menu-icon::after { width: 24px; height: 2px; display: block; position: relative; background: currentColor; }
  .menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
  .menu-icon::before { top: -7px; }
  .menu-icon::after { top: 7px; }
  .site-navigation { position: fixed; inset: 78px 0 0; padding: 36px 24px 60px; display: none; align-items: stretch; flex-direction: column; gap: 6px; overflow-y: auto; background: #fff; font-size: var(--text-lg); }
  .site-navigation.is-open { display: flex; }
  .site-navigation > a:not(.button), .nav-dropdown { width: fit-content; }
  .site-navigation > a, .nav-dropdown summary { padding: 12px 0; }
  .nav-dropdown-panel { position: static; min-width: 0; padding: 6px 0 8px 18px; box-shadow: none; transform: none; }
  .nav-cta { margin-top: 10px; }
  .hero { min-height: 690px; }
  .hero-subpage { min-height: 560px; }
  .hero-content { padding-bottom: 64px; }
  .hero-subpage .hero-content { padding-block: 64px; }
  .membership-grid { grid-template-columns: 1fr; }
  .membership-copy { max-width: 680px; }
  .membership-media { max-width: 680px; }
  .about-row, .about-row-reverse, .app-promo-dark-grid { grid-template-columns: 1fr; }
  .about-row-reverse .about-copy, .about-row-reverse .about-media { grid-column: 1; grid-row: auto; }
  .about-row-reverse .about-copy { order: 1; }
  .about-row-reverse .about-media { order: 2; }
  .about-copy, .about-media, .app-promo-dark-media { max-width: 680px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy, .contact-map { max-width: 680px; }
  .shop-hero-grid, .shop-intro-grid, .shop-product, .shop-final-grid { grid-template-columns: 1fr; }
  .shop-hero-grid { height: auto; gap: 0; }
  .shop-hero-copy { padding-bottom: 36px; }
  .shop-hero-media { max-height: 420px; aspect-ratio: 16 / 9; box-shadow: none; }
  .shop-intro-action { width: 100%; max-width: 480px; justify-self: center; text-align: center; }
  .shop-product { gap: 30px; }
  .shop-product-media, .shop-product:nth-child(even) .shop-product-media { grid-column: 1; grid-row: 1; }
  .shop-product-copy, .shop-product:nth-child(even) .shop-product-copy { grid-column: 1; grid-row: 2; }
  .shop-product-copy { max-width: 680px; }
  .shop-final .button { min-width: 0; width: fit-content; }
  .not-found-grid { grid-template-columns: 1fr; }
  .not-found-code { font-size: clamp(7rem, 34vw, 12rem); }
  .intro-grid { max-width: 680px; grid-template-columns: 1fr; gap: 38px; }
  .intro-media-primary, .intro-copy-primary, .intro-media-secondary, .intro-copy-secondary { grid-column: 1; grid-row: auto; }
  .intro-media-primary { order: 1; }
  .intro-copy-primary { order: 2; }
  .intro-media-secondary { order: 3; }
  .intro-copy-secondary { order: 4; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 450px; }
  .conditioning-copy { grid-template-columns: 1fr; }
  .conditioning-copy > p:last-child { justify-self: start; }
  .photo-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .app-promo-grid { grid-template-columns: 1fr; }
  .app-promo-media { max-width: 680px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .section-heading-row { align-items: start; flex-direction: column; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 32px), var(--wrap)); }
  .hero-media { object-position: 62% center; }
  .hero-subpage { min-height: 500px; }
  .membership-hero .hero-media { object-position: 56% center; }
  .about-hero .hero-media { object-position: 48% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.88), rgba(0,0,0,.08) 75%); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card { min-height: 420px; }
  .program-card-overlay { padding: 26px; }
  .photo-strip { gap: 6px; }
  .photo-strip img { height: clamp(150px, 42vw, 240px); }
  .teamup-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); }
  .teamup-dialog-header { padding: 16px; }
  .teamup-dialog-intro { padding: 22px 16px 0; }
  .teamup-embed { padding: 18px 8px 24px; }
  .contact-item { grid-template-columns: 1fr; gap: 3px; }
  .contact-map iframe { min-height: 380px; }
  .shop-hero-grid { min-height: 0; }
  .shop-hero-copy { padding-block: 42px 32px; }
  .shop-hero-media { margin-inline: -16px; }
  .shop-hero-media img { object-position: center 60%; }
  .shop-product { gap: 26px; padding-block: 34px; }
  .shop-product-copy p { font-size: var(--text-base); }
  .shop-final .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
