/* =========================================================
   United in Service — design system
   Blend: dark navy cinematic sections + light cream content
   ========================================================= */

:root {
    /* palette */
    --navy-950: #0A1830;
    --navy-900: #0E1F3D;
    --navy-800: #12233F;
    --navy-700: #1B3153;
    --cream: #F4EFE6;
    --warm-white: #FBF9F4;
    --white: #FFFFFF;
    --ink: #1F2733;
    --ink-soft: #4A5568;
    --gold: #DBAB48;
    --gold-soft: #E5C57E;
    --gold-pale: #EFE3C4;
    --amber: #DBAB48;
    --amber-deep: #BC8E2F;
    --green: #2F5D3A;
    --plum: #4A3A5A;
    --dav-green: #A6CE39;
    --red: #A33D3D;
    --line-light: #E4DCCB;
    --line-dark: rgba(255, 255, 255, 0.14);

    /* type */
    --font-display: "Playfair Display", Georgia, serif;
    --font-heading: "Oswald", "Arial Narrow", sans-serif;
    --font-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;

    /* layout */
    --container: 1180px;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 10px 30px rgba(10, 24, 48, 0.10);
    --shadow-lg: 0 24px 60px rgba(10, 24, 48, 0.18);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--warm-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber-deep); }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
button { font-family: inherit; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--gold); color: var(--navy-950); padding: 10px 18px; font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ---------- typography ---------- */
.display {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.005em;
}
.heading {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.eyebrow {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--amber-deep);
    margin: 0 0 14px;
}
.on-dark .eyebrow, .section-dark .eyebrow { color: var(--gold-soft); }
.lead { font-size: 20px; line-height: 1.55; }

/* star divider used under section titles */
.star-divider {
    display: flex; align-items: center; gap: 14px;
    justify-content: center; margin: 18px auto 0;
    max-width: 420px; color: var(--gold);
}
.star-divider::before, .star-divider::after {
    content: ""; height: 1px; flex: 1;
    background: linear-gradient(90deg, transparent, currentColor);
}
.star-divider::after { background: linear-gradient(90deg, currentColor, transparent); }
.star-divider svg { flex: none; }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 42px); }
.section-head.align-left { text-align: left; margin-left: 0; }
.section-head.align-left .star-divider { margin-left: 0; justify-content: flex-start; }
.section-head.align-left .star-divider::before { display: none; }

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark { background: var(--navy-950); color: rgba(255, 255, 255, 0.88); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-panel { background: var(--navy-800); }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.09em;
    padding: 14px 28px; border-radius: 11px;
    border: 2px solid transparent; cursor: pointer;
    text-decoration: none; transition: all 0.18s ease;
    line-height: 1.2;
}
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.btn-gold { background: var(--amber); color: var(--navy-950); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-navy { background: var(--navy-950); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); }
.btn-outline-light { border-color: rgba(255,255,255,0.7); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-dark { border-color: var(--navy-950); color: var(--navy-950); background: transparent; }
.btn-outline-dark:hover { background: var(--navy-950); color: var(--white); }
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
    background: var(--navy-950);
    border-bottom: 1px solid var(--line-dark);
    position: sticky; top: 46px; z-index: 80; /* sits just below the fixed event ribbon */
}
.site-header .bar {
    display: flex; align-items: center; gap: 28px;
    padding: 14px 24px; max-width: 1380px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; flex: none; }
.brand-logo { height: 46px; width: auto; display: block; padding: 4px 0; }
.footer-logo { height: 62px; width: auto; display: block; margin: 0 0 14px -2px; }
.brand-lockup { text-align: center; }
.brand-lockup > span { display: block; }
.brand-stars { color: var(--gold); font-size: 9px; letter-spacing: 6px; line-height: 1; margin-bottom: 4px; }
.brand-name {
    font-family: var(--font-display); font-weight: 700; color: var(--white);
    font-size: 19px; letter-spacing: 0.16em; text-transform: uppercase; line-height: 1.15;
}
.brand-sub {
    font-family: var(--font-heading); color: var(--gold);
    font-size: 8.5px; letter-spacing: 0.34em; text-transform: uppercase;
}
.brand-dav {
    border-left: 1px solid var(--line-dark); padding-left: 16px;
    color: rgba(255,255,255,0.85); text-align: left; line-height: 1.25;
}
.brand-dav .by { font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.brand-dav .dav { font-family: var(--font-heading); font-weight: 700; font-size: 20px; letter-spacing: 0.06em; color: var(--white); }
.brand-dav .dav span { color: var(--dav-green); }
.brand-dav .of { font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.site-nav a {
    font-family: var(--font-heading); font-size: 13px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.85); text-decoration: none;
    padding: 6px 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--white); }
.site-nav a.active { color: var(--gold-soft); border-bottom-color: var(--gold); }
.site-nav .btn { margin-left: 6px; }
/* the CTA button in the nav must keep button styling, not nav-link styling */
.site-nav a.btn, .site-nav a.btn.active { padding: 9px 18px; border-bottom: 0; color: var(--navy-950); }
.site-nav a.btn:hover { color: var(--navy-950); background: var(--gold-soft); }

