:root {
    --bg: #0a1c14;
    --bg-deep: #071410;
    --gold: #cda86a;
    --gold-soft: rgba(205, 168, 106, 0.35);
    --sage: #7fa98f;
    --text: #f3efe3;
    --text-soft: #a9b8ac;
    --line: rgba(205, 168, 106, 0.22);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: radial-gradient(ellipse at top, var(--bg) 0%, var(--bg-deep) 70%);
    color: var(--text);
    font-family: "Be Vietnam Pro", "Segoe UI", "Noto Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    padding-top: calc(48px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
    position: relative;
    overflow-x: hidden;
}

/* ---------- ambient background ---------- */

.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    animation: drift 18s ease-in-out infinite alternate;
}

.glow-a {
    width: 46vw;
    height: 46vw;
    max-width: 560px;
    max-height: 560px;
    top: -14%;
    left: -12%;
    background: radial-gradient(circle, rgba(205, 168, 106, 0.30), transparent 70%);
}

.glow-b {
    width: 50vw;
    height: 50vw;
    max-width: 620px;
    max-height: 620px;
    bottom: -18%;
    right: -14%;
    background: radial-gradient(circle, rgba(63, 143, 100, 0.30), transparent 70%);
    animation-delay: -9s;
}

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(3%, 4%) scale(1.08); }
}

.grain {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- content ---------- */

.wrap {
    position: relative;
    z-index: 1;
    max-width: 640px;
    width: 100%;
    text-align: center;
}

.mark {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
    margin-bottom: 22px;
    animation: rise 0.8s ease both;
}

.eyebrow {
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 22px;
    animation: rise 0.8s ease both 0.05s;
}

h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 6vw, 54px);
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--text);
    animation: rise 0.8s ease both 0.1s;
}

.lede {
    font-size: 15.5px;
    line-height: 1.85;
    font-weight: 300;
    color: var(--text-soft);
    max-width: 460px;
    margin: 0 auto 36px;
    animation: rise 0.8s ease both 0.15s;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    animation: rise 0.8s ease both 0.2s;
}

.divider span {
    height: 1px;
    width: 56px;
    background: linear-gradient(90deg, transparent, var(--gold-soft));
}

.divider span:last-child {
    background: linear-gradient(270deg, transparent, var(--gold-soft));
}

.divider svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.features {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 44px;
    animation: rise 0.8s ease both 0.25s;
}

.feature {
    flex: 1;
    max-width: 180px;
    padding: 0 20px;
    border-left: 1px solid var(--line);
}

.feature:first-child {
    border-left: none;
}

.num {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 8px;
}

.feature h2 {
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text);
    margin: 0 0 8px;
}

.feature p {
    font-size: 12.5px;
    line-height: 1.6;
    font-weight: 300;
    color: var(--text-soft);
    margin: 0;
}

.status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    animation: rise 0.8s ease both 0.3s;
}

.status span {
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--text-soft);
}

.bar {
    width: 180px;
    height: 2px;
    background: rgba(205, 168, 106, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.bar i {
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shimmer 2.4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(340%); }
}

.contact-link {
    display: inline-block;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-soft);
    padding-bottom: 3px;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    transition: color 0.2s ease, border-color 0.2s ease;
    animation: rise 0.8s ease both 0.35s;
}

.contact-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.footer {
    font-size: 11.5px;
    color: var(--text-soft);
    opacity: 0.6;
    letter-spacing: 0.02em;
    animation: rise 0.8s ease both 0.4s;
}

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

@media (max-width: 560px) {
    .features {
        flex-direction: column;
        gap: 22px;
        align-items: center;
    }

    .feature {
        max-width: 260px;
        padding: 0 0 0 0;
        border-left: none;
        border-top: 1px solid var(--line);
        padding-top: 18px;
    }

    .feature:first-child {
        border-top: none;
        padding-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .glow, .mark, .eyebrow, h1, .lede, .divider, .features, .status, .contact-link, .footer, .bar i {
        animation: none;
    }
}
