:root {
  --ink: #092a3a;
  --ink-deep: #051d29;
  --water: #006c83;
  --aqua: #00c7d4;
  --foam: #eaf7f5;
  --paper: #f7f3eb;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink-deep); }
body { margin: 0; color: var(--paper); background: var(--ink-deep); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link { position: fixed; z-index: 50; top: 12px; left: 12px; padding: 12px 16px; visibility: hidden; background: var(--paper); color: var(--ink); opacity: 0; transform: translateY(-160%); transition: transform .2s ease, opacity .2s ease; }
.skip-link:focus { visibility: visible; opacity: 1; transform: translateY(0); }
.site-shell { min-height: 100svh; overflow: clip; background: var(--ink); }
.site-header { position: relative; z-index: 20; display: grid; grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr); align-items: center; width: min(100%, var(--max)); min-height: 92px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 64px); border-bottom: 1px solid rgba(234, 247, 245, .19); }
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; letter-spacing: .055em; }
.brand img { width: 45px; height: 45px; }
.brand span { display: grid; font-size: 17px; line-height: .77; }
.brand strong { font-weight: 850; }
.brand small { margin-top: 6px; color: var(--aqua); font-size: 10px; font-weight: 800; letter-spacing: .28em; }
.desktop-nav { display: flex; justify-content: center; }
.desktop-nav > ul { display: flex; gap: clamp(18px, 2.25vw, 34px); margin: 0; padding: 0; }
.desktop-nav li { position: relative; list-style: none; }
.desktop-nav a, .header-cta { position: relative; font-size: 12px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; content: ""; background: var(--aqua); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.desktop-nav .menu-item-has-children > a { padding-right: 17px; }
.desktop-nav .menu-item-has-children > a::before { position: absolute; top: 43%; right: 1px; width: 6px; height: 6px; content: ""; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-50%); transition: color .18s ease, transform .18s ease; }
.desktop-nav .menu-item-has-children:hover > a::before, .desktop-nav .menu-item-has-children:focus-within > a::before { color: var(--aqua); transform: rotate(225deg) translate(-2px, -1px); }
.desktop-nav .sub-menu { position: absolute; top: 100%; left: -18px; display: grid; width: max-content; min-width: 236px; padding: 12px 0; color: var(--ink); background: var(--paper); box-shadow: 0 18px 40px rgba(0,0,0,.18); opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease; }
.desktop-nav .menu-item-has-children:hover > .sub-menu, .desktop-nav .menu-item-has-children:focus-within > .sub-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.desktop-nav .sub-menu a { display: block; padding: 10px 18px; color: var(--ink); font-size: 11px; letter-spacing: .04em; }
.desktop-nav .sub-menu a::after { display: none; }
.desktop-nav .sub-menu a:hover, .desktop-nav .sub-menu a:focus-visible { color: var(--water); background: var(--foam); }
.header-cta { justify-self: end; display: inline-flex; gap: 11px; align-items: center; min-height: 43px; padding: 0 15px; color: var(--ink-deep); background: var(--aqua); }
.header-cta span { font-size: 17px; }
.mobile-menu { display: none; }