.nav-toggle {
    display: none; margin-left: auto;
    background: none; border: 0; cursor: pointer; padding: 10px;
}
.nav-toggle span {
    display: block; width: 26px; height: 2px; background: var(--white);
    margin: 6px 0; transition: transform 0.2s ease, opacity 0.2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
    position: relative; background: var(--navy-950); color: var(--white);
    overflow: hidden;
}
.hero-media {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.82;
}
.hero-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(10,24,48,0.55) 18%, rgba(10,24,48,0.28) 55%, rgba(10,24,48,0.14) 100%);
}
/* readability: soft shadow behind hero copy now that the imagery is brighter */
.hero-inner h1, .hero-inner .hero-sub, .hero-inner .hero-kicker, .hero-inner .hero-meta { text-shadow: 0 2px 14px rgba(6, 14, 28, 0.65); }
.hero-inner {
    position: relative; z-index: 1;
    max-width: var(--container); margin: 0 auto;
    padding: 110px 24px 120px;
}
.hero.hero-tall .hero-inner { padding: 150px 24px 160px; }
.hero-kicker {
    font-family: var(--font-heading); color: var(--gold-soft);
    letter-spacing: 0.3em; text-transform: uppercase; font-size: 14px; margin-bottom: 18px;
}
.hero h1 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(38px, 5.6vw, 64px); max-width: 14ch;
    text-wrap: balance; /* keeps multi-line headings visually even instead of a lone orphan word */
}
.hero .heading-style h1 { font-family: var(--font-heading); letter-spacing: 0.04em; }
.hero-sub { font-size: 20px; max-width: 560px; color: rgba(255,255,255,0.85); }
.hero-meta {
    display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 26px 0 34px;
    font-family: var(--font-heading); letter-spacing: 0.1em; text-transform: uppercase; font-size: 15px;
}
.hero-meta strong { color: var(--gold-soft); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }


/* ---------- cards & grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.card {
    background: var(--white); border: 1px solid var(--line-light);
    border-radius: var(--radius); padding: 30px;
}
.card h3 { font-size: 20px; }

.icon-badge {
    width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy-950); color: var(--gold); flex: none;
}
.icon-badge svg { width: 28px; height: 28px; }
.icon-badge.gold-line { background: transparent; border: 2px solid var(--gold); }

/* gallery cards */
.gallery-card {
    background: var(--white); border: 1px solid var(--line-light);
    border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column;
}
.gallery-card .thumb {
    aspect-ratio: 16 / 10; background: var(--navy-800);
    background-size: cover; background-position: center; position: relative;
}
.gallery-card .num {
    position: absolute; left: 14px; top: 14px;
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--amber); color: var(--navy-950);
    font-family: var(--font-heading); font-weight: 600; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
}
.gallery-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.gallery-card h3 { font-family: var(--font-display); font-size: 21px; }
.gallery-card .tagline { color: var(--amber-deep); font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.gallery-card p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

/* veteran cards */
.veteran-card {
    background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
    overflow: hidden; text-align: center;
}
.section-dark .veteran-card { background: var(--navy-800); border-color: var(--line-dark); }
.veteran-card .photo {
    aspect-ratio: 8 / 7; background: var(--navy-900); position: relative; overflow: hidden;
}
.veteran-card .photo img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.35) contrast(1.02); }
.veteran-card .photo .placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.veteran-card .body { padding: 16px 14px 20px; }
.veteran-card h3 { font-family: var(--font-heading); font-size: 16px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.section-dark .veteran-card h3 { color: var(--white); }
.veteran-card .meta { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }
.section-dark .veteran-card .meta { color: rgba(255,255,255,0.7); }
.veteran-card .meta .dot { color: var(--gold); padding: 0 5px; }
.veteran-card .tagline { font-size: 14px; margin: 10px 0 0; color: var(--ink-soft); font-style: italic; }
.section-dark .veteran-card .tagline { color: rgba(255,255,255,0.75); }
.veteran-card a { font-size: 13px; font-family: var(--font-heading); letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber-deep); text-decoration: none; }
.section-dark .veteran-card a { color: var(--gold-soft); }

/* service cards (color-coded) */
.service-card {
    display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 28px;
    background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
    overflow: hidden; padding-right: 28px;
}
.service-card .icon-block {
    align-self: stretch; display: flex; align-items: center; justify-content: center;
    color: var(--white); min-height: 130px;
}
.service-card .icon-block svg { width: 52px; height: 52px; }
.service-card.accent-navy .icon-block { background: var(--navy-800); }
.service-card.accent-green .icon-block { background: var(--green); }
.service-card.accent-plum .icon-block { background: var(--plum); }
.service-card.accent-gold .icon-block { background: var(--gold); color: var(--navy-950); }
.service-card .body { padding: 24px 0; }
.service-card h3 { font-family: var(--font-heading); letter-spacing: 0.06em; text-transform: uppercase; font-size: 20px; }
.service-card.accent-navy h3 { color: var(--navy-800); }
.service-card.accent-green h3 { color: var(--green); }
.service-card.accent-plum h3 { color: var(--plum); }
.service-card.accent-gold h3 { color: var(--amber-deep); }
.service-card .strap { font-weight: 600; margin-bottom: 6px; }
.service-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.service-card .tags span {
    font-size: 12.5px; border: 1px solid var(--line-light); border-radius: 999px;
    padding: 4px 12px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 6px;
}
.service-card .tags svg { color: var(--green); }

/* stat tiles */
.stat { text-align: center; }
.stat .value { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 4vw, 46px); color: var(--gold); }
.stat .label { color: rgba(255,255,255,0.8); font-size: 15.5px; }

