/* ============================================================
   Speed Date Tampa -- SITE-WIDE design system ("Wine & Cream", 2026-09-15).
   Loaded on every PUBLIC page (via _Layout, after site.css). The admin, host and
   matching layouts do not load it and keep their own themes.

   Owner picked direction D of design/brand-directions.html: a LIGHT site. Blush-cream
   ground, plum ink for text, WINE as the single action/accent colour, a lighter pink
   only as the second heart of the logo and the odd highlight. Playfair Display for
   headlines, Source Sans 3 for everything else. Class prefix: sdt-*.
   Motif: the numbered table card (.sdt-step__n / .sdt-tent) and the two linked hearts
   (the mutual-match promise). Homepage-only styles live in sdt-home.css.

   The previous "Last Light" dark theme (near-black + ember + gold) was rejected by the
   owner as "browns and orange, retro 70s". Do not bring dark grounds back.

   TOKEN CONTRACT (also in design/WINE-CREAM-RULEBOOK.md): the OLD names below the new
   ones are aliases so the 35 page stylesheets keep resolving. Note that --sdt-ink now
   means INK (text), never a background; --sdt-ink2 / --sdt-panel are light card surfaces.
   ============================================================ */
:root {
    /* ---- Wine & Cream tokens ---- */
    --sdt-ground: #fff6f8;       /* page ground: blush cream */
    --sdt-surface: #fdecf2;      /* deeper blush: alternating bands, strips, header bands */
    --sdt-card: #ffffff;         /* cards, the nav bar, inputs */
    --sdt-ink: #2b1520;          /* plum ink: primary text (NOT a background any more) */
    --sdt-text: var(--sdt-ink);
    --sdt-dim: #6e4a5a;          /* secondary text */
    --sdt-faint: #9a7b88;        /* captions, placeholders */
    --sdt-wine: #a10a4d;         /* the ONE action/accent colour */
    --sdt-wine-lo: #7d0839;      /* pressed */
    --sdt-wine-hi: #b8145a;      /* hover */
    --sdt-on-wine: #ffffff;      /* text on wine fills */
    --sdt-pink: #ff4f8b;         /* second heart, rare highlights (never body text: too light on cream) */
    --sdt-rose: var(--sdt-wine); /* the events pages fill their primary buttons with --sdt-rose: it must stay the action colour */
    --sdt-rose-text: #c0185a;    /* lighter rose for small text / numbers / icons that want a softer accent (4.9:1 on cream) */
    --sdt-blush: #fde4ee;        /* wine tint: badges, icon tiles, selected states */
    --sdt-plum: #3a1226;         /* the one deep band (why-it-works / reviews) and photo veils */
    --sdt-line: rgba(161,10,77,.12);   /* hairline */
    --sdt-hair: rgba(161,10,77,.30);   /* stronger hairline: hover borders, ghost buttons */
    --sdt-shadow: 0 18px 40px -22px rgba(74,8,38,.28);
    --sdt-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --sdt-body: "Source Sans 3", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;

    /* ---- legacy aliases (old ember/gold names -> the wine system) ----
       Used by the page stylesheets under Pages/**.cshtml.css and by older inline styles.
       Light-surface names stay light surfaces; the old "dark surface" names (ink2, panel)
       are now the white card so nothing paints a dark box on the cream ground. */
    --sdt-ink2: var(--sdt-card);
    --sdt-panel: var(--sdt-card);
    --sdt-ember: var(--sdt-wine);
    --sdt-ember-lo: var(--sdt-wine-lo);
    --sdt-ember-hi: var(--sdt-wine-hi);
    --sdt-on-ember: var(--sdt-on-wine);
    --sdt-gold: var(--sdt-rose);
    --sdt-gulf: #6b4f8a;         /* the rare cool note: a muted violet */
    --sdt-rose-deep: var(--sdt-wine-lo);
    --sdt-rose-soft: var(--sdt-rose);   /* was "soft coral text on dark"; on cream it must be the readable rose */
    --sdt-paper: var(--sdt-surface);    /* events page header band */
    --sdt-cream: #fbe3ec;               /* the table-card blush */
    --sdt-muted: var(--sdt-dim);
}

/* ---- global public-page base ---- */
body { font-family: var(--sdt-body); background-color: var(--sdt-ground); color: var(--sdt-text); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--sdt-display); font-weight: 700; letter-spacing: -.02em; line-height: 1.08; }
::selection { background: rgba(161,10,77,.18); }

