:root {
    --brand-navy: #0f3d71;
    --brand-navy-dark: #082e57;
    --brand-blue: #4483bd;
    --brand-green: #96c64f;
    --accent: var(--brand-green);
    --accent-bright: #addb65;
    --accent-soft: #eef7df;
    --ink: #123a60;
    --ink-2: #173f67;
    --muted: #5f6f7d;
    --muted-light: #8795a1;
    --line: #dbe5ec;
    --surface: #ffffff;
    --surface-soft: #f3f7fa;
    --surface-warm: #f3f8ed;
    --green-soft: #e8f3dc;
    --success: #367b35;
    --danger: #b42318;
    --shadow-sm: 0 12px 34px rgba(15, 61, 113, 0.09);
    --shadow-lg: 0 28px 80px rgba(15, 61, 113, 0.16);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --container: 1240px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
    min-width: 320px;
    background: var(--surface);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

p a:not(.button),
.legal-document a {
    color: #2f6d38;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

::selection {
    background: var(--accent);
    color: var(--ink);
}

:focus-visible {
    outline: 3px solid rgba(150, 198, 79, 0.55);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    transform: translateY(-160%);
    border-radius: 10px;
    background: var(--ink);
    color: #fff;
    padding: 10px 16px;
    font-weight: 800;
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    border-bottom-color: rgba(21, 21, 21, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 35px rgba(15, 15, 15, 0.06);
}

.nav-shell {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand img {
    width: 48px;
    height: 48px;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #3c3e42;
    font-size: 14px;
    font-weight: 750;
}

.primary-nav > a {
    position: relative;
    transition: color 0.2s ease;
}

.primary-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    border-radius: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.primary-nav > a:hover {
    color: var(--ink);
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    padding: 11px 18px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
    background: #000;
    color: #fff !important;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 13px;
    background: var(--surface-soft);
    cursor: pointer;
    place-items: center;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span + span {
    margin-top: 5px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 780px;
    padding: calc(var(--header-height) + 76px) 0 72px;
    background:
        radial-gradient(circle at 9% 20%, rgba(68, 131, 189, 0.18), transparent 27%),
        radial-gradient(circle at 90% 12%, rgba(150, 198, 79, 0.72), transparent 30%),
        linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(21, 21, 21, 0.05);
    border-radius: 50%;
}

.hero::before {
    top: 112px;
    left: -180px;
    width: 420px;
    height: 420px;
}

.hero::after {
    right: -260px;
    bottom: -270px;
    width: 640px;
    height: 640px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    gap: clamp(42px, 5vw, 82px);
    align-items: center;
}

.hero-copy {
    padding-block: 30px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: #2f6d38;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 27px;
    height: 7px;
    border-radius: 99px;
    background: var(--accent);
}

.hero h1 {
    max-width: 690px;
    font-size: clamp(52px, 6vw, 86px);
    font-weight: 950;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.hero h1 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 2px var(--ink);
    text-stroke: 2px var(--ink);
}

.hero-lead {
    max-width: 650px;
    margin-top: 27px;
    color: #565b63;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    cursor: pointer;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--accent);
    color: var(--ink);
    box-shadow: 0 13px 30px rgba(150, 198, 79, 0.24);
}

.button-primary:hover {
    background: var(--accent-bright);
    box-shadow: 0 17px 38px rgba(150, 198, 79, 0.31);
}

.button-light {
    border-color: var(--line);
    background: #fff;
    color: var(--ink);
    box-shadow: 0 8px 22px rgba(22, 22, 22, 0.05);
}

.button-light:hover {
    border-color: #caccd1;
    box-shadow: var(--shadow-sm);
}

.button-dark {
    background: var(--ink);
    color: #fff;
}

.button-dark:hover {
    background: #000;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.1);
}

.button-wide {
    width: 100%;
}

.button-small {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 14px;
}

.button.is-loading {
    cursor: wait;
    opacity: 0.86;
}

.button-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.button.is-loading .button-loader {
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 22px;
    margin-top: 30px;
    color: #555a61;
    font-size: 14px;
    font-weight: 700;
    list-style: none;
}

.hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-points span {
    display: inline-grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: #2b6333;
    font-size: 12px;
}

.hero-image-wrap {
    position: relative;
    isolation: isolate;
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: 10% -5% -4% 10%;
    z-index: -1;
    border-radius: 44px;
    background: linear-gradient(145deg, rgba(150, 198, 79, 0.28), rgba(150, 198, 79, 0.5));
    filter: blur(45px);
}

.hero-image-wrap > img {
    width: 100%;
    border: 1px solid rgba(21, 21, 21, 0.06);
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 195px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 45px rgba(20, 20, 20, 0.16);
    padding: 13px 16px;
    backdrop-filter: blur(16px);
}

.floating-card-top {
    top: 7%;
    right: -5%;
}

.floating-card-bottom {
    bottom: 8%;
    left: -7%;
}

.floating-card > span:last-child {
    display: grid;
    line-height: 1.25;
}

.floating-card strong {
    font-size: 14px;
}

.floating-card small {
    color: var(--muted);
    font-size: 12px;
}

.floating-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: var(--accent-soft);
}

.pulse-dot {
    position: relative;
    width: 16px;
    height: 16px;
    margin: 11px;
    border-radius: 50%;
    background: #27a15c;
}

.pulse-dot::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 2px solid rgba(39, 161, 92, 0.28);
    border-radius: inherit;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(0.72); opacity: 1; }
    80%, 100% { transform: scale(1.5); opacity: 0; }
}

.fact-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.fact-grid > div {
    display: grid;
    gap: 2px;
    padding: 23px clamp(14px, 2vw, 30px);
    border-left: 1px solid var(--line);
}

.fact-grid > div:last-child {
    border-right: 1px solid var(--line);
}

.fact-grid strong {
    font-size: 15px;
    font-weight: 900;
}

.fact-grid span {
    color: var(--muted);
    font-size: 13px;
}

.section {
    padding: clamp(82px, 9vw, 126px) 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-dark {
    background: var(--ink);
    color: #fff;
}

.section-kicker {
    color: #2f6d38;
}

.section-dark .section-kicker {
    color: var(--accent);
}

.section h2,
.legal-document h1,
.error-shell h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 1.03;
}

.section-copy > h2 {
    max-width: 680px;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 50px;
}

.section-heading > p:not(.section-kicker),
.section-heading-row > p {
    margin-top: 19px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.section-dark .section-heading > p:not(.section-kicker),
.section-dark .section-heading-row > p {
    color: #afb2b8;
}

.section-heading-row {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
}

.section-heading-row > div {
    max-width: 700px;
}

.section-heading-row > p {
    max-width: 430px;
    margin-top: 0;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(46px, 7vw, 92px);
    align-items: center;
}

.media-card {
    position: relative;
}

.media-card > img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.media-caption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: grid;
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    background: rgba(20, 20, 20, 0.86);
    color: #fff;
    padding: 16px 18px;
    backdrop-filter: blur(15px);
}

.media-caption strong {
    font-size: 14px;
}

.media-caption span {
    color: #c9cbd0;
    font-size: 13px;
}

.lead-text {
    margin-top: 24px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.7;
}

.benefit-list {
    display: grid;
    gap: 0;
    margin-top: 34px;
    border-top: 1px solid var(--line);
}

.benefit-list article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 15px;
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
}

.benefit-number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--accent-soft);
    color: #2f6d38;
    font-size: 12px;
    font-weight: 950;
}

