@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;600;700&family=Secular+One&display=swap');

:root {
    --paper: #f7f3ea;
    --ink: #1a2f34;
    --teal: #1b5a5f;
    --teal-deep: #153337;
    --sun: #e8ad57;
    --glass: rgba(255, 252, 245, 0.88);
    --line: rgba(26, 47, 52, 0.18);
    --shadow: 0 24px 45px rgba(21, 51, 55, 0.24);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: 'Assistant', sans-serif;
    background: linear-gradient(125deg, #f5e8d3 0%, #e6efe8 46%, #cfe1e4 100%);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

.backdrop {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(232, 173, 87, 0.28), transparent 52%),
        radial-gradient(circle at 84% 12%, rgba(27, 90, 95, 0.2), transparent 48%),
        linear-gradient(rgba(245, 239, 228, 0.52), rgba(245, 239, 228, 0.52)),
        url('back.avif') center/cover no-repeat;
    z-index: -1;
    transform: scale(1.04);
}

.hero {
    width: min(1040px, calc(100% - 2rem));
    margin: 3.3rem auto 1.7rem;
    padding: 0.2rem 0;
    animation: reveal 0.9s ease both;
}

.brand-badge {
    width: fit-content;
    margin-bottom: 0.9rem;
    padding: 0.55rem;
    border-radius: 24px;
    border: 1px solid rgba(21, 51, 55, 0.14);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(245, 232, 211, 0.75));
    box-shadow:
        0 16px 28px rgba(21, 51, 55, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    animation: reveal 0.95s 0.06s ease both;
}

.brand-badge img {
    display: block;
    width: clamp(94px, 18vw, 132px);
    height: auto;
    border-radius: 18px;
    filter: saturate(1.08) contrast(1.02);
}

.eyebrow {
    margin: 0;
    color: var(--teal-deep);
    letter-spacing: 0.08em;
    font-size: 0.88rem;
    font-weight: 700;
}

h1 {
    margin: 0.45rem 0 0.7rem;
    font-family: 'Secular One', sans-serif;
    font-size: clamp(2rem, 6vw, 3.35rem);
    line-height: 1.08;
    color: var(--teal-deep);
    max-width: 14ch;
    text-wrap: balance;
}

.hero-text {
    margin: 0;
    max-width: 62ch;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(21, 51, 55, 0.92);
}

.page {
    width: min(1040px, calc(100% - 2rem));
    margin: 0 auto;
    padding-bottom: 2rem;
}

.card {
    background: var(--glass);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: clamp(1rem, 2vw, 1.6rem);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow);
    animation: lift 0.95s 0.12s ease both;
}

.card h2 {
    margin: 0;
    font-family: 'Secular One', sans-serif;
    font-size: clamp(1.4rem, 3.4vw, 2rem);
    color: var(--teal-deep);
}

.card-note {
    margin: 0.3rem 0 1rem;
    color: rgba(21, 51, 55, 0.75);
}

iframe {
    display: block;
    border: 0;
    border-radius: 16px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(21, 51, 55, 0.08);
}

.site-footer {
    text-align: center;
    width: min(1040px, calc(100% - 2rem));
    margin: 0 auto 2rem;
    color: rgba(21, 51, 55, 0.82);
    animation: reveal 1.2s 0.22s ease both;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lift {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 720px) {
    .hero {
        margin-top: 2.1rem;
    }

    .brand-badge {
        margin-bottom: 0.75rem;
        border-radius: 20px;
        padding: 0.45rem;
    }

    .brand-badge img {
        width: clamp(86px, 24vw, 108px);
        border-radius: 14px;
    }

    .card {
        border-radius: 20px;
    }

    iframe {
        height: 66vh;
        min-height: 470px;
    }
}