/* checklist */
.checklist { list-style: none; margin: 0 0 1.2em; padding: 0; }
.checklist li { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.checklist .tick {
    flex: none; width: 24px; height: 24px; border-radius: 50%;
    background: var(--amber); color: var(--navy-950);
    display: inline-flex; align-items: center; justify-content: center; margin-top: 2px;
}
.checklist .tick svg { width: 13px; height: 13px; }

/* steps row (how it works) */
.step-badge {
    width: 34px; height: 34px; border-radius: 50%; flex: none;
    background: var(--navy-950); color: var(--white);
    font-family: var(--font-heading); font-weight: 600;
    display: inline-flex; align-items: center; justify-content: center;
}

/* FAQ accordion */
.faq { border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.faq details { border-bottom: 1px solid var(--line-light); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
    cursor: pointer; list-style: none; padding: 20px 54px 20px 24px;
    font-weight: 700; font-size: 17px; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
    font-family: var(--font-heading); font-size: 24px; color: var(--gold); font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 24px 22px; color: var(--ink-soft); }

/* schedule table */
.schedule-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.schedule-table th {
    background: var(--navy-950); color: var(--white); text-align: left;
    font-family: var(--font-heading); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    font-size: 13px; padding: 14px 20px;
}
.schedule-table td { padding: 16px 20px; border-bottom: 1px solid var(--line-light); vertical-align: top; font-size: 15.5px; }
.schedule-table tr:last-child td { border-bottom: 0; }
.schedule-table td strong { color: var(--navy-800); }
.table-scroll { overflow-x: auto; }

/* ---------- forms ---------- */
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; font-size: 15px; margin-bottom: 7px; }
.field label .req { color: var(--red); }
.field label .opt { color: var(--ink-soft); font-weight: 400; font-size: 13.5px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="number"], .field select, .field textarea {
    width: 100%; padding: 12px 14px; font: inherit; font-size: 16px;
    border: 1.5px solid #CFC7B4; border-radius: 6px; background: var(--white); color: var(--ink);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(232,163,61,0.25);
}
.field .hint { font-size: 13.5px; color: var(--ink-soft); margin-top: 5px; }
.field .count { float: right; font-size: 12.5px; color: var(--ink-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.field .error-msg { color: var(--red); font-size: 13.5px; margin-top: 5px; display: none; }
.field.has-error .error-msg { display: block; }

/* chips (relationship picker) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips label {
    border: 1.5px solid #CFC7B4; border-radius: 8px; padding: 10px 16px;
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
    font-weight: 600; font-size: 14.5px; background: var(--white); position: relative;
}
.chips input { position: absolute; opacity: 0; }
.chips input:checked + span { color: var(--amber-deep); }
.chips label:has(input:checked) { border-color: var(--amber); box-shadow: 0 0 0 2px rgba(232,163,61,0.3); }
.chips input:focus-visible + span { outline: 2px solid var(--amber); outline-offset: 4px; }

/* honeypot */
.hp-field { position: absolute !important; left: -9999px !important; height: 0; overflow: hidden; }

.form-status { border-radius: 8px; padding: 14px 18px; margin: 14px 0 0; display: none; font-weight: 600; }
.form-status.ok { display: block; background: #E8F3EA; color: var(--green); border: 1px solid #BFDCC6; }
.form-status.err { display: block; background: #F9E8E8; color: var(--red); border: 1px solid #E4BEBE; }

/* ---------- modal ---------- */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(10, 24, 48, 0.72);
    display: none; align-items: flex-start; justify-content: center; z-index: 150;
    padding: 40px 18px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal {
    background: var(--warm-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    max-width: 620px; width: 100%; position: relative; padding: 38px 38px 34px;
}
.modal h3 { font-family: var(--font-display); font-size: 27px; margin-bottom: 4px; }
.modal .modal-sub { color: var(--ink-soft); margin-bottom: 22px; }
.modal-close {
    position: absolute; right: 16px; top: 16px; background: none; border: 0;
    font-size: 26px; line-height: 1; cursor: pointer; color: var(--ink-soft); padding: 6px;
}
.modal-close:hover { color: var(--ink); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.78); padding: 64px 0 0; }
.site-footer h4 {
    font-family: var(--font-heading); font-size: 14px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand-name { font-size: 22px; }
.footer-brand .tagline { color: var(--gold-soft); font-family: var(--font-heading); letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px; margin-top: 8px; }
.footer-brand p { font-size: 15px; margin-top: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; font-size: 15.5px; }
.site-footer a { color: rgba(255,255,255,0.82); text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
    width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-soft); }
.footer-bottom {
    border-top: 1px solid var(--line-dark); padding: 20px 0;
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
    font-size: 13.5px; color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.65); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--navy-900); color: var(--white); overflow: hidden; }
.cta-band .media { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.6; }
.cta-band .media::after { content: ""; position: absolute; inset: 0; background: rgba(6, 14, 28, 0.35); }
.cta-band .inner h2, .cta-band .inner p, .cta-band .inner .eyebrow { text-shadow: 0 2px 12px rgba(6, 14, 28, 0.7); }
.cta-band .inner { position: relative; padding: 72px 24px; text-align: center; max-width: 820px; margin: 0 auto; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 40px); }
.cta-band .hero-actions { justify-content: center; margin-top: 28px; }

/* ---------- tribute tag (SVG shell styled here) ---------- */
.tag-preview-wrap { text-align: center; }
.tag-svg { width: 100%; max-width: 290px; filter: drop-shadow(0 14px 24px rgba(0,0,0,0.35)); }

/* ---------- wizard ---------- */
/* horizontal progress stepper (spans full width, above the shell) */
.wizard-hsteps { margin-bottom: 28px; }
.wizard-hsteps ol { list-style: none; margin: 0; padding: 0; display: flex; position: relative; }
.wizard-hsteps ol::before { content: ""; position: absolute; top: 16px; left: 0; right: 0; height: 2px; background: var(--line-light); z-index: 0; }
.wizard-hsteps li { flex: 1; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 6px; }
.wizard-hsteps .dot {
    position: relative; z-index: 1; width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid #C9C2B2; background: var(--white);
    font-family: var(--font-heading); font-weight: 600; font-size: 14px;
    display: flex; align-items: center; justify-content: center; color: var(--ink-soft); margin-bottom: 8px;
}
.wizard-hsteps li.current .dot { background: var(--navy-950); border-color: var(--navy-950); color: var(--white); }
.wizard-hsteps li.done .dot { background: var(--amber); border-color: var(--amber); color: var(--navy-950); }
.wizard-hsteps .lbl { font-size: 13px; line-height: 1.3; color: var(--ink-soft); max-width: 12ch; }
.wizard-hsteps li.current .lbl { color: var(--navy-950); font-weight: 600; }

.wizard-shell { display: grid; grid-template-columns: 1fr 360px; min-height: 640px; background: var(--warm-white); border: 1px solid var(--line-light); border-radius: var(--radius-lg); overflow: hidden; }
.rail-note { font-size: 13.5px; color: var(--ink-soft); }

.wizard-main { padding: 44px 48px; }
.wizard-main .step-label { color: var(--amber-deep); font-family: var(--font-heading); letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px; margin-bottom: 6px; }
.wizard-main h1 { font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 38px); }
.wizard-main .step-sub { color: var(--ink-soft); margin-bottom: 26px; }
.wizard-step { display: none; }
.wizard-step.active { display: block; }
.wizard-actions { display: flex; align-items: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.wizard-side { background: var(--cream); border-left: 1px solid var(--line-light); padding: 34px 30px; }
.wizard-side .side-label { font-family: var(--font-heading); font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; display:flex; justify-content: space-between; align-items:center;}
.wizard-side .live-dot { color: var(--green); font-size: 12px; display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.05em;}
.wizard-side .live-dot::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; }

/* digital tribute page preview card */
.dtp-card { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 22px; margin-top: 22px; text-align: left; }
.dtp-card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 2px; }
.dtp-card .meta { font-size: 13.5px; color: var(--ink-soft); }
.dtp-card .meta .dot { color: var(--gold); padding: 0 5px; }
.dtp-card .story-snippet { font-size: 14px; color: var(--ink-soft); margin-top: 12px; }
.dtp-card .quote { background: var(--cream); border-left: 3px solid var(--gold); padding: 10px 14px; font-style: italic; font-size: 13.5px; margin-top: 12px; }
.dtp-flex { display: flex; gap: 16px; }
.dtp-flex .ph { flex: none; width: 84px; height: 84px; border-radius: 8px; object-fit: cover; background: linear-gradient(135deg, #F3D68E 0%, #DBAB48 45%, #B9862E 100%); }

/* photo uploader */
.uploader {
    display: grid; grid-template-columns: 200px 1fr; gap: 22px; align-items: stretch;
    border: 2px dashed #C9C2B2; border-radius: var(--radius); padding: 22px; background: var(--white);
}
.uploader.drag { border-color: var(--amber); background: #FFF9EE; }
.uploader .preview { position: relative; background: var(--cream); border-radius: 8px; min-height: 190px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.uploader .preview img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.uploader .remove {
    position: absolute; top: 8px; right: 8px; z-index: 2;
    width: 28px; height: 28px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--navy-950); color: var(--white); font-size: 15px; line-height: 1;
    display: none; align-items: center; justify-content: center;
}
.uploader.has-photo .remove { display: inline-flex; }
.uploader .drop-zone { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px; color: var(--ink-soft); cursor: pointer; }
.uploader .drop-zone strong { color: var(--ink); }
.uploader .drop-zone .formats { font-size: 13px; }

/* order summary / cart */
.order-summary { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 24px; }
.order-summary .row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 15.5px; }
.order-summary .row.total { border-top: 1px solid var(--line-light); margin-top: 8px; padding-top: 16px; font-weight: 700; font-size: 18px; }
.order-summary .row .muted { color: var(--ink-soft); }

.cart-tribute { display: flex; gap: 14px; align-items: center; border: 1px solid var(--line-light); border-radius: 8px; padding: 14px; margin-bottom: 12px; background: var(--white); }
.cart-tribute .ph { flex: none; width: 54px; height: 54px; border-radius: 6px; object-fit: cover; background: linear-gradient(135deg, #F3D68E 0%, #DBAB48 45%, #B9862E 100%); }
.cart-tribute .info { flex: 1; min-width: 0; }
.cart-tribute .info strong { display: block; }
.cart-tribute .info .meta { font-size: 13px; color: var(--ink-soft); }
.cart-tribute .actions a { font-size: 13px; margin-right: 10px; }

.keepsake-box { display: flex; gap: 14px; border: 1.5px solid var(--line-light); border-radius: 8px; padding: 16px; background: var(--white); align-items: flex-start; cursor: pointer; }
.keepsake-box:has(input:checked) { border-color: var(--amber); box-shadow: 0 0 0 2px rgba(232,163,61,0.25); }
.keepsake-box input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--amber-deep); }

/* step 5: keepsake delivery choice (every tribute includes a complimentary keepsake) */
.keepsake-delivery { border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--cream); padding: 20px; margin: 18px 0; }
.keepsake-delivery .kd-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.keepsake-delivery .kd-option {
    display: flex; gap: 14px; align-items: center; border: 1.5px solid var(--line-light);
    border-radius: 8px; padding: 14px 16px; background: var(--white); cursor: pointer; margin-bottom: 10px;
}
.keepsake-delivery .kd-option:last-child { margin-bottom: 0; }
.keepsake-delivery .kd-option:has(input:checked) { border-color: var(--amber); box-shadow: 0 0 0 2px rgba(232,163,61,0.25); }
.keepsake-delivery .kd-option input { width: 18px; height: 18px; accent-color: var(--amber-deep); flex: none; }
.keepsake-delivery .kd-icon { color: var(--amber-deep); flex: none; }
.keepsake-delivery .kd-text { display: flex; flex-direction: column; flex: 1; font-size: 14.5px; }
.keepsake-delivery .kd-text .muted { font-size: 13px; }
.keepsake-delivery .kd-price { font-family: var(--font-heading); font-weight: 600; font-size: 14px; flex: none; }
.keepsake-delivery .kd-price.kd-free { color: var(--green); }
.keepsake-delivery.kd-error { border-color: var(--red, #B33A3A); box-shadow: 0 0 0 2px rgba(179,58,58,0.18); }

/* what happens next list */
.next-steps { list-style: none; margin: 0; padding: 0; }
.next-steps li { display: flex; gap: 14px; margin-bottom: 16px; font-size: 14.5px; }
.next-steps .nicon {
    flex: none; width: 34px; height: 34px; border-radius: 50%;
    background: var(--navy-950); color: var(--gold); display: inline-flex; align-items: center; justify-content: center;
}
.next-steps .nicon svg { width: 16px; height: 16px; }
.next-steps strong { display: block; }
.next-steps .sub { color: var(--ink-soft); }

/* ---------- tribute public page ---------- */
.tribute-hero { background: var(--cream); padding: 60px 0; }
.tribute-layout { display: grid; grid-template-columns: 1fr 330px; gap: 36px; align-items: start; }
.tribute-profile { display: grid; grid-template-columns: 300px 1fr; gap: 34px; background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius-lg); padding: 34px; }
.tribute-profile .portrait { border-radius: var(--radius); overflow: hidden; background: linear-gradient(135deg, #F3D68E 0%, #DBAB48 45%, #B9862E 100%); aspect-ratio: 4/5; }
.tribute-profile .portrait img { width: 100%; height: 100%; object-fit: cover; filter: sepia(0.25); }
.tribute-profile h1 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 42px); margin-bottom: 6px; }
.tribute-profile .meta { color: var(--ink-soft); font-size: 16px; margin-bottom: 18px; }
.tribute-profile .meta .dot { color: var(--gold); padding: 0 6px; }
.tribute-profile h2 { font-family: var(--font-heading); font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-deep); margin: 18px 0 10px; }
.tribute-profile blockquote {
    margin: 20px 0 0; background: var(--cream); border-left: 3px solid var(--gold);
    padding: 16px 20px; font-style: italic; font-size: 17px;
}
.side-card { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.side-card.dark { background: var(--navy-950); border-color: var(--navy-800); color: rgba(255,255,255,0.85); }
.side-card.dark h3 { color: var(--gold-soft); }
.side-card h3 { font-family: var(--font-heading); font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.garden-loc { display: flex; gap: 10px; text-align: center; margin-bottom: 16px; }
.garden-loc div { flex: 1; background: var(--navy-800); border-radius: 8px; padding: 12px 6px; }
.garden-loc .lbl { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.garden-loc .val { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gold-soft); }
.fact-row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line-light); font-size: 15px; align-items: flex-start; }
.fact-row:last-child { border-bottom: 0; }
.fact-row svg { color: var(--gold); flex: none; margin-top: 3px; }
.fact-row .lbl { color: var(--ink-soft); font-size: 13px; display: block; }
.share-row { display: flex; gap: 10px; }
.share-row a, .share-row button {
    width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-light);
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--white); color: var(--ink); cursor: pointer; text-decoration: none;
}
.share-row a:hover, .share-row button:hover { border-color: var(--amber); color: var(--amber-deep); }

