* { box-sizing: border-box; }

:root {
    --accent: #7a2b3e;
    --accent-soft: #f6ece9;
    --gold: #b3893f;
    --bg: #f3ede4;
    --paper: #fffdfa;
    --ink: #2c2620;
    --muted: #8a7f72;
}

body {
    margin: 0;
    font-family: "Cormorant Garamond", "Georgia", serif;
    background:
        radial-gradient(circle at 1px 1px, rgba(179,137,63,0.16) 1px, transparent 0) 0 0/28px 28px,
        var(--bg);
    color: var(--ink);
    font-size: 18px;
}

a { color: inherit; }

h1, h2, h3 { font-family: "Playfair Display", "Georgia", serif; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255,253,250,0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(179,137,63,0.18);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}
.brand {
    font-family: "Great Vibes", cursive;
    font-size: 30px;
    color: var(--accent);
}
.site-nav { display: flex; align-items: center; gap: 20px; font-size: 15px; }
.site-nav a.link { color: var(--ink); }
.site-nav a.link:hover { color: var(--accent); }

.btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 22px;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    letter-spacing: 0.3px;
    cursor: pointer;
    text-decoration: none;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(122,43,62,0.22);
}
.btn:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-ghost {
    background: transparent;
    color: var(--accent);
    box-shadow: none;
    border: 1px solid rgba(122,43,62,0.35);
}
.btn-ghost:hover { background: var(--accent-soft); }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* Hero */
.hero {
    position: relative;
    text-align: center;
    padding: 110px 24px 80px;
    overflow: hidden;
}
.hero::before {
    content: "❦";
    position: absolute;
    top: 28px; left: 50%;
    transform: translateX(-50%);
    font-size: 26px;
    color: var(--gold);
    opacity: 0.7;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 22px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: "";
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}
.hero h1 {
    font-size: 54px;
    line-height: 1.22;
    letter-spacing: -0.3px;
    margin: 0 0 20px;
    color: var(--accent);
}
.hero p.lead {
    max-width: 580px;
    margin: 0 auto 36px;
    color: #55493e;
    line-height: 1.75;
    font-size: 21px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-mock {
    position: relative;
    margin: 70px auto 0;
    max-width: 340px;
    background: var(--paper);
    border-radius: 20px;
    box-shadow: 0 40px 90px rgba(122,43,62,0.22);
    padding: 34px 26px 38px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-mock::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(179,137,63,0.4);
    border-radius: 14px;
    pointer-events: none;
}
.hero-mock::after {
    content: "";
    position: absolute;
    inset: -40px;
    z-index: -1;
    background: radial-gradient(circle, rgba(179,137,63,0.28), transparent 70%);
    filter: blur(10px);
}
.hero-mock.in-view { opacity: 1; transform: translateY(0); }
.hero-mock .orn { color: var(--gold); letter-spacing: 6px; margin-bottom: 14px; }
.hero-mock h3 { font-family: "Great Vibes", cursive; font-size: 36px; font-weight: 400; color: var(--accent); margin: 0 0 6px; }
.hero-mock .mock-date { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.hero-mock .mock-petals { margin-top: 16px; font-size: 20px; letter-spacing: 8px; opacity: 0.8; }

/* Trust bar */
.trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}
.trust-item {
    flex: 1 1 180px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 18px 20px;
    border-left: 1px solid rgba(179,137,63,0.25);
    font-size: 15px;
    color: #55493e;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.trust-item.in-view { opacity: 1; transform: translateY(0); }
.trust-item:first-child { border-left: none; }
.trust-item .icon { font-size: 20px; }
@media (max-width: 700px) {
    .trust-item { border-left: none; border-top: 1px solid rgba(179,137,63,0.25); flex: 1 1 45%; }
    .trust-item:first-child { border-top: none; }
}

/* Ornamental section divider */
.section-divider {
    text-align: center;
    color: var(--gold);
    letter-spacing: 10px;
    font-size: 18px;
    opacity: 0.7;
    padding: 0 24px 10px;
}

/* Sections */
section { padding: 70px 24px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head .eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.section-head h2 { font-size: 36px; color: var(--accent); margin: 0 0 14px; }
.section-head p { color: #55493e; line-height: 1.6; margin: 0; font-size: 17px; }

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
.step {
    background: var(--paper);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    border-top: 3px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.step.in-view { opacity: 1; transform: translateY(0); }
.step:hover { border-top-color: var(--gold); box-shadow: 0 16px 40px rgba(122,43,62,0.12); }
.step-num {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 16px;
}
.step h3 { font-size: 19px; margin: 0 0 8px; color: var(--ink); font-family: "Playfair Display", serif; }
.step p { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1080px;
    margin: 0 auto;
}
.feature {
    background: var(--paper);
    border-radius: 16px;
    padding: 28px 26px;
    border-top: 3px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.feature.in-view { opacity: 1; transform: translateY(0); }
.feature:hover { border-top-color: var(--gold); box-shadow: 0 20px 44px rgba(122,43,62,0.14); transform: translateY(-3px); }
.feature .icon { font-size: 30px; margin-bottom: 14px; display: block; }
.feature h3 { font-size: 19px; margin: 0 0 8px; color: var(--accent); font-family: "Playfair Display", serif; }
.feature p { font-size: 15px; color: #55493e; line-height: 1.65; margin: 0; }

/* CTA band */
.cta-band {
    position: relative;
    background: linear-gradient(135deg, var(--accent), #4d1a26);
    color: #fff;
    text-align: center;
    border-radius: 28px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 64px 24px;
    box-shadow: 0 30px 70px rgba(122,43,62,0.28);
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 20px;
    pointer-events: none;
}
.cta-band .orn { color: var(--gold); letter-spacing: 8px; margin-bottom: 18px; font-size: 18px; }
.cta-band h2 { color: #fff; font-size: 30px; margin: 0 0 12px; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0 0 28px; font-size: 17px; }
.cta-band .btn { background: #fff; color: var(--accent); box-shadow: 0 12px 28px rgba(0,0,0,0.22); }
.cta-band .btn:hover { opacity: 0.92; }

/* Footer */
.site-footer {
    text-align: center;
    padding: 32px 24px 44px;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    .steps { grid-template-columns: repeat(2, 1fr); }
    .features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 32px; }
    .hero p.lead { font-size: 17px; }
    .steps { grid-template-columns: 1fr; }
    .features { grid-template-columns: 1fr; }
    .site-nav { gap: 12px; }
    .site-nav .link { display: none; }
}
