/* === Base === */
body {
    margin: 0;
    font-family: "Jost", "Futura", "Century Gothic", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2a2320;
    background-color: #f6eee1;
    -webkit-font-smoothing: antialiased;
}

h1,
h2 {
    font-family: "Jost", "Futura", "Century Gothic", "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
}

a {
    text-decoration: none;
}

a:focus-visible {
    outline: 2px solid #6f8f5e;
    outline-offset: 4px;
    border-radius: 12px;
}

img {
    max-width: 100%;
    height: auto;
}

.container.smalls {
    max-width: 1080px;
}

/* === Screen frame (fixed, inset 15px from every edge) === */
body {
    padding: 15px;
}

body::before {
    content: "";
    position: fixed;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 10;
    border: 2px solid #c45653;
    box-shadow: 0 0 0 15px #f6eee1;
    pointer-events: none;
}

/* === Landing wrapper === */
.landing-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 30px);
    min-height: calc(100svh - 30px);
    background-color: #f6eee1;
}

/* === Hero / Logo badge === */
.hero-area {
    padding: 30px 0 0;
}

.hero-badge {
    display: inline-block;
    font-size: 0;
    line-height: 0;
    animation: badge-in 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.badge-float {
    display: inline-block;
    animation: badge-float 7s ease-in-out 1.1s infinite;
}

.badge-float img {
    display: block;
    width: 290px;
}

.hero-ripples {
    display: block;
    width: 380px;
    max-width: 90%;
    height: auto;
    margin: 14px auto 0;
    animation: ripples-in 1.4s ease-out 0.5s both;
}

.hero-ripples path {
    fill: none;
    stroke: #8c7e6c;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0.6;
}

.hero-ripples path:nth-child(2) {
    opacity: 0.35;
}

.hero-ripples path:nth-child(3) {
    opacity: 0.2;
}

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

@keyframes badge-float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-6px) rotate(-0.6deg);
    }
}

@keyframes ripples-in {
    from {
        opacity: 0;
        transform: scaleX(0.7);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* === Launch message === */
.launch-title {
    margin: 16px 0 8px;
    font-size: 46px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0.03em;
    color: #a8413e;
}

.launch-text {
    max-width: 440px;
    margin: 0 auto;
    font-size: 17px;
    font-weight: 300;
    color: #4a423d;
}

/* === Contact === */
.contact-area {
    padding: 28px 0 26px;
}

.contact-name {
    margin-bottom: 2px;
    font-size: 24px;
    font-weight: 400;
    color: #1f1a18;
    letter-spacing: 0.02em;
}

.contact-role {
    margin-bottom: 36px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: #6b625c;
}

.contact-list li + li .contact-link {
    border-top: 1px solid rgba(42, 35, 32, 0.12);
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 22px 16px;
    color: #2a2320;
}

.contact-link:hover {
    color: #a8413e;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    color: #a8413e;
    border: 1px solid rgba(168, 65, 62, 0.45);
    border-radius: 50%;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.contact-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-icon .icon-dot {
    fill: currentColor;
    stroke: none;
}

.contact-link:hover .contact-icon,
.contact-link:focus-visible .contact-icon {
    color: #ffffff;
    background-color: #b04a45;
    border-color: #b04a45;
}

.contact-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #6b625c;
}

.contact-value {
    font-size: 17px;
    font-weight: 400;
    word-break: break-word;
}

/* === Footer === */
.footer-area {
    padding: 0 0 24px;
    font-size: 13px;
    color: #7a716b;
}

/* === Responsive === */
@media (min-width: 768px) {
    .contact-list li + li .contact-link {
        border-top: 0;
        border-left: 1px solid rgba(42, 35, 32, 0.12);
    }

    .contact-link {
        padding: 8px 16px;
    }
}

@media (max-width: 767.98px) {
    .hero-area {
        padding: 30px 0 0;
    }


    .badge-float img {
        width: 220px;
    }

    .hero-ripples {
        width: 280px;
    }

    .contact-area {
        padding: 22px 0 18px;
    }

    .launch-title {
        margin-top: 16px;
        font-size: 36px;
    }

    .launch-text {
        font-size: 16px;
    }

    .contact-name {
        font-size: 22px;
    }

    .contact-role {
        margin-bottom: 16px;
    }

    .contact-list {
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
    }

    .contact-link {
        flex-direction: row;
        align-items: center;
        padding: 14px 0;
        text-align: left;
    }

    .contact-icon {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        margin: 0 12px 0 0;
    }

    .contact-label {
        font-size: 13px;
        line-height: 1.3;
    }

    .contact-value {
        font-size: 15px;
        line-height: 1.4;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .badge-float,
    .hero-ripples {
        animation: none;
    }
}