/* ---------- misc ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 36px; } .mt-5 { margin-top: 56px; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-soft); }
.on-dark .muted, .section-dark .muted { color: rgba(255,255,255,0.65); }
.divider-line { border: 0; border-top: 1px solid var(--line-light); margin: 40px 0; }
.notice { background: var(--gold-pale); border: 1px solid var(--gold-soft); border-radius: 8px; padding: 14px 18px; font-size: 15px; }

.partner-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 54px; }
.partner-strip .partner-logo {
    font-family: var(--font-heading); font-weight: 600; font-size: 22px; letter-spacing: 0.05em;
    color: var(--navy-800); opacity: 0.82; text-decoration: none; text-transform: uppercase;
}
.partner-strip .partner-logo img { max-height: 46px; width: auto; }
.partner-strip .partner-logo:hover { opacity: 1; }

/* top event ribbon — stays fixed while the page scrolls */
.top-ribbon {
    position: fixed; top: 0; left: 0; right: 0; z-index: 90;
    background: #08131F; color: rgba(255,255,255,0.92);
    font-family: var(--font-heading); font-size: 12.5px; letter-spacing: 0.06em;
}
.top-ribbon .inner {
    max-width: 1380px; margin: 0 auto; padding: 0 24px; /* matches .site-header .bar */
    display: flex; align-items: center; gap: 18px; min-height: 46px;
}
.top-ribbon .rb-item { display: inline-flex; align-items: center; gap: 7px; }
.top-ribbon .rb-date { font-size: 15.5px; font-weight: 700; letter-spacing: 0.03em; color: var(--white); }
.top-ribbon .rb-star { color: var(--gold); font-size: 10px; }
.top-ribbon .rb-cta {
    margin-left: auto; background: var(--gold); color: var(--navy-950);
    padding: 5px 14px; border-radius: 7px; text-decoration: none;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 11.5px;
    display: inline-flex; align-items: center; gap: 7px; flex: none;
}
.top-ribbon .rb-cta:hover { background: var(--gold-soft); }
body { padding-top: 46px; }
@media (max-width: 700px) {
    .top-ribbon .rb-venue-detail, .top-ribbon .rb-star { display: none; }
    .top-ribbon .inner { gap: 10px; font-size: 11.5px; }
    .top-ribbon .rb-date { font-size: 13.5px; }
}

