:root {
    --ocean-950: #03233f;
    --ocean-900: #052f55;
    --ocean-800: #063c72;
    --ocean-700: #075aa6;
    --ocean-600: #0876cc;
    --ocean-300: #7ddcf2;
    --foam: #f8fcfc;
    --sand: #f2ecdf;
    --sand-deep: #dfd2bc;
    --coral: #ff6b4a;
    --coral-dark: #e95033;
    --ink: #08273f;
    --muted: #557084;
    --white: #fff;
    --line: rgba(8, 39, 63, .14);
    --shadow: 0 24px 70px rgba(3, 35, 63, .14);
    --container: min(1240px, calc(100vw - 48px));
    --serif: "Fraunces", Georgia, serif;
    --sans: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--foam); font-family: var(--sans); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
body.nav-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.04; letter-spacing: -.035em; }
h1 { font-size: clamp(3.6rem, 8.2vw, 8rem); }
h2 { font-size: clamp(2.65rem, 5.4vw, 5.6rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 2rem); }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: clamp(88px, 11vw, 160px) 0; }
.section--sand { background: var(--sand); }
.section--deep { color: var(--white); background: var(--ocean-950); }
.section--blue { color: var(--white); background: var(--ocean-800); }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 15px; background: var(--white); transform: translateY(-180%); }
.skip-link:focus { transform: none; }

.site-loader { position: fixed; z-index: 9998; inset: 0; display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--ocean-950); animation: loader-away .9s cubic-bezier(.8,0,.2,1) 1.2s forwards; pointer-events: none; }
.site-loader span { width: 9px; height: 38px; border-radius: 999px; background: var(--ocean-300); transform-origin: bottom; animation: tide-bars .75s ease-in-out infinite alternate; }
.site-loader span:nth-child(2) { height: 58px; animation-delay: -.35s; background: var(--white); }
.site-loader span:nth-child(3) { height: 28px; animation-delay: -.15s; background: var(--coral); }
@keyframes tide-bars { to { transform: scaleY(.35); opacity: .45; } }
@keyframes loader-away { to { transform: translateY(-100%); visibility: hidden; } }

.announcement { position: relative; z-index: 40; color: var(--white); background: var(--ocean-950); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.announcement__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement p { margin: 0; opacity: .72; }
.announcement a { color: var(--ocean-300); font-weight: 700; }
.site-header { position: absolute; z-index: 50; top: 36px; left: 0; right: 0; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.2); transition: background .3s, color .3s, transform .3s; }
.site-header.is-sticky { position: fixed; top: 0; color: var(--ink); background: rgba(248,252,252,.93); box-shadow: 0 8px 40px rgba(3,35,63,.08); backdrop-filter: blur(18px); }
.site-header__inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 64px; height: 64px; object-fit: contain; border-radius: 50%; box-shadow: 0 8px 24px rgba(3,35,63,.15); }
.brand__text { display: grid; line-height: 1; }
.brand__text strong { font-family: var(--serif); font-size: 1.45rem; letter-spacing: -.04em; }
.brand__text small { margin-top: 6px; font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; opacity: .68; }
.main-nav { display: flex; align-items: center; gap: clamp(15px, 2vw, 30px); margin-left: auto; }
.main-nav > a { position: relative; padding: 32px 0; font-size: .84rem; font-weight: 600; }
.main-nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 24px; height: 2px; background: var(--coral); transition: right .25s; }
.main-nav > a:hover::after, .main-nav > a.is-active::after { right: 0; }
.language-mobile { display: none; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.language-switch { display: flex; align-items: center; gap: 7px; font-size: .66rem; font-weight: 700; letter-spacing: .08em; }
.language-switch i { width: 18px; height: 1px; background: currentColor; opacity: .45; }
.nav-toggle { display: none; width: 45px; height: 45px; border: 0; background: transparent; padding: 11px; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: currentColor; transition: transform .25s; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 18px; padding: 0 26px; border: 1px solid transparent; border-radius: 2px; font-size: .82rem; font-weight: 700; letter-spacing: .045em; text-transform: uppercase; transition: transform .25s, background .25s, color .25s, box-shadow .25s; }
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(3,35,63,.18); }
.button--nav { min-height: 45px; padding-inline: 19px; color: var(--ink); background: var(--white); }
.is-sticky .button--nav { color: var(--white); background: var(--ocean-800); }
.button--coral { color: var(--white); background: var(--coral); }
.button--coral:hover { background: var(--coral-dark); }
.button--ink { color: var(--white); background: var(--ink); }
.button--light { color: var(--ink); background: var(--white); }
.text-link { display: inline-flex; gap: 20px; align-items: center; padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: .84rem; font-weight: 700; text-transform: uppercase; letter-spacing: .055em; }
.text-link span { color: var(--coral); transition: transform .2s; }
.text-link:hover span { transform: translate(3px,-3px); }
.text-link--light { color: var(--white); }
.pill { display: inline-flex; padding: 6px 11px; border-radius: 999px; color: var(--ocean-800); background: rgba(8,118,204,.1); font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.pill--coral { color: var(--white); background: var(--coral); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; color: var(--ocean-700); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 32px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--ocean-300); }

