/* Seni Oro — coming soon page
   Palette and type lifted from the product label artwork. */

:root {
    --ink: #262b19;
    --ink-deep: #1a1e11;
    --ink-soft: #333a20;
    --gold: #cdb06e;
    --gold-light: #ecdcae;
    --gold-dim: rgba(205, 176, 110, 0.45);
    --serif-display: 'Playfair Display', 'Times New Roman', serif;
    --serif-text: 'Cormorant Garamond', 'Times New Roman', serif;
}

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

html, body {
    height: 100%;
    margin: 0;
}

body {
    background: var(--ink);
    color: var(--gold-light);
    font-family: var(--serif-text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.stage {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3rem);
    overflow: hidden;
    background:
        radial-gradient(ellipse 120% 90% at 50% 15%, var(--ink-soft) 0%, transparent 60%),
        radial-gradient(ellipse 120% 100% at 50% 100%, var(--ink-deep) 0%, transparent 55%),
        var(--ink);
}

.grain {
    position: absolute;
    inset: -10%;
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.frame {
    position: relative;
    width: min(680px, 100%);
    animation: fadeIn 900ms ease both;
}

.frame-line {
    position: absolute;
    border: 1px solid var(--gold-dim);
    pointer-events: none;
}
.frame-line--outer { inset: 12px; }
.frame-line--inner { inset: 18px; }

@media (min-width: 560px) {
    .frame-line--outer { inset: 18px; }
    .frame-line--inner { inset: 26px; }
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(3rem, 9vw, 5rem) clamp(1.75rem, 6vw, 3.5rem);
}

.eyebrow {
    margin: 0;
    font-size: clamp(0.8rem, 2.2vw, 1.05rem);
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.92;
    animation: fadeUp 800ms ease 100ms both;
}

.wordmark {
    margin: 0.15em 0 0;
    font-family: var(--serif-display);
    font-weight: 700;
    font-size: clamp(3.6rem, 14vw, 6.75rem);
    line-height: 1;
    letter-spacing: 0.04em;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeUp 900ms ease 200ms both;
}

.rule {
    width: 64px;
    height: 1px;
    margin: 1.4rem auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: fadeUp 900ms ease 300ms both;
}
.rule--small { width: 42px; margin: 1.1rem auto; }

.tagline {
    margin: 0;
    font-size: clamp(0.78rem, 2vw, 1rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.88;
    animation: fadeUp 900ms ease 380ms both;
}

.illustration {
    width: min(420px, 82%);
    margin: clamp(2rem, 6vw, 3rem) auto clamp(1.25rem, 4vw, 2rem);
    animation: fadeUp 1000ms ease 480ms both;
}
.villa-art { width: 100%; height: auto; overflow: visible; }

.status-headline {
    margin: 0;
    display: flex;
    gap: 0.5em;
    justify-content: center;
    font-family: var(--serif-display);
    font-size: clamp(1.7rem, 5vw, 2.5rem);
    letter-spacing: 0.05em;
    color: var(--gold-light);
    animation: fadeUp 900ms ease 560ms both;
}
.status-headline span:first-child { font-style: italic; font-weight: 500; }
.status-headline span:last-child { font-weight: 700; }

.status-copy {
    max-width: 30rem;
    margin: 0 auto;
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    line-height: 1.75;
    color: rgba(236, 220, 174, 0.82);
    animation: fadeUp 900ms ease 640ms both;
}

.notify {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 26rem;
    margin-top: clamp(1.75rem, 5vw, 2.5rem);
    border: 1px solid var(--gold-dim);
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    overflow: hidden;
    animation: fadeUp 900ms ease 720ms both;
}

.notify input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    padding: 0.95rem 1.1rem;
    font-family: var(--serif-text);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--gold-light);
}
.notify input::placeholder { color: rgba(236, 220, 174, 0.45); }
.notify input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.04);
}

.notify button {
    border: none;
    padding: 0 1.6rem;
    background: var(--gold);
    color: var(--ink-deep);
    font-family: var(--serif-text);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease;
}
.notify button:hover,
.notify button:focus-visible { background: var(--gold-light); }
.notify button:disabled { opacity: 0.6; cursor: default; }

.notify-message {
    min-height: 1.4em;
    margin: 0.85rem 0 0;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: var(--gold-light);
}
.notify-message.is-error { color: #e2a37a; }

/*
 * No forced hiding here: with appearance "interaction-only", Turnstile
 * renders nothing into this element for the vast majority of visitors and
 * it naturally takes up zero space. In the rare case Cloudflare decides an
 * interactive challenge is needed, it renders its widget into this element,
 * so it must stay visible and reachable rather than clipped off-screen.
 */
#turnstile-container:empty {
    margin: 0;
}
#turnstile-container:not(:empty) {
    margin: 1rem auto 0;
    display: flex;
    justify-content: center;
}

.turnstile-notice {
    max-width: 22rem;
    margin: 0.6rem auto 0;
    font-size: 0.66rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(236, 220, 174, 0.35);
}
.turnstile-notice a {
    color: rgba(236, 220, 174, 0.55);
    text-decoration: underline;
}
.turnstile-notice a:hover { color: var(--gold-light); }

.details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: clamp(1.75rem, 5vw, 2.25rem);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(236, 220, 174, 0.6);
    animation: fadeUp 900ms ease 800ms both;
}
.details .dot { opacity: 0.5; }

.socials {
    display: flex;
    gap: 1.15rem;
    margin-top: 1.9rem;
    animation: fadeUp 900ms ease 880ms both;
}
.socials a {
    color: var(--gold-light);
    opacity: 0.7;
    transition: opacity 200ms ease, transform 200ms ease;
}
.socials a:hover { opacity: 1; transform: translateY(-2px); }

.copyright {
    margin: 1.9rem 0 0;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: rgba(236, 220, 174, 0.42);
    animation: fadeIn 900ms ease 960ms both;
}

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

@media (prefers-reduced-motion: reduce) {
    .frame, .eyebrow, .wordmark, .rule, .tagline, .illustration,
    .status-headline, .status-copy, .notify, .details, .socials, .copyright {
        animation: none !important;
    }
}
