/* ========================================================================
   The Fireside Grill — multi-theme stylesheet
   Default (no data-theme): "original" — faithful clone of thefiresidegrillpdx.com
     Black bg, Shadows Into Light Two everywhere, salmon button, image-only hero
   data-theme="ember"      — dark gastropub (Cormorant + Inter, ember accent)
   data-theme="warm-light" — cream trattoria (Cormorant + Lato, brick accent)
   ======================================================================== */

/* ---------- BASE TOKENS = "original" theme ---------- */
:root, body[data-theme="original"] {
    --bg:           #0a0a0a;
    --bg-elev:      #141414;
    --bg-deep:      #000000;
    --bg-section-light: #ffffff;
    --bg-section-light-ink: #1a1a1a;
    --ink:          #f6f3ee;
    --ink-mute:     #b8b3a9;
    --ink-dim:      #7a766d;
    --accent:       #e87d5a;
    --accent-bright:#ff9474;
    --rule:         rgba(246, 243, 238, 0.14);
    --rule-strong:  rgba(246, 243, 238, 0.30);

    --serif:  "Shadows Into Light Two", "Bradley Hand", "Comic Sans MS", cursive;
    --sans:   "Shadows Into Light Two", "Bradley Hand", cursive;
    --body-font: "Shadows Into Light Two", "Bradley Hand", cursive;

    --body-weight: 400;
    --body-size: 18px;
    --body-line: 1.5;
    --letter-tracking: 0.5px;
    --heading-letter: 1px;

    --container: 1180px;
    --container-narrow: 760px;

    --space-1:  0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
    --space-4:  1rem;    --space-5: 1.5rem; --space-6: 2rem;
    --space-7:  3rem;    --space-8: 4rem;   --space-9: 6rem;

    --hero-min: 78vh;
    --hero-overlay: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.4));
    --btn-radius: 24px;
}

/* ---------- "ember" — dark gastropub (the previous design) ---------- */
body[data-theme="ember"] {
    --bg:           #1a1614;
    --bg-elev:      #221d19;
    --bg-deep:      #100c0a;
    --bg-section-light: #221d19;
    --bg-section-light-ink: #f3ead8;
    --ink:          #f3ead8;
    --ink-mute:     #b6a994;
    --ink-dim:      #6f6557;
    --accent:       #d97a3a;
    --accent-bright:#f5994f;
    --rule:         rgba(243, 234, 216, 0.12);
    --rule-strong:  rgba(243, 234, 216, 0.25);

    --serif:  "Cormorant Garamond", Georgia, "Iowan Old Style", serif;
    --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --body-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --body-weight: 300;
    --body-size: 17px;
    --body-line: 1.65;
    --letter-tracking: 0;
    --heading-letter: -0.01em;

    --hero-overlay: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.75));
    --btn-radius: 2px;
}

/* ---------- "warm-light" — cream trattoria (light theme) ---------- */
body[data-theme="warm-light"] {
    --bg:           #f9f4ec;
    --bg-elev:      #ffffff;
    --bg-deep:      #efe6d7;
    --bg-section-light: #ffffff;
    --bg-section-light-ink: #2a221c;
    --ink:          #2a221c;
    --ink-mute:     #6b5e51;
    --ink-dim:      #a59986;
    --accent:       #a23b2c;
    --accent-bright:#c44d3a;
    --rule:         rgba(42, 34, 28, 0.12);
    --rule-strong:  rgba(42, 34, 28, 0.28);

    --serif:  "Cormorant Garamond", Georgia, "Iowan Old Style", serif;
    --sans:   "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --body-font: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --body-weight: 400;
    --body-size: 17px;
    --body-line: 1.65;
    --letter-tracking: 0;
    --heading-letter: 0;

    --hero-overlay: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.7));
    --btn-radius: 3px;
}

