:root {
    --blue: #447bc3;
    --blue-bright: #178cf0;
    --blue-deep: #244d87;
    --blue-soft: #eaf5ff;
    --pink: #cc1d62;
    --pink-deep: #a71950;
    --ink: #20375f;
    --muted: #61708a;
    --line: #dbe7f2;
    --white: #ffffff;
    --off-white: #f8fbfe;
    --shadow: 0 22px 60px rgba(35, 77, 135, .14);
    --radius: 28px;
    --header-height: 94px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; }

:focus-visible {
    outline: 3px solid #ffb2d0;
    outline-offset: 4px;
}

.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;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 18px;
    border-radius: 10px;
    color: var(--white);
    background: var(--pink);
    transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.section { padding: 108px 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--pink);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 26px;
    height: 2px;
    content: "";
    background: currentColor;
}

.eyebrow-light { color: #ffd7e7; }

.section-heading { max-width: 700px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }

.section-heading h2,
.intro h2,
.club h2,
.contact h2 {
    margin-bottom: 20px;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 750;
    letter-spacing: -.035em;
}

.section-heading p,
.intro p,
.club-copy p,
.contact-copy p {
    color: var(--muted);
    font-size: 1.08rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 750;
    line-height: 1;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
    color: var(--white);
    background: var(--pink);
    box-shadow: 0 12px 30px rgba(204, 29, 98, .23);
}

.button-primary:hover { background: var(--pink-deep); }

.button-outline {
    color: var(--blue-deep);
    border-color: var(--blue);
    background: var(--white);
}

.button-outline:hover { color: var(--white); background: var(--blue); }

.button-white { color: var(--blue-deep); background: var(--white); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(68, 123, 195, .12);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 35px rgba(35, 77, 135, .07);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 250px; height: auto; }

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-left: auto;
    font-size: .92rem;
    font-weight: 700;
}

.main-nav a {
    position: relative;
    padding: 12px 0;
    color: #526681;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--pink);
    transform: scaleX(0);
    transition: transform .18s ease;
}

