:root {
  --blue: #0b3b75;
  --blue-dark: #062d5c;
  --sky: #eaf7ff;
  --sky-line: #c9e8f8;
  --lime: #97c62f;
  --orange: #ff7a1a;
  --orange-dark: #e45f00;
  --ink: #14233b;
  --muted: #5f6c7d;
  --white: #fff;
  --line: #dbe5ef;
  --paper: #f8fbfd;
  --shadow: 0 20px 60px rgba(11, 59, 117, .12);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; text-rendering: optimizeLegibility; }
img { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--blue); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin-bottom: 1.15em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 820px; }
.section { padding: clamp(72px, 9vw, 126px) 0; }
.section-sky { background: var(--sky); }
.skip-link { position: fixed; left: 1rem; top: -6rem; z-index: 1000; padding: .8rem 1rem; background: var(--orange); color: var(--ink); font-weight: 800; border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.eyebrow { margin-bottom: 1.1rem; color: var(--orange-dark); font-size: .76rem; font-weight: 900; letter-spacing: .13em; line-height: 1.3; text-transform: uppercase; }
.eyebrow-light { color: #b7e7ff; }
.lead, .section-lead { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.6; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: .65rem; padding: .75rem 1.35rem; border: 2px solid transparent; border-radius: 9px; font-weight: 850; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-blue { background: var(--blue); color: var(--white); }
.button-blue:hover { background: var(--blue-dark); }
.button-orange { background: var(--orange); color: var(--white); }
.button-orange:hover { background: var(--orange-dark); }
.button-outline { border-color: var(--blue); background: var(--white); color: var(--blue); }
.button-outline:hover { background: var(--blue); color: var(--white); }
.button-large { min-height: 62px; padding-inline: 1.8rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.text-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--blue); font-weight: 850; text-decoration: none; }
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }

.site-header { position: sticky; top: 0; z-index: 100; min-height: 88px; border-bottom: 1px solid rgba(219, 229, 239, .86); background: rgba(255, 255, 255, .95); backdrop-filter: blur(12px); }
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(11, 59, 117, .08); }
.nav-shell { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--blue); text-decoration: none; }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand span { display: grid; line-height: 1.05; }
.brand b { font-size: 1.13rem; letter-spacing: -.02em; }
.brand small { margin-top: .27rem; color: var(--lime); font-size: .72rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.8rem); }
.primary-nav > a:not(.button) { position: relative; color: var(--blue); font-weight: 760; text-decoration: none; }
.primary-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -.5rem; left: 0; height: 2px; background: var(--lime); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.primary-nav > a:hover::after { transform: scaleX(1); }
.language-switch { display: inline-flex; align-items: center; gap: .25rem; padding: .25rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.language-switch a, .language-switch b { display: grid; place-items: center; min-width: 30px; min-height: 28px; padding: 0 .35rem; border-radius: 999px; font-size: .72rem; font-weight: 900; line-height: 1; text-decoration: none; }
.language-switch b { background: var(--blue); color: #fff; }
.language-switch a { color: var(--blue); }
.nav-cta { min-height: 48px; padding-inline: 1.1rem; }
.menu-toggle { display: none; align-items: center; gap: .4rem; border: 0; background: transparent; color: var(--blue); font-weight: 800; }

.hero { position: relative; overflow: hidden; }
.hero::before { position: absolute; top: 5%; left: -90px; width: 180px; height: 180px; border: 34px solid var(--sky); border-radius: 50%; content: ""; }
.hero-grid { display: grid; min-height: 690px; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(32px, 5vw, 72px); padding-block: 64px; }
.hero h1 { max-width: 760px; margin-bottom: 1.35rem; font-size: clamp(3rem, 5.6vw, 5rem); }
.hero-lead { max-width: 630px; color: #3a485d; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.hero-points { display: flex; flex-wrap: wrap; gap: .8rem 1.25rem; margin: 1.6rem 0 0; padding: 0; color: var(--blue); font-size: .93rem; font-weight: 750; list-style: none; }
.hero-points li { display: inline-flex; align-items: center; gap: .4rem; }
.hero-points .icon { color: var(--lime); }
.hero-media { position: relative; }
.hero-media picture { display: block; overflow: hidden; min-height: 520px; border-radius: 48% 9% 9% 22% / 21% 8% 10% 36%; background: var(--sky); box-shadow: var(--shadow); }
.hero-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: 62% 50%; }
.hero-badge { position: absolute; right: -18px; bottom: 34px; display: grid; padding: .9rem 1.15rem; border-left: 5px solid var(--lime); border-radius: 10px; background: var(--white); box-shadow: var(--shadow); }
.hero-badge strong { color: var(--blue); }
.hero-badge span { color: var(--muted); font-size: .85rem; }

.sound-rail { padding: 25px 0; background: var(--sky); }
.sound-equation { display: flex; align-items: center; justify-content: center; gap: clamp(.45rem, 2.7vw, 2rem); }
.sound-equation > b { color: var(--blue); font-size: clamp(1.5rem, 3.5vw, 2.7rem); }
.sound-chip { display: grid; min-width: clamp(86px, 14vw, 150px); min-height: 92px; place-items: center; align-content: center; border: 0; border-bottom: 7px solid var(--blue); border-radius: 12px; background: var(--white); box-shadow: 0 10px 25px rgba(11, 59, 117, .11); color: var(--blue); cursor: pointer; }
.sound-chip span { font-size: clamp(1.55rem, 4vw, 2.8rem); font-weight: 850; line-height: 1; }
.sound-chip small { margin-top: .4rem; color: var(--muted); font-size: .68rem; }
.sound-chip.lime { border-color: var(--lime); color: var(--lime); }
.sound-chip.is-playing { transform: translateY(-4px); }
.word-result { padding: .55rem .9rem; color: var(--blue); font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: .08em; }
.word-result span { color: var(--lime); }

.intro-grid, .comparison { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 8vw, 110px); align-items: start; }
.intro-grid h2, .comparison h2 { margin-bottom: 0; }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading p:last-child { max-width: 680px; color: var(--muted); font-size: 1.15rem; }
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.program-card { position: relative; display: flex; min-height: 350px; flex-direction: column; overflow: hidden; padding: 2rem; border: 1px solid var(--sky-line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 28px rgba(11, 59, 117, .06); }
.program-card::after { position: absolute; right: -38px; bottom: -48px; width: 130px; height: 130px; border: 22px solid var(--sky); border-radius: 50%; content: ""; }
.program-card:nth-child(2)::after { border-color: #eaf4d2; }
.program-card:nth-child(3)::after { border-color: #fff0e5; }
.program-card:nth-child(4)::after { border-color: #e0f3fd; }
.program-number { margin-bottom: auto; color: #c5d3df; font-size: 2rem; font-weight: 900; }
.program-card h3 { margin-bottom: .7rem; }
.program-card p:not(.eyebrow) { color: var(--muted); }
.program-card .text-link { z-index: 1; margin-top: auto; }
.section-end { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 2.5rem; text-align: center; }

.method-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: clamp(48px, 8vw, 100px); align-items: center; }
.method-steps { display: grid; gap: 1.1rem; margin-top: 2.2rem; }
.method-steps article { display: grid; grid-template-columns: 52px minmax(0, 1fr); align-items: start; gap: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.method-steps article > span { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: var(--sky); color: var(--blue); font-weight: 900; }
.method-steps h3 { margin: .2rem 0 .25rem; font-size: 1.1rem; letter-spacing: -.01em; }
.method-steps p { margin: 0; color: var(--muted); font-size: .92rem; }
.quote-card { position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 3.4rem); border-radius: 46% 18% 14% 14% / 18% 16% 14% 12%; background: var(--blue); color: var(--white); box-shadow: var(--shadow); }
.quote-card::after { position: absolute; right: -40px; bottom: -60px; width: 170px; height: 170px; border: 25px solid var(--lime); border-radius: 50%; content: ""; opacity: .9; }
.quote-card blockquote { position: relative; z-index: 1; margin: 1.2rem 0; font-size: clamp(1.5rem, 3vw, 2.35rem); font-weight: 800; line-height: 1.25; }
.quote-card p { position: relative; z-index: 1; color: #c7dcf3; }
.quote-card .button { position: relative; z-index: 1; }
.wave-icon { color: var(--lime); font-size: 2rem; letter-spacing: .1em; }

/* English homepage approach: dedicated and animation-independent. */
.approach-section { background: var(--sky); }
.approach-header { max-width: 880px; margin: 0 auto 2.4rem; text-align: center; }
.approach-header .section-lead { max-width: 760px; margin-inline: auto; }
.approach-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: clamp(28px, 5vw, 64px); align-items: stretch; }
.approach-flow { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.approach-step { display: flex; min-width: 0; align-items: center; gap: 1rem; padding: 1.15rem 1.25rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); box-shadow: 0 10px 30px rgba(7, 52, 108, .06); }
.approach-number { display: grid; width: 54px; height: 54px; flex: 0 0 54px; place-items: center; border-radius: 50%; background: var(--sky); color: var(--blue); font-weight: 900; }
.approach-copy { min-width: 0; }
.approach-copy h3 { margin: 0 0 .3rem; font-size: 1.15rem; }
.approach-copy p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.55; }
.approach-proof { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: clamp(1.8rem, 4vw, 3rem); border-radius: 28px; background: var(--blue); color: var(--white); box-shadow: var(--shadow); }
.approach-proof h3 { margin-bottom: 1rem; color: var(--white); font-size: clamp(1.45rem, 2.6vw, 2.15rem); line-height: 1.2; }
.approach-proof ul { display: grid; gap: .75rem; margin: 0 0 1.5rem; padding: 0; list-style: none; }
.approach-proof li { position: relative; padding-left: 1.45rem; color: #d9eaff; line-height: 1.45; }
.approach-proof li::before { position: absolute; left: 0; top: .45em; width: .55rem; height: .55rem; border-radius: 50%; background: var(--lime); content: ""; }
.approach-proof .button { align-self: flex-start; }

.founder-section { overflow: hidden; background: var(--paper); }
.founder-grid { display: grid; grid-template-columns: .75fr 1.05fr; gap: clamp(46px, 8vw, 110px); align-items: center; }
.founder-media { position: relative; padding: 14px; }
.founder-media::before { position: absolute; inset: 5% -8% -2% 6%; border-radius: 45% 24% 34% 18% / 18% 30% 22% 34%; background: var(--sky); content: ""; }
.founder-media picture { position: relative; display: block; overflow: hidden; max-height: 650px; border-radius: 47% 18% 28% 18% / 15% 30% 20% 32%; }
.founder-media img { width: 100%; height: 650px; object-fit: cover; object-position: center 18%; }
.founder-grid h2 { max-width: 720px; }
.founder-grid h3 { margin: 2rem 0 .25rem; font-size: 1.8rem; }
.founder-role { color: var(--blue); font-weight: 750; }
.founder-grid div:last-child > p:not(.eyebrow):not(.founder-role) { max-width: 680px; color: var(--muted); font-size: 1.1rem; }

.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.article-card { display: grid; grid-template-columns: 180px 1fr; overflow: hidden; min-height: 280px; border: 1px solid var(--sky-line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 26px rgba(11, 59, 117, .06); }
.article-visual { position: relative; display: grid; place-items: center; overflow: hidden; background: var(--blue); color: var(--white); }
.article-visual::before, .article-visual::after { position: absolute; width: 120px; height: 120px; border: 18px solid currentColor; border-radius: 50%; content: ""; opacity: .22; }
.article-visual::before { top: -50px; left: -50px; }
.article-visual::after { right: -55px; bottom: -55px; }
.article-visual span { font-size: 2.5rem; font-weight: 900; }
.visual-2 { background: var(--lime); }
.visual-3 { background: var(--orange); }
.visual-4 { background: #248ccb; }
.article-card-body { padding: 1.7rem; }
.article-card h3 { margin-bottom: .7rem; font-size: 1.35rem; }
.article-card h3 a { color: inherit; text-decoration: none; }
.article-card p:not(.eyebrow) { color: var(--muted); font-size: .93rem; }
.silo-jump { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 2rem; }
.silo-jump a { padding: .72rem 1rem; border: 1px solid var(--blue); border-radius: 10px; color: var(--blue); font-size: .88rem; font-weight: 800; text-decoration: none; }
.silo-jump a:hover { background: var(--blue); color: var(--white); }
.silo-section { scroll-margin-top: 100px; }
.silo-heading { display: grid; grid-template-columns: 1fr minmax(280px, 520px); gap: 3rem; align-items: end; margin-bottom: 2.4rem; }
.silo-heading h2 { margin-bottom: 0; }
.silo-heading > p { margin-bottom: .3rem; color: var(--muted); font-size: 1.05rem; }
.silo-bridge { border-top: 1px solid var(--line); }
.article-next { display: grid; gap: .75rem; margin-top: 3.5rem; padding: 1.5rem; border: 1px solid var(--sky-line); border-radius: 16px; background: var(--sky); }
.article-next strong { color: var(--blue); font-size: 1.05rem; }
.article-next a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .75rem; border-top: 1px solid var(--sky-line); color: var(--blue); font-weight: 750; text-decoration: none; }
.article-next .icon { flex: 0 0 auto; }
.testimonial-list { display: grid; gap: 1rem; }
.testimonial-list figure { display: grid; grid-template-columns: 72px minmax(0, 1fr) 230px; gap: 2rem; align-items: start; margin: 0; padding: 2rem 0; border-bottom: 1px solid var(--sky-line); }
.testimonial-number { color: var(--lime-dark); font-size: 1.6rem; font-weight: 900; }
.testimonial-list blockquote { margin: 0; color: var(--blue); font-size: clamp(1.25rem, 2.6vw, 1.85rem); font-weight: 750; line-height: 1.4; }
.testimonial-list figcaption { display: grid; gap: .35rem; color: var(--muted); }
.testimonial-list figcaption strong { color: var(--blue); font-weight: 850; }
.testimonial-list figcaption small { font-size: .78rem; line-height: 1.45; }
.testimonial-intro, .trust-note { display: grid; grid-template-columns: 1fr minmax(300px, 520px); gap: clamp(36px, 7vw, 90px); align-items: end; margin-bottom: 2.5rem; }
.testimonial-intro h2, .trust-note h2 { margin-bottom: 0; }
.testimonial-intro > div:last-child, .trust-note > div:last-child { color: var(--muted); }
.testimonial-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.testimonial-card { display: flex; flex-direction: column; min-height: 390px; margin: 0; padding: 1.7rem; border: 1px solid var(--sky-line); border-radius: 18px; background: var(--white); }
.testimonial-card:nth-child(2) { transform: translateY(22px); }
.testimonial-card blockquote { margin: 1.3rem 0 auto; color: var(--blue); font-size: 1.05rem; font-weight: 720; line-height: 1.62; }
.testimonial-card figcaption { display: grid; gap: .25rem; margin-top: 1.4rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.testimonial-card figcaption strong { color: var(--blue); }
.testimonial-card figcaption small { color: var(--muted); font-size: .72rem; }
.testimonial-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 3.4rem; }
.proof-context { display: grid; gap: .7rem; margin: 2rem 0 0; padding: 1.4rem; border-left: 4px solid var(--lime); background: var(--sky); list-style: none; }
.proof-context li { color: var(--muted); }
.proof-context strong { color: var(--blue); }
.trust-links { display: grid; gap: .65rem; margin-top: 1.25rem; }
.trust-links a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: .65rem; border-bottom: 1px solid var(--line); color: var(--blue); font-weight: 750; text-decoration: none; }
.trust-links .icon { flex: 0 0 auto; }

.gallery-preview { background: var(--paper); }
.gallery-preview-grid, .gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; min-height: 260px; margin: 0; border-radius: 20px; background: var(--sky); box-shadow: 0 10px 30px rgba(11, 59, 117, .08); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item figcaption { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: .7rem .85rem; border-radius: 10px; background: rgba(6, 45, 92, .88); color: var(--white); font-size: .78rem; font-weight: 750; line-height: 1.35; backdrop-filter: blur(6px); }
.gallery-preview-grid .gallery-item { grid-column: span 3; min-height: 290px; }
.gallery-grid .gallery-item { grid-column: span 4; }
.gallery-grid .gallery-item:nth-child(1), .gallery-grid .gallery-item:nth-child(6) { grid-column: span 8; }
.gallery-grid .gallery-item:nth-child(2), .gallery-grid .gallery-item:nth-child(5) { min-height: 360px; }
.gallery-note { max-width: 760px; margin: 2rem auto 0; color: var(--muted); font-size: .9rem; text-align: center; }

.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.video-card { overflow: hidden; border: 1px solid var(--sky-line); border-radius: 20px; background: var(--white); box-shadow: 0 10px 30px rgba(11, 59, 117, .08); }
.video-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--blue-dark); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card-body { padding: 1.35rem 1.45rem 1.55rem; }
.video-card-body h2 { margin-bottom: .65rem; font-size: 1.35rem; }
.video-card-body p { color: var(--muted); font-size: .92rem; }

.final-cta { position: relative; overflow: hidden; padding: clamp(70px, 8vw, 105px) 0; background: var(--blue); color: var(--white); }
.final-cta::before, .final-cta::after { position: absolute; border-radius: 50%; content: ""; }
.final-cta::before { right: 4%; top: -90px; width: 250px; height: 250px; border: 38px solid var(--lime); }
.final-cta::after { right: 20%; bottom: -120px; width: 190px; height: 190px; border: 30px solid var(--sky); opacity: .35; }
.final-cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.final-cta h2 { color: var(--white); }
.final-cta p:not(.eyebrow) { max-width: 700px; margin-bottom: 0; color: #d1e5f8; font-size: 1.15rem; }
.location-grid { display: grid; grid-template-columns: 1fr .95fr; gap: clamp(46px, 8vw, 100px); align-items: center; }
address { color: var(--muted); font-style: normal; }
.location-section address, .location-page-grid address { max-width: 650px; font-size: 1.1rem; }
.location-hours, .bio-hours { color: var(--blue); font-weight: 750; }
.quick-links { display: grid; gap: .75rem; margin-top: 2rem; }
.quick-links a { display: grid; grid-template-columns: 32px 1fr 24px; align-items: center; gap: .8rem; padding: 1rem; border: 1px solid var(--line); border-radius: 12px; color: var(--blue); text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
.quick-links a:hover { border-color: var(--blue); transform: translateX(3px); }
.quick-links a > .icon:first-child { width: 28px; height: 28px; color: var(--orange); }
.quick-links span { display: grid; }
.quick-links small { color: var(--muted); }
.map-card { position: relative; min-height: 440px; overflow: hidden; border: 1px solid var(--sky-line); border-radius: var(--radius); background: var(--sky); }
.map-card.large { min-height: 520px; }
.map-roads { position: absolute; inset: -10%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cg fill='none' stroke='%23fff' stroke-width='30'%3E%3Cpath d='M-40 120 C170 80 250 250 850 110'/%3E%3Cpath d='M80 -40 C220 160 180 350 330 650'/%3E%3Cpath d='M520 -30 C450 170 640 280 480 650'/%3E%3Cpath d='M-30 430 C250 330 510 520 850 410'/%3E%3C/g%3E%3C/svg%3E"); background-position: center; background-size: cover; transform: rotate(-6deg); }
.map-pin { position: absolute; left: 50%; top: 48%; display: flex; align-items: center; gap: .55rem; padding: .8rem 1rem; border-radius: 12px; background: var(--white); box-shadow: var(--shadow); color: var(--blue); font-weight: 800; transform: translate(-50%, -50%); }
.map-pin .icon { width: 34px; height: 34px; color: var(--orange); }

.site-footer { padding-top: 72px; border-top: 1px solid var(--line); background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr 1.2fr; gap: 36px; }
.footer-grid h2 { margin-bottom: 1rem; font-size: .83rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(:first-child), .footer-grid address { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a:not(.brand) { margin-bottom: .55rem; color: var(--muted); font-size: .93rem; text-decoration: none; }
.footer-grid a:hover { color: var(--blue); }
.footer-grid p { max-width: 340px; color: var(--muted); font-size: .93rem; }
.footer-brand { margin-bottom: 1.25rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1.5rem; margin-top: 56px; padding: 22px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 1.2rem; }
.floating-wa { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; align-items: center; gap: .45rem; padding: .8rem 1rem; border-radius: 999px; background: #1f9d55; box-shadow: 0 12px 32px rgba(0,0,0,.2); color: var(--white); font-weight: 850; text-decoration: none; }

.breadcrumb { padding-top: 24px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; color: var(--muted); font-size: .78rem; list-style: none; }
.breadcrumb li + li::before { margin-right: .4rem; content: "/"; }
.breadcrumb a { color: var(--muted); }
.page-hero { padding: clamp(70px, 9vw, 125px) 0; text-align: center; }
.page-hero .button-row { justify-content: center; }
.page-hero h1 { margin-bottom: 1.5rem; font-size: clamp(3rem, 7vw, 5.4rem); }
.program-grid-large .program-card { min-height: 410px; }

.service-hero { padding: clamp(70px, 8vw, 110px) 0; overflow: hidden; }
.program-detail-hero { padding: clamp(70px, 8vw, 110px) 0; overflow: hidden; }
.service-grid { display: grid; grid-template-columns: 1.1fr .75fr; gap: 80px; align-items: center; }
.service-grid h1 { margin-bottom: 1.4rem; }
.service-orbit { position: relative; display: grid; min-height: 380px; place-items: center; border: 2px solid var(--sky-line); border-radius: 46% 28% 40% 24%; background: var(--sky); text-align: center; }
.service-orbit::before { position: absolute; width: 80%; height: 80%; border: 3px dashed var(--lime); border-radius: 50%; content: ""; }
.service-orbit span, .service-orbit strong { position: relative; z-index: 1; display: block; }
.service-orbit span { align-self: end; padding-bottom: 2rem; color: var(--orange-dark); font-weight: 850; }
.service-orbit strong { position: absolute; color: var(--blue); font-size: clamp(1.8rem, 4vw, 3.2rem); }
.service-content { display: grid; grid-template-columns: 1fr 360px; gap: 80px; }
.check-list { display: grid; gap: 1rem; margin: 1.8rem 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: .8rem; }
.check-list .icon { margin-top: .2rem; color: var(--lime); }
.notice { margin-top: 2rem; padding: 1.2rem 1.4rem; border-left: 5px solid var(--orange); background: #fff6ee; }
.notice p { margin-bottom: 0; color: var(--muted); }
.aside-card { align-self: start; padding: 2rem; border-radius: var(--radius); background: var(--blue); box-shadow: var(--shadow); color: var(--white); }
.aside-card .eyebrow { color: #c5e7fa; }
.aside-card ol { margin: 1.5rem 0 2rem; padding-left: 1.25rem; }
.aside-card li { margin-bottom: .8rem; }
.faq { display: grid; gap: .75rem; margin-top: 2rem; }
.faq details { border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.faq summary { padding: 1.1rem 3rem 1.1rem 1.2rem; color: var(--blue); font-weight: 800; cursor: pointer; }
.faq details p { padding: 0 1.2rem 1.2rem; margin: 0; color: var(--muted); }

.article-header { padding: clamp(70px, 8vw, 110px) 0; background: var(--sky); text-align: center; }
.article-header h1 { font-size: clamp(2.7rem, 6.5vw, 5.2rem); }
.article-header > div > p:not(.eyebrow) { max-width: 710px; margin-inline: auto; color: var(--muted); font-size: 1.15rem; }
.author-line { display: inline-flex; align-items: center; gap: .75rem; margin-top: 1rem; text-align: left; }
.author-line img { width: 48px; height: 48px; border: 2px solid var(--white); border-radius: 50%; object-fit: cover; object-position: center 18%; }
.author-line span { display: grid; color: var(--muted); font-size: .8rem; }
.author-line small { display: block; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; gap: 70px; padding-block: clamp(70px, 9vw, 120px); }
.article-content { font-size: 1.06rem; }
.article-content .lead { color: var(--ink); font-size: 1.35rem; }
.article-content h2 { margin: 3.2rem 0 1rem; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.article-content h3 { margin: 2rem 0 .6rem; font-size: 1.25rem; }
.article-content p, .article-content li { color: #3d495b; }
.article-content li { margin-bottom: .65rem; }
.article-content .sound-equation { margin: 2rem 0; padding: 1.3rem; border-radius: 16px; background: var(--sky); }
.article-content .sound-equation span, .article-content .sound-equation strong { padding: .5rem .8rem; border-radius: 8px; background: var(--white); color: var(--blue); }
.article-content .sound-equation strong { color: var(--orange-dark); }
.article-callout { margin: 3rem 0; padding: 2rem; border-radius: 20px; background: var(--blue); color: var(--white); }
.article-callout > strong { font-size: 1.5rem; }
.article-callout p { color: #d4e5f6; }
.comparison-table { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.comparison-table > div { padding: 1.4rem; border: 1px solid var(--line); border-radius: 14px; }
.comparison-table strong { color: var(--blue); font-size: 1.2rem; }
.article-aside { align-self: start; position: sticky; top: 120px; display: grid; gap: 1.2rem; }
.article-aside > div, .article-aside nav { padding: 1.5rem; border: 1px solid var(--line); border-radius: 16px; }
.article-aside h2 { font-size: 1.3rem; }
.article-aside nav { display: grid; gap: .9rem; }
.article-aside nav a { font-size: .9rem; font-weight: 750; line-height: 1.35; text-decoration: none; }

.founder-page-hero { padding: clamp(65px, 8vw, 110px) 0; background: var(--paper); }
.founder-page-grid { display: grid; grid-template-columns: .7fr 1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.founder-portrait { overflow: hidden; max-height: 650px; border-radius: 46% 18% 28% 20% / 18% 28% 20% 30%; box-shadow: var(--shadow); }
.founder-portrait img { width: 100%; height: 650px; object-fit: cover; object-position: center 18%; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.story-copy { font-size: 1.08rem; }
.location-page-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }

.assessment-section { min-height: 76vh; padding: clamp(65px, 8vw, 110px) 0; background: var(--sky); }
.assessment-grid { display: grid; grid-template-columns: .8fr 1.1fr; gap: 75px; align-items: start; }
.assessment-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; padding: clamp(1.5rem, 4vw, 2.6rem); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-field { display: grid; gap: .45rem; }
.form-full { grid-column: 1 / -1; }
.form-field label { color: var(--blue); font-size: .88rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 50px; padding: .75rem .85rem; border: 1px solid #bbc9d7; border-radius: 8px; background: var(--white); color: var(--ink); }
.form-field textarea { resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: .78rem; }
.assessment-form .button { width: 100%; }

.bio-body .site-header, .bio-body .site-footer, .bio-body .floating-wa { display: none; }
.bio-page { min-height: 100vh; padding: 30px 18px; background: var(--paper); }
.bio-shell { position: relative; overflow: hidden; width: min(100%, 520px); margin: 0 auto; padding: 28px 28px 0; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); text-align: center; }
.bio-shell::before, .bio-shell::after { position: absolute; border-radius: 50%; content: ""; opacity: .6; }
.bio-shell::before { left: -70px; top: 150px; width: 150px; height: 150px; border: 20px solid var(--sky); }
.bio-shell::after { right: -35px; top: 330px; width: 85px; height: 85px; border: 13px solid var(--lime); }
.bio-logo { position: relative; z-index: 1; display: inline-block; }
.bio-logo img { width: 132px; height: 132px; object-fit: contain; }
.bio-portrait { position: relative; z-index: 1; overflow: hidden; width: 180px; height: 180px; margin: 0 auto 1.2rem; border: 4px solid var(--blue); border-radius: 50%; }
.bio-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.bio-shell h1 { position: relative; z-index: 1; margin-bottom: .3rem; font-size: 2.45rem; }
.bio-role { margin-bottom: .35rem; color: var(--blue); font-weight: 800; }
.bio-hours { position: relative; z-index: 1; margin: .5rem 0 .2rem; font-size: .86rem; }
.bio-shell > p:not(.bio-role):not(.bio-trust) { color: var(--muted); }
.bio-shell > .button { position: relative; z-index: 1; width: 100%; margin: .8rem 0 1rem; }
.bio-links { position: relative; z-index: 1; display: grid; gap: .75rem; }
.bio-links a { display: grid; grid-template-columns: 30px 1fr 22px; align-items: center; gap: .8rem; min-height: 62px; padding: .75rem 1rem; border: 2px solid var(--blue); border-radius: 12px; color: var(--blue); font-weight: 850; text-align: left; text-decoration: none; }
.bio-links a:hover { background: var(--sky); }
.bio-trust { position: relative; z-index: 1; margin: 1.2rem 0; padding: 1.2rem; border-radius: 16px; background: var(--sky); color: var(--blue); font-weight: 750; }
.bio-site { position: relative; z-index: 1; display: flex; width: calc(100% + 56px); min-height: 64px; align-items: center; justify-content: center; gap: .5rem; margin-left: -28px; background: var(--blue); color: var(--white); font-weight: 800; text-decoration: none; }
.prose h2 { margin-top: 2.5rem; font-size: 2rem; }

[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(24px); }

@media (max-width: 1040px) {
  .menu-toggle { display: flex; }
  .primary-nav { position: fixed; top: 88px; right: 0; left: 0; display: none; max-height: calc(100vh - 88px); flex-direction: column; align-items: stretch; gap: 0; overflow: auto; padding: 1rem 20px 2rem; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.button) { padding: 1rem .3rem; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 1rem; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-media { max-width: 820px; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid address { grid-column: 1 / -1; }
  .article-layout { grid-template-columns: minmax(0, 760px); justify-content: center; }
  .article-aside { position: static; grid-template-columns: 1fr 1fr; }
  .gallery-preview-grid .gallery-item { grid-column: span 6; }
  .approach-layout { grid-template-columns: 1fr; }
  .approach-proof { min-height: 0; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .site-header, .nav-shell { min-height: 76px; }
  .brand img { width: 50px; height: 50px; }
  .brand b { font-size: .98rem; }
  .brand small { font-size: .62rem; }
  .primary-nav { top: 76px; max-height: calc(100vh - 76px); }
  .hero-grid { gap: 42px; padding-block: 50px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-media picture, .hero-media img { min-height: 360px; }
  .hero-media img { object-position: 62% center; }
  .hero-badge { right: 8px; bottom: 16px; }
  .button-row .button { width: 100%; }
  .hero-points { display: grid; grid-template-columns: 1fr 1fr; }
  .sound-equation { gap: .35rem; }
  .sound-chip { min-width: 68px; min-height: 74px; }
  .sound-chip small { display: none; }
  .word-result { padding-inline: .25rem; }
  .approach-header { margin-bottom: 1.7rem; text-align: left; }
  .approach-step { align-items: flex-start; padding: 1rem; }
  .approach-number { width: 44px; height: 44px; flex-basis: 44px; }
  .approach-proof { padding: 1.5rem; border-radius: 20px; }
  .approach-proof .button { width: 100%; }
  .intro-grid, .comparison, .method-grid, .founder-grid, .location-grid, .service-grid, .service-content, .founder-page-grid, .story-grid, .location-page-grid, .assessment-grid, .testimonial-intro, .trust-note { grid-template-columns: 1fr; gap: 42px; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 300px; }
  .article-grid { grid-template-columns: 1fr; }
  .silo-heading { grid-template-columns: 1fr; gap: .75rem; }
  .silo-jump { justify-content: flex-start; }
  .testimonial-list figure { grid-template-columns: 48px 1fr; gap: 1rem; }
  .testimonial-list figcaption { grid-column: 2; }
  .testimonial-cards { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 0; }
  .testimonial-card:nth-child(2) { transform: none; }
  .article-card { grid-template-columns: 115px 1fr; min-height: 245px; }
  .article-card-body { padding: 1.25rem; }
  .article-card h3 { font-size: 1.15rem; }
  .article-card p:not(.eyebrow) { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .founder-media img { height: 560px; }
  .quote-card { border-radius: 24px; }
  .final-cta .button { width: 100%; }
  .map-card { min-height: 330px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid address { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .floating-wa span { display: none; }
  .floating-wa { width: 54px; height: 54px; justify-content: center; padding: 0; }
  .service-orbit { min-height: 300px; }
  .article-header { text-align: left; }
  .article-header h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .article-layout { padding-inline: 6px; }
  .article-aside { grid-template-columns: 1fr; }
  .comparison-table { grid-template-columns: 1fr; }
  .article-content .sound-equation { justify-content: flex-start; gap: .35rem; }
  .article-content .sound-equation span, .article-content .sound-equation strong { padding: .4rem; }
  .founder-portrait img { height: 560px; }
  .assessment-form { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .gallery-grid .gallery-item, .gallery-grid .gallery-item:nth-child(1), .gallery-grid .gallery-item:nth-child(6) { grid-column: span 6; min-height: 280px; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .brand span { display: none; }
  .menu-toggle span { display: none; }
  .hero-points { grid-template-columns: 1fr; }
  .sound-chip { min-width: 58px; min-height: 66px; border-bottom-width: 5px; }
  .sound-equation > b { font-size: 1.25rem; }
  .article-card { grid-template-columns: 1fr; }
  .article-visual { min-height: 125px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid address { grid-column: auto; }
  .bio-page { padding: 0; }
  .bio-shell { min-height: 100vh; border: 0; border-radius: 0; box-shadow: none; }
  .gallery-preview-grid .gallery-item, .gallery-grid .gallery-item, .gallery-grid .gallery-item:nth-child(1), .gallery-grid .gallery-item:nth-child(6) { grid-column: 1 / -1; min-height: 250px; }
}

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