:root {
    /* Brand colors */
    --c-primary: #efcea3;
    --c-secondary: #b18a74;
    --c-highlight-text: #f2e2d6;

    /* Neutral colors */
    --c-white: #ffffff;
    --c-black: #000000;

    /* Typography */
    --ff-neulis: "neulis-sans", sans-serif;
    --ff-neulis-hairline: "neulis-sans-hairline", sans-serif;

    /* UI surface/text defaults */
    --c-background: var(--c-white);
    --c-surface: var(--c-primary);
    --c-text: var(--c-black);
    --c-text-muted: var(--c-secondary);
    --c-border: var(--c-secondary);
}

body {
    font-family: var(--ff-neulis);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    background-color: var(--c-background);
    color: var(--c-text);
    padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
strong,
input,
textarea,
button {
    font-family: var(--ff-neulis);
    color: inherit;
}

p,
a,
li,
span,
label,
input,
textarea,
button {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 2.986rem;
}

h2 {
    font-size: 2.488rem;
}

h3 {
    font-size: 2.074rem;
}

h4 {
    font-size: 1.728rem;
}

h5 {
    font-size: 1.44rem;
}

h6 {
    font-size: 1.2rem;
}

.section-h-100 {
    height: 100%;
    min-height: 100vh;
}

/* navigation */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    width: 100%;
    background-color: var(--c-highlight-text);
}

.site-nav {
    width: 100%;
}

.site-nav-desktop {
    display: flex;
}

.site-nav-list {
    display: flex;
}

.site-nav-button {
    display: inline-block;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: var(--c-highlight-text);
    display: none;
}

.mobile-menu-nav {
    width: 100%;
    height: 100%;
}

.mobile-menu-list {
    width: 100%;
    height: 100%;
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    body {
        padding-top: 0;
    }

    .site-header {
        left: auto;
        right: 0;
        width: auto;
        background-color: transparent;
    }

    .site-logo {
        display: none;
    }

    .site-nav-desktop {
        display: none;
    }

    .site-nav {
        width: auto;
        padding: 12px 16px;
        justify-content: flex-end;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    }

    .mobile-menu.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* content */

.coming-soon-wrap {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 20%, rgba(242, 226, 214, 0.9) 0%, rgba(242, 226, 214, 0) 48%),
        radial-gradient(circle at 86% 78%, rgba(239, 206, 163, 0.85) 0%, rgba(239, 206, 163, 0) 46%),
        linear-gradient(145deg, #ffffff 0%, #fdf8f3 50%, #fffdfb 100%);
}

.coming-soon-wrap::before,
.coming-soon-wrap::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(177, 138, 116, 0.35);
    border-radius: 999px;
    pointer-events: none;
}

.coming-soon-wrap::before {
    width: 440px;
    height: 440px;
    top: -210px;
    right: -130px;
}

.coming-soon-wrap::after {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -80px;
}

.coming-soon {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    padding: clamp(28px, 5vw, 56px);
    border-radius: 26px;
    border: 1px solid rgba(177, 138, 116, 0.4);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 64px rgba(177, 138, 116, 0.22);
    backdrop-filter: blur(4px);
    text-align: center;
    animation: comingSoonGlow 8s ease-in-out infinite;
}

.coming-soon-logo {
    display: block;
    width: clamp(86px, 20vw, 132px);
    height: auto;
    margin: 0 auto 20px;
    filter: drop-shadow(0 10px 24px rgba(177, 138, 116, 0.25));
}

.coming-soon-kicker {
    margin-bottom: 14px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-secondary);
}

.coming-soon h1 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.08;
    color: var(--c-black);
}

.coming-soon-copy {
    max-width: 34ch;
    margin: 0 auto 28px;
    font-size: clamp(1.04rem, 2.5vw, 1.25rem);
    color: var(--c-secondary);
}

.coming-soon-contact {
    margin: 0;
    padding: 16px 18px;
    border: 1px solid rgba(177, 138, 116, 0.35);
    border-radius: 16px;
    background: rgba(242, 226, 214, 0.42);
    font-size: 1.02rem;
    color: var(--c-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.coming-soon-mail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 0;
    background: var(--c-secondary);
    color: var(--c-white);
    font-weight: 600;
    text-decoration: none;
    box-shadow: none;
    transition: background-color 0.2s ease;
}

.coming-soon-mail-btn:hover {
    background: #9f7b67;
}

.coming-soon-mail-btn:focus-visible {
    outline: 2px solid var(--c-secondary);
    outline-offset: 3px;
}

@keyframes comingSoonGlow {
    0%,
    100% {
        box-shadow: 0 24px 64px rgba(177, 138, 116, 0.22);
    }

    50% {
        box-shadow: 0 30px 76px rgba(177, 138, 116, 0.34);
    }
}

@media (max-width: 700px) {
    .coming-soon-wrap {
        padding: 16px;
    }

    .coming-soon {
        border-radius: 18px;
        padding: 28px 20px;
    }

    .coming-soon-kicker {
        letter-spacing: 0.14em;
    }
}