/* wizard photo gallery */
.uploader .preview .rotate {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    width: 34px; height: 34px; border-radius: 50%; border: 0; cursor: pointer;
    background: rgba(10,24,48,0.8); color: #fff; font-size: 17px; line-height: 1;
}
.uploader .preview .rotate:hover { background: var(--navy-700); }
.profile-badge {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    background: var(--gold); color: var(--navy-950); border-radius: 14px;
    font-family: var(--font-heading); font-size: 10.5px; letter-spacing: 0.08em;
    padding: 4px 10px; text-transform: uppercase;
}
.photo-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; margin-top: 16px; }
.gphoto { position: relative; border-radius: 10px; overflow: hidden; border: 2px solid var(--line-light); aspect-ratio: 1; }
.gphoto.is-profile { border-color: var(--gold); }
.gphoto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gphoto .gtools {
    position: absolute; inset: auto 0 0 0; display: flex; justify-content: center; gap: 6px;
    padding: 6px; background: linear-gradient(transparent, rgba(10,24,48,0.85));
}
.gphoto .gtools button {
    width: 28px; height: 28px; border-radius: 50%; border: 0; cursor: pointer;
    background: rgba(255,255,255,0.92); color: var(--navy-950); font-size: 14px; line-height: 1;
}
.gphoto.is-profile .gtools [data-act="profile"] { background: var(--gold); }
.gphoto .gbadge {
    position: absolute; top: 6px; left: 6px; background: var(--gold); color: var(--navy-950);
    font-family: var(--font-heading); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 3px 8px; border-radius: 10px;
}

