:root {
    --bg: #f5f7fc;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --surface-dark: #182556;
    --text: #172033;
    --muted: #5d677d;
    --line: rgba(45, 61, 138, 0.12);
    --line-strong: rgba(45, 61, 138, 0.2);
    --brand: #2d3d8a;
    --brand-2: #5366c7;
    --brand-soft: rgba(83, 102, 199, 0.14);
    --shadow: 0 20px 55px rgba(17, 30, 77, 0.12);
    --shadow-soft: 0 10px 26px rgba(17, 30, 77, 0.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --max: 1240px;
    --header-h: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(83, 102, 199, 0.18), transparent 22%),
        linear-gradient(180deg, #f8faff 0%, #f3f6fc 48%, #eef2fa 100%);
    line-height: 1.65;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.shell {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(45, 61, 138, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 32px rgba(17, 30, 77, 0.09);
}

.site-header__inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand,
.footer-brand {
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.brand {
    font-size: 0.95rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand__logo {
    width: 22px;
    height: 30px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand span {
    color: #fff;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.header-nav a,
.mobile-menu a,
.section-nav__link,
.mobile-section-nav a {
    border-radius: 999px;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.header-nav a {
    padding: 10px 14px;
    font-size: 0.95rem;
    color: var(--muted);
}

.header-nav a:hover,
.header-nav a.is-active {
    background: var(--brand-soft);
    color: var(--brand);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: var(--surface-strong);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(45, 61, 138, 0.08);
    background: rgba(245, 247, 252, 0.96);
}

.mobile-menu__inner {
    display: grid;
    gap: 10px;
    padding: 0 0 20px;
}

.mobile-menu a {
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
}

.mobile-menu a:hover,
.mobile-menu a.is-active {
    background: var(--brand-soft);
    color: var(--brand);
    border-color: rgba(45, 61, 138, 0.22);
}

.section {
    padding: 32px 0;
}

.hero {
    padding-top: 34px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.section-nav {
    position: sticky;
    top: calc(var(--header-h) + 26px);
    display: grid;
    gap: 14px;
}

.back-link,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 700;
}

.back-link {
    padding: 14px 18px;
    background: var(--brand);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.back-link:hover {
    transform: translateY(-1px);
}

.back-link__icon {
    font-size: 1.05rem;
}

.section-nav__panel,
.glass-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.section-nav__panel {
    border-radius: var(--radius-xl);
    padding: 22px;
    display: grid;
    gap: 10px;
}

.section-nav__eyebrow,
.eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand);
}

.section-nav__link {
    padding: 10px 12px;
    color: var(--muted);
    border: 1px solid transparent;
}

.section-nav__link:hover,
.section-nav__link.is-active,
.mobile-section-nav a:hover,
.mobile-section-nav a.is-active {
    color: var(--brand);
    background: var(--brand-soft);
    border-color: rgba(45, 61, 138, 0.16);
}

.hero__content {
    display: grid;
    gap: 22px;
}

.mobile-section-nav {
    display: none;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.mobile-section-nav::-webkit-scrollbar {
    display: none;
}

.mobile-section-nav a {
    padding: 11px 14px;
    white-space: nowrap;
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    color: var(--muted);
}

.hero-card {
    border-radius: 32px;
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 26px;
}

.hero-copy,
.content-panel,
.story-card,
.reflection-panel,
.feature-card,
.two-column-card,
.stat-card,
.cta-band__inner,
.checklist-card {
    position: relative;
}

.hero-copy h1,
.section-heading h2,
.two-column-card h2,
.content-panel h2,
.fashion-panel h2,
.story-card h2,
.reflection-panel h2,
.cta-band__inner h2 {
    margin: 10px 0 0;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-copy h1 {
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    max-width: 12ch;
}

.hero-subtitle {
    margin: 18px 0 0;
    font-size: 1.18rem;
    font-weight: 600;
    color: #2f3950;
    max-width: 42rem;
}

.hero-text,
.section-heading p,
.two-column-card p,
.content-panel p,
.story-card p,
.reflection-copy p,
.fashion-panel__copy p,
.fashion-footnote,
.feature-card p,
.checklist-card p,
.stat-label,
.footer-copy,
.footer-meta {
    color: var(--muted);
}

.hero-text {
    margin: 14px 0 0;
    max-width: 40rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn {
    min-height: 50px;
    padding: 0 20px;
    font-size: 0.96rem;
}

.btn--primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(45, 61, 138, 0.24);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand);
    border: 1px solid rgba(45, 61, 138, 0.18);
}

.btn--large {
    min-height: 56px;
    padding-inline: 26px;
}

.pull-quote {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 28px 0 0;
}

.pull-quote__line {
    width: 4px;
    align-self: stretch;
    min-height: 56px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand), rgba(83, 102, 199, 0.2));
}

.pull-quote p {
    margin: 0;
    color: #4f5a74;
    font-size: 1.05rem;
    font-weight: 700;
}

.pull-quote--compact {
    margin-top: 18px;
}

.card-media {
    overflow: hidden;
    border-radius: 28px;
    min-height: 100%;
    background: #dde4f7;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.stat-card {
    border-radius: 24px;
    padding: 22px;
}

.stat-value {
    display: block;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.96rem;
}

.story-stack {
    display: grid;
    gap: 24px;
}

.section-heading {
    max-width: 760px;
}

.section-heading h2,
.two-column-card h2,
.content-panel h2,
.story-card h2,
.reflection-panel h2,
.cta-band__inner h2,
.fashion-panel h2 {
    font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    border-radius: 24px;
    padding: 26px;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    font-weight: 800;
}

.feature-card h3,
.checklist-card h3,
.mini-grid h3,
.fashion-card h3 {
    margin: 18px 0 8px;
    font-size: 1.15rem;
}

.two-column-card,
.reflection-panel,
.cta-band__inner {
    border-radius: 32px;
    padding: 28px;
}

.two-column-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 24px;
}

.checklist-card {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(83, 102, 199, 0.08) 0%, rgba(83, 102, 199, 0.02) 100%);
    border: 1px solid rgba(45, 61, 138, 0.12);
}

.checklist {
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.checklist li {
    position: relative;
    padding-left: 30px;
    color: var(--text);
}

.checklist li::before {
    content: '•';
    position: absolute;
    left: 10px;
    top: -1px;
    color: var(--brand);
    font-size: 1.25rem;
    line-height: 1;
}

.supporting-note {
    margin-top: 16px;
    font-weight: 600;
}

.split-showcase {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: stretch;
}

.media-tall {
    min-height: 560px;
}

.content-panel {
    border-radius: 32px;
    padding: 28px;
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.mini-grid article {
    padding: 18px;
    border-radius: 22px;
    background: rgba(83, 102, 199, 0.06);
    border: 1px solid rgba(45, 61, 138, 0.08);
}

.mini-grid h3,
.mini-grid p {
    margin: 0;
}

.fashion-panel {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    border-radius: 36px;
    padding: 32px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
        linear-gradient(135deg, #1c2a62 0%, #2d3d8a 55%, #4257bf 100%);
    box-shadow: 0 24px 60px rgba(29, 42, 98, 0.3);
    display: grid;
    gap: 24px;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.72);
}

.fashion-panel__copy {
    max-width: 760px;
}

.fashion-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.fashion-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.fashion-card h3,
.fashion-card p,
.fashion-footnote,
.fashion-panel__copy p,
.fashion-panel h2 {
    color: #fff;
}

.fashion-panel__media {
    min-height: 420px;
    border-radius: 28px;
}

.fashion-footnote {
    margin: 0;
    opacity: 0.88;
}

.gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
    gap: 22px;
}

.gallery-main {
    min-height: 760px;
}

.gallery-side {
    min-height: 760px;
}

.story-card {
    border-radius: 30px;
    padding: 28px;
}

.story-card--accent {
    background: linear-gradient(180deg, rgba(83, 102, 199, 0.12), rgba(255, 255, 255, 0.88));
}

.reflection-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 26px;
}

.reflection-copy {
    display: grid;
    gap: 14px;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer {
    padding: 0 0 40px;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow-soft);
}

.footer-brand {
    margin: 0;
    font-size: 0.95rem;
}

.footer-copy,
.footer-meta {
    margin: 6px 0 0;
    font-size: 0.94rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }

    .section-nav {
        display: block;
        margin-bottom: 12px;
    }

    .mobile-section-nav {
        display: flex;
    }

    .section-nav__panel {
        display: none;
    }

    .hero-card,
    .two-column-card,
    .split-showcase,
    .reflection-panel,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-main,
    .gallery-side,
    .media-tall,
    .fashion-panel__media {
        min-height: 420px;
    }

    .feature-grid,
    .fashion-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-band__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    :root {
        --header-h: 76px;
    }

    .shell,
    .fashion-panel {
        width: min(var(--max), calc(100% - 28px));
    }

    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-menu.is-open {
        display: block;
    }

    .hero-card,
    .content-panel,
    .reflection-panel,
    .two-column-card,
    .story-card,
    .cta-band__inner,
    .fashion-panel,
    .feature-card,
    .stat-card,
    .section-nav__panel {
        padding: 22px;
    }

    .stats-grid,
    .feature-grid,
    .fashion-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 22px 0;
    }

    .hero {
        padding-top: 20px;
    }

    .hero-card {
        gap: 18px;
    }

    .brand,
    .footer-brand {
        letter-spacing: 0.18em;
    }

    .hero-subtitle {
        font-size: 1.02rem;
    }

    .pull-quote {
        align-items: flex-start;
    }

    .gallery-main,
    .gallery-side,
    .media-tall,
    .fashion-panel__media {
        min-height: 320px;
    }

    .btn,
    .back-link {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }
}