.benefit-list h3 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 900;
}

.benefit-list p {
    color: var(--muted);
    font-size: 14px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.schedule-card {
    position: relative;
    overflow: hidden;
    min-height: 285px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-md);
    background: #222;
    padding: 26px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.schedule-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    border: 35px solid rgba(150, 198, 79, 0.08);
    border-radius: 50%;
}

.schedule-card:hover {
    transform: translateY(-6px);
    border-color: rgba(150, 198, 79, 0.5);
    background: #282828;
}

.schedule-day {
    display: flex;
    align-items: center;
    gap: 11px;
}

.schedule-day span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: var(--accent);
    color: var(--ink);
    font-size: 12px;
    font-weight: 950;
}

.schedule-day strong {
    color: #d5d7da;
    font-size: 14px;
}

.schedule-time {
    margin-top: 28px;
    color: var(--accent);
    font-size: 46px;
    font-weight: 950;
    letter-spacing: -0.055em;
    line-height: 1;
}

.schedule-card h3 {
    margin-top: 18px;
    font-size: 21px;
    line-height: 1.25;
}

.schedule-card p {
    margin-top: 5px;
    color: #aeb1b6;
    font-size: 14px;
}

.tag {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    color: #bec1c6;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.schedule-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: linear-gradient(120deg, #202020 0%, #29271f 100%);
    padding: 26px 28px;
}

.schedule-contact > div:first-child {
    display: grid;
    gap: 4px;
}

.contact-label {
    color: #9fa2a8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.schedule-contact strong {
    font-size: clamp(20px, 2vw, 26px);
}

.schedule-contact strong a:hover {
    color: var(--accent);
}

.schedule-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 290px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 27px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #b5d0e3;
    box-shadow: var(--shadow-sm);
}

.service-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 16px;
    background: var(--accent-soft);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--ink);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin-top: 56px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.service-card p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 14px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.project-card {
    overflow: hidden;
    border: 1px solid #e2e3e6;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 12px 38px rgba(22, 22, 22, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 52px rgba(22, 22, 22, 0.11);
}

.project-card > img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    background: #eee;
}

.project-content {
    padding: 25px 25px 27px;
}

.project-label {
    display: inline-flex;
    border-radius: 99px;
    background: var(--accent-soft);
    color: #2f6d38;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.project-content h3 {
    margin-top: 17px;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.project-content p {
    min-height: 70px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.project-content a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 900;
}

.project-content a span,
.text-link span {
    transition: transform 0.2s ease;
}

.project-content a:hover span,
.text-link:hover span {
    transform: translateX(5px);
}

.camp-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;
    border-radius: 34px;
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.camp-media {
    min-height: 590px;
}

.camp-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camp-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(38px, 5vw, 70px);
}

.camp-content h2 {
    font-size: clamp(42px, 5vw, 66px);
}

.camp-content h2 span {
    display: inline-block;
    margin-top: 8px;
    color: var(--accent);
    font-size: 0.46em;
    letter-spacing: -0.02em;
}

.camp-content > p:not(.section-kicker) {
    margin-top: 23px;
    color: #b8bbc0;
    font-size: 17px;
}

.check-list {
    display: grid;
    gap: 9px;
    margin: 27px 0 32px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 29px;
    color: #eef0f2;
    font-size: 14px;
    font-weight: 700;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink);
    font-size: 11px;
    font-weight: 950;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(50px, 8vw, 110px);
    align-items: start;
}

.faq-layout .section-heading {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    margin-bottom: 0;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 0 21px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
    border-color: #b4d49a;
    box-shadow: 0 12px 30px rgba(22, 22, 22, 0.05);
}

.faq-list summary {
    position: relative;
    padding: 21px 42px 21px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 900;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::before,
.faq-list summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.2s ease;
}

.faq-list summary::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary::after {
    transform: rotate(0deg);
}

.faq-list details p {
    max-width: 720px;
    padding: 0 35px 22px 0;
    color: var(--muted);
    font-size: 14px;
}

.join-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 9% 20%, rgba(68, 131, 189, 0.28), transparent 31%),
        linear-gradient(180deg, #f3f8ed, #f4f5f7);
}

.join-section::after {
    content: "";
    position: absolute;
    right: -190px;
    bottom: -240px;
    width: 530px;
    height: 530px;
    border: 75px solid rgba(150, 198, 79, 0.1);
    border-radius: 50%;
}

.join-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
    gap: clamp(45px, 8vw, 100px);
    align-items: start;
}

.join-copy {
    padding-top: 25px;
}

.join-copy > p:not(.section-kicker):not(.form-note) {
    margin-top: 23px;
    color: var(--muted);
    font-size: 18px;
}

.contact-card {
    display: grid;
    gap: 8px;
    margin-top: 34px;
    border-left: 4px solid var(--accent);
    border-radius: 0 16px 16px 0;
    background: rgba(255, 255, 255, 0.66);
    padding: 19px 22px;
}

.contact-card span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.contact-card a {
    width: max-content;
    font-weight: 900;
}

.contact-card a:hover {
    color: #2f6d38;
}

.form-note {
    margin-top: 24px;
    color: var(--muted-light);
    font-size: 12px;
    line-height: 1.55;
}