/* ---- the two linked hearts + stacked lockup ("SPEED DATE / Tampa") ----
   The front heart is wine, the back heart the lighter pink: contact details only when BOTH say yes.
   On hover the back heart leans into the front one. transform-box must be stated or the origin lands
   somewhere other than the heart. */
.sdt-brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; white-space: nowrap; line-height: 1; }
.sdt-brand__mark, .sdt-mark { width: 46px; height: 46px; flex: none; display: block; overflow: visible; }
.sdt-brand__mark .h1, .sdt-mark .h1 { fill: var(--sdt-wine); }
.sdt-brand__mark .h2, .sdt-mark .h2 { fill: var(--sdt-pink); fill-opacity: .92; }
.sdt-brand__mark .h2 { transform-box: view-box; transform-origin: 29px 41px; transition: transform .34s cubic-bezier(.32,.72,0,1); }
.sdt-brand:hover .sdt-brand__mark .h2 { transform: translate(-1.2px, -1.2px); }
/* wordmark: ONE line, "Speed Date" in plum ink + "Tampa" in wine italic (owner's pick, lockup A of design/logo-lockups.html,
   2026-09-15 — the stacked "SPEED DATE / Tampa" made the brand name too small). The footer paints it white + pink. */
.sdt-brand__wm { font-family: var(--sdt-display); font-size: 1.55rem; font-weight: 700; letter-spacing: -.01em; line-height: 1; color: var(--sdt-ink); white-space: nowrap; transition: color .18s; }
.sdt-brand__wm em { font-style: italic; font-weight: 600; color: var(--sdt-wine); }
.sdt-brand:hover .sdt-brand__wm { color: var(--sdt-wine); }
/* specificity guard: site.css paints `.logo span` in the accent colour; these (0,3,1)+ rules win inside the nav */
nav .logo.sdt-brand { height: auto; font-size: inherit; font-weight: inherit; }
nav .logo.sdt-brand .sdt-brand__wm { color: var(--sdt-ink); }
nav .logo.sdt-brand .sdt-brand__wm em { color: var(--sdt-wine); }
nav .logo.sdt-brand:hover .sdt-brand__wm { color: var(--sdt-wine); }
.sdt-footer-brand { margin-bottom: 14px; }
@media (max-width: 720px) {
    .sdt-brand { gap: .45rem; }
    .sdt-brand__mark { width: 36px; height: 36px; }
    .sdt-brand__wm { font-size: 1.25rem; }
}

/* ---- nav (keeps site.css structure; re-skins it): a white bar with a wine hairline ---- */
nav { background: rgba(255,255,255,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--sdt-line); box-shadow: none; padding: .7rem 0; }
nav .nav-links { gap: clamp(16px, 2.2vw, 34px); }
nav .nav-links a { font-family: var(--sdt-body); font-size: .82rem; letter-spacing: .12em; font-weight: 700; color: var(--sdt-dim); }
nav .nav-links a:hover { color: var(--sdt-wine); }
nav .nav-links a.nav-active { color: var(--sdt-ink); border-bottom: 2px solid var(--sdt-wine); padding-bottom: 4px; }
/* the last link (Login) is the returning-attendee entrance: findable, never competing with the booking CTA */
nav .nav-links li:last-child a { border: 1px solid var(--sdt-hair); border-radius: 999px; padding: .55rem 1.05rem; color: var(--sdt-ink); }
nav .nav-links li:last-child a:hover { background: var(--sdt-blush); color: var(--sdt-wine); }
nav .nav-links li:last-child a.nav-active { border-color: var(--sdt-wine); border-width: 1px; padding-bottom: .55rem; }
nav .hamburger span { background: var(--sdt-ink); }
/* mobile dropdown. Colours are set at (0,1,3) specificity on purpose: site.css colours the links with
   `.mobile-menu ul li a`, so a shorter selector loses and the links vanish (a sister site shipped white-on-white this way).
   The panel starts at the top of the viewport and sits UNDER the fixed nav (z 999 < 1000); the padding
   clears the bar, so a taller or shorter header never leaves a gap or an overlap. */