.hero { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(510px, 1.1fr); width: min(100%, var(--max)); min-height: calc(100svh - 92px); margin: 0 auto; isolation: isolate; }
.hero::before { position: absolute; z-index: -3; inset: 0 48% 0 0; content: ""; background: radial-gradient(circle at 16% 73%, rgba(0, 199, 212, .16), transparent 28%), var(--ink); }
.hero-copy { z-index: 4; align-self: center; padding: clamp(70px, 10vh, 130px) clamp(24px, 5vw, 76px) clamp(76px, 10vh, 124px); }
.location { margin: 0; font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.location { margin-top: 19px; color: rgba(234, 247, 245, .63); font-size: 10px; }
.location i { display: inline-block; width: 22px; height: 1px; margin: 0 8px 3px; background: var(--aqua); }
h1 { max-width: 680px; margin: 35px 0 0; font-size: clamp(58px, 6.25vw, 94px); font-weight: 850; letter-spacing: -.068em; line-height: .9; text-wrap: balance; }
h1 em { color: var(--aqua); font-style: normal; }
.hero-note { max-width: 468px; margin: 34px 0 0; color: rgba(234, 247, 245, .76); font-size: clamp(16px, 1.28vw, 19px); line-height: 1.58; }
.primary-cta { display: inline-flex; gap: 34px; align-items: center; justify-content: space-between; min-width: 206px; min-height: 62px; margin-top: 38px; padding: 0 12px 0 23px; color: var(--ink-deep); background: var(--aqua); font-size: 13px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.primary-cta span { display: grid; width: 40px; height: 40px; place-items: center; color: var(--ink-deep); background: var(--paper); font-size: 20px; }
.primary-cta:hover { background: #50e1e5; transform: translateY(-2px); }
.hero-media { position: relative; z-index: 2; min-width: 0; min-height: 100%; margin: 0; overflow: hidden; background: var(--water); clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%); }
.hero-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(5, 29, 41, .54), transparent 35%), linear-gradient(0deg, rgba(5, 29, 41, .74), transparent 34%); pointer-events: none; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 56% center; filter: saturate(.92) contrast(1.05); transform: scale(1.02); }
.hero-media figcaption { position: absolute; z-index: 2; right: clamp(24px, 4vw, 62px); bottom: 34px; left: clamp(48px, 7vw, 100px); display: flex; justify-content: space-between; color: rgba(234, 247, 245, .75); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-watermark { position: absolute; z-index: -2; right: 45%; bottom: -12vw; color: rgba(0, 199, 212, .07); font-size: min(48vw, 650px); font-weight: 900; letter-spacing: -.17em; line-height: .73; }
.lane-lines { position: absolute; z-index: -1; right: 51%; bottom: 38px; display: grid; gap: 7px; width: 22vw; opacity: .5; }
.lane-lines span { display: block; height: 1px; background: linear-gradient(90deg, transparent, var(--aqua), transparent); }
.hero-side-label { position: absolute; z-index: 4; top: 50%; right: 14px; margin: 0; color: rgba(234, 247, 245, .6); font-size: 10px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; transform: rotate(90deg) translateX(50%); transform-origin: right top; }

.section-kicker { display: flex; gap: 10px; align-items: center; margin: 0 0 22px; color: var(--water); font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.section-kicker span { color: var(--aqua); }
.section-kicker--light { color: var(--aqua); }
.intro-section { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .68fr); gap: clamp(36px, 7vw, 120px); width: min(100%, var(--max)); min-height: 700px; margin: 0 auto; padding: clamp(88px, 12vw, 166px) clamp(24px, 9vw, 160px); color: var(--ink); background: var(--paper); overflow: hidden; }
.section-index { position: absolute; top: 50px; left: clamp(24px, 4vw, 64px); color: var(--water); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.intro-copy { align-self: center; max-width: 680px; }
h2 { margin: 0; font-size: clamp(40px, 4.45vw, 69px); font-weight: 850; letter-spacing: -.058em; line-height: .96; text-wrap: balance; }
h2 em { color: var(--aqua); font-style: normal; }
.intro-copy p { max-width: 635px; margin: 27px 0 0; color: #35515b; font-size: 17px; line-height: 1.7; }
.intro-media { align-self: end; max-width: 410px; min-height: 490px; margin: 0; overflow: hidden; background: #c8dbd8; clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%); }
.intro-media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 70%; }
.intro-tag { position: absolute; right: clamp(24px, 4vw, 64px); bottom: 42px; margin: 0; color: var(--water); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.coach-section { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(88px, 12vw, 168px) clamp(24px, 8vw, 128px); background: var(--foam); color: var(--ink); }
.coach-section__heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.coach-section__heading h2 { max-width: 760px; }
.coach-slider { margin-top: clamp(42px, 6vw, 72px); }
.coach-slider__track { display: grid; grid-auto-columns: max(330px, calc((100% - 32px) / 2.15)); grid-auto-flow: column; gap: clamp(18px, 2vw, 30px); overflow-x: auto; padding: 2px 2px 16px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.coach-slider__track::-webkit-scrollbar { display: none; }
.coach-slider__track:focus-visible { outline: 3px solid var(--aqua); outline-offset: 7px; }
.coach-slider__controls { display: flex; gap: 9px; }
.coach-slider__button { display: grid; width: 46px; height: 46px; padding: 0; place-items: center; color: var(--ink); border: 1px solid rgba(9,42,58,.28); background: transparent; font: inherit; font-size: 21px; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.coach-slider__button:hover, .coach-slider__button:focus-visible { color: var(--ink-deep); border-color: var(--aqua); background: var(--aqua); outline: 0; }
.coach-slider__button:disabled { cursor: default; opacity: .35; }
.coach-card { display: flex; min-height: 540px; flex-direction: column; overflow: hidden; background: var(--paper); scroll-snap-align: start; }
.coach-card figure { height: 270px; margin: 0; overflow: hidden; background: #b8d1d0; }
.coach-card figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.88); transition: transform .45s ease; }
.coach-card:hover figure img { transform: scale(1.035); }
.coach-card__body { display: flex; min-height: 270px; flex: 1; flex-direction: column; padding: 27px 27px 29px; }
.coach-card__role { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0; color: var(--water); font-size: 10px; font-weight: 850; letter-spacing: .13em; line-height: 1.35; text-transform: uppercase; }
.coach-card__role span { padding: 5px 7px; color: var(--ink); background: var(--aqua); font-size: 8px; letter-spacing: .08em; white-space: nowrap; }
.coach-card h3 { margin: 17px 0 0; font-size: clamp(30px, 2.8vw, 45px); letter-spacing: -.055em; line-height: .96; }
.coach-card__body > p:not(.coach-card__role) { margin: 17px 0 0; color: #35515b; font-size: 14px; line-height: 1.6; }
.coach-card .credentials { margin-top: 23px; }
.coach-card .credentials li { font-size: 11px; }
.coach-card .text-cta { margin-top: auto; }
.coach-section__link { margin-top: 36px; }
.coach-media { position: relative; align-self: center; min-height: 470px; }
.coach-media figure { width: min(100%, 640px); height: 500px; margin: 0; overflow: hidden; clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%); }
.coach-media figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.9); }
.coach-result { position: absolute; right: 0; bottom: -26px; width: min(70%, 330px); padding: 25px 28px; color: var(--paper); background: var(--ink); }
.coach-result span { display: block; margin-bottom: 8px; color: var(--aqua); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.coach-result strong { font-size: 18px; line-height: 1.15; }
.coach-copy { align-self: center; }
.coach-copy > p:not(.section-kicker) { margin: 21px 0 0; color: #35515b; font-size: 16px; line-height: 1.65; }
.text-cta { display: inline-flex; gap: 9px; margin-top: 24px; color: var(--water); font-size: 13px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.text-cta:hover, .text-cta:focus-visible { color: var(--ink); }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 35px 0 0; padding: 0; border-top: 1px solid rgba(9,42,58,.18); list-style: none; }
.credentials li { padding: 15px 8px 15px 0; border-bottom: 1px solid rgba(9,42,58,.18); font-size: 13px; font-weight: 750; }
.text-link { display: inline-flex; gap: 9px; align-items: center; margin-top: 30px; padding-bottom: 7px; color: var(--ink); border-bottom: 2px solid var(--aqua); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { color: var(--water); font-size: 17px; line-height: .6; }
.text-link:hover, .text-link:focus-visible { color: var(--water); }
.locations-section { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(88px, 12vw, 168px) clamp(24px, 8vw, 128px); color: var(--paper); background: var(--ink); }
.locations-heading { display: grid; grid-template-columns: minmax(220px, .7fr) 1fr; align-items: end; padding-bottom: 72px; border-bottom: 1px solid rgba(234,247,245,.2); }
.locations-heading .section-kicker { grid-row: 1; }
.locations-heading h2 { grid-row: 2; grid-column: 1 / -1; }
.location-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.location-list article { min-height: 335px; padding: 35px clamp(18px, 3vw, 45px) 15px 0; border-right: 1px solid rgba(234,247,245,.2); }
.location-list article + article { padding-left: clamp(18px, 3vw, 45px); }
.location-list article:last-child { border: 0; }
.location-list span, .path-grid article > span { color: var(--aqua); font-size: 11px; font-weight: 850; letter-spacing: .14em; }
.location-list h3 { max-width: 330px; margin: 48px 0 18px; font-size: 25px; letter-spacing: -.035em; line-height: 1.05; }
.location-list p { max-width: 340px; margin: 0; color: rgba(234,247,245,.68); font-size: 15px; line-height: 1.65; }
.paths-section { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(88px, 12vw, 168px) clamp(24px, 8vw, 128px); color: var(--ink); background: var(--paper); }
.paths-heading { display: grid; grid-template-columns: minmax(280px, 1.15fr) minmax(240px, .85fr); gap: 30px 80px; align-items: end; }
.paths-heading .section-kicker { grid-column: 1/-1; margin-bottom: 0; }
.paths-heading > p:last-child { margin: 0; color: #35515b; font-size: 16px; line-height: 1.65; }
.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 70px; background: rgba(9,42,58,.18); border: 1px solid rgba(9,42,58,.18); }
.path-grid article { min-height: 270px; padding: 31px 38px; background: var(--paper); transition: background .2s ease, color .2s ease; }
.path-grid article:hover { color: var(--paper); background: var(--ink); }
.path-grid article:hover > span { color: var(--aqua); }
.path-grid h3 { max-width: 440px; margin: 42px 0 16px; font-size: 29px; letter-spacing: -.04em; line-height: 1; }
.path-grid h3 a { color: inherit; }
.paths-section__cta { display: inline-flex; margin-top: 36px; }
.path-grid p { max-width: 470px; margin: 0; color: #48616a; font-size: 15px; line-height: 1.6; }
.path-grid article:hover p { color: rgba(234,247,245,.72); }
.triathlon-section { display: grid; grid-template-columns: minmax(0, .93fr) minmax(400px, 1.07fr); width: min(100%, var(--max)); min-height: 630px; margin: 0 auto; background: var(--water); }
.triathlon-copy { padding: clamp(82px, 10vw, 145px) clamp(24px, 7vw, 105px); }
.triathlon-copy h2 { color: var(--paper); }
.triathlon-copy > p:not(.section-kicker) { margin: 22px 0 0; color: rgba(234,247,245,.76); font-size: 16px; line-height: 1.65; }
.triathlon-media { min-height: 100%; margin: 0; overflow: hidden; }
.triathlon-media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; filter: saturate(.8) contrast(1.03); }
.pricing-section { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(88px, 12vw, 168px) clamp(24px, 8vw, 128px); color: var(--ink); background: var(--foam); }
.pricing-section header { display: grid; grid-template-columns: minmax(280px, 1.1fr) minmax(240px, .9fr); gap: 26px 90px; align-items: end; }
.pricing-section header .section-kicker { grid-column: 1/-1; margin-bottom: 0; }
.pricing-section header > p:last-child { margin: 0; color: #35515b; font-size: 16px; line-height: 1.65; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 66px; }
.pricing-grid article { display: flex; flex-direction: column; min-height: 255px; padding: 28px; color: var(--paper); background: var(--ink); }
.pricing-grid article:nth-child(even) { color: var(--ink); background: var(--aqua); }
.pricing-grid h3 { min-height: 57px; margin: 0; font-size: 18px; line-height: 1.1; }
.pricing-grid strong { margin-top: auto; font-size: 35px; letter-spacing: -.05em; }
.pricing-grid strong small { margin-left: 4px; font-size: 15px; letter-spacing: 0; }
.pricing-grid p { margin: 13px 0 0; color: rgba(234,247,245,.68); font-size: 12px; line-height: 1.45; }
.pricing-grid article:nth-child(even) p { color: rgba(9,42,58,.7); }
.reviews-section { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(88px, 12vw, 168px) clamp(24px, 8vw, 128px); color: var(--paper); background: var(--ink-deep); }
.reviews-section header { max-width: 740px; }
.reviews-section header > p:last-child { margin: 25px 0 0; color: rgba(234,247,245,.7); font-size: 16px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 66px; }
.review-grid blockquote { display: flex; flex-direction: column; min-height: 285px; margin: 0; padding: 28px; background: rgba(234,247,245,.06); border-top: 3px solid var(--aqua); }
.review-grid blockquote p { margin: 0; font-size: 18px; line-height: 1.55; }
.review-grid footer { margin-top: auto; padding-top: 25px; color: var(--aqua); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.review-grid footer span { color: rgba(234,247,245,.55); }
.news-section { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(88px, 12vw, 168px) clamp(24px, 8vw, 128px); color: var(--ink); background: var(--paper); }
.news-section header { display: grid; grid-template-columns: minmax(280px, 1.1fr) minmax(240px, .9fr); gap: 26px 90px; align-items: end; }
.news-section header .section-kicker { grid-column: 1 / -1; margin-bottom: 0; }
.news-section header > p:last-child { margin: 0; color: #35515b; font-size: 16px; line-height: 1.65; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 66px; border: 1px solid rgba(9,42,58,.18); background: rgba(9,42,58,.18); }
.news-grid article { display: flex; flex-direction: column; min-height: 330px; padding: 30px; background: var(--paper); }
.news-grid time { color: var(--water); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.news-grid h3 { max-width: 340px; margin: 22px 0 16px; font-size: clamp(23px, 2.15vw, 34px); line-height: 1.02; letter-spacing: -.055em; }
.news-grid h3 a { text-decoration: none; }
.news-grid article > p { margin: 0; color: #48616a; font-size: 14px; line-height: 1.6; }
.news-link { margin-top: auto; padding-top: 28px; color: var(--water); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.news-link span { font-size: 18px; vertical-align: -1px; }
.contact-section { display: grid; grid-template-columns: 1fr minmax(280px, .8fr); align-items: center; gap: 60px; width: min(100%, var(--max)); margin: 0 auto; padding: clamp(88px, 11vw, 150px) clamp(24px, 8vw, 128px); color: var(--ink); background: var(--aqua); }
.contact-section .section-kicker { color: var(--ink); }
.contact-section .section-kicker span { color: var(--paper); }
.contact-section h2 em { color: var(--paper); }
.contact-card { display: grid; gap: 10px; padding: 38px; color: var(--paper); background: var(--ink); }
.contact-card p { margin: 0 0 18px; color: var(--aqua); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-card a { width: max-content; font-size: clamp(22px, 2.2vw, 32px); font-weight: 800; letter-spacing: -.04em; }
.contact-form { display: grid; grid-column: 1 / -1; gap: 19px; padding-top: 14px; }
.contact-form label { display: grid; gap: 9px; color: var(--ink); font-size: 12px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; box-sizing: border-box; padding: 15px 16px; color: var(--ink); background: rgba(234,247,245,.92); border: 1px solid rgba(9,42,58,.3); border-radius: 0; font: inherit; font-size: 16px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.contact-form textarea { min-height: 128px; resize: vertical; }
.contact-form__fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-form__consent { grid-template-columns: 18px minmax(0, 1fr); align-items: start; max-width: 800px; font-size: 11px !important; font-weight: 650 !important; line-height: 1.55; letter-spacing: .02em !important; text-transform: none !important; }
.contact-form__consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--ink); }
.contact-form__consent a { text-decoration: underline; }
.contact-form .primary-cta { justify-self: start; border: 0; cursor: pointer; font: inherit; }
.contact-form__notice { margin: 0; padding: 13px 16px; color: var(--paper); background: var(--water); font-weight: 750; }
.contact-form__notice--error { background: #6b2635; }
.contact-form__honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.site-footer { width: min(100%, var(--max)); margin: 0 auto; color: var(--paper); background: var(--ink); }
.site-footer__inner { display: grid; grid-template-columns: 1fr minmax(420px, 1.8fr); gap: 46px 80px; padding: 64px clamp(24px, 8vw, 128px) 28px; }
.site-footer .brand { align-self: start; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 16px 30px; align-content: start; }
.site-footer nav ul { display: flex; flex-wrap: wrap; gap: 16px 30px; margin: 0; padding: 0; }
.site-footer nav li { list-style: none; }
.site-footer nav a { color: rgba(234,247,245,.72); font-size: 13px; font-weight: 750; }
.site-footer nav a:hover, .site-footer nav a:focus-visible { color: var(--aqua); }
.site-footer nav .menu-item-has-children { display: grid; gap: 10px; }
.site-footer nav .sub-menu { display: grid; gap: 8px; padding: 0; }
.site-footer nav .sub-menu a { color: rgba(234,247,245,.52); font-size: 11px; }
.site-footer__meta { display: flex; grid-column: 1 / -1; justify-content: space-between; gap: 22px; padding-top: 22px; border-top: 1px solid rgba(234,247,245,.16); color: rgba(234,247,245,.55); font-size: 12px; }
.site-footer__meta a { color: rgba(234,247,245,.72); }
.site-footer__meta a:hover, .site-footer__meta a:focus-visible { color: var(--aqua); }

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 76px; padding: 0 24px; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu summary { display: grid; width: 45px; height: 42px; padding: 0; place-content: center; gap: 6px; list-style: none; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { display: block; width: 24px; height: 2px; background: var(--paper); transition: transform .2s ease; }
  .mobile-menu[open] summary span:first-child { transform: translateY(4px) rotate(45deg); }
  .mobile-menu[open] summary span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu nav { display: none; }
  .mobile-menu[open] nav { position: absolute; top: 56px; right: 0; display: grid; min-width: 230px; padding: 14px; background: var(--paper); color: var(--ink); box-shadow: 0 20px 50px rgba(0, 0, 0, .3); }
  .mobile-menu nav ul { display: grid; margin: 0; padding: 0; }
  .mobile-menu nav li { list-style: none; }
  .mobile-menu nav a { padding: 13px 12px; font-size: 13px; font-weight: 800; }
  .mobile-menu .sub-menu { display: grid; margin: 0 0 6px; padding-left: 15px; }
  .mobile-menu .sub-menu a { padding: 8px 12px; color: #35515b; font-size: 11px; }
  .mobile-menu__cta { display: flex; justify-content: space-between; margin-top: 16px; padding: 14px 16px !important; color: var(--ink-deep) !important; background: var(--aqua); }
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero::before { inset: 0; }
  .hero-copy { width: 100%; padding: 72px 24px 54px; }
  h1 { margin-top: 30px; font-size: clamp(50px, 12.5vw, 72px); }
  .hero-note { max-width: 560px; margin-top: 28px; }
  .hero-media { width: calc(100% - 24px); min-height: 430px; margin-left: 24px; clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%); }
  .hero-media img { object-position: 57% center; }
  .hero-media figcaption { right: 24px; bottom: 24px; left: 42px; }
  .hero-watermark { right: -18px; bottom: 330px; }
  .lane-lines { right: 20px; bottom: 438px; width: 33vw; }
  .hero-side-label { display: none; }
  .intro-section, .coach-section, .triathlon-section, .contact-section { grid-template-columns: 1fr; }
  .intro-section { min-height: 0; padding: 105px 24px 82px; }
  .intro-media { width: min(80vw, 410px); min-height: 440px; margin-top: 18px; justify-self: end; }
  .intro-tag { right: 24px; bottom: 40px; max-width: 210px; text-align: right; line-height: 1.5; }
  .coach-section { padding: 90px 24px 110px; }
  .coach-media { min-height: 390px; }
  .coach-media figure { height: 390px; }
  .locations-section, .paths-section, .pricing-section, .reviews-section, .news-section { padding: 90px 24px; }
  .locations-heading, .paths-heading, .pricing-section header, .news-section header { grid-template-columns: 1fr; gap: 22px; }
  .location-list { grid-template-columns: 1fr; }
  .location-list article, .location-list article + article { min-height: 0; padding: 30px 0; border-right: 0; border-bottom: 1px solid rgba(234,247,245,.2); }
  .location-list article:last-child { border-bottom: 0; }
  .location-list h3 { margin-top: 23px; }
  .path-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .path-grid article { min-height: 0; padding: 28px; }
  .path-grid h3 { margin-top: 30px; }
  .triathlon-media { min-height: 380px; }
  .pricing-grid, .review-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid article { min-height: 230px; }
}

@media (max-width: 440px) {
  .brand img { width: 40px; height: 40px; }
  .brand span { font-size: 15px; }
  .hero-media { min-height: 350px; }
  .hero-media img { object-position: 60% center; }
  .coach-section__heading { align-items: flex-start; flex-direction: column; }
  .coach-slider__track { grid-auto-columns: minmax(280px, 86vw); }
  .primary-cta { width: 100%; }
  .intro-copy p, .coach-copy > p:not(.section-kicker), .paths-heading > p:last-child, .pricing-section header > p:last-child, .triathlon-copy > p:not(.section-kicker) { font-size: 15px; }
  .credentials { grid-template-columns: 1fr; }
  .coach-result { width: 82%; padding: 22px; }
  .pricing-grid, .review-grid, .news-grid { grid-template-columns: 1fr; }
  .pricing-grid article, .review-grid blockquote, .news-grid article { min-height: 0; }
  .review-grid blockquote { min-height: 230px; }
  .contact-section { gap: 38px; }
  .contact-form__fields { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 35px; padding: 48px 24px 24px; }
  .site-footer nav { gap: 14px 25px; }
}

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

/* Podstrona: Pływanie */
.service-shell { background: var(--paper); }
.service-shell .site-header { color: var(--paper); background: var(--ink); }
.service-hero { display: grid; grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr); width: min(100%, var(--max)); min-height: 650px; margin: 0 auto; color: var(--paper); background: var(--ink); }
.service-hero__copy { align-self: center; padding: clamp(70px, 9vw, 135px) clamp(24px, 7vw, 104px); }
.service-hero__copy h1 { margin: 0; font-size: clamp(70px, 8.5vw, 130px); }
.service-hero__copy > p:not(.section-kicker) { max-width: 470px; margin: 25px 0 0; color: rgba(234,247,245,.74); font-size: 17px; line-height: 1.55; }
.service-hero__media { min-height: 100%; margin: 0; overflow: hidden; clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%); }
.service-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; filter: saturate(.86) contrast(1.06); }
.service-jump { position: sticky; top: 0; z-index: 18; display: grid; grid-template-columns: repeat(4, 1fr); width: min(100%, var(--max)); margin: 0 auto; color: var(--ink); background: var(--foam); border-bottom: 1px solid rgba(9,42,58,.16); box-shadow: 0 8px 18px rgba(9,42,58,.08); }
.service-jump a { display: flex; gap: 11px; padding: 25px clamp(18px, 3vw, 42px); border-right: 1px solid rgba(9,42,58,.16); font-size: 12px; font-weight: 780; letter-spacing: .02em; }
.service-jump a:last-child { border-right: 0; }
.service-jump span { color: var(--water); font-size: 10px; font-weight: 850; }
.service-intro { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(300px, 1.2fr); gap: 80px; width: min(100%, var(--max)); margin: 0 auto; padding: clamp(92px, 12vw, 170px) clamp(24px, 10vw, 160px); color: var(--ink); background: var(--paper); }
.service-intro .section-kicker { grid-column: 1 / -1; margin: 0; }
.service-intro h2 { max-width: 520px; }
.service-intro > div { max-width: 630px; }
.service-intro p { margin: 0 0 23px; color: #35515b; font-size: 17px; line-height: 1.72; }
.swim-module { width: min(100%, var(--max)); margin: 0 auto; }
.swim-module h2 { font-size: clamp(37px, 4vw, 61px); }
.swim-module p { font-size: 16px; line-height: 1.72; }
.swim-module--beginner { display: grid; grid-template-columns: minmax(330px, .87fr) minmax(0, 1.13fr); gap: clamp(45px, 8vw, 140px); padding: 0 clamp(24px, 10vw, 160px) clamp(95px, 11vw, 155px); color: var(--ink); background: var(--paper); }
.swim-module--beginner figure { min-height: 650px; margin: 0; overflow: hidden; clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%); }
.swim-module--beginner figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.swim-module--beginner article { align-self: center; }
.swim-module--beginner article > p { color: #35515b; }
.swim-module ul { padding: 0; list-style: none; }
.swim-module--beginner ul { margin: 34px 0 0; border-top: 1px solid rgba(9,42,58,.2); }
.swim-module--beginner li { position: relative; padding: 18px 0 18px 22px; border-bottom: 1px solid rgba(9,42,58,.2); color: #35515b; font-size: 15px; line-height: 1.5; }
.swim-module--beginner li::before { position: absolute; top: 25px; left: 0; width: 7px; height: 7px; content: ""; background: var(--aqua); border-radius: 50%; }
.swim-module--technique { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr); gap: clamp(40px, 7vw, 115px); padding: clamp(90px, 11vw, 154px) clamp(24px, 10vw, 160px); color: var(--paper); background: var(--ink); }
.swim-module--technique h2 { color: var(--paper); }
.swim-module--technique article > p:not(.section-kicker) { color: rgba(234,247,245,.74); }
.technique-points { align-self: center; display: grid; padding: 0; border-top: 1px solid rgba(234,247,245,.2); }
.technique-points span { padding: 20px 0; border-bottom: 1px solid rgba(234,247,245,.2); color: var(--aqua); font-size: 15px; font-weight: 750; line-height: 1.4; }
.swim-module--plans { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(270px, .9fr); gap: clamp(45px, 8vw, 140px); padding: clamp(90px, 11vw, 154px) clamp(24px, 10vw, 160px); color: var(--ink); background: var(--foam); }
.swim-module--plans article p:not(.section-kicker) { max-width: 650px; color: #35515b; }
.plan-list { align-self: center; margin: 0; border-top: 1px solid rgba(9,42,58,.2); }
.plan-list li { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(9,42,58,.2); font-size: 16px; font-weight: 750; }
.plan-list span { color: var(--water); font-size: 11px; letter-spacing: .1em; }
.swim-module--athletes { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); color: var(--ink); background: var(--paper); }
.swim-module--athletes figure { min-height: 590px; margin: 0; overflow: hidden; }
.swim-module--athletes figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.86); }
.swim-module--athletes article { align-self: center; padding: clamp(70px, 9vw, 132px) clamp(24px, 8vw, 116px); }
.swim-module--athletes article > p:not(.section-kicker) { color: #35515b; }
.service-final { display: grid; grid-template-columns: minmax(0, 1fr) minmax(290px, .62fr); gap: clamp(45px, 8vw, 140px); align-items: center; width: min(100%, var(--max)); margin: 0 auto; padding: clamp(88px, 11vw, 150px) clamp(24px, 10vw, 160px); color: var(--paper); background: var(--water); }
.service-final h2 { color: var(--paper); }
.service-final > div > p:not(.section-kicker) { max-width: 720px; color: rgba(234,247,245,.82); font-size: 16px; line-height: 1.7; }
.service-final__card { display: grid; gap: 11px; padding: 36px; color: var(--paper); background: var(--ink); }
.service-final__card p { margin: 0 0 16px; color: var(--aqua); font-size: 11px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.service-final__card a { width: max-content; font-size: clamp(21px, 2.2vw, 31px); font-weight: 800; letter-spacing: -.045em; }
.price-page-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; width: min(100%, var(--max)); margin: 0 auto; background: rgba(9,42,58,.16); border: 1px solid rgba(9,42,58,.16); }
.price-page-list article { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px 30px; min-height: 185px; padding: clamp(28px, 4vw, 54px) clamp(24px, 6vw, 82px); color: var(--ink); background: var(--paper); }
.price-page-list article:nth-child(4n + 2), .price-page-list article:nth-child(4n + 3) { color: var(--paper); background: var(--ink); }
.price-page-list h2 { font-size: clamp(27px, 2.7vw, 43px); }
.price-page-list strong { align-self: start; color: var(--water); font-size: clamp(28px, 3.1vw, 50px); font-weight: 850; letter-spacing: -.06em; white-space: nowrap; }
.price-page-list strong small { margin-left: 4px; font-size: .36em; letter-spacing: 0; }
.price-page-list p { grid-column: 1 / -1; margin: 0; color: #48616a; font-size: 15px; line-height: 1.55; }
.price-page-list article:nth-child(4n + 2) p, .price-page-list article:nth-child(4n + 3) p { color: rgba(234,247,245,.72); }
.price-page-note { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); gap: 50px 90px; width: min(100%, var(--max)); margin: 0 auto; padding: clamp(80px, 10vw, 144px) clamp(24px, 10vw, 160px); color: var(--paper); background: var(--ink); }
.price-page-note h2 { color: var(--paper); }
.price-page-note p { max-width: 720px; margin: 24px 0 0; color: rgba(234,247,245,.75); font-size: 17px; line-height: 1.7; }
.price-page-note__aside { align-self: center; padding: 32px; border: 1px solid rgba(234,247,245,.22); }
.price-page-note__aside strong { display: block; color: var(--aqua); font-size: 36px; letter-spacing: -.05em; }
.price-page-note__aside span { display: block; margin-top: 10px; color: rgba(234,247,245,.72); font-size: 14px; line-height: 1.5; }
.about-hero .service-hero__media img { object-position: center 25%; }
.about-profile figure img { object-position: center; }
.gym-hero__mark { display: grid; padding: clamp(48px, 8vw, 118px); place-items: center; background: var(--foam); clip-path: none; }
.gym-hero__mark img { width: min(100%, 500px); height: auto; object-fit: contain; filter: none; }
.gym-hero .service-hero__copy { padding-right: clamp(28px, 5vw, 76px); padding-left: clamp(28px, 5vw, 76px); }
.gym-hero .service-hero__copy h1 { max-width: 560px; font-size: clamp(62px, 5.45vw, 86px); line-height: .96; letter-spacing: -.065em; }
.gym-hero .service-hero__prompt { margin-top: 30px; color: var(--aqua); font-size: 17px; font-weight: 800; }
.gym-hero .primary-cta { margin-top: 16px; }
.gym-offer { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(90px, 12vw, 168px) clamp(24px, 8vw, 128px); color: var(--ink); background: var(--paper); }
.gym-offer header { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr); gap: 30px 90px; }
.gym-offer header .section-kicker { grid-column: 1 / -1; margin: 0; }
.gym-offer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 70px; background: rgba(9,42,58,.18); border: 1px solid rgba(9,42,58,.18); }
.gym-offer__grid article { display: flex; flex-direction: column; min-height: 280px; padding: 30px; color: var(--ink); background: var(--paper); }
.gym-offer__grid article:nth-child(2) { color: var(--paper); background: var(--ink); }
.gym-offer__grid span { color: var(--aqua); font-size: 12px; font-weight: 850; letter-spacing: .11em; }
.gym-offer__grid h3 { max-width: 310px; margin: auto 0 0; font-size: clamp(28px, 3vw, 47px); line-height: 1; letter-spacing: -.055em; }
.diet-quote { align-self: center; padding: clamp(28px, 4vw, 54px); color: var(--ink); background: var(--foam); font-size: 17px; font-weight: 700; line-height: 1.65; }
.mental-section { width: min(100%, var(--max)); min-height: 440px; margin: 0 auto; padding: clamp(88px, 13vw, 180px) clamp(24px, 12vw, 184px); color: var(--ink); background: var(--paper); }
.mental-section .section-kicker { margin-bottom: 40px; }
.mental-section h2 { max-width: 660px; font-size: clamp(60px, 8.2vw, 130px); }
.mental-section > p:not(.section-kicker) { max-width: 680px; margin: 28px 0 0; color: #35515b; font-size: 18px; line-height: 1.72; }
.mental-section__contact { display: grid; grid-template-columns: repeat(3, max-content); gap: 12px 32px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(9,42,58,.18); }
.mental-section__contact span { grid-column: 1 / -1; color: var(--water); font-size: 11px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.mental-section__contact a { font-size: 18px; font-weight: 800; }
.team-list { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(90px, 11vw, 150px) clamp(24px, 10vw, 160px); color: var(--ink); background: var(--paper); }
.team-list > .section-kicker { margin: 0 0 60px; }
.team-profile { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr); gap: clamp(48px, 8vw, 130px); align-items: center; }
.team-profile + .team-profile { margin-top: clamp(82px, 10vw, 142px); padding-top: clamp(82px, 10vw, 142px); border-top: 1px solid rgba(9,42,58,.16); }
.team-profile--reverse { grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr); }
.team-profile--reverse figure { order: 2; }
.team-profile figure { min-height: 610px; margin: 0; overflow: hidden; }
.team-profile figure img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.team-profile h2 { margin: 20px 0 28px; font-size: clamp(52px, 6vw, 92px); }
.team-profile p:not(.section-kicker) { color: #35515b; font-size: 17px; line-height: 1.72; }
.offer-detail { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr); width: min(100%, var(--max)); margin: 0 auto; color: var(--ink); background: var(--paper); }
.offer-detail--reverse { grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr); background: var(--foam); }
.offer-detail figure { min-height: 700px; margin: 0; overflow: hidden; }
.offer-detail figure img { width: 100%; height: 100%; object-fit: cover; }
.offer-detail > div { align-self: center; padding: clamp(72px, 9vw, 130px) clamp(28px, 9vw, 145px); }
.offer-detail--reverse figure { order: 2; }
.offer-detail h2 { margin: 18px 0 28px; font-size: clamp(48px, 5.6vw, 86px); }
.offer-detail > div > p:not(.section-kicker) { max-width: 640px; color: #35515b; font-size: 17px; line-height: 1.72; }
.offer-price { display: grid; gap: 8px; margin-top: 42px; padding: 23px 0; border-top: 1px solid rgba(9,42,58,.18); border-bottom: 1px solid rgba(9,42,58,.18); }
.offer-price span { color: var(--water); font-size: 11px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.offer-price strong { font-size: clamp(32px, 3.5vw, 52px); letter-spacing: -.06em; }
.offer-price strong small { font-size: .38em; letter-spacing: 0; }
.offer-price p { margin: 0; color: #48616a; font-size: 14px; line-height: 1.55; }
.offer-form { margin-top: 30px; padding: 25px; background: var(--ink); color: var(--paper); }
.offer-form h3 { margin: 0; color: var(--aqua); font-size: 20px; }
.offer-form p { margin: 12px 0 0; color: rgba(234,247,245,.72); font-size: 14px; line-height: 1.55; }
.offer-form .text-cta { color: var(--aqua); }
.instagram-section { display: grid; grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr); gap: clamp(42px, 8vw, 130px); width: min(100%, var(--max)); margin: 0 auto; padding: clamp(90px, 11vw, 150px) clamp(24px, 10vw, 160px); color: var(--ink); background: var(--paper); }
.instagram-section header { align-self: start; }
.instagram-section h2, .map-section h2 { margin: 18px 0 24px; font-size: clamp(43px, 5vw, 78px); line-height: .96; letter-spacing: -.06em; }
.instagram-section header > p:not(.section-kicker), .map-section__copy > p:not(.section-kicker) { max-width: 460px; color: #35515b; font-size: 17px; line-height: 1.7; }
.instagram-section__feed { min-width: 0; }
.instagram-section__feed #sb_instagram { max-width: none !important; }
.instagram-preview { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.instagram-preview a { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: var(--ink); }
.instagram-preview img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, opacity .25s ease; }
.instagram-preview a > span { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; align-items: center; padding: 13px; color: var(--paper); background: linear-gradient(transparent, rgba(5,29,41,.92)); font-size: 10px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: opacity .22s ease, transform .22s ease; }
.instagram-preview a:hover img, .instagram-preview a:focus-visible img { opacity: .76; transform: scale(1.05); }
.instagram-preview a:hover > span, .instagram-preview a:focus-visible > span { opacity: 1; transform: translateY(0); }
.instagram-preview__profile { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding: 17px 18px; color: var(--paper); background: var(--ink); }
.instagram-preview__profile span { color: var(--aqua); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.instagram-preview__profile strong { font-size: 18px; letter-spacing: -.03em; }
.instagram-preview__profile > i { color: var(--aqua); font-size: 22px; font-style: normal; }
.instagram-fallback { display: grid; min-height: 240px; padding: 32px; align-content: end; gap: 8px; color: var(--paper); background: var(--ink); }
.instagram-fallback span { color: var(--aqua); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.instagram-fallback strong { font-size: clamp(32px, 4vw, 54px); letter-spacing: -.06em; }
.instagram-fallback i { justify-self: end; margin-top: -42px; color: var(--aqua); font-size: 28px; font-style: normal; }
.map-section { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); align-items: stretch; width: min(100%, var(--max)); margin: 0 auto; color: var(--ink); background: var(--foam); }
.map-section__copy { padding: clamp(72px, 9vw, 130px) clamp(24px, 8vw, 125px); }
.map-section__embed { min-height: 470px; background: #d9e8e7; }
.map-section__embed iframe { display: block; width: 100%; height: 100%; min-height: 470px; }
.post-article { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(84px, 11vw, 160px) clamp(24px, 13vw, 210px); color: var(--ink); background: var(--paper); }
.post-article header { max-width: 880px; }
.post-article h1 { margin: 22px 0; font-size: clamp(48px, 7vw, 100px); line-height: .96; }
.post-article__lead { max-width: 720px; color: #35515b; font-size: clamp(18px, 2vw, 25px); line-height: 1.55; }
.post-article__featured { margin: clamp(50px, 7vw, 100px) 0; }
.post-article__featured img, .post-article__content img { width: 100%; height: auto; }
.post-article__content { max-width: 760px; }
.post-article__content > * { margin: 0 0 28px; }
.post-article__content h2 { margin-top: 68px; font-size: clamp(34px, 4vw, 56px); }
.post-article__content h3 { margin-top: 48px; font-size: clamp(25px, 3vw, 38px); }
.post-article__content p, .post-article__content li { color: #35515b; font-size: 18px; line-height: 1.75; }
.post-article__content ul, .post-article__content ol { padding-left: 22px; }
.post-article__content figure { margin: 50px 0; }
.adult-swim-hero .service-hero__media img { object-position: center; }
.adult-swim-detail article { max-width: none; }
.legal-page { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(92px, 12vw, 170px) clamp(24px, 13vw, 210px); color: var(--ink); background: var(--paper); }
.legal-page header { max-width: 820px; }
.legal-page h1 { margin: 22px 0; font-size: clamp(50px, 7vw, 104px); line-height: .95; }
.legal-page__lead { max-width: 690px; color: #35515b; font-size: clamp(18px, 2vw, 25px); line-height: 1.55; }
.legal-page__content { max-width: 800px; margin-top: clamp(60px, 8vw, 110px); }
.legal-page__content section { padding: 34px 0; border-top: 1px solid rgba(9,42,58,.18); }
.legal-page__content h2 { margin: 0 0 18px; font-size: clamp(28px, 3vw, 43px); }
.legal-page__content p { color: #35515b; font-size: 17px; line-height: 1.72; }
.legal-page__content a { color: var(--water); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.legal-page__note { margin-top: 42px; padding: 26px; background: var(--foam); font-size: 14px !important; }
.cookie-consent[hidden] { display: none; }
.cookie-consent { position: fixed; z-index: 90; right: 24px; bottom: 24px; left: 24px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px 50px; max-width: 1100px; margin: 0 auto; padding: 28px 32px; color: var(--paper); background: var(--ink); box-shadow: 0 22px 70px rgba(0,0,0,.38); }
.cookie-consent .section-kicker { margin: 0 0 12px; color: var(--aqua); }
.cookie-consent h2 { margin: 0; color: var(--paper); font-size: clamp(27px, 3vw, 42px); }
.cookie-consent__copy > p:last-child { max-width: 660px; margin: 13px 0 0; color: rgba(234,247,245,.78); font-size: 14px; line-height: 1.55; }
.cookie-consent a { color: var(--aqua); text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent__actions { display: grid; align-content: center; gap: 9px; min-width: 190px; }
.cookie-consent__button { min-height: 43px; padding: 10px 15px; border: 1px solid var(--aqua); color: var(--ink); background: var(--aqua); font: inherit; font-size: 12px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; }
.cookie-consent__button--secondary { color: var(--paper); background: transparent; border-color: rgba(234,247,245,.42); }
@media (max-width: 640px) { .cookie-consent { right: 12px; bottom: 12px; left: 12px; grid-template-columns: 1fr; gap: 22px; padding: 24px; } .cookie-consent__actions { min-width: 0; } }

@media (max-width: 920px) {
  .service-hero, .service-intro, .swim-module--beginner, .swim-module--technique, .swim-module--plans, .swim-module--athletes, .service-final, .team-profile, .team-profile--reverse, .offer-detail, .offer-detail--reverse, .instagram-section, .map-section { grid-template-columns: 1fr; }
  .price-page-list, .price-page-note { grid-template-columns: 1fr; }
  .gym-offer header, .gym-offer__grid { grid-template-columns: 1fr; }
  .gym-offer__grid { margin-top: 44px; }
  .gym-offer__grid article { min-height: 210px; }
  .service-hero { min-height: 0; }
  .service-hero__copy { padding: 84px 24px 62px; }
  .gym-hero .service-hero__copy h1 { max-width: none; font-size: clamp(56px, 13.8vw, 78px); }
  .service-hero__media { min-height: 400px; margin-left: 24px; clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%); }
  .offer-detail--reverse figure, .team-profile--reverse figure { order: 0; }
  .team-profile figure, .offer-detail figure { min-height: 420px; }
  .service-jump { grid-template-columns: 1fr 1fr; }
  .service-jump a:nth-child(2) { border-right: 0; }
  .service-jump a:nth-child(-n+2) { border-bottom: 1px solid rgba(9,42,58,.16); }
  .service-intro { gap: 30px; padding: 90px 24px; }
  .swim-module--beginner { gap: 44px; padding: 0 24px 92px; }
  .swim-module--beginner figure { min-height: 450px; }
  .swim-module--technique, .swim-module--plans { gap: 42px; padding: 90px 24px; }
  .swim-module--athletes figure { min-height: 400px; }
  .swim-module--athletes article { padding: 90px 24px; }
  .service-final { gap: 38px; padding: 90px 24px; }
  .instagram-section { gap: 38px; padding: 90px 24px; }
  .map-section__copy { padding: 90px 24px 52px; }
  .map-section__embed, .map-section__embed iframe { min-height: 360px; }
}

@media (max-width: 440px) {
  .service-hero__copy h1 { font-size: 72px; }
  .mental-section__contact { grid-template-columns: 1fr; gap: 14px; }
  .service-jump { grid-template-columns: 1fr; }
  .service-jump a, .service-jump a:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(9,42,58,.16); }
  .service-jump a:last-child { border-bottom: 0; }
  .service-intro p, .swim-module p, .service-final > div > p:not(.section-kicker) { font-size: 15px; }
  .price-page-list article { grid-template-columns: 1fr; gap: 13px; min-height: 0; }
  .price-page-list strong { grid-row: 2; grid-column: 1; }
  .price-page-list p { grid-row: 3; }
  .price-page-note p { font-size: 15px; }
}
