:root {
    --navy: #1b3a57;
    --navy-deep: #13293d;
    --ocean: #21689a;
    --ocean-dark: #174e75;
    --hill: #4a7a31;
    --sun: #e58f2a;
    --sun-soft: #f2b66b;
    --sky: #e6f0f6;
    --mist: #f3f7f9;
    --ink: #1e2a33;
    --muted: #55636e;
    --line: #d6e1e8;
    --white: #ffffff;
    --error: #a12d2d;
    --radius: 10px;
    --shadow: 0 1px 2px rgba(27, 58, 87, 0.08), 0 6px 18px rgba(27, 58, 87, 0.06);
    --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --font-heading: "Lora", Georgia, "Times New Roman", serif;
    --max: 1120px;
    --narrow: 760px;
    --gutter: 2.5rem;
    --horizon: linear-gradient(90deg, var(--hill) 0%, var(--ocean) 50%, var(--sun) 100%);
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: var(--ocean);
    text-underline-offset: 3px;
}
a:hover {
    color: var(--ocean-dark);
}
:focus-visible {
    outline: 3px solid var(--sun);
    outline-offset: 2px;
}
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    text-wrap: balance;
    margin: 0 0 0.6em;
}
h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}
h2 {
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    margin-top: 1.6em;
}
h3 {
    font-size: 1.25rem;
    margin-top: 1.4em;
}
h2:first-child,
h3:first-child {
    margin-top: 0;
}
p,
ul,
ol {
    margin: 0 0 1em;
}
address {
    font-style: normal;
}
.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--white);
    color: var(--navy);
    padding: 0.75rem 1rem;
    font-weight: 700;
    z-index: 100;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.container {
    width: min(100% - var(--gutter), var(--max));
    margin-inline: auto;
}
.container.narrow > * {
    max-width: var(--narrow);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    width: min(100% - var(--gutter), var(--max));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.6rem;
}
.brand img {
    width: 150px;
}
.menu-toggle {
    display: none;
    font: inherit;
    font-weight: 700;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.15rem;
}
.nav-list a,
.submenu-toggle {
    display: block;
    width: 100%;
    font: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    text-align: left;
    background: none;
    border: 0;
    border-radius: 6px;
    padding: 0.5rem 0.6rem;
    cursor: pointer;
}
.nav-list a:hover,
.submenu-toggle:hover {
    background: var(--sky);
    color: var(--navy);
}
.nav-list a[aria-current="page"],
.submenu-toggle.is-current {
    color: var(--ocean);
    box-shadow: inset 0 -3px 0 var(--sun);
}
.submenu-toggle::after {
    content: "";
    display: inline-block;
    width: 0.45em;
    height: 0.45em;
    margin-left: 0.5em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-0.2em) rotate(45deg);
}
.has-submenu {
    position: relative;
}
.submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0.5rem;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.submenu.is-open {
    display: block;
}
.header-call {
    padding: 0.55rem 1rem;
    white-space: nowrap;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    background: var(--ocean);
    border: 2px solid var(--ocean);
    border-radius: 8px;
    padding: 0.8rem 1.4rem;
    cursor: pointer;
}
.button:hover {
    color: var(--white);
    background: var(--ocean-dark);
    border-color: var(--ocean-dark);
}
.button-outline {
    color: var(--ocean);
    background: transparent;
}
.button-outline:hover {
    color: var(--ocean-dark);
    background: var(--sky);
}
.button-light {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
}
.button-light:hover {
    color: var(--navy);
    background: var(--sky);
    border-color: var(--sky);
}
.button-outline-light {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
}
.button-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}
.button-block {
    width: 100%;
}
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.text-link {
    font-weight: 700;
}
.text-link::after {
    content: " \2192";
}
.eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hill);
    margin-bottom: 0.75rem;
}
.eyebrow a {
    color: inherit;
}
.lead {
    font-size: clamp(1.15rem, 2.2vw, 1.3rem);
    color: var(--muted);
    max-width: 60ch;
}
.lead-text {
    font-size: 1.25rem;
}
.small {
    font-size: 0.95rem;
    color: var(--muted);
}
.center {
    text-align: center;
}
.section {
    padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.section-alt {
    background: var(--mist);
}
.section-intro {
    color: var(--muted);
    max-width: 60ch;
    margin-bottom: 2rem;
}
.home-hero,
.page-hero {
    position: relative;
    background:
        radial-gradient(ellipse 55% 110% at 50% 135%, rgba(229, 143, 42, 0.38), transparent 62%),
        linear-gradient(180deg, #e2eef6 0%, #f0f6f9 58%, #fbeedd 100%);
}
.home-hero::after,
.page-hero::after,
.cta-band::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--horizon);
}
.home-hero::after,
.page-hero::after {
    bottom: 0;
}
.home-hero {
    padding-block: clamp(4rem, 10vw, 7rem);
}
.home-hero h1 {
    font-size: clamp(2.4rem, 6vw, 3.75rem);
    max-width: 16ch;
}
.page-hero {
    padding-block: clamp(3rem, 8vw, 5rem) clamp(2.5rem, 6vw, 4rem);
}
.page-hero h1 {
    max-width: 22ch;
}
.hero-note {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--navy);
}
.post-hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 2.6rem);
}
.post-meta {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.notice-band {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding-block: 1rem;
}
.notice-band p {
    margin: 0;
}
.notice-band strong {
    color: var(--sun-soft);
}
.grid {
    display: grid;
    gap: 1.25rem;
}
.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}
.card > :last-child {
    margin-bottom: 0;
}
.program-card {
    display: flex;
    flex-direction: column;
}
.program-card h3 {
    margin: 0 0 0.25rem;
}
.program-card h3 a {
    color: var(--navy);
    text-decoration: none;
}
.program-card h3 a:hover {
    text-decoration: underline;
}
.card-price {
    font-weight: 700;
    color: var(--hill);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}