.mobile-menu { top: 0; padding: 96px 24px 28px; background: rgba(255,251,252,.98); border-bottom: 1px solid var(--sdt-line); box-shadow: 0 24px 50px rgba(74,8,38,.18); }
.mobile-menu ul li a { color: var(--sdt-ink); font-family: var(--sdt-body); font-size: 1.05rem; letter-spacing: .1em; font-weight: 700; }
.mobile-menu ul li a:hover { color: var(--sdt-wine); }
.mobile-menu ul li a.nav-active { color: var(--sdt-wine); text-decoration-color: var(--sdt-wine); }

/* ---- layout primitives ---- */
.sdt-sec { padding: clamp(60px, 8.5vw, 116px) 24px; background: var(--sdt-ground); color: var(--sdt-text); }
.sdt-sec--cream { background: var(--sdt-surface); }                                   /* the deeper blush band */
.sdt-sec--blush { background: linear-gradient(180deg, var(--sdt-blush), var(--sdt-ground) 60%); border-block: 1px solid var(--sdt-line); }
/* the one deep band on the site: plum with cream text (why-it-works, reviews). Wine, not brown. */
.sdt-sec--dark { background: var(--sdt-plum); color: #fff3f6; border-block: 0; }
.sdt-wrap { max-width: 1180px; margin: 0 auto; }
.sdt-narrow { max-width: 760px; margin: 0 auto; }

.sdt-eyebrow { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--sdt-body);
    font-size: .74rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--sdt-wine); }
.sdt-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sdt-wine); opacity: .8; display: inline-block; flex: none; }
.sdt-eyebrow i, .sdt-eyebrow svg { width: 14px; height: 14px; }
.sdt-sec--dark .sdt-eyebrow { color: var(--sdt-pink); }
.sdt-sec--dark .sdt-eyebrow::before { background: var(--sdt-pink); }

.sdt-head { max-width: 660px; margin-bottom: clamp(34px, 5vw, 56px); }
.sdt-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-top: 16px; line-height: 1.08; color: var(--sdt-ink); text-wrap: balance; }
.sdt-head h2 em { font-style: italic; font-weight: 600; color: var(--sdt-wine); }
.sdt-head p { color: var(--sdt-dim); margin-top: 20px; font-size: 1.08rem; }
.sdt-head p a { color: var(--sdt-wine); }
.sdt-sec--dark .sdt-head h2 { color: #fff3f6; }
.sdt-sec--dark .sdt-head h2 em { color: var(--sdt-pink); }
.sdt-sec--dark .sdt-head p { color: rgba(255,243,246,.78); }

/* buttons */
.sdt-btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; font-family: var(--sdt-body); font-weight: 700;
    font-size: 1rem; letter-spacing: .01em; padding: .95rem 1.8rem; border-radius: 999px; cursor: pointer; text-decoration: none; line-height: 1.1;
    border: 1px solid transparent; transition: transform .18s, box-shadow .18s, background .18s, color .18s, border-color .18s; }
