/* BuyWeddingInsurance.com — site styles */
:root {
    --rose-50:#fff1f6;
    --rose-100:#ffe4ee;
    --rose-200:#fbcfe0;
    --rose-500:#db2777;
    --rose-600:#be185d;
    --rose-700:#9d174d;
    --ivory:#fdfaf6;
    --cream:#f8f1e7;
    --slate-800:#1f2937;
    --slate-700:#334155;
    --slate-600:#475569;
    --slate-500:#64748b;
    --slate-200:#e2e8f0;
    --slate-100:#f1f5f9;
    --purple-600:#9333ea;
    --purple-700:#7e22ce;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
    color: var(--slate-800);
    background: var(--ivory);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--slate-800);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 0.6em;
    font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
a { color: var(--rose-600); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* HEADER */
.site-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--rose-100);
    position: sticky; top: 0; z-index: 50;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.9rem 1.25rem; gap: 1rem;
}
.brand {
    font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700;
    color: var(--slate-800); text-decoration: none; letter-spacing: -0.01em;
}
.brand-mark { color: var(--rose-600); }
.brand-tld { color: var(--slate-500); font-weight: 500; }
.main-nav { display: flex; gap: 1.6rem; }
.main-nav a {
    color: var(--slate-700); font-size: 0.92rem; font-weight: 500;
    text-decoration: none;
}
.main-nav a.active, .main-nav a:hover { color: var(--rose-600); }
@media (max-width: 760px) {
    .main-nav { display: none; }
}