.program-card .text-link {
    margin-top: auto;
}
.price-card {
    margin-block: 1.5rem 2rem;
}
.price-card h3 {
    margin-top: 0;
}
.price {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
.package {
    display: flex;
    flex-direction: column;
}
.package h3 {
    margin-top: 0;
}
.package .button {
    margin-top: auto;
}
.package .small {
    margin: 0.75rem 0 0;
}
.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0.2rem;
    top: 0.5em;
    width: 0.6rem;
    height: 0.32rem;
    border-left: 2px solid var(--hill);
    border-bottom: 2px solid var(--hill);
    transform: rotate(-45deg);
}
.steps {
    padding-left: 1.4rem;
}
.steps li {
    margin-bottom: 0.75rem;
}
.signature {
    font-style: italic;
    color: var(--muted);
}
.note {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}
.pull-quote {
    margin: 0;
    text-align: center;
}
.pull-quote p {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-style: italic;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
}
.book {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 880px;
}
.book img {
    width: 160px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    background: var(--sky);
}
.book h2 {
    margin-top: 0;
}
.cta-band {
    position: relative;
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding-block: clamp(2.75rem, 6vw, 4rem);
}
.cta-band::before {
    top: 0;
}
.cta-band h2 {
    color: var(--white);
    margin-top: 0;
}
.cta-band p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 60ch;
    margin-inline: auto;
}
.cta-band .button-row {
    justify-content: center;
}
.testimonial {
    margin: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}