.form-card {
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(21, 21, 21, 0.11);
    padding: clamp(25px, 4vw, 42px);
}

.form-heading {
    display: grid;
    gap: 5px;
    margin-bottom: 27px;
}

.form-heading span {
    color: #2f6d38;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-heading strong {
    font-size: 20px;
    line-height: 1.3;
}

.field-grid,
.compact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.field {
    display: grid;
    gap: 7px;
}

.field-full {
    grid-column: 1 / -1;
}

.field > span {
    color: #42454b;
    font-size: 13px;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #d9dbe0;
    border-radius: 13px;
    outline: none;
    background: #fbfbfc;
    color: var(--ink);
    padding: 13px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
    min-height: 50px;
}

.field textarea {
    min-height: 105px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #a1a5ad;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: #bfc2c8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(150, 198, 79, 0.13);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.field-error {
    min-height: 0;
    color: var(--danger);
    font-size: 11px;
    font-weight: 700;
}

.field-error:empty {
    display: none;
}

.consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    margin: 20px 0;
    color: var(--muted);
    cursor: pointer;
    font-size: 12px;
    line-height: 1.5;
}

.consent input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--accent);
}

.consent a {
    color: #2f6d38;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent.has-error {
    color: var(--danger);
}

.form-status {
    display: none;
    margin-top: 15px;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.5;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    background: #eaf7ef;
    color: var(--success);
}

.form-status.is-error {
    background: #fff0ee;
    color: var(--danger);
}