.sdt-btn i, .sdt-btn svg { width: 17px; height: 17px; }
.sdt-btn--primary, .sdt-btn--primary:link, .sdt-btn--primary:visited { background: var(--sdt-wine); color: var(--sdt-on-wine); box-shadow: 0 12px 26px -12px rgba(161,10,77,.7); }
.sdt-btn--primary:hover { background: var(--sdt-wine-hi); color: var(--sdt-on-wine); transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(161,10,77,.75); }
.sdt-btn--ghost, .sdt-btn--outline { background: transparent; color: var(--sdt-ink); border-color: var(--sdt-hair); }
.sdt-btn--ghost:hover, .sdt-btn--outline:hover { background: var(--sdt-blush); color: var(--sdt-wine); border-color: var(--sdt-wine); transform: translateY(-2px); }
.sdt-sec--dark .sdt-btn--ghost, .sdt-plumband .sdt-btn--ghost { color: #fff3f6; border-color: rgba(255,243,246,.4); }
.sdt-sec--dark .sdt-btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.sdt-btn--dark { background: var(--sdt-ink); color: #fff; }          /* the "inverse" button: plum fill */
.sdt-btn--dark:hover { background: var(--sdt-plum); color: #fff; transform: translateY(-2px); }
.sdt-btn--gold { background: var(--sdt-blush); color: var(--sdt-wine); border-color: var(--sdt-blush); }
.sdt-btn--gold:hover { background: var(--sdt-wine); color: #fff; border-color: var(--sdt-wine); transform: translateY(-2px); }

/* ---- interior PAGE HERO (About, FAQ, niche and region pages) ---- */
.sdt-phero { position: relative; background: var(--sdt-surface); color: var(--sdt-text); overflow: hidden; text-align: center;
    padding: clamp(120px, 14vw, 170px) 24px clamp(56px, 7vw, 88px); border-bottom: 1px solid var(--sdt-line); }
.sdt-phero::before { content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(161,10,77,.10), transparent 62%),
                radial-gradient(ellipse 45% 55% at 85% 100%, rgba(255,79,139,.10), transparent 60%); }
.sdt-phero__in { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.sdt-phero .sdt-eyebrow { justify-content: center; }
.sdt-phero .sdt-eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--sdt-wine); opacity: .8; }
.sdt-phero h1 { font-size: clamp(2.3rem, 5.4vw, 4.2rem); margin: 20px 0 16px; line-height: 1.05; letter-spacing: -.025em; text-wrap: balance; color: var(--sdt-ink); }
.sdt-phero h1 em { font-style: italic; font-weight: 600; color: var(--sdt-wine); }
.sdt-phero p { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--sdt-dim); max-width: 58ch; margin: 0 auto; line-height: 1.6; }
.sdt-phero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---- prose (article content) ---- */
.sdt-prose { color: #4a3340; font-size: 1.1rem; line-height: 1.72; }
.sdt-prose > * + * { margin-top: 1.1em; }
.sdt-prose h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); color: var(--sdt-ink); margin-top: 1.5em; line-height: 1.12; }
.sdt-prose h3 { font-size: 1.35rem; color: var(--sdt-ink); margin-top: 1.3em; }
.sdt-prose h2 em, .sdt-prose h3 em { font-style: italic; color: var(--sdt-wine); }
.sdt-prose a { color: var(--sdt-wine); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(161,10,77,.4); }
.sdt-prose a:hover { text-decoration-color: currentColor; }
.sdt-prose strong { color: var(--sdt-ink); }
.sdt-prose ul, .sdt-prose ol { padding-left: 1.3em; }
.sdt-prose li { margin-top: .5em; }
.sdt-prose li::marker { color: var(--sdt-wine); }
/* DB-driven legal text can carry legacy inline colours; force it to inherit the readable prose colour. */
.sdt-prose [style*="color"] { color: inherit !important; }

/* two-column article + sidebar */
.sdt-two { display: grid; grid-template-columns: 1fr 320px; gap: clamp(36px, 5vw, 72px); align-items: start; }
.sdt-aside { position: sticky; top: 96px; display: grid; gap: 18px; }
.sdt-card { background: var(--sdt-card); border: 1px solid var(--sdt-line); border-radius: 18px; padding: 26px; color: var(--sdt-dim); box-shadow: var(--sdt-shadow); }
.sdt-card--rose { background: linear-gradient(160deg, var(--sdt-blush), var(--sdt-card) 70%); border-color: var(--sdt-hair); }
.sdt-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--sdt-ink); }
.sdt-card p { color: var(--sdt-dim); font-size: 1rem; }
.sdt-card ul { list-style: none; padding: 0; margin: 0; }
.sdt-card li { padding: 8px 0; border-bottom: 1px solid var(--sdt-line); font-size: .98rem; }
.sdt-card li:last-child { border-bottom: 0; }
.sdt-card a { color: var(--sdt-wine); text-decoration: none; }
.sdt-card a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* icon feature cards (generic) */
.sdt-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sdt-fc { background: var(--sdt-card); border: 1px solid var(--sdt-line); border-radius: 20px; padding: 30px 26px; transition: transform .2s, border-color .2s, box-shadow .2s; box-shadow: var(--sdt-shadow); }
.sdt-fc:hover { transform: translateY(-4px); border-color: var(--sdt-hair); }
.sdt-fc__i { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px;
    background: var(--sdt-blush); color: var(--sdt-wine); margin-bottom: 18px; }
.sdt-fc__i i, .sdt-fc__i svg { width: 22px; height: 22px; }
.sdt-fc h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--sdt-ink); }
.sdt-fc p { color: var(--sdt-dim); font-size: 1rem; line-height: 1.55; }
/* links inside feature cards (ported from the sister site): headline links had no rule and rendered browser-default blue on the
   locations hub. Headline links inherit and turn wine on hover; body-copy links match .sdt-prose. */
.sdt-fc h3 a { color: inherit; text-decoration: none; transition: color .2s; }
.sdt-fc h3 a:hover { color: var(--sdt-wine); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }
.sdt-fc p a { color: var(--sdt-wine); text-decoration: underline; text-underline-offset: 3px; }