.main-nav a:hover { color: var(--blue-deep); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta { min-height: 46px; padding-inline: 20px; font-size: .9rem; }

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 10px;
    border: 0;
    border-radius: 50%;
    color: var(--blue-deep);
    background: var(--blue-soft);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.hero { background: #fff; }
.hero-media { position: relative; width: min(1600px, 100%); margin: 0 auto; overflow: hidden; }
.hero-media > img { width: 100%; height: auto; }

.hero-cta {
    position: absolute;
    left: 8.2%;
    top: 65%;
    min-width: 210px;
    min-height: 58px;
    font-size: 1.08rem;
}

.intro { padding: 78px 0; background: var(--off-white); }

.intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.intro h2 { margin-bottom: 0; }
.intro p { margin: 0; padding-left: 34px; border-left: 3px solid var(--pink); }

.about { position: relative; overflow: hidden; }
.about::before {
    position: absolute;
    top: 60px;
    right: -120px;
    width: 330px;
    height: 330px;
    border: 65px solid rgba(204, 29, 98, .08);
    border-radius: 50%;
    content: "";
}

.artwork {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.artwork-wide { position: relative; border-radius: 34px; }

.services-showcase { background: linear-gradient(180deg, #f2f8ff 0%, #fff 100%); }

.art-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.art-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid #dce9f5;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(35, 77, 135, .1);
    transition: transform .2s ease, box-shadow .2s ease;
}

.art-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.art-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.highlights {
    position: relative;
    color: var(--white);
    background: var(--blue-deep);
    overflow: hidden;
}

.highlights::after {
    position: absolute;
    right: -190px;
    bottom: -230px;
    width: 550px;
    height: 550px;
    border: 95px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    content: "";
}

.highlights .section-heading { position: relative; z-index: 1; }
.highlights .section-heading h2 { color: var(--white); }

.highlight-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.highlight-grid article {
    min-height: 280px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
}

.highlight-grid article:nth-child(2n) { background: rgba(204, 29, 98, .88); }

.icon-badge {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 32px;
    border-radius: 50%;
    color: var(--blue-deep);
    background: var(--white);
    font-size: .86rem;
    font-weight: 850;
}

.highlight-grid h3 { margin-bottom: 13px; font-size: 1.35rem; }
.highlight-grid p { margin: 0; color: rgba(255,255,255,.8); }

.club { overflow: hidden; }

.club-grid {
    display: grid;
    grid-template-columns: .76fr 1.24fr;
    gap: 65px;
    align-items: center;
}

.club-copy p { margin-bottom: 30px; }

.digital { background: var(--off-white); }

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

.digital-grid article {
    position: relative;
    min-height: 290px;
    padding: 38px 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: var(--white);
    box-shadow: 0 14px 38px rgba(35, 77, 135, .07);
}

.digital-grid article::after {
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    border: 30px solid rgba(23, 140, 240, .08);
    border-radius: 50%;
    content: "";
}

.step-icon {
    display: block;
    margin-bottom: 42px;
    color: var(--pink);
    font-size: 1.05rem;
    font-weight: 850;
}

.digital-grid h3 { color: var(--blue-deep); font-size: 1.45rem; }
.digital-grid p { margin: 0; color: var(--muted); }

.how { color: var(--white); background: linear-gradient(120deg, var(--blue) 0%, var(--blue-bright) 100%); }

.how-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.how .section-heading { margin: 0; }
.how .section-heading h2, .how .section-heading p { color: var(--white); }
.how .section-heading p { opacity: .82; }

.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { position: relative; display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding-bottom: 36px; }
.timeline li:not(:last-child)::after { position: absolute; top: 57px; bottom: 4px; left: 29px; width: 2px; content: ""; background: rgba(255,255,255,.35); }
.timeline li > span { width: 60px; height: 60px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(255,255,255,.14); font-weight: 850; }
.timeline h3 { margin: 3px 0 8px; font-size: 1.35rem; }
.timeline p { margin: 0; color: rgba(255,255,255,.8); }

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

.commitment-grid article {
    padding: 38px;
    border-radius: 26px;
    background: var(--blue-soft);
}

.commitment-grid article:nth-child(2) { background: #fdeaf2; }
.commitment-grid article:nth-child(3) { background: #e9f7ff; }

.commitment-grid article > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 52px;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    font-weight: 850;
}

.commitment-grid article:nth-child(2) > span { background: var(--pink); }
.commitment-grid h3 { font-size: 1.45rem; color: var(--blue-deep); }
.commitment-grid p { margin: 0; color: var(--muted); }

.faq { background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.faq .section-heading { position: sticky; top: calc(var(--header-height) + 30px); margin: 0; }

.accordion { display: grid; gap: 14px; }
.accordion details { border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.accordion summary { position: relative; padding: 24px 66px 24px 26px; cursor: pointer; color: var(--blue-deep); font-weight: 750; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { position: absolute; top: 19px; right: 20px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; content: "+"; color: var(--pink); background: #fdeaf2; font-size: 1.35rem; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { margin: 0; padding: 0 26px 25px; color: var(--muted); }

.contact { color: var(--white); background: var(--blue-deep); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.contact h2, .contact-copy p { color: var(--white); }
.contact-copy p { opacity: .8; }

.contact-list { display: grid; gap: 8px; margin-top: 35px; font-style: normal; }
.contact-list a { text-decoration: underline; text-underline-offset: 4px; }

.contact-form {
    display: grid;
    gap: 21px;
    padding: 40px;
    border-radius: 28px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .16);
}

.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--blue-deep); font-size: .9rem; font-weight: 750; }
.field label span { color: var(--muted); font-weight: 500; }
.field input, .field textarea { width: 100%; border: 1px solid #cbd9e7; border-radius: 12px; padding: 13px 15px; color: var(--ink); background: #fbfdff; transition: border .15s ease, box-shadow .15s ease; }
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus { border-color: var(--blue); outline: 0; box-shadow: 0 0 0 4px rgba(68,123,195,.13); }
.field [aria-invalid="true"] { border-color: #b3194e; }
.field-error { color: #a31646; font-size: .82rem; }
.form-success, .form-error-summary { padding: 14px 16px; border-radius: 12px; font-weight: 650; }
.form-success { color: #11613b; background: #e8f8ef; }
.form-error-summary { color: #92183f; background: #fde9ef; }
.contact-form .button { justify-self: start; }

.site-footer { padding-top: 76px; color: #dce9f8; background: #172e52; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .65fr .9fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-brand img { width: 245px; padding: 12px; border-radius: 12px; background: var(--white); }
.footer-brand p { max-width: 300px; margin-top: 22px; }
.site-footer h2 { margin-bottom: 18px; color: var(--white); font-size: 1rem; }
.site-footer p { color: #aebed3; }
.site-footer nav { display: grid; gap: 9px; }
.site-footer nav a:hover, .footer-link:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.footer-link { color: #ff9fc4; font-weight: 750; }

.newsletter-placeholder { min-height: 48px; display: flex; align-items: center; padding: 0 17px; border: 1px dashed rgba(255,255,255,.35); border-radius: 12px; color: #aebed3; background: rgba(255,255,255,.04); }
.newsletter-placeholder span { font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; }

.footer-bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #91a5bf; font-size: .88rem; }
.footer-bottom .social-links { display: flex; grid-auto-flow: column; gap: 18px; }

@media (max-width: 1100px) {
    .brand img { width: 210px; }
    .main-nav { gap: 17px; font-size: .86rem; }
    .header-cta { display: none; }
    .highlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .highlight-grid article { min-height: 240px; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    :root { --header-height: 78px; }
    .container { width: min(100% - 38px, 760px); }
    .section { padding: 82px 0; }
    .header-inner { justify-content: space-between; }
    .brand img { width: 200px; }
    .menu-toggle { display: block; order: 3; }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        height: calc(100dvh - var(--header-height));
        display: none;
        align-content: start;
        justify-content: stretch;
        gap: 0;
        margin: 0;
        padding: 28px 24px;
        overflow-y: auto;
        background: var(--white);
        visibility: hidden;
    }

    .main-nav.is-open { display: grid; visibility: visible; }
    .main-nav a { padding: 17px 8px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
    .main-nav a::after { display: none; }
    .hero-cta { min-width: 170px; min-height: 48px; font-size: .92rem; }
    .intro-grid, .club-grid, .how-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .intro p { padding: 0; border: 0; }
    .digital-grid { grid-template-columns: 1fr; }
    .digital-grid article { min-height: auto; }
    .faq .section-heading { position: static; }
    .artwork-wide { border-radius: 22px; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, 560px); }
    .section { padding: 68px 0; }
    .brand img { width: 184px; }
    .section-heading { margin-bottom: 35px; }
    .section-heading h2, .intro h2, .club h2, .contact h2 { font-size: clamp(1.85rem, 9vw, 2.6rem); }

    .hero-media { padding-bottom: 78px; }
    .hero-media > img { width: 118%; max-width: none; margin-left: -9%; }
    .hero-cta { top: auto; right: 20px; bottom: 18px; left: 20px; width: auto; }

    .intro { padding: 58px 0; }
    .intro-grid { gap: 25px; }
    .art-grid { display: flex; gap: 16px; margin-inline: -14px; padding: 4px 14px 22px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
    .art-card { flex: 0 0 88%; border-radius: 18px; scroll-snap-align: center; }
    .highlight-grid { grid-template-columns: 1fr; }
    .highlight-grid article { min-height: auto; }
    .club-grid { gap: 38px; }
    .digital-grid { gap: 16px; }
    .digital-grid article, .commitment-grid article { padding: 30px 25px; }
    .commitment-grid { grid-template-columns: 1fr; gap: 16px; }
    .commitment-grid article > span { margin-bottom: 28px; }
    .timeline li { grid-template-columns: 50px 1fr; gap: 16px; }
    .timeline li > span { width: 48px; height: 48px; }
    .timeline li:not(:last-child)::after { top: 48px; left: 23px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 26px 20px; }
    .contact-form .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { min-height: 110px; flex-direction: column; justify-content: center; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
