:root {
    --color-blue-soft: #A6CAE9;
    --color-pink-soft: #EBC6BD;
    --color-gray: #6E7783;
    --color-dark: #2F3440;
    --color-white: #FFFFFF;
    --color-bg: #FBF8F8;
    --shadow-soft: 0 24px 80px rgba(47, 52, 64, 0.12);
    --header-height: 96px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-dark);
    background: var(--color-bg);
}

.site-main {
    min-height: 100vh;
}

.container,
.footer-container,
.header-container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

/* ── Site header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(235, 198, 189, 0.35);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    min-height: var(--header-height);
    padding: 10px 0;
}

.header-logo,
.header-brand {
    justify-self: start;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    height: 95px;
    width: auto;
    display: block;
}

.header-brand img {
    height: 76px;
    width: auto;
    display: block;
}

.main-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2px;
    justify-self: center;
}

.main-nav a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: #78A9D5;
    background: rgba(166, 202, 233, 0.18);
}

.header-cta {
    justify-self: end;
    flex-shrink: 0;
    min-height: 44px;
    padding: 10px 18px;
    font-size: 14px;
    white-space: nowrap;
}

.hero {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px 24px;
    background:
        radial-gradient(circle at top right, rgba(166, 202, 233, 0.38), transparent 35%),
        radial-gradient(circle at bottom right, rgba(235, 198, 189, 0.32), transparent 38%),
        linear-gradient(135deg, #ffffff 0%, #fbf8f8 55%, rgba(235, 198, 189, 0.18) 100%);
}

.hero__content {
    max-width: 740px;
}

.hero__eyebrow,
.section-eyebrow {
    color: var(--color-pink-soft);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1.04;
    margin: 0 0 20px;
    letter-spacing: -0.04em;
    color: var(--color-dark);
}

.hero__headline,
.hero h2.hero__headline {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.2;
    margin: 0 0 24px;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--color-dark);
}

.hero__subtitle,
.lead,
.section-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-gray);
}

.hero__subtitle {
    max-width: 620px;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: all .2s ease;
}

.button--primary {
    color: var(--color-white);
    background: var(--color-blue-soft);
    box-shadow: 0 16px 40px rgba(166, 202, 233, 0.35);
}

.button--primary:hover {
    background: var(--color-pink-soft);
    transform: translateY(-2px);
}

.button--secondary {
    color: var(--color-blue-soft);
    background: var(--color-white);
    border: 1px solid rgba(166, 202, 233, 0.45);
}

.button--secondary:hover {
    border-color: var(--color-pink-soft);
    color: var(--color-pink-soft);
}

.hero__visual {
    display: flex;
    justify-content: center;
}

.hero__card {
    width: 100%;
    max-width: 520px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(235, 198, 189, 0.45);
    overflow: hidden;
}

.hero__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.hero__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.section {
    padding: 92px 0;
}

.section--white {
    background: var(--color-white);
}

.section--soft {
    background:
        radial-gradient(circle at top left, rgba(166, 202, 233, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(235, 198, 189, 0.20), transparent 30%),
        #fbf8f8;
}

.section h2,
.final-cta h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin: 0 0 22px;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.two-columns p {
    color: var(--color-gray);
    font-size: 18px;
    line-height: 1.8;
}

.timeline,
.cards-grid,
.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.timeline article,
.info-card,
.location-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(235, 198, 189, 0.38);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 16px 50px rgba(47, 52, 64, 0.055);
}

.timeline span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(166, 202, 233, 0.28);
    color: #78A9D5;
    font-weight: 900;
    margin-bottom: 16px;
}

.timeline h3,
.info-card h3,
.location-card h3 {
    font-size: 23px;
    margin: 0 0 10px;
}

.timeline p,
.info-card p,
.location-card p,
.faq-list p {
    color: var(--color-gray);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.check-list {
    display: grid;
    gap: 12px;
}

.check-list p {
    margin: 0;
    padding: 16px 18px;
    background: var(--color-white);
    border-radius: 18px;
    border: 1px solid rgba(235, 198, 189, 0.38);
}

.location-card a {
    display: inline-flex;
    margin-top: 18px;
    color: #78A9D5;
    font-weight: 800;
    text-decoration: none;
}

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 38px;
}

.faq-list details {
    background: var(--color-white);
    border: 1px solid rgba(235, 198, 189, 0.38);
    border-radius: 22px;
    padding: 22px 24px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
    font-size: 18px;
}

.faq-list p {
    margin-top: 14px;
}

.final-cta {
    padding: 100px 0;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(166, 202, 233, 0.25), transparent 30%),
        radial-gradient(circle at bottom right, rgba(235, 198, 189, 0.30), transparent 36%),
        linear-gradient(135deg, #ffffff 0%, #fbf8f8 100%);
}

.final-cta .container {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta h2 {
    margin-bottom: 18px;
}

.final-cta p {
    max-width: 560px;
    margin: 0 0 36px;
    color: var(--color-gray);
    font-size: 20px;
    line-height: 1.7;
}

.site-footer {
    padding: 52px 0 36px;
    text-align: center;
    background: var(--color-white);
    border-top: 1px solid rgba(235, 198, 189, 0.35);
}

.site-footer h3 {
    margin: 0 0 8px;
    font-size: 30px;
}

.site-footer p {
    margin: 0 0 24px;
    color: var(--color-gray);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
    margin-bottom: 26px;
}

.footer-links span,
.footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    font-weight: 700;
}

.footer-separator {
    color: rgba(110, 119, 131, 0.45);
    font-weight: 400;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--color-pink-soft);
}

.site-footer small {
    color: var(--color-gray);
}

@media (min-width: 760px) {
    .hero__actions {
        flex-direction: row;
    }

    .timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .main-nav {
        display: flex;
    }

    .hero {
        grid-template-columns: 1.1fr 0.9fr;
        padding: 80px;
    }

    .two-columns {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: start;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container,
    .footer-container,
    .header-container {
        max-width: 1180px;
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero {
        padding: 64px 24px 72px;
    }
}

@media (max-width: 899px) {
    .header-container {
        grid-template-columns: 1fr auto;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 72px;
    }

    .container,
    .footer-container,
    .header-container {
        width: min(100% - 32px, 1120px);
    }

    .header-container {
        min-height: var(--header-height);
        padding: 8px 0;
    }

    .header-logo img,
    .header-brand img {
        height: 58px;
    }

    .header-cta {
        min-height: 40px;
        padding: 8px 14px;
        font-size: 13px;
    }

    .hero {
        padding: 40px 18px 48px;
        min-height: auto;
    }

    .section {
        padding: 64px 0;
    }

    .hero h1 {
        font-size: clamp(40px, 10vw, 48px);
    }

    .hero__headline,
    .hero h2.hero__headline {
        font-size: clamp(22px, 5vw, 26px);
    }

    .hero__subtitle,
    .lead,
    .section-intro {
        font-size: 18px;
    }

    .final-cta {
        padding: 72px 0;
    }

    .final-cta p {
        font-size: 18px;
        margin-bottom: 28px;
    }
}