/* steps -- numbered like the table cards in the room */
.sdt-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sdt-step { position: relative; background: var(--sdt-card); border: 1px solid var(--sdt-line); border-radius: 20px;
    padding: 2.3rem 1.7rem 1.9rem; transition: border-color .2s, transform .2s; box-shadow: var(--sdt-shadow); }
.sdt-step:hover { border-color: var(--sdt-hair); transform: translateY(-4px); }
.sdt-step__n, .sdt-tent { width: 52px; height: 60px; border-radius: 5px; display: grid; place-items: center; margin-bottom: 1.3rem;
    background: linear-gradient(180deg, #ffffff, var(--sdt-cream)); color: var(--sdt-wine); border: 1px solid var(--sdt-line);
    font-family: var(--sdt-display); font-size: 1.7rem; font-weight: 700; font-style: normal; line-height: 1;
    box-shadow: 0 8px 20px rgba(74,8,38,.16); position: relative; }
.sdt-step__n::after, .sdt-tent::after { content: ""; position: absolute; left: 50%; bottom: -7px; transform: translateX(-50%);
    width: 34px; height: 7px; background: rgba(74,8,38,.18); filter: blur(4px); border-radius: 50%; }
.sdt-tent--sm { width: 36px; height: 42px; font-size: 1.15rem; margin: 0; border-radius: 4px; flex: none; }
.sdt-tent--sm::after { width: 22px; height: 5px; bottom: -5px; }
.sdt-step h3 { font-size: 1.3rem; margin: 0 0 .55rem; color: var(--sdt-ink); }
.sdt-step p { color: var(--sdt-dim); font-size: 1rem; margin: 0; }

/* faq list */
.sdt-faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.sdt-faq details { background: var(--sdt-card); border: 1px solid var(--sdt-line); border-radius: 14px; padding: 4px 22px; transition: border-color .2s; }
.sdt-faq details[open] { border-color: var(--sdt-hair); }
.sdt-faq summary { font-family: var(--sdt-display); font-size: 1.15rem; font-weight: 600; color: var(--sdt-ink); padding: 18px 2.4rem 18px 0;
    cursor: pointer; list-style: none; position: relative; display: flex; align-items: center; gap: 14px; transition: color .15s; }
.sdt-faq summary:hover { color: var(--sdt-wine); }
.sdt-faq summary::-webkit-details-marker { display: none; }
.sdt-faq summary::after { content: ""; position: absolute; right: .4rem; top: 50%; width: 10px; height: 10px;
    border-right: 2px solid var(--sdt-wine); border-bottom: 2px solid var(--sdt-wine); transform: translateY(-70%) rotate(45deg); transition: transform .22s; }
.sdt-faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.sdt-faq details > p { padding: 0 0 20px; color: var(--sdt-dim); line-height: 1.65; margin: 0; max-width: 68ch; }
.sdt-faq details > p a { color: var(--sdt-wine); text-decoration: underline; text-underline-offset: 3px; }

/* location / community chips */
.sdt-locs { display: flex; flex-wrap: wrap; gap: 10px; }
.sdt-chip { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sdt-body); font-size: 15px; font-weight: 600;
    padding: 10px 18px; border-radius: 999px; background: var(--sdt-card); border: 1px solid var(--sdt-line); color: var(--sdt-ink);
    text-decoration: none; transition: all .2s; }