.form-status a {
    color: inherit;
    font-weight: 900;
    text-decoration: underline;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.question-section {
    padding-top: 0;
    background: var(--surface-soft);
}

.question-card {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(36px, 7vw, 90px);
    border-radius: 30px;
    background: var(--accent);
    padding: clamp(30px, 5vw, 58px);
}

.question-card h2 {
    font-size: clamp(36px, 4vw, 52px);
}

.question-card > div > p:not(.section-kicker) {
    margin-top: 18px;
    color: rgba(21, 21, 21, 0.7);
}

.question-card .section-kicker {
    color: #285c30;
}

.compact-form .field > span {
    color: rgba(21, 21, 21, 0.8);
}

.compact-form .field input,
.compact-form .field textarea {
    border-color: rgba(21, 21, 21, 0.12);
    background: rgba(255, 255, 255, 0.88);
}

.compact-form .consent {
    margin: 0;
    color: rgba(21, 21, 21, 0.72);
}

.compact-form .form-status {
    margin-top: 0;
}

.site-footer {
    background: #111;
    color: #fff;
    padding: 70px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(3, 0.75fr);
    gap: 48px;
    padding-bottom: 52px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-brand {
    margin-bottom: 9px;
}

.footer-brand .brand-copy small {
    color: #9ca0a7;
}

.footer-grid > div:first-child > p {
    max-width: 320px;
    color: #9ca0a7;
    font-size: 14px;
}

.footer-title {
    margin-bottom: 8px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid span:not(.brand-copy):not(.footer-title) {
    color: #aaadb3;
    font-size: 13px;
}

.footer-grid a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 22px;
    color: #7f838a;
    font-size: 12px;
}

.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1500;
    max-width: min(390px, calc(100% - 44px));
    border-radius: 14px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
    padding: 14px 17px;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.no-js .reveal {
    opacity: 1;
    transform: none;
}

/* Legal and error pages */
.legal-page,
.error-page {
    background: var(--surface-soft);
}

.legal-header {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.legal-main {
    padding: 72px 0 100px;
}

.legal-document {
    max-width: 920px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: clamp(28px, 6vw, 70px);
}

.legal-document h1 {
    margin-bottom: 13px;
}

.legal-updated {
    margin-bottom: 45px;
    color: var(--muted-light);
    font-size: 13px;
}

.legal-document h2 {
    margin: 35px 0 11px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.legal-document p {
    color: var(--muted);
}

.legal-note {
    margin-top: 42px;
    border-left: 5px solid var(--accent);
    border-radius: 0 15px 15px 0;
    background: var(--surface-warm);
    padding: 20px 23px;
}

.legal-note p {
    margin-top: 5px;
}

.legal-footer {
    padding-top: 22px;
}

.legal-footer a {
    color: var(--accent);
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
}

.error-shell {
    max-width: 660px;
    text-align: center;
}

.error-shell img {
    margin: 0 auto 25px;
}

.error-code {
    color: #2f6d38;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: 0.16em;
}

.error-shell h1 {
    margin-top: 12px;
}

.error-shell > p:not(.error-code) {
    margin: 20px auto 30px;
    color: var(--muted);
    font-size: 18px;
}

/* WordPress-generated content and pagination. */
.article-content .alignwide,
.legal-document .alignwide {
    max-width: 100%;
}

.article-content .aligncenter,
.legal-document .aligncenter {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.article-content img,
.legal-document img {
    height: auto;
}

.navigation.pagination {
    margin-top: 42px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-links .page-numbers {
    display: inline-grid;
    min-width: 42px;
    min-height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 8px 12px;
    color: var(--brand-navy);
    font-weight: 850;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
    color: #fff;
}

@media (max-width: 1120px) {
    .hero-grid {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 38px;
    }

    .primary-nav {
        gap: 16px;
        font-size: 13px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        min-height: 240px;
    }

    .service-card h3 {
        margin-top: 38px;
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-card:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .project-card:last-child > img {
        height: 100%;
        aspect-ratio: auto;
    }

    .project-card:last-child .project-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 38px;
    }

    .project-content p {
        min-height: auto;
    }
}

@media (max-width: 920px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .nav-toggle {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
    .primary-nav {
        position: fixed;
        top: var(--header-height);
        right: 16px;
        left: 16px;
        display: grid;
        gap: 0;
        max-height: calc(100vh - var(--header-height) - 20px);
        overflow: auto;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: #fff;
        box-shadow: var(--shadow-lg);
        padding: 10px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px) scale(0.98);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .primary-nav > a {
        border-radius: 11px;
        padding: 13px 14px;
        font-size: 15px;
    }

    .primary-nav > a:hover {
        background: var(--surface-soft);
    }

    .primary-nav > a::after {
        display: none;
    }

    .nav-cta {
        margin-top: 5px;
        background: var(--accent);
        color: var(--ink);
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 54px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 760px;
        padding-bottom: 0;
    }

    .hero-visual {
        max-width: 740px;
        margin-inline: auto;
    }

    .floating-card-top {
        right: 2%;
    }

    .floating-card-bottom {
        left: 2%;
    }

    .fact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fact-grid > div:nth-child(3) {
        border-top: 1px solid var(--line);
    }

    .fact-grid > div:nth-child(4) {
        border-top: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }

    .split-layout,
    .faq-layout,
    .join-grid,
    .question-card {
        grid-template-columns: 1fr;
    }

    .media-card {
        max-width: 680px;
        margin-inline: auto;
    }

    .section-heading-row {
        display: block;
    }

    .section-heading-row > p {
        margin-top: 18px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-card {
        min-height: 245px;
    }

    .schedule-contact {
        align-items: flex-start;
        flex-direction: column;
    }

    .camp-card {
        grid-template-columns: 1fr;
    }

    .camp-media {
        min-height: 420px;
    }

    .faq-layout .section-heading {
        position: static;
    }

    .join-grid {
        gap: 36px;
    }

    .join-copy {
        max-width: 720px;
        padding-top: 0;
    }

    .question-card {
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr repeat(2, 1fr);
    }

    .footer-grid > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .brand-copy strong {
        font-size: 13px;
    }

    .brand-copy small {
        font-size: 9px;
    }

    .hero {
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: clamp(44px, 14vw, 63px);
    }

    .hero h1 em {
        -webkit-text-stroke-width: 1.4px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-points {
        display: grid;
    }

    .hero-image-wrap > img {
        border-radius: 25px;
    }

    .floating-card {
        min-width: 0;
        padding: 10px 12px;
    }

    .floating-card-top {
        top: 5%;
        right: -2%;
    }

    .floating-card-bottom {
        bottom: 5%;
        left: -2%;
    }

    .floating-card strong {
        font-size: 12px;
    }

    .floating-card small {
        font-size: 10px;
    }

    .floating-icon {
        width: 32px;
        height: 32px;
    }

    .fact-grid > div {
        min-height: 90px;
        justify-content: center;
    }

    .section {
        padding: 74px 0;
    }

    .section h2,
    .legal-document h1,
    .error-shell h1 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .media-caption {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .benefit-list article {
        grid-template-columns: 44px 1fr;
    }

    .schedule-contact {
        padding: 22px;
    }

    .schedule-actions {
        display: grid;
        width: 100%;
    }

    .service-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-card:last-child {
        grid-column: auto;
        display: block;
    }

    .project-card:last-child > img {
        height: auto;
        aspect-ratio: 3 / 2;
    }

    .project-card:last-child .project-content {
        display: block;
        padding: 25px;
    }

    .camp-media {
        min-height: 300px;
    }

    .camp-content {
        padding: 31px 24px 36px;
    }

    .faq-list summary {
        font-size: 15px;
    }

    .field-grid,
    .compact-form {
        grid-template-columns: 1fr;
    }

    .field-full {
        grid-column: auto;
    }

    .form-card {
        border-radius: 22px;
        padding: 24px 18px;
    }

    .question-card {
        border-radius: 23px;
        padding: 28px 18px;
    }

    .compact-form .consent,
    .compact-form .button,
    .compact-form .form-status {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    .footer-grid > div:first-child,
    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .legal-header .brand-copy {
        display: none;
    }

    .legal-main {
        padding: 28px 0 70px;
    }

    .legal-document {
        border-radius: 20px;
        padding: 26px 20px;
    }

    .toast {
        right: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Official logo and brand palette */
.brand {
    min-width: 0;
}

.brand img.brand-logo-header {
    width: 184px;
    height: auto;
    max-height: 74px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand {
    display: inline-flex;
    width: max-content;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 19px;
    background: #fff;
    padding: 8px 12px;
}

.brand img.footer-logo {
    width: 238px;
    height: auto;
}

.legal-header .brand img.brand-logo-header {
    width: 176px;
}

.error-logo {
    width: 126px;
    height: auto;
    max-height: 156px;
    object-fit: contain;
}

p a:not(.button),
.legal-document a {
    color: var(--brand-blue);
}

::selection {
    background: var(--accent);
    color: var(--brand-navy);
}

:focus-visible {
    outline-color: rgba(68, 131, 189, 0.55);
}

.site-header.is-scrolled {
    border-bottom-color: rgba(15, 61, 113, 0.1);
    box-shadow: 0 10px 35px rgba(15, 61, 113, 0.08);
}

.primary-nav > a:not(.nav-cta)::after {
    background: linear-gradient(90deg, var(--brand-blue), var(--accent));
}

.nav-cta,
.button-dark {
    background: var(--brand-navy);
}

.nav-cta:hover,
.button-dark:hover {
    background: var(--brand-navy-dark);
}

.hero {
    background:
        radial-gradient(circle at 9% 20%, rgba(68, 131, 189, 0.17), transparent 28%),
        radial-gradient(circle at 90% 12%, rgba(150, 198, 79, 0.26), transparent 31%),
        linear-gradient(180deg, #fff 0%, #f5f9fc 100%);
}

.hero::before,
.hero::after {
    border-color: rgba(15, 61, 113, 0.06);
}

.eyebrow,
.section-kicker {
    color: #2f6d38;
}

.hero h1 em {
    -webkit-text-stroke-color: var(--brand-blue);
    text-stroke-color: var(--brand-blue);
}

.hero-lead,
.hero-points {
    color: var(--muted);
}

.button-primary {
    color: var(--brand-navy);
    box-shadow: 0 13px 30px rgba(150, 198, 79, 0.24);
}

.button-primary:hover {
    box-shadow: 0 17px 38px rgba(150, 198, 79, 0.33);
}

.button-light:hover {
    border-color: rgba(68, 131, 189, 0.42);
}

.hero-points span,
.floating-icon,
.benefit-number,
.service-icon,
.project-label {
    color: #285c30;
}

.hero-image-wrap::before {
    background: linear-gradient(145deg, rgba(68, 131, 189, 0.24), rgba(150, 198, 79, 0.34));
}

.pulse-dot {
    background: var(--brand-blue);
}

.pulse-dot::after {
    border-color: rgba(68, 131, 189, 0.3);
}

.section-dark {
    background: linear-gradient(135deg, #0c315b 0%, var(--brand-navy) 55%, #174c77 100%);
}

.section-dark .section-heading > p:not(.section-kicker),
.section-dark .section-heading-row > p {
    color: #c8d5df;
}

.media-caption {
    background: rgba(8, 46, 87, 0.9);
}

.schedule-card {
    background: rgba(255, 255, 255, 0.055);
}

.schedule-card::after {
    border-color: rgba(150, 198, 79, 0.1);
}

.schedule-card:hover {
    border-color: rgba(150, 198, 79, 0.55);
    background: rgba(255, 255, 255, 0.095);
}

.schedule-day strong,
.schedule-card p,
.tag,
.contact-label {
    color: #c3d0da;
}

.schedule-contact {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.075), rgba(68, 131, 189, 0.2));
}

.service-card:hover,
.faq-list details[open] {
    border-color: rgba(68, 131, 189, 0.45);
}

.project-content a,
.text-link,
.contact-card a:hover {
    color: var(--brand-blue);
}

.camp-card {
    background: linear-gradient(145deg, #0c315b 0%, var(--brand-navy) 62%, #174c77 100%);
}

.camp-content > p:not(.section-kicker) {
    color: #c8d5df;
}

.join-section {
    background:
        radial-gradient(circle at 9% 20%, rgba(68, 131, 189, 0.2), transparent 31%),
        radial-gradient(circle at 92% 88%, rgba(150, 198, 79, 0.18), transparent 28%),
        linear-gradient(180deg, #f5f9fc, #f3f8ed);
}

.form-heading span,
.consent a {
    color: #2f6d38;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(68, 131, 189, 0.14);
}

.consent input {
    accent-color: var(--brand-blue);
}

.question-card {
    border: 1px solid rgba(68, 131, 189, 0.14);
    background:
        radial-gradient(circle at 92% 12%, rgba(150, 198, 79, 0.26), transparent 34%),
        linear-gradient(135deg, #eaf3fa 0%, #eef7e2 100%);
    box-shadow: 0 20px 55px rgba(15, 61, 113, 0.09);
}

.question-card > div > p:not(.section-kicker),
.compact-form .field > span,
.compact-form .consent {
    color: rgba(18, 58, 96, 0.74);
}

.question-card .section-kicker {
    color: #2f6d38;
}

.compact-form .field input,
.compact-form .field textarea {
    border-color: rgba(15, 61, 113, 0.14);
}

.site-footer {
    background: linear-gradient(135deg, #082e57 0%, var(--brand-navy) 100%);
}

.footer-grid > div:first-child > p,
.footer-grid a,
.footer-grid span:not(.brand-copy):not(.footer-title),
.footer-bottom {
    color: #b9c9d6;
}

.legal-note {
    background: var(--surface-warm);
}

.error-code {
    color: var(--brand-blue);
}

@media (max-width: 920px) {
    .brand img.brand-logo-header {
        width: 154px;
        max-height: 62px;
    }

    .nav-cta {
        background: var(--accent);
        color: var(--brand-navy);
    }
}

@media (max-width: 680px) {
    .brand img.brand-logo-header {
        width: 138px;
        max-height: 58px;
    }

    .legal-header .brand img.brand-logo-header {
        width: 126px;
    }

    .brand img.footer-logo {
        width: 220px;
    }
}



/* Blog and SEO article pages */
.primary-nav a[aria-current="page"]:not(.nav-cta) {
    color: var(--brand-navy);
}

.primary-nav a[aria-current="page"]:not(.nav-cta)::after {
    transform: scaleX(1);
}

.section-heading-action {
    display: grid;
    max-width: 440px;
    justify-items: start;
    gap: 20px;
}

.section-heading-action > p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.article-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.article-preview-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-preview-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 12px 35px rgba(15, 61, 113, 0.07);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.article-preview-card:hover {
    transform: translateY(-7px);
    border-color: rgba(68, 131, 189, .4);
    box-shadow: 0 22px 55px rgba(15, 61, 113, .13);
}

.article-preview-image {
    display: block;
    overflow: hidden;
    background: var(--surface-soft);
}

.article-preview-image img {
    width: 100%;
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    transition: transform .45s ease;
}

.article-preview-card:hover .article-preview-image img {
    transform: scale(1.025);
}

.article-preview-body {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 13px;
    color: var(--muted-light);
    font-size: 12px;
    font-weight: 700;
}

.article-category {
    display: inline-flex;
    border-radius: 99px;
    background: var(--accent-soft);
    color: #2f6d38;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.article-preview-card h2,
.article-preview-card h3 {
    margin-top: 17px;
    color: var(--brand-navy);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.16;
}

.article-preview-card h2 {
    font-size: 27px;
}

.article-preview-card h2 a:hover,
.article-preview-card h3 a:hover {
    color: var(--brand-blue);
}

.article-preview-card p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 20px;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 850;
}

.article-card-link span {
    transition: transform .2s ease;
}

.article-card-link:hover span {
    transform: translateX(4px);
}

.blog-page,
.article-page {
    background: #fff;
}

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 90px) 0 92px;
    background:
        radial-gradient(circle at 88% 18%, rgba(150, 198, 79, .3), transparent 27%),
        radial-gradient(circle at 8% 78%, rgba(68, 131, 189, .18), transparent 30%),
        linear-gradient(180deg, #fff, #f5f9fc);
}

.blog-hero::after {
    content: "";
    position: absolute;
    right: -170px;
    bottom: -240px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(15, 61, 113, .08);
    border-radius: 50%;
}

.blog-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
    gap: clamp(40px, 8vw, 110px);
    align-items: center;
}

.blog-hero h1 {
    max-width: 760px;
    font-size: clamp(54px, 7vw, 92px);
    font-weight: 950;
    letter-spacing: -.065em;
    line-height: .98;
}

.blog-hero-grid > div:first-child > p:not(.eyebrow) {
    max-width: 720px;
    margin-top: 27px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.68;
}

.topic-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

.topic-pills span {
    border: 1px solid rgba(68, 131, 189, .18);
    border-radius: 99px;
    background: rgba(255, 255, 255, .78);
    color: var(--brand-navy);
    padding: 9px 13px;
    font-size: 12px;
    font-weight: 800;
}

.blog-hero-panel {
    display: grid;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 30px;
    background: linear-gradient(145deg, var(--brand-navy), #174c77);
    color: #fff;
    box-shadow: var(--shadow-lg);
    padding: clamp(30px, 4vw, 48px);
}

.blog-hero-number {
    color: var(--accent);
    font-size: 88px;
    font-weight: 950;
    letter-spacing: -.08em;
    line-height: .9;
}

.blog-hero-panel strong {
    margin-top: 8px;
    font-size: 23px;
}

.blog-hero-panel p {
    margin-top: 16px;
    color: #c7d4df;
}

.blog-hero-panel a {
    display: inline-flex;
    gap: 8px;
    margin-top: 26px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 850;
}

.blog-list-section {
    background: #fff;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.blog-featured-image {
    min-height: 420px;
    overflow: hidden;
    background: var(--surface-soft);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-featured-card:hover .blog-featured-image img {
    transform: scale(1.02);
}

.blog-featured-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(30px, 5vw, 60px);
}

.featured-label {
    margin-top: 25px;
    color: #2f6d38 !important;
    font-size: 12px !important;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.blog-featured-content h2 {
    margin-top: 10px;
    color: var(--brand-navy);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 950;
    letter-spacing: -.055em;
    line-height: 1.05;
}

.blog-featured-content h2 a:hover {
    color: var(--brand-blue);
}

.blog-featured-content > p:not(.featured-label) {
    margin-top: 20px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.68;
}

.blog-featured-content .button {
    margin-top: 28px;
}

.blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(45px, 8vw, 110px);
    align-items: start;
}

.editorial-grid h2 {
    max-width: 600px;
}

.editorial-points {
    display: grid;
    border-top: 1px solid var(--line);
}

.editorial-points article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 17px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.editorial-points article > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    background: var(--accent-soft);
    color: #2f6d38;
    font-size: 12px;
    font-weight: 950;
}

.editorial-points h3 {
    font-size: 19px;
    font-weight: 900;
}

.editorial-points p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.blog-subscribe-section {
    padding-top: 0;
}

.article-main {
    padding: calc(var(--header-height) + 42px) 0 110px;
    background: linear-gradient(180deg, #f6f9fb 0, #fff 400px);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 10px;
    margin-bottom: 48px;
    color: var(--muted-light);
    font-size: 13px;
}

.breadcrumbs a {
    color: var(--brand-blue);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.article-header {
    max-width: 1040px;
    margin-inline: auto;
    text-align: center;
}

.article-meta-centered {
    justify-content: center;
}

.article-header h1 {
    margin-top: 24px;
    color: var(--brand-navy);
    font-size: clamp(48px, 6.5vw, 82px);
    font-weight: 950;
    letter-spacing: -.065em;
    line-height: 1.01;
}

.article-deck {
    max-width: 820px;
    margin: 27px auto 0;
    color: var(--muted);
    font-size: clamp(19px, 2vw, 23px);
    line-height: 1.65;
}

.article-byline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
    text-align: left;
}

.article-author-mark {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    color: #fff;
    font-size: 19px;
    font-weight: 950;
}

.article-byline > span:last-child {
    display: grid;
}

.article-byline strong {
    font-size: 13px;
}

.article-byline small {
    color: var(--muted-light);
    font-size: 11px;
}

.article-cover {
    width: 100%;
    margin-top: 46px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.article-reading-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 780px);
    justify-content: center;
    gap: clamp(44px, 7vw, 92px);
    margin-top: 72px;
}

.article-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 28px);
    align-self: start;
    display: grid;
    gap: 18px;
}

.toc-card,
.sidebar-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 61, 113, .06);
    padding: 22px;
}

.toc-card > strong {
    color: var(--brand-navy);
    font-size: 14px;
    font-weight: 900;
}

.toc-card ol {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding-left: 19px;
    color: var(--muted-light);
    font-size: 12px;
}

.toc-card a {
    color: var(--muted);
}

.toc-card a:hover {
    color: var(--brand-blue);
}

.sidebar-card {
    display: grid;
    background: linear-gradient(145deg, #0d3562, var(--brand-navy));
    color: #fff;
}

.sidebar-card > span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.sidebar-card strong {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.25;
}

.sidebar-card a {
    margin-top: 17px;
    color: #d6e4ef;
    font-size: 13px;
    font-weight: 800;
}

.article-content {
    min-width: 0;
    color: #42576a;
    font-size: 18px;
    line-height: 1.82;
}

.article-content > p + p {
    margin-top: 20px;
}

.article-content h2 {
    scroll-margin-top: calc(var(--header-height) + 28px);
    margin: 58px 0 20px;
    color: var(--brand-navy);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 950;
    letter-spacing: -.045em;
    line-height: 1.12;
}

.article-content h3 {
    margin: 35px 0 12px;
    color: var(--brand-navy);
    font-size: 24px;
    font-weight: 900;
}

.article-content ul,
.article-content ol {
    display: grid;
    gap: 11px;
    margin: 20px 0 24px;
    padding-left: 26px;
}

.article-content li::marker {
    color: var(--brand-blue);
    font-weight: 900;
}

.article-content strong {
    color: var(--ink-2);
}

.article-content a {
    color: var(--brand-blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.article-note,
.article-tip,
.article-disclaimer {
    margin: 30px 0;
    border-radius: 0 18px 18px 0;
    padding: 21px 24px;
}

.article-note {
    border-left: 5px solid var(--brand-blue);
    background: #edf5fb;
}

.article-tip {
    border-left: 5px solid var(--accent);
    background: var(--accent-soft);
}

.article-disclaimer {
    margin-top: 54px;
    border-left: 5px solid #aab7c2;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.table-scroll {
    max-width: 100%;
    overflow-x: auto;
    margin: 28px 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(15, 61, 113, .05);
}

.article-content table {
    width: 100%;
    min-width: 670px;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.55;
}

.article-content th,
.article-content td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.article-content th {
    background: var(--brand-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.article-content tbody tr:nth-child(even) {
    background: #f7fafc;
}

.article-content tbody tr:last-child td {
    border-bottom: 0;
}

.article-faq {
    margin-top: 58px;
}

.article-faq details {
    border-top: 1px solid var(--line);
    padding: 19px 0;
}

.article-faq details:last-child {
    border-bottom: 1px solid var(--line);
}

.article-faq summary {
    position: relative;
    padding-right: 28px;
    color: var(--brand-navy);
    cursor: pointer;
    font-weight: 850;
    list-style: none;
}

.article-faq summary::-webkit-details-marker {
    display: none;
}

.article-faq summary::after {
    content: "+";
    position: absolute;
    top: 0;
    right: 2px;
    color: var(--brand-blue);
    font-size: 24px;
    line-height: 1;
}

.article-faq details[open] summary::after {
    content: "−";
}

.article-faq details p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 16px;
}

.related-articles {
    margin-top: 105px;
}

.related-articles .section-heading {
    max-width: none;
}

.article-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    margin-top: 80px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 16%, rgba(150, 198, 79, .24), transparent 30%),
        linear-gradient(135deg, #0b315c, var(--brand-navy));
    color: #fff;
    padding: clamp(30px, 5vw, 56px);
}

.article-cta h2 {
    max-width: 720px;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 950;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.article-cta p:not(.section-kicker) {
    max-width: 680px;
    margin-top: 16px;
    color: #c7d5e0;
    font-size: 17px;
}

.article-cta-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 1120px) {
    .article-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-preview-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .article-preview-card:last-child:nth-child(odd) {
        display: grid;
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    }

    .article-preview-card:last-child:nth-child(odd) .article-preview-image img {
        height: 100%;
        aspect-ratio: auto;
    }

    .article-preview-grid-two .article-preview-card:last-child {
        display: flex;
        grid-column: auto;
    }

    .article-preview-grid-two .article-preview-card:last-child .article-preview-image img {
        height: auto;
        aspect-ratio: 1200 / 630;
    }
}

@media (max-width: 920px) {
    .section-heading-action {
        max-width: none;
        margin-top: 18px;
    }

    .blog-hero-grid,
    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero-panel {
        max-width: 620px;
    }

    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-image {
        min-height: 0;
    }

    .blog-featured-image img {
        aspect-ratio: 1200 / 630;
    }

    .article-reading-layout {
        grid-template-columns: minmax(0, 780px);
    }

    .article-sidebar {
        position: static;
        grid-template-columns: 1fr 1fr;
    }

    .article-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .article-preview-grid,
    .article-preview-grid-two,
    .blog-card-grid {
        grid-template-columns: 1fr;
    }

    .article-preview-card:last-child:nth-child(odd),
    .article-preview-grid-two .article-preview-card:last-child {
        display: flex;
        grid-column: auto;
    }

    .article-preview-card:last-child:nth-child(odd) .article-preview-image img {
        height: auto;
        aspect-ratio: 1200 / 630;
    }

    .blog-hero {
        padding: calc(var(--header-height) + 58px) 0 68px;
    }

    .blog-hero h1 {
        font-size: clamp(47px, 14vw, 64px);
    }

    .blog-featured-content {
        padding: 27px 20px 30px;
    }

    .article-main {
        padding-top: calc(var(--header-height) + 24px);
    }

    .breadcrumbs {
        margin-bottom: 34px;
        font-size: 12px;
    }

    .article-header h1 {
        font-size: clamp(40px, 12vw, 57px);
    }

    .article-deck {
        font-size: 18px;
    }

    .article-cover {
        margin-top: 34px;
        border-radius: 23px;
    }

    .article-reading-layout {
        margin-top: 46px;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .article-content {
        font-size: 17px;
        line-height: 1.75;
    }

    .article-content h2 {
        margin-top: 46px;
        font-size: 32px;
    }

    .article-note,
    .article-tip,
    .article-disclaimer {
        padding: 18px;
    }

    .related-articles {
        margin-top: 78px;
    }

    .related-articles .section-heading-row .button {
        width: 100%;
        margin-top: 18px;
    }

    .article-cta-actions {
        display: grid;
        width: 100%;
    }

    .article-cta-actions .button {
        width: 100%;
    }
}

/* Keep the editorial text visible when the featured illustration is cropped on wide screens. */
.blog-featured-image img {
    object-position: left center;
}

/* Layout refinements: article readability and one-form adaptive mode */
.question-mobile-actions {
    display: none;
}

.article-header {
    max-width: 980px;
}

.article-header h1 {
    max-width: 960px;
    margin-inline: auto;
    font-size: clamp(46px, 5.4vw, 72px);
    letter-spacing: -.048em;
    line-height: 1.04;
    text-wrap: balance;
}

.article-deck {
    max-width: 780px;
    line-height: 1.62;
    text-wrap: pretty;
}

.article-cover {
    max-width: 1120px;
    margin-inline: auto;
}

.article-reading-layout {
    grid-template-columns: minmax(220px, 240px) minmax(0, 760px);
    gap: clamp(38px, 5vw, 70px);
    margin-top: 64px;
}

.article-content {
    width: 100%;
    max-width: 760px;
    overflow-wrap: break-word;
}

.article-content > p:first-child {
    color: #314f69;
    font-size: 20px;
    line-height: 1.72;
}

.article-content h2,
.article-content h3 {
    text-wrap: balance;
}

.article-content h2 {
    margin-top: 54px;
}

.toc-card ol {
    gap: 11px;
    font-size: 13px;
    line-height: 1.45;
}

.toc-card a {
    display: inline-block;
}

.table-scroll {
    scrollbar-color: var(--brand-blue) #edf3f7;
    scrollbar-width: thin;
}

.table-scroll::-webkit-scrollbar {
    height: 9px;
}

.table-scroll::-webkit-scrollbar-track {
    background: #edf3f7;
}

.table-scroll::-webkit-scrollbar-thumb {
    border: 2px solid #edf3f7;
    border-radius: 99px;
    background: var(--brand-blue);
}

@media (max-width: 1120px) {
    .article-reading-layout {
        grid-template-columns: minmax(0, 780px);
        gap: 0;
    }

    .article-sidebar {
        position: static;
        grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
        width: 100%;
        max-width: 780px;
        margin: 0 auto 44px;
    }

    .article-content {
        margin-inline: auto;
    }
}

@media (max-width: 920px) {
    /* On adaptive layouts the primary sign-up form is enough. */
    .question-section .compact-form {
        display: none;
    }

    .question-mobile-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 24px;
    }

    .question-mobile-actions .button {
        width: 100%;
    }

    .article-main {
        padding-bottom: 92px;
    }

    .article-header h1 {
        font-size: clamp(43px, 7.2vw, 62px);
    }

    .article-sidebar {
        display: block;
        max-width: 760px;
        margin-bottom: 38px;
    }

    .article-sidebar .sidebar-card {
        display: none;
    }

    .toc-card {
        padding: 20px 22px;
    }

    .toc-card ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 30px;
    }
}

@media (max-width: 680px) {
    .question-mobile-actions {
        grid-template-columns: 1fr;
    }

    .article-main {
        padding: calc(var(--header-height) + 18px) 0 76px;
    }

    .breadcrumbs {
        gap: 5px 8px;
        margin-bottom: 30px;
        line-height: 1.45;
    }

    .article-header {
        text-align: left;
    }

    .article-meta-centered {
        justify-content: flex-start;
    }

    .article-header h1 {
        max-width: none;
        margin-top: 18px;
        margin-inline: 0;
        font-size: clamp(34px, 10.4vw, 46px);
        letter-spacing: -.038em;
        line-height: 1.07;
    }

    .article-deck {
        margin-top: 20px;
        font-size: 17px;
        line-height: 1.6;
    }

    .article-byline {
        width: 100%;
        margin-top: 22px;
    }

    .article-cover {
        margin-top: 28px;
        border-radius: 18px;
        box-shadow: 0 16px 42px rgba(15, 61, 113, .13);
    }

    .article-reading-layout {
        margin-top: 35px;
    }

    .article-sidebar {
        display: none;
    }

    .article-content {
        font-size: 17px;
        line-height: 1.72;
    }

    .article-content > p:first-child {
        font-size: 18px;
        line-height: 1.7;
    }

    .article-content h2 {
        margin: 43px 0 16px;
        font-size: clamp(28px, 8.7vw, 34px);
        letter-spacing: -.032em;
        line-height: 1.14;
    }

    .article-content h3 {
        margin-top: 31px;
        font-size: 22px;
        line-height: 1.2;
    }

    .article-content ul,
    .article-content ol {
        gap: 10px;
        margin: 17px 0 22px;
        padding-left: 21px;
    }

    .article-note,
    .article-tip,
    .article-disclaimer {
        margin: 25px 0;
        border-radius: 0 14px 14px 0;
        padding: 17px 16px;
    }

    .article-disclaimer {
        margin-top: 42px;
    }

    /* Training plans become stacked cards instead of a cramped horizontal table. */
    .table-scroll {
        overflow: visible;
        margin: 23px 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .article-content table,
    .article-content tbody,
    .article-content tr,
    .article-content td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .article-content thead {
        display: none;
    }

    .article-content tbody {
        display: grid;
        gap: 12px;
    }

    .article-content tr {
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 8px 24px rgba(15, 61, 113, .055);
    }

    .article-content td {
        display: grid;
        grid-template-columns: minmax(88px, .38fr) minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        padding: 12px 14px;
        border-bottom: 1px solid var(--line);
        background: transparent !important;
        font-size: 14px;
        line-height: 1.5;
    }

    .article-content td::before {
        content: attr(data-label);
        color: var(--brand-navy);
        font-size: 10px;
        font-weight: 900;
        letter-spacing: .045em;
        line-height: 1.35;
        text-transform: uppercase;
    }

    .article-content td:first-child {
        background: #f4f8fb !important;
    }

    .article-content tr:last-child td,
    .article-content td:last-child {
        border-bottom: 0;
    }

    .article-faq {
        margin-top: 48px;
    }

    .article-faq details {
        padding: 17px 0;
    }

    .related-articles {
        margin-top: 70px;
    }

    .article-preview-body {
        padding: 21px 18px 23px;
    }

    .article-preview-card h2,
    .article-preview-card h3 {
        font-size: 23px;
    }

    .article-cta {
        gap: 27px;
        margin-top: 58px;
        border-radius: 22px;
        padding: 28px 20px;
    }

    .article-cta h2 {
        font-size: clamp(31px, 9vw, 40px);
        line-height: 1.08;
    }

    .blog-hero {
        padding: calc(var(--header-height) + 42px) 0 58px;
    }

    .blog-hero h1 {
        font-size: clamp(40px, 12vw, 54px);
        line-height: 1.02;
    }

    .blog-hero-grid > div:first-child > p:not(.eyebrow) {
        margin-top: 21px;
        font-size: 17px;
        line-height: 1.62;
    }

    .blog-hero-panel {
        border-radius: 22px;
        padding: 26px 22px;
    }

    .blog-hero-number {
        font-size: 70px;
    }

    .blog-featured-card {
        border-radius: 22px;
    }

    .blog-featured-content h2 {
        font-size: clamp(31px, 9vw, 41px);
    }
}

@media (max-width: 390px) {
    .article-content td {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .article-meta-row {
        gap: 7px 9px;
    }
}

@media (max-width: 1024px) {
    .question-section .compact-form {
        display: none;
    }

    .question-mobile-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 24px;
    }

    .question-mobile-actions .button {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .question-mobile-actions {
        grid-template-columns: 1fr;
    }
}

/* Small-screen guard for long legal headings and the compact legal header. */
.legal-document {
    min-width: 0;
    overflow-wrap: break-word;
}

@media (max-width: 680px) {
    .legal-header .nav-shell {
        gap: 10px;
    }

    .legal-header .button-small {
        min-height: 40px;
        padding: 9px 11px;
        font-size: 12px;
        white-space: nowrap;
    }

    .legal-document h1 {
        font-size: clamp(29px, 9vw, 38px);
        overflow-wrap: anywhere;
        hyphens: auto;
        line-height: 1.08;
    }
}

/* Small-screen legal page safeguards */
.legal-document,
.legal-document p,
.legal-document h1,
.legal-document h2,
.legal-document a {
    overflow-wrap: anywhere;
}

@media (max-width: 680px) {
    .legal-header .nav-shell {
        min-height: 68px;
        gap: 12px;
    }

    .legal-header .brand {
        flex: 1 1 auto;
    }

    .legal-header .brand img.brand-logo-header {
        width: 116px;
        max-width: 100%;
    }

    .legal-header .button-small {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 9px 12px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .legal-header .nav-shell {
        gap: 8px;
    }

    .legal-header .brand img.brand-logo-header {
        width: 102px;
    }

    .legal-header .button-small {
        padding: 8px 9px;
        font-size: 11px;
    }
}