/* review + public tribute galleries */
.rv-gallery .ph-row { display: flex; flex-wrap: wrap; gap: 10px; }
.rv-gallery img { width: 86px; height: 86px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line-light); }
.tribute-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-top: 10px; }
.tribute-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; border: 1px solid var(--line-light); }

/* home: why-band (white 5-column strip under hero) */
.why-band { display: grid; grid-template-columns: 1.2fr 1.3fr 1fr 1fr 1fr; gap: 0; }
.why-band .w-col { padding: 10px 26px; border-left: 1px solid var(--line-light); font-size: 14.5px; color: var(--muted); }
.why-band .w-col:first-child { border-left: 0; padding-left: 0; }
.why-band .w-icon { color: var(--gold); margin-bottom: 12px; }
.why-band .w-eyebrow { font-family: var(--font-heading); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber-deep); margin-bottom: 10px; }
.why-band .w-serif { font-family: var(--font-display); font-size: 24px; line-height: 1.25; color: var(--ink); margin-bottom: 10px; }
.why-band .w-italic { font-style: italic; color: var(--ink); }
.why-band .w-head { font-family: var(--font-heading); font-size: 13.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.why-band .w-dav-logo { display: block; height: 54px; width: auto; margin-bottom: 14px; }

/* home: legacy CTA band (dark, text left over tag-wall image) */
.legacy-band { position: relative; background: var(--navy-950); color: #fff; overflow: hidden; }
.legacy-band .lb-media { position: absolute; inset: 0; background-size: cover; background-position: center right; opacity: 0.38; }
.legacy-band .lb-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,24,48,0.92) 25%, rgba(10,24,48,0.45) 75%, rgba(10,24,48,0.25) 100%); }
.legacy-band .lb-inner { position: relative; z-index: 1; padding-top: 64px; padding-bottom: 64px; }