.hero { position: relative; min-height: min(900px, calc(100vh - 10px)); display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--ocean-950); }
.hero__media, .hero__wash { position: absolute; inset: 0; }
.hero__media video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: hero-zoom 13s ease-out forwards; }
.hero__wash { background: linear-gradient(90deg, rgba(3,29,53,.88) 0%, rgba(3,35,63,.6) 46%, rgba(3,35,63,.12) 76%), linear-gradient(0deg, rgba(3,35,63,.52), transparent 48%); }
@keyframes hero-zoom { to { transform: scale(1); } }
.hero__content { position: relative; z-index: 3; padding-top: 145px; padding-bottom: 100px; }
.hero__copy { max-width: 840px; }
.hero__copy h1 { max-width: 790px; margin-bottom: 30px; text-wrap: balance; text-shadow: 0 5px 35px rgba(3,35,63,.2); opacity: 0; transform: translateY(45px); animation: rise-in .9s cubic-bezier(.2,.7,.2,1) 1.2s forwards; }
.hero__copy .eyebrow { opacity: 0; animation: fade-in .7s ease 1s forwards; }
.hero__intro { max-width: 610px; margin-bottom: 38px; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.5vw, 1.2rem); opacity: 0; transform: translateY(25px); animation: rise-in .7s ease 1.45s forwards; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; opacity: 0; animation: fade-in .7s ease 1.7s forwards; }
.play-link { display: flex; align-items: center; gap: 12px; font-size: .79rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.play-link i { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-style: normal; font-size: .6rem; transition: background .2s; }
.play-link:hover i { color: var(--ink); background: var(--white); }
.hero__side-note { position: absolute; z-index: 4; right: -45px; top: 53%; display: flex; align-items: center; gap: 13px; transform: rotate(90deg); transform-origin: center; font-size: .62rem; text-transform: uppercase; letter-spacing: .18em; opacity: .65; }
.hero__side-note i { width: 58px; height: 1px; background: var(--white); }
.hero__line-art { position: absolute; z-index: 2; right: 5vw; top: 22%; width: min(30vw, 420px); height: 430px; opacity: .25; transform: rotate(-9deg); }
.hero__line-art span { position: absolute; inset: 0; border: 1px solid var(--ocean-300); border-radius: 48% 52% 65% 35% / 65% 35% 65% 35%; animation: orbit-line 10s linear infinite; }
.hero__line-art span:nth-child(2) { inset: 30px; animation-direction: reverse; animation-duration: 13s; }
.hero__line-art span:nth-child(3) { inset: 60px; animation-duration: 16s; }
@keyframes orbit-line { to { transform: rotate(360deg); } }
.hero__tide { position: absolute; z-index: 5; bottom: -2px; left: 0; right: 0; height: 115px; }
.hero__tide svg { width: 100%; height: 100%; fill: var(--foam); }
@keyframes rise-in { to { opacity: 1; transform: none; } }
@keyframes fade-in { to { opacity: 1; } }

[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.story-grid { display: grid; grid-template-columns: .45fr 1.55fr 1fr; gap: 35px 55px; align-items: start; }
.story-number { display: flex; flex-direction: column; gap: 4px; padding-top: 18px; color: var(--ocean-700); }
.story-number span { font-family: var(--serif); font-size: 2rem; }
.story-number small { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.story-copy h2 { max-width: 700px; margin: 0; }
.story-body { padding-top: 76px; }
.story-body p { margin-bottom: 32px; color: var(--muted); font-size: 1.12rem; }
.story-image { position: relative; overflow: hidden; margin: 55px 0 0; }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.story-image:hover img { transform: scale(1.04); }
.story-image--wide { grid-column: 1 / 3; height: 470px; }
.story-image--tall { height: 580px; }
.story-image figcaption { position: absolute; right: 0; bottom: 0; width: 160px; padding: 26px; color: var(--white); background: var(--coral); }
.story-image figcaption strong { display: block; font-family: var(--serif); font-size: 2.4rem; line-height: 1; }
.story-image figcaption span { display: block; margin-top: 7px; font-size: .65rem; text-transform: uppercase; letter-spacing: .09em; }

.section-heading { margin-bottom: 55px; }
.section-heading h2 { max-width: 850px; margin-bottom: 0; }
.section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.section-heading--split > p { max-width: 430px; margin-bottom: 10px; color: var(--muted); }
.section-heading--center { max-width: 870px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--light h2 { color: var(--white); }
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.course-card { position: relative; min-height: 660px; display: flex; flex-direction: column; padding: clamp(28px, 3vw, 46px); background: var(--white); border-top: 3px solid var(--ocean-300); transition: transform .35s ease, box-shadow .35s ease; }
.course-card:hover { z-index: 2; transform: translateY(-12px); box-shadow: var(--shadow); }
.course-card--featured { color: var(--white); background: var(--ocean-800); border-color: var(--coral); }
.course-card--featured .course-card__subtitle, .course-card--featured .course-price span, .course-card--featured .course-meta { color: rgba(255,255,255,.7); }
.course-card--featured .pill { color: var(--white); background: var(--coral); }
.course-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 45px; }
.course-card__number { font-family: var(--serif); color: var(--ocean-600); font-size: 1.35rem; }
.course-card--featured .course-card__number { color: var(--ocean-300); }
.course-card h3 { margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3.1rem); }
.course-card__subtitle { min-height: 80px; margin-bottom: 28px; color: var(--muted); }
.course-price { display: flex; align-items: baseline; gap: 6px; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.course-price strong { font-family: var(--serif); font-size: clamp(1.55rem, 2.1vw, 2.1rem); }
.course-price span { color: var(--muted); font-size: .75rem; }
.course-meta { display: flex; gap: 25px; padding: 18px 0; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.course-meta b { color: inherit; font-family: var(--serif); font-size: 1.05rem; }
.check-list { display: grid; gap: 9px; margin: 0 0 32px; padding: 0; list-style: none; font-size: .86rem; }
.check-list li { position: relative; padding-left: 23px; }
.check-list li::before { content: ""; position: absolute; top: .55em; left: 0; width: 10px; height: 5px; border-left: 2px solid var(--coral); border-bottom: 2px solid var(--coral); transform: rotate(-45deg); }
.course-card .text-link { margin-top: auto; align-self: flex-start; }
.section-center { margin-top: 50px; text-align: center; }

.steps { overflow: hidden; }
.steps::before { content: ""; position: absolute; top: 18%; left: -8%; width: 360px; height: 360px; border: 1px solid rgba(8,118,204,.12); border-radius: 50%; box-shadow: 0 0 0 55px rgba(8,118,204,.035), 0 0 0 110px rgba(8,118,204,.025); }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); }
.steps-grid::before { content: ""; position: absolute; top: 87px; left: 17%; right: 17%; height: 1px; border-top: 1px dashed rgba(8,39,63,.25); }
.step-card { position: relative; padding: 0 45px; text-align: center; }
.step-card > span { display: block; color: var(--ocean-600); font-family: var(--serif); font-size: 1.15rem; }
.step-icon { position: relative; z-index: 2; width: 116px; height: 116px; display: grid; place-items: center; margin: 18px auto 28px; border-radius: 50%; background: var(--foam); box-shadow: 0 0 0 1px var(--line), 0 12px 35px rgba(3,35,63,.08); }
.step-icon i { position: absolute; width: 54px; height: 13px; border-top: 2px solid var(--ocean-600); border-radius: 50%; transform: rotate(-9deg); }
.step-icon i:nth-child(2) { transform: translateY(12px) rotate(-9deg); width: 43px; }
.step-icon i:nth-child(3) { transform: translateY(24px) rotate(-9deg); width: 31px; }
.step-card p { max-width: 320px; margin-inline: auto; color: var(--muted); }

.gallery-teaser { overflow: hidden; background-image: radial-gradient(circle at 90% 10%, rgba(8,118,204,.25), transparent 35%), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, 60px 60px, 60px 60px; }
.bento-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 110px; gap: 14px; }
.bento-item { position: relative; overflow: hidden; padding: 0; border: 0; background: var(--ocean-900); cursor: pointer; }
.bento-item--1 { grid-column: span 5; grid-row: span 4; }
.bento-item--2 { grid-column: span 3; grid-row: span 3; }
.bento-item--3 { grid-column: span 4; grid-row: span 5; }
.bento-item--4 { grid-column: span 3; grid-row: span 3; }
.bento-item--5 { grid-column: span 5; grid-row: span 4; }
.bento-item--6 { grid-column: span 4; grid-row: span 2; }
.bento-item--7 { grid-column: span 3; grid-row: span 3; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease, filter .4s; }
.bento-item:hover img { transform: scale(1.06); filter: saturate(1.08); }
.bento-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(3,35,63,.82)); }
.bento-item__caption { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 17px; color: var(--white); text-align: left; font-family: var(--serif); font-size: 1.15rem; }
.media-play { position: absolute; z-index: 3; top: 50%; left: 50%; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.9); transform: translate(-50%,-50%); font-size: .7rem; }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 135px); align-items: start; }
.faq-intro { position: sticky; top: 140px; }
.faq-intro h2 { margin-bottom: 25px; }
.faq-intro > p:not(.eyebrow) { margin-bottom: 35px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: grid; grid-template-columns: 45px 1fr 25px; gap: 20px; align-items: center; padding: 27px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-item button strong { font-family: var(--serif); font-size: clamp(1.12rem, 1.7vw, 1.45rem); letter-spacing: -.02em; }
.faq-item__number { color: var(--ocean-600); font-size: .7rem; }
.faq-item button i { position: relative; width: 18px; height: 18px; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; top: 8px; left: 1px; width: 16px; height: 1px; background: currentColor; transition: transform .25s; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item.is-open button i::after { transform: rotate(0); }
.faq-item__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item__answer > p { overflow: hidden; margin: 0; padding: 0 45px 0 65px; color: var(--muted); transition: padding .35s; }
.faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-item__answer > p { padding-bottom: 28px; }

.final-cta { position: relative; min-height: 660px; display: grid; align-items: center; overflow: hidden; color: var(--white); }
.final-cta__media, .final-cta__overlay { position: absolute; inset: 0; }
.final-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.final-cta__overlay { background: linear-gradient(90deg, rgba(3,35,63,.91), rgba(3,35,63,.3)); }
.final-cta__content { position: relative; z-index: 2; }
.final-cta h2 { max-width: 850px; margin-bottom: 25px; }
.final-cta__content > p:not(.eyebrow) { max-width: 610px; margin-bottom: 35px; color: rgba(255,255,255,.8); font-size: 1.08rem; }

.site-footer { position: relative; padding-top: 95px; color: rgba(255,255,255,.75); background: var(--ocean-950); }
.site-footer__wave { position: absolute; top: -75px; left: 0; right: 0; height: 76px; }
.site-footer__wave svg { width: 100%; height: 100%; fill: var(--ocean-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr 1fr; gap: 60px; padding-bottom: 70px; }
.footer-brand img { width: 88px; height: 88px; margin-bottom: 22px; border-radius: 50%; }
.footer-brand h2 { margin-bottom: 15px; color: var(--white); font-size: 2rem; }
.footer-brand p { max-width: 360px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h3 { margin-bottom: 12px; color: var(--white); font-family: var(--sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a:hover { color: var(--ocean-300); }
.footer-column p { margin: 0; }
.footer-cta { align-self: start; padding: 25px; border: 1px solid rgba(255,255,255,.15); }
.footer-cta > span { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-cta > strong { display: block; margin: 7px 0 23px; color: var(--white); font-family: var(--serif); font-size: 2.6rem; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.whatsapp-float { position: fixed; z-index: 45; right: 24px; bottom: 24px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; box-shadow: 0 12px 35px rgba(3,35,63,.25); transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; fill: white; }

.inner-hero { position: relative; padding: 215px 0 125px; overflow: hidden; background: var(--sand); }
.inner-hero::before { content: ""; position: absolute; right: -8vw; top: 80px; width: 480px; height: 480px; border: 1px solid rgba(8,118,204,.15); border-radius: 50%; box-shadow: 0 0 0 70px rgba(8,118,204,.04), 0 0 0 140px rgba(8,118,204,.025); }
.inner-hero__grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(55px, 8vw, 125px); align-items: center; }
.inner-hero__copy h1, .inner-hero--simple h1 { margin-bottom: 30px; font-size: clamp(3.6rem, 7.5vw, 7.3rem); }
.inner-hero__copy > p:last-child, .inner-hero--simple .container > p:last-child { max-width: 650px; color: var(--muted); font-size: 1.1rem; }
.inner-hero__image { position: relative; height: min(650px, 65vw); margin: 0; }
.inner-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.image-stamp { position: absolute; left: -45px; bottom: 45px; width: 115px; height: 115px; display: grid; place-items: center; padding: 16px; border-radius: 50%; color: var(--white); background: var(--coral); text-align: center; font-size: .62rem; line-height: 1.3; letter-spacing: .12em; text-transform: uppercase; transform: rotate(-9deg); }
.image-stamp b { font-family: var(--serif); font-size: 1rem; }
.inner-hero--simple { min-height: 650px; display: flex; align-items: center; }
.inner-hero--simple .container { position: relative; }
.inner-hero--simple h1 { max-width: 1000px; }
.inner-hero--simple::after { content: "OCEAN"; position: absolute; right: -25px; bottom: -90px; color: rgba(8,118,204,.045); font-family: var(--serif); font-size: 18vw; font-weight: 700; line-height: 1; }

.about-story__grid { display: grid; grid-template-columns: .35fr 1fr 1fr; gap: 60px; }
.about-story__headline h2 { font-size: clamp(2.5rem, 4.5vw, 4.5rem); }
.about-story__body { padding-top: 65px; color: var(--muted); font-size: 1.03rem; }
.about-story__body p { margin-bottom: 18px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-card { min-height: 350px; padding: 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-card > span { color: var(--ocean-600); font-family: var(--serif); }
.value-card h3 { margin: 90px 0 18px; }
.value-card p { color: var(--muted); }
.photo-ribbon { display: grid; grid-template-columns: 1.25fr .75fr 1fr 1.1fr; height: 480px; background: var(--ocean-950); }
.photo-ribbon figure { overflow: hidden; margin: 0; }
.photo-ribbon figure:nth-child(even) { margin-top: 55px; }
.photo-ribbon img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.photo-ribbon figure:hover img { transform: scale(1.06); }
.promise__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: center; }
.promise__grid h2 { margin: 0; }
.promise__grid > div:last-child p { color: var(--muted); font-size: 1.08rem; margin-bottom: 30px; }

.course-grid--page .course-card { min-height: 710px; }
.inclusion__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.inclusion-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.inclusion-list span { display: flex; gap: 13px; padding: 20px 10px; border-bottom: 1px solid var(--line); }
.inclusion-list b { color: var(--ocean-600); font-family: var(--serif); }
.addon__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.addon figure { height: 630px; margin: 0; }
.addon figure img { width: 100%; height: 100%; object-fit: cover; }
.addon h2 { margin: 30px 0 20px; }
.addon p { color: rgba(255,255,255,.75); font-size: 1.08rem; }
.addon strong { display: block; margin: 30px 0; font-family: var(--serif); font-size: 2.5rem; }
.addon strong small { font-family: var(--sans); font-size: .75rem; font-weight: 500; opacity: .65; }
.fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.fit-grid article { padding: 40px; border-right: 1px solid var(--line); }
.fit-grid article:last-child { border: 0; }
.fit-grid p { color: var(--muted); }

.gallery-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.gallery-toolbar > div { display: flex; gap: 8px; }
.gallery-toolbar button { padding: 10px 19px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; }
.gallery-toolbar button.is-active, .gallery-toolbar button:hover { color: var(--white); background: var(--ocean-800); border-color: var(--ocean-800); }
.gallery-toolbar > span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.masonry-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 105px; grid-auto-flow: dense; gap: 14px; }
.gallery-tile { position: relative; grid-row: span 3; overflow: hidden; padding: 0; border: 0; background: var(--sand); cursor: pointer; }
.gallery-tile--1, .gallery-tile--6 { grid-column: span 2; grid-row: span 5; }
.gallery-tile--2, .gallery-tile--5 { grid-row: span 4; }
.gallery-tile--3 { grid-row: span 3; }
.gallery-tile--4, .gallery-tile--7 { grid-column: span 2; grid-row: span 4; }
.gallery-tile[hidden] { display: none; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-tile:hover img { transform: scale(1.055); }
.gallery-tile__caption { position: absolute; z-index: 2; inset: auto 0 0; display: flex; justify-content: space-between; align-items: end; gap: 15px; padding: 50px 18px 17px; color: var(--white); background: linear-gradient(transparent, rgba(3,35,63,.83)); text-align: left; }
.gallery-tile__caption b { font-family: var(--serif); font-size: 1.1rem; }
.gallery-tile__caption small { font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; }
.compact-cta { color: var(--white); background: var(--coral); }
.compact-cta .container { min-height: 130px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.compact-cta span { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.6rem); }
.compact-cta a { padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

.contact-hero { min-height: 680px; display: flex; align-items: center; padding: 205px 0 105px; color: var(--white); background: var(--ocean-900); background-image: radial-gradient(circle at 85% 25%, rgba(125,220,242,.17), transparent 32%), repeating-radial-gradient(ellipse at 110% 60%, transparent 0 38px, rgba(255,255,255,.035) 39px 40px); }
.contact-hero__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: end; }
.contact-hero h1 { max-width: 900px; margin-bottom: 25px; }
.contact-hero__grid > div:first-child > p:last-child { max-width: 630px; color: rgba(255,255,255,.72); font-size: 1.1rem; }
.contact-hero__details { display: grid; gap: 6px; padding: 30px; border: 1px solid rgba(255,255,255,.16); }
.contact-hero__details span { margin-top: 12px; color: var(--ocean-300); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-hero__details strong { font-family: var(--serif); font-size: 1.25rem; }
.contact-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.contact-form { display: grid; gap: 23px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; color: var(--ink); background: transparent; transition: border .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--ocean-600); }
.contact-form textarea { resize: vertical; }
.contact-form .button { justify-self: start; margin-top: 10px; }
.form-note { color: var(--muted); font-size: .75rem; }
.honeypot { position: absolute !important; left: -9999px; }
.alert { margin-bottom: 25px; padding: 16px 18px; border-left: 3px solid; }
.alert p { margin: 0; }
.alert--success { color: #195a3d; background: #e5f5ed; border-color: #2d8e65; }
.alert--error { color: #8a3024; background: #fff0ed; border-color: var(--coral); }
.contact-aside { display: grid; gap: 25px; }
.contact-card { padding: 35px; color: var(--white); background: var(--ocean-800); }
.contact-card h3 { margin-bottom: 25px; }
.contact-card a { display: grid; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.16); }
.contact-card a span { color: var(--ocean-300); font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-card a strong { word-break: break-word; }
.contact-card p { color: rgba(255,255,255,.72); }
.mini-photo { height: 350px; overflow: hidden; }
.mini-photo img { width: 100%; height: 100%; object-fit: cover; }
.map-section { position: relative; min-height: 560px; }
.map-section iframe { display: block; filter: saturate(.7) contrast(1.05); }
.map-card { position: absolute; left: max(24px, calc((100vw - 1240px) / 2)); bottom: 45px; width: min(430px, calc(100vw - 48px)); padding: 38px; background: var(--white); box-shadow: var(--shadow); }
.map-card > span { color: var(--ocean-600); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
.map-card h2 { margin: 10px 0 15px; font-size: 2.2rem; }
.map-card p { color: var(--muted); }

.faq-page__grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.faq-page aside { position: sticky; top: 130px; padding: 40px; color: var(--white); background: var(--ocean-800); }
.faq-page aside > span { color: var(--ocean-300); font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; }
.faq-page aside h2 { margin: 25px 0 18px; font-size: 2.5rem; }
.faq-page aside p { color: rgba(255,255,255,.72); }

.lightbox { position: fixed; z-index: 1000; inset: 0; padding: 60px; color: var(--white); background: rgba(2,18,33,.94); backdrop-filter: blur(12px); }
.lightbox[hidden] { display: none; }
.lightbox__content { width: 100%; height: 100%; display: grid; place-items: center; }
.lightbox__content img, .lightbox__content video { max-width: min(1100px, 100%); max-height: 82vh; box-shadow: 0 25px 80px rgba(0,0,0,.4); }
.lightbox__content figure { margin: 0; text-align: center; }
.lightbox__content figcaption { margin-top: 15px; font-family: var(--serif); font-size: 1.25rem; }
.lightbox__close { position: absolute; z-index: 2; top: 20px; right: 25px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: var(--white); background: transparent; font-size: 2rem; cursor: pointer; }

@media (max-width: 1100px) {
    :root { --container: min(100% - 36px, 950px); }
    .main-nav { gap: 16px; }
    .main-nav > a { font-size: .76rem; }
    .language-switch, .button--nav { display: none; }
    .story-grid { grid-template-columns: .3fr 1.2fr .8fr; gap: 30px; }
    .course-card { padding: 28px; }
    .footer-grid { grid-template-columns: 1.3fr .7fr 1fr; }
    .footer-cta { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .footer-cta > strong { margin: 0; }
    .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
    :root { --container: calc(100vw - 32px); }
    h1 { font-size: clamp(3.15rem, 14vw, 5.5rem); }
    h2 { font-size: clamp(2.4rem, 10vw, 4rem); }
    .announcement p { max-width: 68%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .site-header__inner { min-height: 76px; }
    .brand img { width: 50px; height: 50px; }
    .brand__text small { display: none; }
    .nav-toggle { display: block; }
    .main-nav { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 0; padding: 100px 34px 40px; color: var(--white); background: var(--ocean-950); transform: translateX(100%); transition: transform .45s cubic-bezier(.2,.7,.2,1); }
    .nav-open .main-nav { transform: none; }
    .main-nav > a { width: 100%; padding: 13px 0; font-family: var(--serif); font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .main-nav > a::after { display: none; }
    .main-nav .language-mobile { display: block; margin-top: 20px; color: var(--ocean-300); font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
    .nav-open .nav-toggle { color: var(--white); }
    .nav-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
    .nav-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
    .hero { min-height: 820px; }
    .hero__content { padding-top: 155px; }
    .hero__copy h1 { font-size: clamp(3.4rem, 15vw, 5.8rem); }
    .hero__wash { background: linear-gradient(90deg, rgba(3,29,53,.88), rgba(3,35,63,.42)), linear-gradient(0deg, rgba(3,35,63,.6), transparent 50%); }
    .hero__line-art { width: 70vw; right: -24vw; top: 20%; }
    .hero__side-note { display: none; }
    .story-grid, .about-story__grid { grid-template-columns: 1fr; }
    .story-number { flex-direction: row; align-items: baseline; }
    .story-body, .about-story__body { padding-top: 0; }
    .story-image--wide { grid-column: auto; height: 360px; }
    .story-image--tall { height: 520px; margin-top: 0; }
    .section-heading--split { display: grid; }
    .course-grid { grid-template-columns: 1fr; }
    .course-card { min-height: auto; }
    .course-card__subtitle { min-height: 0; }
    .steps-grid { grid-template-columns: 1fr; gap: 55px; }
    .steps-grid::before { display: none; }
    .bento-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
    .bento-item { grid-column: span 1 !important; grid-row: span 2 !important; }
    .bento-item:nth-child(3n + 1) { grid-column: span 2 !important; }
    .faq-layout, .faq-page__grid { grid-template-columns: 1fr; }
    .faq-intro, .faq-page aside { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-cta { grid-column: 1 / -1; }
    .inner-hero { padding-top: 165px; }
    .inner-hero__grid { grid-template-columns: 1fr; }
    .inner-hero__image { height: 600px; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { min-height: auto; }
    .value-card h3 { margin-top: 45px; }
    .photo-ribbon { grid-template-columns: 1fr 1fr; height: 750px; }
    .photo-ribbon figure:nth-child(even) { margin: 0; }
    .promise__grid, .inclusion__grid, .addon__grid { grid-template-columns: 1fr; gap: 50px; }
    .addon figure { height: 520px; }
    .fit-grid { grid-template-columns: 1fr; }
    .fit-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
    .masonry-gallery { grid-template-columns: 1fr 1fr; }
    .gallery-tile { grid-column: span 1 !important; grid-row: span 4 !important; }
    .gallery-tile:nth-child(4n + 1) { grid-column: span 2 !important; }
    .contact-hero__grid, .contact-layout { grid-template-columns: 1fr; gap: 50px; }
    .contact-hero { padding-top: 165px; }
    .contact-aside { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    :root { --container: calc(100vw - 28px); }
    .section { padding: 82px 0; }
    .announcement a { font-size: 0; }
    .announcement a span { font-size: .9rem; }
    .brand__text strong { font-size: 1.15rem; }
    .hero { min-height: 780px; }
    .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
    .story-image--wide { height: 290px; }
    .story-image--tall { height: 430px; }
    .bento-gallery { grid-auto-rows: 115px; gap: 8px; }
    .bento-item:nth-child(3n + 1) { grid-column: span 1 !important; }
    .bento-item:nth-child(4n + 1) { grid-column: span 2 !important; }
    .faq-item button { grid-template-columns: 30px 1fr 20px; gap: 10px; }
    .faq-item__answer > p { padding-left: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 42px; }
    .footer-brand, .footer-cta { grid-column: auto; }
    .footer-cta { display: block; }
    .footer-cta > strong { margin: 7px 0 23px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
    .inner-hero__image { height: 470px; }
    .image-stamp { left: -5px; }
    .photo-ribbon { height: 560px; }
    .inclusion-list { grid-template-columns: 1fr; }
    .addon figure { height: 420px; }
    .masonry-gallery { grid-auto-rows: 85px; gap: 8px; }
    .gallery-toolbar { align-items: flex-start; flex-direction: column; gap: 15px; }
    .compact-cta .container { align-items: flex-start; flex-direction: column; justify-content: center; }
    .form-row, .contact-aside { grid-template-columns: 1fr; }
    .map-card { bottom: 20px; padding: 28px; }
    .lightbox { padding: 55px 14px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .site-loader { display: none; }
}