.testimonial blockquote {
    margin: 0;
}
.testimonial blockquote p {
    margin: 0 0 0.75rem;
}
.testimonial figcaption {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--hill);
}
.testimonial-columns {
    columns: 2 340px;
    column-gap: 1.25rem;
}
.testimonial-columns .testimonial {
    display: inline-block;
    width: 100%;
    break-inside: avoid;
    margin-bottom: 1.25rem;
}
.bio {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}
.bio img {
    width: 220px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--sky);
}
.bio h2 {
    margin-top: 0;
    margin-bottom: 0.2rem;
}
.role {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hill);
}
.team-photo {
    margin: 0;
    max-width: 760px;
}
.team-photo img {
    border-radius: var(--radius);
    background: var(--sky);
}
.team-photo figcaption {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--muted);
}
.contact-card h2 {
    font-size: 1.25rem;
    margin-top: 0;
}
.contact-big {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    overflow-wrap: anywhere;
}
.contact-card + .contact-card {
    margin-top: 0;
}
.grid + h2 {
    margin-top: 2.5rem;
}
.video {
    position: relative;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    margin-bottom: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--navy);
}
.video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-list {
    display: grid;
    gap: 2.25rem;
    margin-top: 2rem;
}
.video-part h2 {
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
}
.video-part .video {
    margin-bottom: 0;
}
.password-form {
    display: grid;
    gap: 0.75rem;
    max-width: 420px;
    margin-bottom: 1.5rem;
}
.password-form label {
    font-weight: 700;
    color: var(--navy);
}
.password-form input {
    font: inherit;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--muted);
    border-radius: 8px;
    width: 100%;
}
.password-form .button {
    justify-self: start;
}
.form-error {
    color: var(--error);
    font-weight: 700;
    margin: 0;
}
.post-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}
.post-item h2 {
    font-size: 1.4rem;
    margin: 0 0 0.35rem;
}
.post-item h2 a,
.grid .card h3 a {
    color: var(--navy);
    text-decoration: none;
}
.post-item h2 a:hover,
.grid .card h3 a:hover {
    text-decoration: underline;
}
.grid .card h3 {
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
}
.post-body {
    padding-block: clamp(2rem, 5vw, 3rem) clamp(2.5rem, 6vw, 4rem);
}
.post-body h2 {
    font-size: clamp(1.4rem, 3vw, 1.75rem);
}
.post-body ul,
.post-body ol {
    padding-left: 1.4rem;
}
.post-body li {
    margin-bottom: 0.4rem;
}
.dialogue {
    background: var(--mist);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1em;
}
.dialogue p {
    margin: 0 0 0.4rem;
}
.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 3rem;
    font-size: 1rem;
}
.footer-inner {
    width: min(100% - var(--gutter), var(--max));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.2fr 1fr;
    gap: 2rem;
}
.footer-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.footer-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sun-soft);
    margin: 0 0 0.75rem;
}
.site-footer a {
    color: var(--white);
    text-decoration: none;
}
.site-footer a:hover {
    text-decoration: underline;
}
.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer li {
    margin-bottom: 0.4rem;
}
.footer-contact p {
    margin-bottom: 0.5rem;
    overflow-wrap: anywhere;
}
.footer-legal {
    width: min(100% - var(--gutter), var(--max));
    margin: 2.5rem auto 0;
    padding-block: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1001px) {
    .has-submenu:hover .submenu,
    .has-submenu:focus-within .submenu {
        display: block;
    }
}
@media (max-width: 1000px) {
    .menu-toggle {
        display: inline-block;
    }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        padding: 0.75rem 1.25rem 1.5rem;
        max-height: calc(100vh - 5rem);
        overflow-y: auto;
    }
    .site-nav.is-open {
        display: flex;
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-list a,
    .submenu-toggle {
        padding: 0.75rem 0.5rem;
        font-size: 1.05rem;
    }
    .submenu {
        position: static;
        min-width: 0;
        border: 0;
        box-shadow: none;
        padding: 0 0 0.5rem 1rem;
    }
    .header-call {
        align-self: flex-start;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    body {
        font-size: 1.0625rem;
    }
    .brand img {
        width: 120px;
    }
    .book {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .book img {
        width: 130px;
    }
    .bio {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .bio img {
        width: 180px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .card,
    .testimonial {
        padding: 1.25rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