/* thank-you: tag joins the garden animation */
.garden-demo { margin: 30px auto 18px; max-width: 560px; }
.garden-mini-tag {
    width: 104px; min-height: 172px; margin: 0 auto 38px; padding: 16px 8px;
    background: linear-gradient(135deg, #F3D68E 0%, #DBAB48 45%, #B9862E 100%);
    border: 3px solid #1C140A; border-radius: 16px 16px 10px 10px;
    color: #22190A; display: flex; flex-direction: column; justify-content: center; gap: 7px;
    transition: transform 1.1s ease, opacity 1.1s ease;
    box-shadow: 0 0 25px rgba(219,171,72,0.45);
    font-family: var(--font-heading);
}
.garden-mini-tag .gt-star { font-size: 15px; }
.garden-mini-tag strong { color: #22190A; font-family: var(--font-display); font-size: 14.5px; line-height: 1.25; letter-spacing: 0.04em; }
.garden-mini-tag span { font-size: 10.5px; letter-spacing: 0.14em; }
.garden-mini-tag small { font-size: 9.5px; letter-spacing: 0.14em; color: #22190A; opacity: .75; }
.garden-wall {
    display: flex; justify-content: center; gap: 14px; padding: 26px;
    border: 2px solid var(--gold); border-radius: var(--radius); background: #080b12;
}
.gslot { width: 66px; height: 104px; border: 1px solid var(--gold); border-radius: 10px; opacity: 0.4; display: flex; align-items: center; justify-content: center; }
.gslot.filled { background: linear-gradient(135deg, #F3D68E 0%, #DBAB48 45%, #B9862E 100%); box-shadow: 0 0 18px rgba(219,171,72,0.75); opacity: 1; }
.gslot.filled span { color: #22190A; font-family: var(--font-heading); font-size: 10px; letter-spacing: 0.06em; text-align: center; line-height: 1.3; padding: 4px; }

/* step 4 review — full digital page + tag (the side Live Preview hides on this step) */
.wizard-shell.on-review { grid-template-columns: 1fr; }
.wizard-shell.on-review .wizard-side { display: none; }
.review-edit-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.review-grid { display: grid; grid-template-columns: 280px 1fr; gap: 34px; align-items: start; }
.review-tag .tag-svg { max-width: 260px; display: block; }
.review-page {
    background: var(--white); border: 1px solid var(--line-light);
    border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow);
}
.review-profile { display: flex; gap: 20px; align-items: center; }
.review-profile .portrait {
    width: 110px; height: 128px; flex: none; border-radius: 10px; overflow: hidden;
    background: linear-gradient(135deg, #F3D68E 0%, #DBAB48 45%, #B9862E 100%); display: flex; align-items: center; justify-content: center;
    border: 3px solid #1C140A;
}
.review-profile .portrait img { width: 100%; height: 100%; object-fit: cover; }
.review-quote {
    border-left: 3px solid var(--gold); background: var(--cream);
    padding: 14px 18px; margin: 16px 0 0; font-style: italic; border-radius: 0 8px 8px 0;
}
.review-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.review-facts .fact { display: flex; flex-direction: column; border-bottom: 1px dashed var(--line-light); padding-bottom: 8px; }
.review-facts .fact .lbl { font-family: var(--font-heading); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 860px) {
    .review-grid { grid-template-columns: 1fr; }
    .review-tag .tag-svg { margin: 0 auto; }
    .review-facts { grid-template-columns: 1fr; }
}

/* photo framing (drag to reposition) */
.uploader .preview { touch-action: none; }
.uploader.has-photo .preview { cursor: grab; }
.uploader .preview.dragging { cursor: grabbing; }
.uploader .preview img { object-position: 50% 30%; }
.drag-hint {
    position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
    background: rgba(10,24,48,0.78); color: #fff; border-radius: 20px;
    font-size: 11.5px; padding: 5px 12px; pointer-events: none;
}

/* ---------- home: mockup-specific sections ---------- */

/* heading flanked by gold rules */
.rule-heading {
    display: flex; align-items: center; gap: 22px; justify-content: center;
    font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; font-size: clamp(17px, 2.2vw, 22px); color: var(--ink);
    margin: 0 auto 30px; max-width: 900px;
}
.rule-heading::before, .rule-heading::after { content: ""; height: 1.5px; width: 88px; background: var(--gold); flex: none; }
.section-dark .rule-heading { color: var(--white); }

/* partner logo strip */
.partner-strip .partner-logo img { max-height: 44px; width: auto; mix-blend-mode: multiply; }

/* hero inline star */
.hero-star { color: var(--gold); margin: 6px 0 18px; }

/* curated with historical excellence band */
.curated-band { background: var(--navy-950); color: rgba(255,255,255,0.88); padding: 52px 0; }
.curated-inner { display: grid; grid-template-columns: 1.15fr 2fr 1fr; gap: 40px; align-items: center; }
.curated-lead { display: flex; gap: 18px; align-items: flex-start; }
.curated-lead .icon-badge { background: transparent; border: 0; color: var(--gold); width: auto; height: auto; }
.curated-lead h2 { font-family: var(--font-heading); font-size: 21px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.curated-lead p { color: var(--gold-soft); font-size: 15px; margin: 0; }
.advisor-row { display: flex; gap: 34px; justify-content: center; flex-wrap: wrap; }
.advisor-chip { text-align: center; max-width: 165px; }
.advisor-chip img { width: 96px; height: 96px; margin: 0 auto 12px; display: block; }
.advisor-chip .badge-star {
    width: 96px; height: 96px; border-radius: 50%; border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--gold);
}
.advisor-chip .nm { font-family: var(--font-heading); font-size: 13.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.advisor-chip .rl { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.4; margin-top: 4px; }
.curated-note { font-size: 15px; color: rgba(255,255,255,0.85); border-left: 1px solid var(--line-dark); padding-left: 30px; }

/* veteran stories arrows */
.stories-wrap { position: relative; }
.stories-wrap .scroll-btn {
    position: absolute; top: 38%; z-index: 2;
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-light);
    background: var(--white); color: var(--ink); cursor: pointer; box-shadow: var(--shadow);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.stories-wrap .scroll-btn:hover { border-color: var(--amber); color: var(--amber-deep); }
.stories-wrap .scroll-btn.prev { left: -18px; }
.stories-wrap .scroll-btn.next { right: -18px; }

/* dark five-galleries strip */
.galleries-dark { display: grid; grid-template-columns: repeat(5, 1fr); }
.galleries-dark .g-col { padding: 10px 26px; border-left: 1px solid var(--line-dark); text-align: center; }
.galleries-dark .g-col:first-child { border-left: 0; }
.galleries-dark .g-icon { color: var(--gold); margin-bottom: 16px; display: flex; justify-content: center; }
.galleries-dark h3 { font-family: var(--font-heading); font-size: 15.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.galleries-dark p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.galleries-dark a { font-family: var(--font-heading); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-soft); text-decoration: none; }
.galleries-dark a:hover { color: var(--white); }
.dav-circle {
    width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--gold);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 16px; letter-spacing: 0.03em; color: var(--white);
}
.dav-circle span { color: var(--dav-green); }

/* quick highlight cards (photo + floating icon) */
.quick-card { position: relative; border-radius: var(--radius); overflow: hidden; display: block; text-decoration: none; }
.quick-card .ph { aspect-ratio: 16 / 9.5; background-size: cover; background-position: center; }
.quick-card .ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,24,48,0.15), rgba(10,24,48,0.78)); }
.quick-card .icon-badge { position: absolute; top: 14px; left: 14px; z-index: 2; box-shadow: 0 6px 16px rgba(0,0,0,0.35); }
.quick-card .cap {
    position: absolute; left: 18px; right: 14px; bottom: 14px; z-index: 2; color: var(--white);
    font-family: var(--font-heading); font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
}
.quick-card .cap span { display: block; font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 13.5px; color: rgba(255,255,255,0.8); margin-top: 3px; }

/* scrollable card row (veteran stories) */
.scroll-row {
    display: grid; grid-auto-flow: column; grid-auto-columns: minmax(215px, 1fr);
    gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 12px;
}
.scroll-row > * { scroll-snap-align: start; }
.scroll-row::-webkit-scrollbar { height: 8px; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 4px; }
.scroll-row::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); }

/* day cards (four days of impact) */
.day-card { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 26px; }
.day-card .day {
    font-family: var(--font-heading); letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--amber-deep); font-size: 13.5px; margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
}
.day-card h3 { font-size: 19px; margin-bottom: 8px; }
.day-card p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* two-column feature (text + image) */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-split .img {
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3; background-size: cover; background-position: center;
}
@media (max-width: 900px) { .feature-split { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
    .wizard-shell { grid-template-columns: 1fr; }
    .wizard-side { border-left: 0; border-top: 1px solid var(--line-light); }
    .wizard-side-preview { display: none; }
    .wizard-side.show-mobile .wizard-side-preview { display: block; }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tribute-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .site-nav {
        position: fixed; inset: 62px 0 auto 0; bottom: 0;
        background: var(--navy-950); flex-direction: column; align-items: flex-start;
        padding: 28px 28px 40px; gap: 4px; display: none; overflow-y: auto; z-index: 99;
    }
    body.nav-open .site-nav { display: flex; }
    .site-nav a { font-size: 17px; padding: 13px 0; width: 100%; border-bottom: 1px solid var(--line-dark); }
    .site-nav .btn { margin: 18px 0 0; width: 100%; }
    .site-nav a.btn { padding: 13px 18px; text-align: center; border-bottom: 0; }
    .nav-toggle { display: block; }
    .brand-dav { display: none; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .service-card { grid-template-columns: 1fr; padding: 0 0 24px; text-align: left; }
    .service-card .icon-block { min-height: 84px; }
    .service-card .body { padding: 20px 24px 0; }
    .service-card > .btn { margin: 18px 24px 0; }
    .tribute-profile { grid-template-columns: 1fr; }
    .wizard-shell, .wizard-shell.on-review { grid-template-columns: 1fr; }
    /* step-5 cart items stack vertically on phones (no overlap, no one-word-per-line) */
    .cart-tribute { flex-wrap: wrap; }
    .cart-tribute .info { flex: 1 1 100%; }
    .cart-tribute .info strong, .cart-tribute .info .meta { white-space: normal; word-break: normal; }
    .keepsake-delivery .kd-option { flex-wrap: wrap; }
    .keepsake-delivery .kd-text { flex: 1 1 100%; order: 1; margin-top: 6px; }
    .keepsake-delivery .kd-price { order: 2; }
    .why-band { grid-template-columns: 1fr; gap: 26px; }
    .why-band .w-col { border-left: 0; padding: 0; }
    .wizard-hsteps ol { overflow-x: auto; padding-bottom: 4px; }
    .wizard-hsteps li { flex: 0 0 auto; min-width: 84px; }
    .wizard-hsteps .lbl { font-size: 11.5px; max-width: 9ch; }
    .wizard-main { padding: 30px 24px; }
    .field-row { grid-template-columns: 1fr; }
    .uploader { grid-template-columns: 1fr; }
    .hero-inner { padding: 80px 24px 90px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .section { padding: 60px 0; }
    .curated-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .curated-lead { justify-content: center; text-align: left; }
    .curated-note { border-left: 0; padding-left: 0; }
    .galleries-dark { grid-template-columns: 1fr 1fr; gap: 26px 0; }
    .galleries-dark .g-col:nth-child(3) { border-left: 0; }
    .stories-wrap .scroll-btn.prev { left: 4px; }
    .stories-wrap .scroll-btn.next { right: 4px; }
}

@media (max-width: 520px) {
    .grid-5, .grid-4 { grid-template-columns: 1fr 1fr; }
    .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn, .nav-toggle span { transition: none; }
}
