:root {
    --cream: #f7efdf;
    --cream-soft: #fffaf3;
    --milk: #eadfca;
    --espresso: #3d241b;
    --espresso-soft: rgba(61, 36, 27, 0.7);
    --sage: #315f43;
    --sage-soft: rgba(49, 95, 67, 0.12);
    --gold: #bf8b56;
    --line: rgba(61, 36, 27, 0.13);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Familjen Grotesk", Arial, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    min-height: 100%;
    background: var(--cream);
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    font-family: var(--font-body);
    color: var(--espresso);
    background:
        radial-gradient(circle at 18% 14%, rgba(191, 139, 86, 0.2), transparent 26rem),
        radial-gradient(circle at 80% 18%, rgba(49, 95, 67, 0.16), transparent 26rem),
        linear-gradient(135deg, #fff9eb 0%, var(--cream) 50%, #ead9c0 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
a {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 20;
    padding: 0.75rem 1rem;
    color: var(--cream-soft);
    text-decoration: none;
    background: var(--espresso);
    border-radius: 999px;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

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

.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        radial-gradient(circle, rgba(61, 36, 27, 0.13) 0 0.65px, transparent 0.8px),
        linear-gradient(115deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px);
    background-size: 8px 8px, 54px 54px;
    mix-blend-mode: multiply;
}

.glow {
    position: fixed;
    z-index: 0;
    width: 34rem;
    height: 34rem;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(6px);
}

.glow-top {
    top: -18rem;
    right: -10rem;
    background: radial-gradient(circle, rgba(49, 95, 67, 0.14), transparent 66%);
}

.glow-bottom {
    bottom: -17rem;
    left: -9rem;
    background: radial-gradient(circle, rgba(191, 139, 86, 0.2), transparent 68%);
}

.page-shell {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: calc(100vh - 4.25rem);
    padding: clamp(1.2rem, 4vw, 3rem);
    place-items: center;
}

.launch-card {
    position: relative;
    display: grid;
    width: min(840px, 100%);
    padding: clamp(2rem, 6vw, 4.4rem);
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(255, 250, 243, 0.92), rgba(244, 232, 210, 0.78)),
        rgba(255, 250, 243, 0.72);
    border: 1px solid var(--line);
    border-radius: clamp(1.4rem, 4vw, 2.6rem);
    box-shadow: 0 2.6rem 5rem rgba(61, 36, 27, 0.14);
    backdrop-filter: blur(18px);
}

.launch-card::before,
.launch-card::after {
    position: absolute;
    width: 18rem;
    height: 18rem;
    pointer-events: none;
    content: "";
    border: 1px solid rgba(49, 95, 67, 0.1);
    border-radius: 999px;
}

.launch-card::before {
    top: -10rem;
    left: -8rem;
}

.launch-card::after {
    right: -11rem;
    bottom: -11rem;
}

.brand-logo {
    position: relative;
    z-index: 1;
    width: min(31rem, 86vw);
    height: auto;
    margin: 0 auto clamp(1.3rem, 3vw, 2rem);
    filter: drop-shadow(0 1rem 2rem rgba(49, 95, 67, 0.12));
}

.opening-status {
    position: relative;
    z-index: 1;
    margin: 0 0 1rem;
    color: var(--sage);
    font-size: clamp(0.84rem, 1vw, 0.98rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

h1 {
    position: relative;
    z-index: 1;
    max-width: 13ch;
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.25rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.intro-copy {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    margin: 1.35rem auto 0;
    color: var(--espresso-soft);
    font-size: clamp(1.06rem, 1.6vw, 1.28rem);
    line-height: 1.62;
}

.primary-action {
    position: relative;
    z-index: 1;
    display: inline-flex;
    gap: 0.85rem;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 3.35rem;
    margin: clamp(1.7rem, 3.2vw, 2.35rem) auto 0;
    padding: 0.95rem 1.55rem 1rem;
    color: var(--cream-soft);
    cursor: pointer;
    background: var(--espresso);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 1rem 1.8rem rgba(61, 36, 27, 0.18);
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.primary-action:hover,
.primary-action:focus-visible {
    background: #2d1912;
    box-shadow: 0 1.2rem 2.2rem rgba(61, 36, 27, 0.25);
    transform: translateY(-2px);
}

.notify-message {
    position: relative;
    z-index: 1;
    max-width: 34rem;
    min-height: 1.6rem;
    margin: 1.1rem auto 0;
    color: rgba(61, 36, 27, 0.66);
    font-size: 0.98rem;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(0.35rem);
    transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

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

.site-footer {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem 1.1rem;
    color: rgba(61, 36, 27, 0.6);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 600px) {
    .page-shell {
        min-height: calc(100vh - 3.75rem);
        padding: 1rem;
    }

    .launch-card {
        padding: 1.65rem 1.25rem 1.8rem;
    }

    .brand-logo {
        width: min(20rem, 86vw);
    }

    h1 {
        max-width: 10.5ch;
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .primary-action {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