/* BUTTONS */
.btn {
    display: inline-block; padding: 0.75rem 1.4rem; border-radius: 8px;
    font-weight: 600; text-decoration: none; border: none; cursor: pointer;
    font-family: inherit; font-size: 1rem; transition: all 0.18s ease;
}
.btn-primary {
    background: var(--rose-600); color: #fff;
    box-shadow: 0 4px 14px rgba(190,24,93,0.25);
}
.btn-primary:hover { background: var(--rose-700); text-decoration: none; }
.btn-purple { background: var(--purple-600); color: #fff; box-shadow: 0 4px 14px rgba(147,51,234,0.25); }
.btn-purple:hover { background: var(--purple-700); text-decoration: none; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-lg { padding: 0.95rem 1.8rem; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* HERO */
.hero {
    background: linear-gradient(180deg, var(--rose-50) 0%, var(--ivory) 100%);
    padding: 4rem 0 3.5rem;
}
.hero-inner {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; gap: 2rem; } }
.eyebrow {
    color: var(--rose-600); font-weight: 600; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 0.6rem;
}
.lead { font-size: 1.15rem; color: var(--slate-600); max-width: 38em; }
.bullets { list-style: none; padding: 0; margin: 1.2rem 0 1.8rem; }
.bullets li {
    padding: 0.35rem 0 0.35rem 1.8rem; position: relative; color: var(--slate-700);
}
.bullets li::before {
    content: "✓"; position: absolute; left: 0; top: 0.35rem;
    color: var(--rose-600); font-weight: 700;
}
.hero-card {
    background: #fff; padding: 2rem; border-radius: 14px;
    box-shadow: 0 10px 40px rgba(190,24,93,0.08);
    border: 1px solid var(--rose-100);
}
.hero-card h3 { color: var(--rose-700); margin-top: 0; }

/* VALUE STRIP */
.value-strip { background: #fff; border-top: 1px solid var(--rose-100); border-bottom: 1px solid var(--rose-100); padding: 3rem 0; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 860px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .value-grid { grid-template-columns: 1fr; } }
.value-grid h4 {
    font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700;
    color: var(--slate-800); margin: 0 0 0.4rem;
}
.value-grid p { font-size: 0.93rem; color: var(--slate-600); margin: 0; }

/* FORMS */
.form-section { padding: 4rem 0; background: var(--cream); }
.form-card {
    background: #fff; max-width: 760px; margin: 0 auto;
    padding: 2.5rem; border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06); border: 1px solid var(--rose-100);
    position: relative;
}
.form-card h2 { margin-top: 0; color: var(--rose-700); }
.form-sub { color: var(--slate-600); margin-bottom: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 600px) { .grid-2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
    font-size: 0.85rem; font-weight: 600; color: var(--slate-700); margin-bottom: 0.3rem;
}
.field .req { color: var(--rose-600); }
.field input, .field select, .field textarea {
    padding: 0.7rem 0.85rem; border: 1px solid var(--slate-200); border-radius: 8px;
    font: inherit; color: var(--slate-800); background: #fff; transition: border 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--rose-500); box-shadow: 0 0 0 3px rgba(219,39,119,0.15);
}
.consent {
    display: flex; gap: 0.6rem; align-items: flex-start;
    background: var(--rose-50); padding: 1rem; border-radius: 8px;
    margin: 1.4rem 0 1rem; font-size: 0.85rem; color: var(--slate-700);
}
.consent input[type=checkbox] { margin-top: 0.25rem; flex-shrink: 0; }
.consent a { color: var(--rose-600); text-decoration: underline; }
.form-msg {
    padding: 0.85rem 1rem; border-radius: 8px; margin: 1rem 0;
    font-size: 0.92rem;
}
.form-msg.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.form-msg.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }

/* LEARN */
.learn { padding: 4rem 0; }
.learn h2 { text-align: center; margin-bottom: 2rem; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
@media (max-width: 860px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .card-grid { grid-template-columns: 1fr; } }
.learn-card {
    background: #fff; padding: 1.5rem; border-radius: 12px; border: 1px solid var(--rose-100);
    color: var(--slate-800); text-decoration: none; transition: transform 0.15s, box-shadow 0.15s;
    display: block;
}
.learn-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(190,24,93,0.1); text-decoration: none; }
.learn-card h3 { color: var(--rose-700); margin-top: 0; margin-bottom: 0.5rem; font-size: 1.15rem; }
.learn-card p { color: var(--slate-600); font-size: 0.92rem; margin: 0; }

/* CONTENT PAGES */
.page-header {
    background: linear-gradient(180deg, var(--rose-50) 0%, var(--ivory) 100%);
    padding: 3.5rem 0 2.5rem; text-align: center;
}
.page-header.purple { background: linear-gradient(180deg, #faf5ff 0%, var(--ivory) 100%); }
.page-header h1 { margin: 0; }
.page-header p { color: var(--slate-600); max-width: 38em; margin: 0.6rem auto 0; }
.prose { max-width: 760px; margin: 0 auto; padding: 3rem 1.25rem; }
.prose h2 { margin-top: 2rem; color: var(--rose-700); }
.prose h3 { color: var(--slate-800); margin-top: 1.6rem; }
.prose p, .prose li { color: var(--slate-700); }
.prose ul { padding-left: 1.3rem; }
.content-notice {
    background: var(--rose-50); border-left: 4px solid var(--rose-500);
    padding: 0.9rem 1.1rem; margin: 0 0 1.8rem; border-radius: 6px;
    font-size: 0.88rem; color: var(--slate-700);
}

/* THANK YOU */
.thanks {
    max-width: 700px; margin: 0 auto; padding: 5rem 1.25rem; text-align: center;
}
.thanks .check {
    width: 72px; height: 72px; border-radius: 50%; background: var(--rose-600);
    color: #fff; display: inline-flex; align-items: center; justify-content: center;
    font-size: 2.4rem; margin-bottom: 1.2rem;
}
.thanks.purple .check { background: var(--purple-600); }
.thanks h1 { color: var(--slate-800); }
.thanks .lead { font-size: 1.15rem; color: var(--slate-600); margin: 0 auto 2rem; max-width: 38em; }
.affiliate-cta {
    background: #fff; border: 2px solid var(--rose-200); padding: 2rem;
    border-radius: 14px; margin: 2rem 0;
}
.thanks.purple .affiliate-cta { border-color: #e9d5ff; }

/* FOOTER */
.site-footer {
    background: #1a1625; color: #cbd5e1; margin-top: 3rem; padding: 2.5rem 0 1.5rem;
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem; padding: 0 1.25rem;
}
.site-footer p { margin: 0; font-size: 0.85rem; color: #94a3b8; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-nav a { color: #cbd5e1; font-size: 0.85rem; text-decoration: none; }
.footer-nav a:hover { color: var(--rose-200); }
.footer-disclaimer {
    font-size: 0.78rem !important; color: #64748b !important;
    margin-top: 1.5rem !important; line-height: 1.55; max-width: 1100px;
}

/* FAQ */
.faq-item { background: #fff; border: 1px solid var(--rose-100); border-radius: 10px; padding: 1.2rem 1.4rem; margin-bottom: 0.9rem; }
.faq-item h3 { margin: 0 0 0.4rem; color: var(--rose-700); font-size: 1.1rem; }
.faq-item p { margin: 0; color: var(--slate-700); }