/* ====================================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body-font);
    font-weight: var(--body-weight);
    font-size: var(--body-size);
    line-height: var(--body-line);
    letter-spacing: var(--letter-tracking);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--accent-bright);
    text-decoration: none;
    transition: color .15s ease;
}
a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: var(--heading-letter);
    margin: 0 0 var(--space-4);
    color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-top: var(--space-7); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); margin-top: var(--space-6); }
h4 { font-size: 1.25rem; margin-top: var(--space-5); }
h5, h6 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-family: var(--sans);
    font-weight: 600;
    color: var(--accent);
    margin-top: var(--space-7);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--rule);
}

p { margin: 0 0 var(--space-4); }
strong, b { font-weight: 600; color: var(--ink); }
em, i { color: var(--ink-mute); }
hr { border: 0; border-top: 1px solid var(--rule); margin: var(--space-7) 0; }

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-5);
}

/* ============================ HEADER / NAV ============================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    /* Header is always dark — the white cursive logo demands it (matches the
       original site's black bar). Themes can override via --header-bg. */
    background: var(--header-bg, #000);
    color: #f6f3ee;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .site-nav__link { color: rgba(246,243,238,0.78); }
.site-header .site-nav__link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.site-header .site-nav__item.is-active .site-nav__link { color: var(--accent-bright); }
.site-header .nav-toggle span { background: #f6f3ee; }
.site-nav { background: #000 !important; }
.site-header__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: var(--space-4) var(--space-5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
}
.site-header__brand { display: inline-flex; }
.site-header__logo { height: 38px; width: auto; }

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: var(--space-2);
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: space-around;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}
.site-nav__link {
    display: inline-block;
    padding: var(--space-2) var(--space-3);
    color: var(--ink-mute);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 4px;
    transition: color .15s ease, background .15s ease;
}
.site-nav__link:hover { color: var(--ink); background: rgba(255,255,255,0.04); text-decoration: none; }
.site-nav__item.is-active .site-nav__link { color: var(--accent); }

@media (max-width: 880px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-deep);
        border-bottom: 1px solid var(--rule);
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
    }
    .site-nav.is-open { max-height: 80vh; }
    .site-nav__list {
        flex-direction: column;
        gap: 0;
        padding: var(--space-3) var(--space-5) var(--space-5);
    }
    .site-nav__link {
        display: block;
        padding: var(--space-3) var(--space-2);
        font-size: 1.05rem;
        border-bottom: 1px solid var(--rule);
        border-radius: 0;
    }
}

/* ================================ HERO ================================ */

.hero {
    min-height: var(--hero-min);
    background-size: cover;
    background-position: center 55%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-9) var(--space-5);
    border-bottom: 1px solid var(--rule);
}
.hero__inner { max-width: 820px; }
/* Hero is over a photo so text always reads on a darkened photo bg —
   force white-ish for contrast regardless of theme. */
.hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin: 0 0 var(--space-4);
    color: #fdf8ee;
    text-shadow: 0 2px 6px rgba(0,0,0,.65), 0 6px 30px rgba(0,0,0,.55);
}
.hero__tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    color: #fdf8ee;
    opacity: 0.95;
    margin: 0 0 var(--space-7);
    text-shadow: 0 2px 6px rgba(0,0,0,.55), 0 2px 16px rgba(0,0,0,.5);
}
.hero__cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================ BUTTONS ============================== */

.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
    border: 1px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary {
    background: var(--accent);
    color: var(--bg-deep);
    border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-bright); border-color: var(--accent-bright); color: var(--bg-deep); }
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--rule-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--ink-mute); color: var(--ink); }

/* ============================ QUICKBAR (home) ========================== */

.quickbar {
    background: var(--bg-elev);
    border-bottom: 1px solid var(--rule);
}
.quickbar__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: var(--space-5) var(--space-5);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}
.quickbar__item { display: flex; flex-direction: column; gap: var(--space-1); }
.quickbar__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-weight: 600;
}
.quickbar__value { font-size: 1rem; color: var(--ink); }
@media (max-width: 720px) {
    .quickbar__inner { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ================================ PROSE ================================ */

.prose {
    max-width: var(--container-narrow);
    padding-block: var(--space-8);
}
.prose ul { padding-left: 1.4rem; }
.prose li { margin-bottom: var(--space-2); }
.prose img { margin: var(--space-5) auto; border-radius: 4px; }
.prose blockquote {
    border-left: 3px solid var(--accent);
    padding-left: var(--space-5);
    margin: var(--space-6) 0;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--ink-mute);
}
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-5) 0;
    font-size: 0.95rem;
}
.prose th, .prose td {
    text-align: left;
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--rule);
}
.prose th {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}
.prose code {
    background: var(--bg-elev);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9em;
}

