
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── BRAND TOKENS — white/navy/gold, no green ── */
:root {
    --navy:       #1a2b4a;
    --navy-light: #2a3f6a;
    --gold:       #c9a84c;
    --white:      #ffffff;
    --off-white:  #f7f5f2;
    --border:     rgba(26,43,74,0.1);
    --border-mid: rgba(26,43,74,0.22);
    --muted:      #5a6a7e;
    --radius-md:  8px;
    --radius-lg:  12px;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy);
    background: var(--white);
}

/* ── NAV ── */
.nav {
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-phone { font-size: 14px; font-weight: 500; color: var(--navy); text-decoration: none; }
.nav-cta {
    font-size: 13px; font-weight: 500; color: var(--white);
    background: var(--navy); padding: 9px 20px;
    border-radius: var(--radius-md); text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy-light); }

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--navy); padding: 0.8rem 2rem;
    display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
}
.trust-item {
    font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.82);
    letter-spacing: 0.05em; display: flex; align-items: center; gap: 6px;
}
.trust-item::before { content: '✦'; color: var(--gold); font-size: 9px; }

/* ── HERO ── */
.hero {
    text-align: center; padding: 5rem 2rem 4rem;
    border-bottom: 1px solid var(--border);
}
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { padding: 0 6px; opacity: 0.35; }
.hero-tag {
    font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 0.8rem;
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif; font-weight: 300;
    font-size: 54px; line-height: 1.05; color: var(--navy);
}
.hero h1 em { font-style: italic; }
.hero-sub {
    font-size: 16px; font-weight: 300; color: var(--muted);
    max-width: 500px; margin: 1rem auto 2rem; line-height: 1.7;
}
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-navy {
    background: var(--navy); color: var(--white); border: none;
    padding: 13px 30px; font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 500;
    border-radius: var(--radius-md); cursor: pointer; text-decoration: none;
    display: inline-block; transition: background 0.2s;
}
.btn-navy:hover { background: var(--navy-light); }
.btn-outline {
    background: transparent; color: var(--navy); border: 1.5px solid var(--navy);
    padding: 13px 30px; font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 400;
    border-radius: var(--radius-md); cursor: pointer; text-decoration: none;
    display: inline-block; transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── SECTIONS ── */
.section { padding: 4rem 2rem; background: var(--white); }
.section-alt { padding: 4rem 2rem; background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag {
    font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif; font-size: 38px;
    font-weight: 300; line-height: 1.15; color: var(--navy);
}
.section-title em { font-style: italic; }
.divider { width: 36px; height: 2px; background: var(--gold); margin: 1.2rem 0 2rem; border-radius: 2px; opacity: 0.8; }

/* ── SERVICE GRID ── */
.svc-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.svc-card {
    background: var(--white); padding: 1.75rem 1.5rem;
    border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.svc-card:hover { background: var(--off-white); }
.svc-icon { font-size: 22px; margin-bottom: 0.75rem; line-height: 1; }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 0.4rem; }
.svc-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2rem; }
.step-num {
    font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300;
    color: var(--navy); opacity: 0.2; line-height: 1; margin-bottom: 0.5rem;
}
.step-title { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.step-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.6; }

/* ── INCLUDED ── */
.include-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2rem; }
.include-col { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.include-col h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400;
    color: var(--navy); margin-bottom: 1rem; padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}
.include-col h3 em { font-style: italic; }
.task-list { list-style: none; }
.task-list li {
    font-size: 14px; font-weight: 300; color: var(--muted);
    padding: 8px 0; border-bottom: 1px solid var(--border);
    display: flex; gap: 10px; align-items: flex-start; line-height: 1.5;
}
.task-list li:last-child { border-bottom: none; }
.task-check { color: var(--gold); font-size: 13px; flex-shrink: 0; margin-top: 2px; font-weight: 500; }

/* ── COMPANION BAND ── */
.companion-band { background: var(--navy); padding: 4rem 2rem; }
.companion-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.companion-tag {
    font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.companion-quote {
    font-family: 'Cormorant Garamond', serif; font-size: 28px;
    font-weight: 300; font-style: italic; line-height: 1.4; color: var(--white);
}
.companion-list { list-style: none; }
.companion-list li {
    font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.8);
    padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; gap: 12px; align-items: center; line-height: 1.5;
}
.companion-list li:last-child { border-bottom: none; }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── PACKAGES ── */
.pkg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 2rem; max-width: 720px; }
.pkg-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.75rem; background: var(--white); }
.pkg-card.featured { border: 1.5px solid var(--gold); }
.pkg-badge {
    display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
    padding: 4px 12px; border-radius: var(--radius-md);
    background: rgba(201,168,76,0.15); color: #8a6e28; margin-bottom: 1rem;
}
.pkg-name { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--navy); margin-bottom: 0.2rem; }
.pkg-freq { font-size: 13px; font-weight: 300; color: var(--muted); margin-bottom: 1.25rem; }
.pkg-features { list-style: none; }
.pkg-features li {
    font-size: 14px; font-weight: 300; color: var(--muted);
    padding: 7px 0; border-bottom: 1px solid var(--border);
    display: flex; gap: 10px; align-items: flex-start;
}
.pkg-features li:last-child { border-bottom: none; }
.check { color: var(--gold); font-size: 13px; flex-shrink: 0; margin-top: 2px; font-weight: 500; }

/* ── CTA ── */
.cta-band { background: var(--off-white); border-top: 1px solid var(--border); padding: 5rem 2rem; text-align: center; }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--navy); margin-bottom: 0.5rem; }
.cta-band h2 em { font-style: italic; }
.cta-band p { font-size: 15px; font-weight: 300; color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.trust-pills { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.trust-pill { font-size: 12px; font-weight: 400; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.trust-pill::before { content: '✦'; color: var(--gold); font-size: 9px; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; gap: 2rem; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--white); }
.footer-info { font-size: 13px; font-weight: 300; line-height: 1.9; }
.footer-info a { color: var(--gold); text-decoration: none; }
.footer-info a:hover { text-decoration: underline; }
.footer-note { font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; max-width: 1100px; margin: 1.5rem auto 0; }
.footer-cta {
    background: var(--white); color: var(--navy); border: none;
    padding: 12px 26px; font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 500;
    border-radius: var(--radius-md); cursor: pointer; text-decoration: none;
    display: inline-block; white-space: nowrap; transition: opacity 0.2s;
}
.footer-cta:hover { opacity: 0.85; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .hero h1 { font-size: 38px; }
    .section-title { font-size: 28px; }
    .svc-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .include-grid { grid-template-columns: 1fr; }
    .companion-inner { grid-template-columns: 1fr; gap: 2rem; }
    .pkg-grid { grid-template-columns: 1fr; max-width: 100%; }
    .trust-bar { gap: 1rem; }
    .footer-inner { flex-direction: column; text-align: center; }
}
