/* ---------- Design tokens ---------- */
:root {
    --rose:        #b5485e;
    --rose-dark:   #8f3349;
    --rose-soft:   #f4d6dc;
    --cream:       #fdf6f0;
    --sand:        #f7ebd9;
    --teal:        #4a7d6d;
    --teal-soft:   #dbe7e1;
    --ink:         #2b1f24;
    --ink-soft:    #6b5a62;
    --line:        #ece1d8;
    --shadow-card: 0 2px 10px rgba(43, 31, 36, 0.06);
    --shadow-soft: 0 14px 40px rgba(43, 31, 36, 0.08);
    --radius-lg:   1rem;
    --radius-xl:   1.5rem;
}

/* ---------- Base ---------- */
html { font-size: 16px; position: relative; min-height: 100%; }
@media (min-width: 768px) { html { font-size: 17px; } }

body {
    color: var(--ink);
    background: #fff;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display-4, .display-5, .display-6 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink);
}
h1, .display-4, .display-5 { font-weight: 500; }
.lead { color: var(--ink-soft); font-weight: 400; }
p { color: var(--ink); }

a { color: var(--rose-dark); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--rose); }

/* ---------- Color helpers ---------- */
.text-rose       { color: var(--rose) !important; }
.text-teal       { color: var(--teal) !important; }
.text-ink-soft   { color: var(--ink-soft) !important; }
.bg-rose         { background-color: var(--rose) !important; }
.bg-cream        { background-color: var(--cream) !important; }
.bg-sand         { background-color: var(--sand) !important; }
.bg-teal-soft    { background-color: var(--teal-soft) !important; }

/* ---------- Buttons ---------- */
.btn {
    border-radius: 0.6rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    transition: transform .12s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-lg { padding: 0.85rem 1.6rem; font-size: 1.05rem; }
.btn:hover { transform: translateY(-1px); }

.btn-rose {
    background-color: var(--rose);
    border-color: var(--rose);
    color: #fff;
    box-shadow: 0 4px 14px rgba(181, 72, 94, 0.25);
}
.btn-rose:hover, .btn-rose:focus {
    background-color: var(--rose-dark);
    border-color: var(--rose-dark);
    color: #fff;
}

.btn-outline-secondary {
    color: var(--ink);
    border-color: var(--line);
    background: #fff;
}
.btn-outline-secondary:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--ink-soft);
}

/* ---------- Navbar ---------- */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    backdrop-filter: blur(8px);
}
.navbar-brand {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.navbar-brand .brand-mark {
    width: 28px; height: 28px;
    color: var(--rose);
}
.navbar .nav-link {
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0.9rem;
}
.navbar .nav-link:hover { color: var(--rose-dark); }
.navbar .nav-link.btn { padding: 0.5rem 1.1rem; }

/* ---------- Hero ---------- */
.hero {
    background:
        radial-gradient(circle at 85% 15%, rgba(181, 72, 94, 0.08), transparent 45%),
        radial-gradient(circle at 15% 85%, rgba(74, 125, 109, 0.07), transparent 50%),
        linear-gradient(180deg, var(--cream) 0%, #fff 100%);
    padding: 5rem 0 5.5rem;
    position: relative;
    overflow: hidden;
}
.hero--compact { padding: 4rem 0 4rem; }
.hero .pre-headline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    background: var(--rose-soft);
    color: var(--rose-dark);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.hero h1 {
    font-size: clamp(2.25rem, 4vw + 1rem, 3.6rem);
    line-height: 1.1;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}
.hero .lead { font-size: 1.15rem; max-width: 36rem; }
.hero-trust {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.75rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
}
.hero-trust .dot {
    color: var(--rose);
    font-weight: 700;
    margin-right: .35rem;
}
.hero-art {
    position: relative;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #fff 0%, var(--sand) 100%);
    box-shadow: var(--shadow-soft);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    max-height: 560px;
}
.hero-art svg { width: 100%; height: 100%; display: block; }
.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-badge {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--rose);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(181, 72, 94, 0.35);
}

/* ---------- Sections + dividers ---------- */
section { position: relative; }
.section-pad      { padding: 5rem 0; }
.section-pad-sm   { padding: 3.5rem 0; }
.section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: clamp(1.65rem, 2vw + 0.5rem, 2.4rem);
    margin-bottom: 0.75rem;
}
.section-sub { color: var(--ink-soft); max-width: 36rem; margin: 0 auto; }

/* ---------- Value strip ---------- */
.value-strip {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-card);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .value-strip { grid-template-columns: repeat(3, 1fr); padding: 1.25rem 2rem; }
}
.value-strip .vs-item { display: flex; align-items: center; gap: 0.75rem; }
.value-strip .vs-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--rose-soft);
    color: var(--rose-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.value-strip .vs-label { font-weight: 600; color: var(--ink); }
.value-strip .vs-sub { color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Service cards ---------- */
.service-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    border-color: var(--rose-soft);
}
.service-card .service-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--cream);
    color: var(--rose);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.service-card p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 0; }

/* ---------- How-it-works steps ---------- */
.step {
    position: relative;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    height: 100%;
}
.step-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--rose);
    color: #fff;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 14px rgba(181, 72, 94, 0.25);
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Area pins ---------- */
.area-pin {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.25rem 1.1rem;
    height: 100%;
    transition: border-color .15s ease, transform .15s ease;
}
.area-pin:hover { border-color: var(--teal); transform: translateY(-2px); }
.area-pin .pin-icon {
    color: var(--teal);
    width: 24px; height: 24px;
    margin-bottom: 0.5rem;
}
.area-pin h3 { font-size: 1.05rem; margin: 0 0 0.2rem; }
.area-pin .zip { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* ---------- Why-Heidi cards ---------- */
.why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
}
.why-card .check {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--teal-soft);
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.why-card p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.97rem; }

/* ---------- Final CTA band ---------- */
.cta-band {
    background:
        radial-gradient(circle at 80% 20%, rgba(181, 72, 94, 0.12), transparent 55%),
        var(--cream);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--line);
}

/* ---------- Forms ---------- */
.form-control, .form-select {
    border-radius: 0.5rem;
    border-color: var(--line);
    padding: 0.6rem 0.85rem;
}
.form-label { font-weight: 500; color: var(--ink); margin-bottom: 0.35rem; }
.btn:focus, .btn:active:focus, .form-control:focus, .form-check-input:focus, .form-select:focus {
    box-shadow: 0 0 0 .15rem rgba(181, 72, 94, 0.2);
    border-color: var(--rose);
}
.field-validation-error, .validation-summary-errors { color: var(--rose-dark); }

/* ---------- Accordion (FAQ) ---------- */
.accordion-button {
    font-weight: 600;
    color: var(--ink);
    background: #fff;
}
.accordion-button:not(.collapsed) {
    color: var(--rose-dark);
    background: var(--cream);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: 0 0 0 .15rem rgba(181, 72, 94, 0.2); border-color: var(--rose); }
.accordion-item { border-color: var(--line); }
.accordion-item + .accordion-item { margin-top: 0.5rem; border-top-width: 1px; }

/* ---------- Footer ---------- */
footer {
    background: var(--cream) !important;
    border-top: 1px solid var(--line) !important;
    color: var(--ink-soft);
}
footer a { color: var(--ink-soft); text-decoration: none; }
footer a:hover { color: var(--rose-dark); }
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Fraunces', serif;
    color: var(--ink);
    font-weight: 500;
}
.footer-brand .brand-mark { width: 22px; height: 22px; color: var(--rose); }