/* ============================ TEASER GRID ============================== */

.teasers {
    background: var(--bg-deep);
    padding: var(--space-9) var(--space-5);
    border-top: 1px solid var(--rule);
}
.teasers__grid {
    max-width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-5);
}
.teaser {
    display: block;
    padding: var(--space-6);
    background: var(--bg-elev);
    border: 1px solid var(--rule);
    border-radius: 4px;
    color: var(--ink);
    transition: transform .15s ease, border-color .15s ease;
}
.teaser:hover {
    text-decoration: none;
    transform: translateY(-3px);
    border-color: var(--accent);
}
.teaser__title {
    margin: 0 0 var(--space-3);
    color: var(--accent);
    font-size: 1.6rem;
}
.teaser__copy { margin: 0; color: var(--ink-mute); font-size: 0.95rem; }

/* ============================ PAGE / ARTICLE =========================== */

.page-article {
    max-width: var(--container);
    margin-inline: auto;
    padding: var(--space-8) var(--space-5);
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-7);
    align-items: start;
}
.page-article__header {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--rule);
    padding-bottom: var(--space-5);
    margin-bottom: var(--space-5);
}
.page-article__title { margin: 0 0 var(--space-3); }
.page-article__lead {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--ink-mute);
    margin: 0;
}
.page-article__body { padding-block: 0; max-width: none; }
.page-article__sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}
@media (max-width: 880px) {
    .page-article { grid-template-columns: 1fr; }
    .page-article__sidebar { position: static; }
}

.info-card {
    background: var(--bg-elev);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: var(--space-5);
}
.info-card h3 {
    margin: 0 0 var(--space-3);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-family: var(--sans);
    font-weight: 600;
    border: 0;
    padding: 0;
}
.info-card address { font-style: normal; line-height: 1.7; }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px dotted var(--rule);
    font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li > span:first-child { color: var(--ink-mute); }

/* ============================ MENU ITEMS ============================== */

.page--menu .prose p,
.page--brunch .prose p,
.page--beer .prose p,
.page--cocktails .prose p,
.page--happy-hour .prose p {
    margin: 0 0 var(--space-3);
    padding-bottom: var(--space-3);
    border-bottom: 1px dotted var(--rule);
}
.page--menu .prose p:last-child,
.page--brunch .prose p:last-child {
    border-bottom: 0;
}

/* ============================ FOOTER =================================== */

.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--rule);
    padding: var(--space-8) var(--space-5) var(--space-5);
    color: var(--ink-mute);
    font-size: 0.92rem;
}
.site-footer__inner {
    max-width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--rule);
}
.site-footer__col h3,
.site-footer__col h4 {
    font-family: var(--sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin: 0 0 var(--space-3);
    border: 0;
    padding: 0;
}
.site-footer__title { font-family: var(--serif) !important; font-size: 1.5rem !important; text-transform: none !important; letter-spacing: var(--heading-letter) !important; color: var(--ink) !important; }
.site-footer__tag { font-style: italic; }
.site-footer__hours { list-style: none; margin: 0; padding: 0; }
.site-footer__hours li { display: flex; justify-content: space-between; padding: 0.2rem 0; }
.site-footer__hours li > span:first-child { color: var(--ink-mute); margin-right: var(--space-4); }
.site-footer address { font-style: normal; line-height: 1.7; }
.site-footer__bottom {
    max-width: var(--container);
    margin: var(--space-5) auto 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--ink-dim);
    letter-spacing: 0.05em;
}
.site-footer__bottom p { margin: 0; }
@media (max-width: 720px) {
    .site-footer__inner { grid-template-columns: 1fr; gap: var(--space-5); }
}

/* ============================ ACCESSIBILITY =========================== */

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ====================================================================== */
/* ============== THEME-SPECIFIC LAYOUT OVERRIDES ======================= */
/* ====================================================================== */