.sdt-chip i, .sdt-chip svg { width: 15px; height: 15px; }
.sdt-chip:hover { background: var(--sdt-ink); color: #fff; border-color: var(--sdt-ink); transform: translateY(-2px); }
.sdt-chip--all { background: var(--sdt-wine); color: var(--sdt-on-wine); border-color: var(--sdt-wine); }
.sdt-chip--all:hover { background: var(--sdt-wine-hi); border-color: var(--sdt-wine-hi); color: var(--sdt-on-wine); }
.sdt-chip--gold { border-color: var(--sdt-wine); color: var(--sdt-wine); background: transparent; }
.sdt-chip--gold:hover { background: var(--sdt-wine); color: #fff; border-color: var(--sdt-wine); }

/* testimonials (on the plum band) */
.sdt-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sdt-quote { margin: 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 2rem 1.8rem; display: flex; flex-direction: column; position: relative; }
.sdt-quote::before { content: "\201C"; font-family: var(--sdt-display); font-size: 5rem; line-height: 1; color: var(--sdt-pink);
    opacity: .35; position: absolute; top: 6px; right: 22px; }
.sdt-quote p { font-family: var(--sdt-display); font-style: italic; font-size: 1.06rem; line-height: 1.6; color: #fff3f6; margin: 0 0 1.4rem; }
.sdt-quote__by { margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; gap: 12px; }
.sdt-quote__av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--sdt-wine), var(--sdt-pink));
    display: grid; place-items: center; color: #fff; font-family: var(--sdt-display); font-weight: 700; flex: none; }
.sdt-quote__by strong { display: block; font-size: .95rem; color: #fff; }
.sdt-quote__by span span { font-size: .82rem; color: rgba(255,243,246,.7); }
/* the same cards on a light section */
.sdt-sec:not(.sdt-sec--dark) .sdt-quote { background: var(--sdt-card); border-color: var(--sdt-line); box-shadow: var(--sdt-shadow); }
.sdt-sec:not(.sdt-sec--dark) .sdt-quote p { color: var(--sdt-ink); }
.sdt-sec:not(.sdt-sec--dark) .sdt-quote__by { border-top-color: var(--sdt-line); }
.sdt-sec:not(.sdt-sec--dark) .sdt-quote__by strong { color: var(--sdt-ink); }
.sdt-sec:not(.sdt-sec--dark) .sdt-quote__by span span { color: var(--sdt-faint); }

/* honest note box (format footnotes, "new in Tampa" notices) */
.sdt-note { display: flex; gap: 12px; align-items: flex-start; background: var(--sdt-card); border: 1px solid var(--sdt-line);
    border-left: 3px solid var(--sdt-wine); border-radius: 14px; padding: 16px 18px; color: var(--sdt-dim); font-size: 1rem; line-height: 1.55; }
.sdt-note i, .sdt-note svg { width: 18px; height: 18px; color: var(--sdt-wine); flex: none; margin-top: 2px; }
.sdt-note strong { color: var(--sdt-ink); }

/* final CTA band: wine, the one place the whole ground turns the brand colour */
.sdt-sec.sdt-cta, .sdt-cta { background: var(--sdt-wine); color: #fff; text-align: center; position: relative; overflow: hidden; }
.sdt-cta::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: radial-gradient(ellipse 60% 80% at 50% 10%, rgba(255,79,139,.35), transparent 65%),
                radial-gradient(ellipse 50% 60% at 50% 100%, rgba(58,18,38,.45), transparent 60%); }
.sdt-cta__in { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.sdt-cta .sdt-eyebrow { justify-content: center; color: #ffd0e0; }
.sdt-cta .sdt-eyebrow::before, .sdt-cta .sdt-eyebrow::after { content: ""; width: 26px; height: 2px; background: #ffd0e0; opacity: .8; }
.sdt-cta h2 { font-size: clamp(2.1rem, 5vw, 3.5rem); color: #fff; margin-top: 16px; text-wrap: balance; }
.sdt-cta h2 em { font-style: italic; color: #ffd0e0; }
.sdt-cta p { color: rgba(255,255,255,.86); font-size: 1.1rem; margin: 16px auto 30px; max-width: 56ch; }
.sdt-cta__mark { width: 56px; height: 56px; margin: 0 auto 1.6rem; display: block; }
.sdt-cta .sdt-mark .h1 { fill: #fff; }
.sdt-cta .sdt-mark .h2 { fill: #ffd0e0; }
.sdt-cta .sdt-btn--primary { background: #fff; color: var(--sdt-wine); box-shadow: 0 12px 26px -12px rgba(0,0,0,.4); }
.sdt-cta .sdt-btn--primary:hover { background: #fff0f5; color: var(--sdt-wine-lo); }
.sdt-cta .sdt-btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.sdt-cta .sdt-btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

@media (max-width: 900px) {
    .sdt-two { grid-template-columns: 1fr; }
    .sdt-aside { position: static; }
    .sdt-cards, .sdt-steps { grid-template-columns: 1fr 1fr; }
    .sdt-quotes { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .sdt-cards, .sdt-steps { grid-template-columns: 1fr; }
}

/* Native <select> popups follow the light site. */
.form-select { color-scheme: light; }
.form-select option { background-color: #fff; color: var(--sdt-ink); }
