/* ─────────────────────────────────────────────────────────────
   Weddingella — front page ("development in progress")
   Self-contained brand styling. Independent of any wedding.
   ───────────────────────────────────────────────────────────── */

:root {
    --ivory:      #faf6f0;
    --cream:      #f3ece2;
    --blush-soft: #f5e9e6;
    --sage-deep:  #6f8069;
    --gold:       #b99866;
    --gold-soft:  #d8c19a;
    --ink:        #3a352f;
    --ink-soft:   #6b6258;
    --line:       #e4dacb;
    --white:      #fffdfa;

    --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --script: 'Great Vibes', 'Cormorant Garamond', cursive;
    --sans:   'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --radius: 22px;
    --shadow: 0 26px 70px -34px rgba(90, 74, 54, 0.5);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.25rem, 5vw, 3rem);
    font-family: var(--sans);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.65;
    background:
        radial-gradient(1200px 620px at 50% -12%, var(--blush-soft), transparent 62%),
        linear-gradient(180deg, var(--ivory), var(--cream));
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

/* ── Frame ──────────────────────────────────────────────────── */
.frame {
    width: 100%;
    max-width: 560px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.4));
    box-shadow: var(--shadow);
    padding: clamp(2.25rem, 7vw, 3.75rem) clamp(1.5rem, 6vw, 3rem);
    position: relative;
}

/* thin inset keyline for a touch of refinement */
.frame::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(185, 152, 102, 0.22);
    border-radius: calc(var(--radius) - 8px);
    pointer-events: none;
}

.eyebrow {
    margin: 0 0 1.1rem;
    font-size: 0.72rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--sage-deep);
}

.wordmark {
    font-family: var(--script);
    font-size: clamp(3rem, 13vw, 4.75rem);
    line-height: 1;
    color: var(--gold);
    margin: 0 0 0.35rem;
    /* soft gold sheen */
    background: linear-gradient(100deg, var(--gold) 0%, var(--gold-soft) 45%, var(--gold) 90%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sheen 7s ease-in-out infinite;
}

.headline {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(1.85rem, 7vw, 2.6rem);
    line-height: 1.12;
    margin: 0.4rem 0 0.9rem;
    color: var(--ink);
}

.lead {
    max-width: 40ch;
    margin: 0 auto;
    font-size: 1.02rem;
    color: var(--ink-soft);
}

/* ── Divider ornament ───────────────────────────────────────── */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    color: var(--gold);
    margin: 1.6rem 0 1.35rem;
    font-size: 0.95rem;
}
.divider span {
    height: 1px;
    width: min(30%, 96px);
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}
.divider .glyph {
    display: inline-block;
    animation: float 4.5s ease-in-out infinite;
}

.foot {
    margin: 1.9rem 0 0;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

/* ── Motion ─────────────────────────────────────────────────── */
@keyframes sheen {
    0%, 100% { background-position: 0% center; }
    50%      { background-position: 100% center; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
    .wordmark, .divider .glyph { animation: none; }
}