/* --- "original" theme: strip embellishments to mirror the original site --- */
/* Use a no-theme + explicit-theme selector so middleware-set and default both match,
   without affecting ember/warm-light. */

body:not([data-theme="ember"]):not([data-theme="warm-light"]) .hero__title,
body:not([data-theme="ember"]):not([data-theme="warm-light"]) .hero__tagline,
body:not([data-theme="ember"]):not([data-theme="warm-light"]) .hero__cta { display: none; }

body:not([data-theme="ember"]):not([data-theme="warm-light"]) .hero {
    min-height: 60vh;
    border-bottom: 0;
}

body:not([data-theme="ember"]):not([data-theme="warm-light"]) .quickbar,
body:not([data-theme="ember"]):not([data-theme="warm-light"]) .teasers { display: none; }

body:not([data-theme="ember"]):not([data-theme="warm-light"]) em,
body:not([data-theme="ember"]):not([data-theme="warm-light"]) i {
    color: var(--ink-mute); font-style: normal;
}

body:not([data-theme="ember"]):not([data-theme="warm-light"]) .info-card {
    background: transparent;
    border: 0;
    padding: 0;
}

body:not([data-theme="ember"]):not([data-theme="warm-light"]) .btn--primary {
    background: var(--accent);
    color: #1a1a1a;
    border-radius: 24px;
    padding: 0.7rem 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.95rem;
}
body:not([data-theme="ember"]):not([data-theme="warm-light"]) .btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 24px;
    padding: 0.7rem 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.95rem;
}

body:not([data-theme="ember"]):not([data-theme="warm-light"]) .prose {
    text-align: center;
    max-width: 800px;
    font-size: 19px;
}
body:not([data-theme="ember"]):not([data-theme="warm-light"]) .page-article__body.prose {
    text-align: left;
}

body:not([data-theme="ember"]):not([data-theme="warm-light"]) .site-header {
    border-bottom: 0;
    background: #000;
}

/* ----- Original theme: inner pages are WHITE like the original site ----- */

body:not([data-theme="ember"]):not([data-theme="warm-light"]).page {
    background: #fff;
    color: #101828;
}
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .page-article {
    grid-template-columns: 1fr;
    max-width: 800px;
    text-align: center;
}
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .page-article__sidebar { display: none; }
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .page-article__header {
    border-bottom: 0;
    text-align: center;
    padding-bottom: 0;
    margin-bottom: var(--space-3);
}
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .page-article__title {
    color: #101828;
    text-transform: uppercase;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 1px;
}
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .page-article__lead { display: none; }
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose {
    color: #101828;
    text-align: left;
    max-width: 720px;
    margin-inline: auto;
    padding-block: var(--space-6);
}
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose p,
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose strong,
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose b { color: #101828; }
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose strong,
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose b { font-weight: 700; }
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose em,
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose i { color: #667085; font-style: italic; }

/* Section headings on inner pages: centered, italic-handwritten, larger */
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose h2,
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose h3,
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose h4,
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose h5,
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .prose h6 {
    text-align: center;
    color: #101828;
    border-bottom: 0;
    text-transform: none;
    letter-spacing: 1px;
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    margin-top: var(--space-7);
    padding-bottom: 0;
}

/* Menu items dotted divider lighter on white */
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page--menu .prose p,
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page--brunch .prose p,
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page--beer .prose p,
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page--cocktails .prose p,
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page--happy-hour .prose p {
    border-bottom-color: rgba(16, 24, 40, 0.10);
}

/* Pink/red links on white inner pages (matches original #c36) */
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page a { color: #c36; }
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page a:hover { color: #336; }

/* Footer stays dark on inner pages (like the original) */
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .site-footer {
    background: #000;
    color: #b8b3a9;
}
body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .site-footer__title { color: #f6f3ee !important; }

body:not([data-theme="ember"]):not([data-theme="warm-light"]).page .menu-legend {
    text-align: center;
    color: #667085;
    font-style: italic;
    margin-top: var(--space-7);
}
