/*
 * VAMPS // TRAMPS — storefront theme.
 *
 * Palette: near-black ground, bone-pale ink, single accent of deep
 * blood. Type pairs Cormorant Garamond (display, small-caps for the
 * ritual register) with Inter (body). Both load from Google Fonts
 * via the layout — no bundled webfont.
 *
 * The engine's Razor pages reference `.fc-*` class names from the
 * F&C demo as the default storefront class set. This theme restyles
 * those selectors with the V&T palette so the visual swap is just
 * the active theme.css; markup unchanged. Class names are
 * semantically Frisky-named but functionally engine-storefront-default
 * — a longer-term cleanup is to rename them to a neutral prefix.
 *
 * Custom-property naming convention: --vt-<token>.
 */

:root {
    /* Ground + ink */
    --vt-ground:        #050505;   /* near-black, the body */
    --vt-ground-soft:   #0d0d0d;   /* card surface */
    --vt-ground-rule:   #1b1b1b;   /* hairline dividers */
    --vt-ink:           #f5f0e6;   /* bone, the primary text */
    --vt-ink-mute:      #8a8278;   /* taupe, body subtle */
    --vt-ink-dim:       #4a463f;   /* deep taupe, captions */

    /* Single accent */
    --vt-blood:         #6b0c0c;   /* deep, do not screen-blend */
    --vt-blood-bright:  #a01010;   /* hover only */
    --vt-blood-deep:    #3a0707;   /* shadow */

    /* Ornament */
    --vt-bone-warm:     #d8c9a8;   /* aged paper, used sparingly */

    /* Geometry */
    --vt-radius: 2px;              /* sharp; the cult never rounds */

    /* Map the engine's fc-* tokens onto the V&T palette so any
       Razor template referencing the fc-* names renders in V&T. */
    --fc-noir:           var(--vt-ground);
    --fc-ink:            var(--vt-ink);
    --fc-ink-mute:       var(--vt-ink-mute);
    --fc-paper:          var(--vt-ground);
    --fc-paper-rule:     var(--vt-ground-rule);
    --fc-wine:           var(--vt-blood);
    --fc-wine-dark:      var(--vt-blood-bright);
    --fc-wine-deep:      var(--vt-blood-deep);
    --fc-rose-gold:      var(--vt-bone-warm);
    --fc-rose-gold-soft: var(--vt-ink-mute);
    --fc-blush:          var(--vt-ink);
    --fc-radius:         var(--vt-radius);

    /* Engine-shared loader accent */
    --wcy-loader-accent: var(--vt-bone-warm);
    --wcy-loader-bg:     rgba(5, 5, 5, 0.94);
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    background: var(--vt-ground);
    color: var(--vt-ink);
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
}

/* Display type — Cormorant Garamond holds the ritual register. */
h1, h2, h3, h4, h5, h6,
.fc-display {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    color: var(--vt-ink);
    font-weight: 500;
    letter-spacing: 0.01em;
    font-feature-settings: "smcp" on, "c2sc" on;
    text-transform: none;
}

h1, .fc-display {
    font-weight: 600;
    letter-spacing: 0.04em;
}

a {
    color: var(--vt-ink);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 200ms ease, border-color 200ms ease;
}
a:hover {
    color: var(--vt-bone-warm);
    border-bottom-color: var(--vt-bone-warm);
    text-decoration: none;
}

/* Eyebrow / small caps — used for chapter labels, drop tags. */
.fc-eyebrow {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.68rem;
    color: var(--vt-bone-warm);
    font-weight: 500;
}

/* Top nav — italic Cormorant for the menu items so they read as
   proper-noun chapters, not list items. Larger and more confident
   than F&C's plain Inter caps. */
.fc-nav {
    background: var(--vt-ground);
    border-bottom: 1px solid var(--vt-ground-rule);
    padding: 1.1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.fc-nav a { color: var(--vt-ink); }
.fc-nav a:hover { color: var(--vt-bone-warm); }

.fc-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.fc-nav-links li a {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-style: italic;
    font-weight: 500;
    font-size: 1.18rem !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    color: var(--vt-ink);
    padding: 0.25rem 0.4rem;
    transition: color 200ms ease;
    border-bottom: 1px solid transparent;
}
.fc-nav-links li a:hover {
    color: var(--vt-bone-warm);
    border-bottom-color: var(--vt-bone-warm);
}
/* Cart pill + sign-in / register links — keep small-caps Inter so
   the utility nav reads distinct from the chapter nav. */
.fc-nav-actions a,
.fc-cart-pill {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
}

/* Brand wordmark in the nav reads slashed. The Razor template
   renders an SVG wordmark; we restyle the surrounding text. */
.fc-brand,
.fc-wordmark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Hero — section only. Earlier [class*="hero"] catch-all was painting
   .fc-hero-inner with --vt-ground, which produced a solid black card
   over the portrait. The hero photo carries the image; the inner
   container just holds the text on top with a soft gradient for
   legibility. */
.fc-hero {
    background: var(--vt-ground); /* fallback if the photo fails to load */
    color: var(--vt-ink);
    min-height: 80vh;
}
/* Override F&C's wine-gradient overlay with a left-anchored bone-on-
   black gradient. Strong on the left where the text sits, fading
   completely on the right so the portrait carries the image. */
.fc-hero::before {
    background:
        linear-gradient(100deg,
            rgba(5, 5, 5, 0.88) 0%,
            rgba(5, 5, 5, 0.74) 22%,
            rgba(5, 5, 5, 0.38) 45%,
            rgba(5, 5, 5, 0.08) 65%,
            rgba(5, 5, 5, 0.00) 100%) !important;
}
.fc-hero h1 {
    color: var(--vt-ink);
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 1.05;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
}
.fc-hero p.lede {
    color: var(--vt-ink);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
}
/* The text container — pinned to the left rail. No bordered box; a
   very subtle dark panel hint sits behind the text so the eye reads
   a column instead of floating prose, but the photo still shows
   through at ~25%. */
.fc-hero-inner {
    background: linear-gradient(95deg,
        rgba(5, 5, 5, 0.55) 0%,
        rgba(5, 5, 5, 0.35) 60%,
        rgba(5, 5, 5, 0.00) 100%) !important;
    max-width: 36rem;
    padding: 3.5rem 2.5rem 3.5rem 2rem;
    margin-left: 0 !important;
    border-left: 2px solid rgba(216, 201, 168, 0.55);
}
.fc-hero-inner .fc-eyebrow,
.fc-hero-inner h1,
.fc-hero-inner p,
.fc-hero-inner > div {
    text-align: left !important;
}

/* Buttons */
.btn-primary,
.fc-btn-primary {
    background: var(--vt-blood);
    border-color: var(--vt-blood);
    color: var(--vt-ink);
    border-radius: var(--vt-radius);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.85rem 1.6rem;
    transition: background 200ms ease, border-color 200ms ease;
}
.btn-primary:hover,
.fc-btn-primary:hover {
    background: var(--vt-blood-bright);
    border-color: var(--vt-blood-bright);
    color: var(--vt-ink);
}

.btn-outline-secondary,
.fc-btn-ghost,
.fc-btn-secondary {
    background: transparent;
    border: 1px solid var(--vt-ink-mute);
    color: var(--vt-ink);
    border-radius: var(--vt-radius);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 500;
}
.btn-outline-secondary:hover,
.fc-btn-ghost:hover,
.fc-btn-secondary:hover {
    background: var(--vt-ink);
    color: var(--vt-ground);
    border-color: var(--vt-ink);
}

/* Hero-scoped secondary button — F&C theme has a more-specific
   rule `.fc-hero .fc-btn-secondary { color: var(--fc-paper); }`
   which on V&T resolves to dark-on-dark because our paper token
   is the body background, not a light text color. Match the
   selector specificity so V&T's hero button text stays legible. */
.fc-hero .fc-btn-secondary,
.fc-parallax .fc-btn-secondary {
    color: var(--vt-ink);
    background: transparent;
    border-color: rgba(245, 240, 230, 0.4);
}
.fc-hero .fc-btn-secondary:hover,
.fc-parallax .fc-btn-secondary:hover {
    background: rgba(245, 240, 230, 0.12);
    color: var(--vt-ink);
    border-color: var(--vt-ink);
}
.fc-hero .fc-btn-primary,
.fc-parallax .fc-btn-primary {
    background: var(--vt-bone-warm);
    border-color: var(--vt-bone-warm);
    color: var(--vt-ground);
}
.fc-hero .fc-btn-primary:hover,
.fc-parallax .fc-btn-primary:hover {
    background: var(--vt-ink);
    border-color: var(--vt-ink);
    color: var(--vt-ground);
}

/* Product card — covers BOTH .fc-card (default storefront grid)
   AND .fc-product-card. Inner sections .fc-card-image and
   .fc-card-body inherit from .fc-card but F&C paints them light
   separately, so include explicit dark overrides. */
.fc-product-card,
.product-card,
.card,
.fc-card {
    background: var(--vt-ground-soft) !important;
    border: 1px solid var(--vt-ground-rule) !important;
    border-radius: var(--vt-radius);
    color: var(--vt-ink);
    transition: border-color 200ms ease, transform 200ms ease;
    box-shadow: none !important;
}
.fc-product-card:hover,
.product-card:hover,
.card:hover,
.fc-card:hover {
    border-color: var(--vt-bone-warm) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45) !important;
    transform: translateY(-2px);
}
.fc-card-body,
.card-body {
    background: var(--vt-ground-soft) !important;
    color: var(--vt-ink);
    padding: 1rem 1.1rem 1.2rem;
}
.fc-card-image {
    background: var(--vt-ground) !important;
}
.fc-card-title,
.fc-card-title a {
    color: var(--vt-ink) !important;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}
.fc-card-price {
    color: var(--vt-bone-warm);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}
.fc-card-price-strike {
    color: var(--vt-ink-dim);
    text-decoration: line-through;
}
.fc-card-price-sale {
    color: var(--vt-blood-bright);
}
/* Sale + other product badges — the small chips top-left of the
   card image. F&C uses rose-gold-on-wine-deep; V&T renders them
   bone-on-blood. */
.fc-card-badge {
    background: var(--vt-blood) !important;
    color: var(--vt-ink) !important;
    border: 1px solid var(--vt-blood) !important;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.66rem;
    padding: 0.25rem 0.55rem;
    font-weight: 500;
}
.fc-card-badge-sale {
    background: var(--vt-bone-warm) !important;
    color: var(--vt-ground) !important;
    border-color: var(--vt-bone-warm) !important;
}
.fc-product-name,
.card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--vt-ink);
    letter-spacing: 0.02em;
}
.fc-product-price,
.price {
    font-family: 'Inter', sans-serif;
    color: var(--vt-bone-warm);
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* Sale strike-through */
.fc-product-was,
.price-was,
.text-strike,
del {
    color: var(--vt-ink-dim);
    text-decoration: line-through;
}

/* Forms — inputs are bone-on-ash, focus glows blood-bright */
.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea,
select {
    background: var(--vt-ground-soft);
    border: 1px solid var(--vt-ground-rule);
    color: var(--vt-ink);
    border-radius: var(--vt-radius);
}
.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    background: var(--vt-ground-soft);
    border-color: var(--vt-blood);
    box-shadow: 0 0 0 0.15rem rgba(107, 12, 12, 0.25);
    color: var(--vt-ink);
}
.form-control::placeholder,
input::placeholder { color: var(--vt-ink-dim); }

/* Footer */
.fc-footer,
.footer,
footer {
    background: var(--vt-ground);
    color: var(--vt-ink-mute);
    border-top: 1px solid var(--vt-ground-rule);
    padding: 4rem 0 2rem;
}
.fc-footer a,
.footer a,
footer a {
    color: var(--vt-ink-mute);
}
.fc-footer a:hover,
.footer a:hover,
footer a:hover { color: var(--vt-bone-warm); }

/* Tables (admin grids and storefront use tables generously) */
.table, table {
    color: var(--vt-ink);
    border-color: var(--vt-ground-rule);
}
.table thead th {
    border-color: var(--vt-ground-rule);
    color: var(--vt-bone-warm);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 500;
}

/* Bootstrap overrides — text-muted should map to taupe, not gray */
.text-muted { color: var(--vt-ink-mute) !important; }
.bg-light { background: var(--vt-ground-soft) !important; color: var(--vt-ink) !important; }

/* Parallax band — engine-shipped component, dark it. */
.parallax-band, .fc-parallax-band {
    background-color: var(--vt-ground);
}
.parallax-band::after {
    /* Veil overlay so background images recede behind the headline */
    background: linear-gradient(180deg, rgba(5,5,5,0.55), rgba(5,5,5,0.85));
}

/* Sigil divider — small SVG mark used between sections */
.vt-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
    color: var(--vt-bone-warm);
    font-size: 0.9rem;
    letter-spacing: 0.4em;
}
.vt-divider::before,
.vt-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--vt-ground-rule);
    margin: 0 1.5rem;
}

/* The Oath checkbox treatment — should feel like signing something */
.vt-oath {
    border-top: 1px solid var(--vt-ground-rule);
    border-bottom: 1px solid var(--vt-ground-rule);
    padding: 1.25rem 0;
    margin: 1.5rem 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    color: var(--vt-ink);
}

/* Accessibility — preserve focus visibility on dark ground */
:focus-visible {
    outline: 2px solid var(--vt-bone-warm);
    outline-offset: 2px;
}

/* ============================================================ */
/* Auth / paper-card surfaces                                     */
/* ============================================================ */
/* F&C's `.fc-paper-card` is a light-paper card used for sign-in,
   registration, account, checkout-step surfaces. On V&T's dark
   ground we re-skin it as a black panel with a hairline frame and
   a single hairline divider rule above the body. */
.fc-paper-card,
.fc-checkout-card,
[class*="paper-card"] {
    background: var(--vt-ground-soft);
    color: var(--vt-ink);
    border: 1px solid var(--vt-ground-rule);
    border-radius: var(--vt-radius);
    box-shadow:
        0 0 0 1px rgba(216, 201, 168, 0.06) inset,
        0 20px 40px rgba(0, 0, 0, 0.45);
}
.fc-paper-card h1,
.fc-paper-card h2,
.fc-paper-card h3,
.fc-paper-card .fc-eyebrow {
    color: var(--vt-ink);
}
.fc-paper-card .fc-eyebrow {
    color: var(--vt-bone-warm);
}
.fc-paper-card label,
.fc-paper-card .form-label {
    color: var(--vt-bone-warm);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    font-weight: 500;
}
/* Form inputs INSIDE auth/checkout cards — the global rule already
   targets .form-control but a higher-specificity selector here keeps
   the placeholder + text colours legible against the panel ground. */
.fc-paper-card .form-control,
.fc-paper-card input[type="text"],
.fc-paper-card input[type="email"],
.fc-paper-card input[type="password"],
.fc-paper-card input[type="search"],
.fc-paper-card textarea,
.fc-paper-card select {
    background: #000;
    border: 1px solid var(--vt-ground-rule);
    color: var(--vt-ink);
    padding: 0.7rem 0.85rem;
}
.fc-paper-card .form-control:focus {
    background: #000;
    border-color: var(--vt-bone-warm);
    box-shadow: 0 0 0 0.18rem rgba(216, 201, 168, 0.18);
    color: var(--vt-ink);
}
.fc-paper-card a {
    color: var(--vt-bone-warm);
}
.fc-paper-card a:hover {
    color: var(--vt-ink);
}
.fc-paper-card hr,
.fc-paper-card .border-top,
.fc-paper-card .border-bottom {
    border-color: var(--vt-ground-rule) !important;
}
/* Primary button inside the auth card — keep the blood accent
   from earlier but make sure the white-card-era contrast doesn't
   leak through. */
.fc-paper-card .btn-primary,
.fc-paper-card .fc-btn-primary {
    background: var(--vt-blood);
    border-color: var(--vt-blood);
    color: var(--vt-ink);
}
.fc-paper-card .btn-primary:hover,
.fc-paper-card .fc-btn-primary:hover {
    background: var(--vt-blood-bright);
    border-color: var(--vt-blood-bright);
}
/* The small "Remember me on this device" checkbox + label */
.fc-paper-card .form-check-input {
    background-color: var(--vt-ground-soft);
    border: 1px solid var(--vt-ink-mute);
}
.fc-paper-card .form-check-input:checked {
    background-color: var(--vt-blood);
    border-color: var(--vt-blood);
}
.fc-paper-card .form-check-label {
    color: var(--vt-ink-mute);
    text-transform: none;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
}

/* ============================================================ */
/* MORE COWBELL — V&T cult-luxe ornamental layer                 */
/* ============================================================ */

/* Section headers carry a decorative rule. The pattern is "rule,
   tiny sigil dot, rule" running the width of the section. Built
   with linear-gradients so no extra DOM is required. */
.fc-section,
.container > section,
section.container {
    position: relative;
}
.fc-section-header,
section h2:not(.fc-product-title):not(.fc-collection-title) {
    position: relative;
    padding-top: 2.4rem;
    margin-top: 2rem;
}
.fc-section-header::before,
section h2:not(.fc-product-title):not(.fc-collection-title)::before {
    content: '';
    position: absolute;
    top: 0.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 18rem;
    height: 1px;
    background:
        linear-gradient(to right,
            transparent 0%,
            var(--vt-ground-rule) 20%,
            var(--vt-bone-warm) 49%,
            var(--vt-bone-warm) 51%,
            var(--vt-ground-rule) 80%,
            transparent 100%);
}
/* And a small mark centred on the rule */
.fc-section-header::after,
section h2:not(.fc-product-title):not(.fc-collection-title)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 0.55rem;
    height: 0.55rem;
    border: 1px solid var(--vt-bone-warm);
    background: var(--vt-ground);
    box-sizing: border-box;
}

/* Section headings themselves take a small caps treatment */
.fc-section-header h2,
section h2.fc-section-title {
    text-align: center;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.04em;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

/* Eyebrows on the homepage hero + chapter headers — tighter caps,
   bone accent. The default rule above already sets these; bump the
   tracking for the hero specifically. */
.fc-hero .fc-eyebrow {
    letter-spacing: 0.45em;
    font-size: 0.72rem;
    padding-left: 0.45em;
}
.fc-hero .fc-eyebrow::before,
.fc-hero .fc-eyebrow::after {
    content: '·';
    color: var(--vt-bone-warm);
    margin: 0 0.6em;
    opacity: 0.7;
}

/* Hero headline — heavier serif weight for the brand mood */
.fc-hero h1 {
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.005em;
}
.fc-hero h1 em {
    font-style: italic;
    font-weight: 400;
}

/* Footer wordmark — give it a sigil bullet to the left */
.fc-footer-brand .fc-brand-wordmark::before {
    content: '';
    display: inline-block;
    width: 0.4rem;
    height: 0.4rem;
    border: 1px solid var(--vt-bone-warm);
    background: transparent;
    transform: rotate(45deg);
    margin-right: 0.55rem;
    vertical-align: 0.05rem;
}

/* Page lead / lede paragraphs — italicise the first sentence so it
   visually punches like an epigraph */
.lede,
.fc-lede,
.fc-product-description > p:first-child {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--vt-ink);
}

/* Drop-cap on long-form content pages (Oath, Our Story, etc.) —
   first letter of the first paragraph rendered as an ornamental
   small-caps serif. */
.fc-content-page .fc-content-body > p:first-of-type::first-letter,
.fc-content-page > article > p:first-of-type::first-letter,
main > article p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 3.4em;
    line-height: 0.9;
    float: left;
    margin: 0.1em 0.6rem -0.05em 0;
    color: var(--vt-bone-warm);
}

/* ============================================================ */
/* Promo cards — homepage image-backed banner strip              */
/* ============================================================ */
.vt-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}
@media (max-width: 900px) {
    .vt-promo-grid { grid-template-columns: 1fr; }
}
.vt-promo-card {
    position: relative;
    display: block;
    aspect-ratio: 5 / 6;
    background-size: cover;
    background-position: center;
    background-color: var(--vt-ground-soft);
    overflow: hidden;
    border: 1px solid var(--vt-ground-rule);
    color: var(--vt-ink);
    text-decoration: none;
    transition: border-color 280ms ease, transform 280ms ease;
}
.vt-promo-card:hover {
    border-color: var(--vt-bone-warm);
    color: var(--vt-ink);
}
.vt-promo-card:hover .vt-promo-cta {
    color: var(--vt-bone-warm);
    border-bottom-color: var(--vt-bone-warm);
}
.vt-promo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5,5,5,0.15) 0%, rgba(5,5,5,0.55) 45%, rgba(5,5,5,0.92) 100%);
    pointer-events: none;
}
.vt-promo-overlay-blood {
    background:
        linear-gradient(180deg, rgba(58,7,7,0.12) 0%, rgba(58,7,7,0.5) 45%, rgba(5,5,5,0.94) 100%);
}
.vt-promo-body {
    position: absolute;
    inset: auto 1.4rem 1.4rem 1.4rem;
    z-index: 1;
}
.vt-promo-body .fc-eyebrow {
    color: var(--vt-bone-warm);
    letter-spacing: 0.3em;
    font-size: 0.66rem;
    margin-bottom: 0.6rem;
    display: block;
}
.vt-promo-body h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.9rem;
    line-height: 1.05;
    color: var(--vt-ink);
    margin: 0 0 0.65rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.vt-promo-body p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 0.96rem;
    line-height: 1.45;
    color: var(--vt-ink);
    margin: 0 0 0.85rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}
.vt-code {
    color: var(--vt-bone-warm);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.18em;
    padding: 0.05rem 0.4rem;
    border: 1px solid var(--vt-bone-warm);
    border-radius: 2px;
}
.vt-promo-cta {
    color: var(--vt-ink);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    border-bottom: 1px solid var(--vt-ink);
    padding-bottom: 2px;
    transition: color 200ms ease, border-color 200ms ease;
}

/* ============================================================ */
/* Editorial gallery (V&T homepage)                              */
/* ============================================================ */
/* A grid of portrait close-ups, captioned with Roman numerals.
   Cells take a 3:4 portrait ratio and an inset shadow on hover. */
.vt-editorial-caption {
    text-align: center;
    max-width: 38rem;
    margin: 1.2rem auto 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--vt-ink-mute);
    line-height: 1.6;
}
.vt-editorial-grid {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}
@media (max-width: 1024px) {
    .vt-editorial-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .vt-editorial-grid { grid-template-columns: repeat(2, 1fr); }
}
.vt-editorial-cell {
    position: relative;
    margin: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--vt-ground-soft);
    border: 1px solid var(--vt-ground-rule);
    transition: transform 320ms ease, border-color 320ms ease;
}
.vt-editorial-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) contrast(1.05);
    transition: filter 320ms ease, transform 320ms ease;
}
.vt-editorial-cell:hover {
    border-color: var(--vt-bone-warm);
}
.vt-editorial-cell:hover img {
    filter: saturate(1.08) contrast(1.1);
    transform: scale(1.03);
}
.vt-editorial-cell figcaption {
    position: absolute;
    bottom: 0.5rem;
    left: 0.6rem;
    color: var(--vt-bone-warm);
    font-family: 'Inter', sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}
.vt-editorial-num {
    background: rgba(5, 5, 5, 0.65);
    padding: 0.25rem 0.45rem;
    border-radius: 1px;
}

/* ============================================================ */
/* Chapter tiles (V&T homepage)                                  */
/* ============================================================ */
.vt-chapter-tile {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
    background-color: var(--vt-ground-soft);
    overflow: hidden;
    border: 1px solid var(--vt-ground-rule);
    text-decoration: none;
    transition: border-color 320ms ease, transform 320ms ease;
}
.vt-chapter-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.0) 35%, rgba(5,5,5,0.85) 100%);
    pointer-events: none;
}
.vt-chapter-tile:hover {
    border-color: var(--vt-bone-warm);
}
.vt-chapter-meta {
    position: absolute;
    bottom: 1.4rem;
    left: 1.4rem;
    right: 1.4rem;
    z-index: 1;
}
.vt-chapter-meta .fc-eyebrow {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--vt-bone-warm);
    letter-spacing: 0.05em;
    text-transform: none;
    margin-bottom: 0.2rem;
}
.vt-chapter-meta h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-style: italic;
    font-size: 1.9rem;
    color: var(--vt-ink);
    margin: 0;
    letter-spacing: 0.02em;
}

/* ============================================================ */
/* Kill remaining white-card / white-border surfaces             */
/* ============================================================ */
/* These selectors are inherited from F&C's theme.css where they
   use #fff or paper colors as default surfaces. On V&T's dark
   ground they leak as obvious white panels. Re-skin all of them. */

/* Browse / category page filter rail */
.fc-filter-rail {
    background: var(--vt-ground-soft) !important;
    border: 1px solid var(--vt-ground-rule) !important;
    color: var(--vt-ink);
}
.fc-filter-rail-summary,
.fc-filter-rail-summary-text {
    color: var(--vt-ink);
}
.fc-filter-rail label,
.fc-filter-rail .fc-facet-label,
.fc-filter-rail .fc-flag-toggle {
    color: var(--vt-bone-warm);
}
.fc-filter-rail input[type="number"],
.fc-filter-rail input[type="text"],
.fc-filter-rail input[type="search"],
.fc-filter-rail select,
.fc-filter-rail .form-control {
    background: var(--vt-ground) !important;
    border: 1px solid var(--vt-ground-rule) !important;
    color: var(--vt-ink) !important;
}
.fc-filter-rail .fc-facet-range-track {
    background: var(--vt-ground-rule);
}
.fc-filter-rail .fc-facet-range-fill {
    background: var(--vt-blood);
}
.fc-filter-rail summary::-webkit-details-marker,
.fc-filter-rail summary::marker {
    color: var(--vt-bone-warm);
}

/* Active-filter chips (the "Category: II. Talismans ×" pill) */
.fc-active-filter,
[class*="active-filter"] {
    background: var(--vt-ground-soft);
    border: 1px solid var(--vt-blood);
    color: var(--vt-ink);
}

/* PDP product image gallery — white framing card */
.fc-product-gallery,
.fc-product-gallery-main,
[class*="product-gallery"] {
    background: var(--vt-ground) !important;
    border: 1px solid var(--vt-ground-rule) !important;
}
.fc-product-thumbs,
.fc-product-thumb {
    background: var(--vt-ground-soft);
    border: 1px solid var(--vt-ground-rule);
}
.fc-product-thumb.is-active {
    border-color: var(--vt-bone-warm);
}

/* Nav search input pill — was light paper in F&C */
.fc-nav-search {
    background: var(--vt-ground-soft) !important;
    border: 1px solid var(--vt-ground-rule) !important;
}
.fc-nav-search input[type="search"] {
    background: transparent !important;
    color: var(--vt-ink) !important;
    border: none !important;
}
.fc-nav-search input::placeholder {
    color: var(--vt-ink-dim) !important;
}
.fc-nav-search button {
    color: var(--vt-bone-warm) !important;
    background: transparent !important;
}

/* Search-suggest dropdown — was rgb(255,255,255) with bone text
   (invisible content). Skin it dark. */
.fc-nav-search-suggest {
    background: var(--vt-ground-soft) !important;
    border: 1px solid var(--vt-ground-rule) !important;
    color: var(--vt-ink) !important;
}
.fc-nav-search-suggest a,
.fc-nav-search-suggest .fc-suggest-item {
    color: var(--vt-ink) !important;
}
.fc-nav-search-suggest a:hover,
.fc-nav-search-suggest .fc-suggest-item:hover,
.fc-nav-search-suggest .fc-suggest-item[aria-selected="true"] {
    background: var(--vt-ground-rule) !important;
    color: var(--vt-bone-warm) !important;
}

/* Quantity input + small generic inputs that escape the auth-card
   scope. Catch all the strays. */
input[type="number"],
input[type="text"]:not(.fc-paper-card *),
input[type="email"]:not(.fc-paper-card *),
input[type="search"]:not(.fc-paper-card *) {
    background: var(--vt-ground-soft);
    border: 1px solid var(--vt-ground-rule);
    color: var(--vt-ink);
}

/* Lightbox image background — was rgb(255,255,255), shows as a
   white frame on PDP gallery enlargement. */
.fc-lightbox-image,
.fc-lightbox-stage img {
    background: var(--vt-ground) !important;
}
.fc-lightbox {
    background: rgba(5, 5, 5, 0.92) !important;
}

/* Chapter / collection hero banner. Earlier the title overflowed
   to the left because the section used a full-bleed background
   image + container that wasn't padding the title block. Constrain
   it and put the title inside the container's normal column. */
.fc-collection-hero,
.fc-category-hero,
[class*="collection-hero"],
[class*="category-hero"] {
    padding: 4rem 0;
    background-color: var(--vt-ground);
}
.fc-collection-hero::before,
.fc-category-hero::before {
    background: linear-gradient(180deg,
        rgba(5,5,5,0.45) 0%,
        rgba(5,5,5,0.78) 100%) !important;
}
.fc-collection-hero h1,
.fc-category-hero h1 {
    font-size: clamp(2rem, 4vw, 3.4rem) !important;
    color: var(--vt-ink);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

/* ============================================================ */
/* Premium-rite block on Register page (fictitious)              */
/* ============================================================ */
.vt-auth-rite {
    margin-top: 2.4rem;
    padding: 1.5rem 1.6rem;
    border: 1px solid var(--vt-ground-rule);
    background: rgba(0, 0, 0, 0.35);
    border-radius: var(--vt-radius);
}
.vt-auth-rite-eyebrow {
    color: var(--vt-bone-warm) !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.32em !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    display: block;
    margin-bottom: 0.7rem;
}
.vt-auth-rite p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--vt-ink-mute);
    margin: 0 0 0.85rem;
}
.vt-auth-rite address {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-style: normal;
    font-size: 0.78rem;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: var(--vt-bone-warm);
    padding: 0.6rem 0.8rem;
    border-left: 2px solid var(--vt-blood);
    margin: 0 0 0.85rem;
}
.vt-auth-rite-fine {
    color: var(--vt-ink-dim) !important;
    font-size: 0.88rem !important;
    margin: 0 !important;
}

/* ============================================================ */
/* 988 care line (footer)                                        */
/* ============================================================ */
/* Hot pink accent so the line reads as a genuine care signal,
   separate from V&T's bone/blood palette. No tel: on the number
   per house rule — we display it but don't auto-dial. The link
   to 988lifeline.org carries rel=nofollow so it doesn't pass
   PageRank from the storefront (deliberate). */
.vt-care-line {
    margin: 1.2rem auto 0;
    max-width: 56rem;
    text-align: center;
    color: var(--vt-ink-mute);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.55;
    padding: 0.9rem 1.2rem;
    border-top: 1px solid rgba(255, 20, 147, 0.22);
    border-bottom: 1px solid rgba(255, 20, 147, 0.22);
}
.vt-care-line a {
    color: #ff1493;
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: none;
    border-bottom: 1px solid rgba(255, 20, 147, 0.55);
    padding-bottom: 1px;
    margin: 0 0.15rem;
    text-decoration: none;
}
.vt-care-line a:hover {
    color: #ff5db1;
    border-bottom-color: #ff5db1;
}
.vt-care-number {
    color: #ff1493;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.22em;
    margin-left: 0.2rem;
}

/* Cookie consent fine-print addendum — V&T-coded disclaimer block
   that lives below the standard cookie copy. Set via
   Storefront:CookieFinePrint config. Italic Cormorant, taupe ink,
   thin top rule, leave-the-room link in bone-warm. */
.wcy-consent-fineprint {
    margin-top: 0.7rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(216, 201, 168, 0.18);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--vt-ink-mute);
    letter-spacing: 0.005em;
}
.wcy-consent-fineprint a[data-wcy-leave] {
    color: var(--vt-bone-warm);
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-left: 0.5rem;
    text-decoration: none;
    border-bottom: 1px solid var(--vt-bone-warm);
    padding-bottom: 2px;
}
.wcy-consent-fineprint a[data-wcy-leave]:hover {
    color: var(--vt-ink);
    border-bottom-color: var(--vt-ink);
}

/* ============================================================ */
/* Auth pages — split editorial treatment                        */
/* ============================================================ */
/* Login + Register pages render full-bleed: left half is a
   dramatic photo with a Roman numeral + pulled quote, right half
   is the V&T form panel. The standard fc-paper-card styling is
   replaced wholesale by vt-auth-* classes used only on these pages. */

.vt-auth-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    background: var(--vt-ground);
    margin: 0;
}
@media (max-width: 900px) {
    .vt-auth-split { grid-template-columns: 1fr; min-height: auto; }
    .vt-auth-photo { min-height: 40vh; }
}

/* PHOTO HALF */
.vt-auth-photo {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--vt-ground-soft);
    overflow: hidden;
    filter: contrast(1.04) saturate(0.95);
}
.vt-auth-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(5, 5, 5, 0.05) 0%,
            rgba(5, 5, 5, 0.35) 60%,
            rgba(5, 5, 5, 0.78) 100%);
    pointer-events: none;
}
.vt-auth-photo-mark {
    position: absolute;
    inset: 0;
    padding: 3rem 3rem 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.vt-auth-photo-numeral {
    align-self: flex-start;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.85;
    color: var(--vt-ink);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
    letter-spacing: -0.01em;
    opacity: 0.92;
}
.vt-auth-photo-caption {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-left: 1px solid rgba(216, 201, 168, 0.6);
    padding-left: 1.2rem;
    max-width: 30rem;
}
.vt-auth-photo-caption .fc-eyebrow {
    color: var(--vt-bone-warm);
    letter-spacing: 0.32em;
    font-size: 0.66rem;
}
.vt-auth-photo-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    color: var(--vt-ink);
    font-size: 1.4rem;
    line-height: 1.35;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* PANEL HALF — the form */
.vt-auth-panel {
    background: var(--vt-ground);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 3rem;
}
.vt-auth-panel-inner {
    width: 100%;
    max-width: 28rem;
}
.vt-auth-eyebrow {
    color: var(--vt-bone-warm) !important;
    letter-spacing: 0.4em !important;
    font-size: 0.7rem;
    display: inline-block;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--vt-bone-warm);
}
.vt-auth-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    line-height: 1.05;
    color: var(--vt-ink);
    margin: 1.4rem 0 1.1rem;
    letter-spacing: 0.005em;
}
.vt-auth-lede {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.04rem;
    line-height: 1.55;
    color: var(--vt-ink-mute);
    margin-bottom: 2.4rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--vt-ground-rule);
}

/* Form fields — thin underline style, no boxed borders. */
.vt-auth-field {
    margin-bottom: 1.6rem;
}
.vt-auth-field label {
    display: block;
    color: var(--vt-bone-warm);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.64rem;
    font-weight: 500;
    margin-bottom: 0.55rem;
}
.vt-auth-field input,
.vt-auth-field input[type="email"],
.vt-auth-field input[type="text"],
.vt-auth-field input[type="password"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.35) !important;
    border: 1px solid var(--vt-ground-rule) !important;
    border-radius: var(--vt-radius) !important;
    color: var(--vt-ink) !important;
    padding: 0.75rem 0.9rem !important;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    letter-spacing: 0.01em;
    box-shadow: none !important;
    transition: border-color 220ms ease, box-shadow 220ms ease;
}
.vt-auth-field input::placeholder {
    color: var(--vt-ink-dim) !important;
    font-style: italic;
    opacity: 1;
}
.vt-auth-field input:focus {
    outline: none !important;
    border-color: var(--vt-bone-warm) !important;
    box-shadow: 0 0 0 1px var(--vt-bone-warm) inset !important;
}

/* Oath block — a fineprint italic acknowledgement above the
   submit button on Register. Functions as visual punctuation
   between the form and the act of submitting it. */
.vt-auth-oath {
    margin: 2rem 0 1.8rem;
    padding: 1rem 0 1.1rem;
    border-top: 1px solid var(--vt-ground-rule);
    border-bottom: 1px solid var(--vt-ground-rule);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    color: var(--vt-ink);
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Remember-me row on Login */
.vt-auth-remember {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.4rem 0 2rem;
}
.vt-auth-remember input[type="checkbox"] {
    background: var(--vt-ground-soft);
    border: 1px solid var(--vt-ink-mute);
    width: 1.05rem;
    height: 1.05rem;
}
.vt-auth-remember input[type="checkbox"]:checked {
    background: var(--vt-blood);
    border-color: var(--vt-blood);
}
.vt-auth-remember label {
    color: var(--vt-ink-mute);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 0.98rem;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

/* Submit button — full width, V&T-styled */
.vt-auth-submit {
    width: 100%;
    background: var(--vt-blood) !important;
    border-color: var(--vt-blood) !important;
    color: var(--vt-ink) !important;
    text-transform: uppercase;
    letter-spacing: 0.28em !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.78rem;
    padding: 1rem 1.4rem;
    border-radius: var(--vt-radius);
}
.vt-auth-submit:hover {
    background: var(--vt-blood-bright) !important;
    border-color: var(--vt-blood-bright) !important;
}

/* Foot links beneath the form */
.vt-auth-foot {
    margin-top: 2rem;
    text-align: center;
    color: var(--vt-ink-mute);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 0.98rem;
}
.vt-auth-foot a {
    color: var(--vt-bone-warm);
    font-style: normal;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    margin-left: 0.5rem;
    text-decoration: none;
    border-bottom: 1px solid var(--vt-bone-warm);
    padding-bottom: 2px;
}
.vt-auth-foot a:hover {
    color: var(--vt-ink);
    border-bottom-color: var(--vt-ink);
}
.vt-auth-foot-admin {
    margin-top: 0.6rem;
    opacity: 0.75;
    font-size: 0.86rem;
}

/* Error block */
.vt-auth-error {
    background: rgba(107, 12, 12, 0.18);
    border: 1px solid var(--vt-blood);
    color: var(--vt-ink);
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.4rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
}
.vt-auth-error ul {
    margin: 0;
    padding-left: 1.2rem;
}

/* Auth pages should NOT inherit fc-paper-card or fc-account-shell
   container padding — strip the container constraints */
.vt-auth-split,
.vt-auth-split.container {
    max-width: none !important;
    padding: 0 !important;
}

/* Empty-state alerts used across the storefront (Cart empty, "atelier
   between drops" on homepage, etc.). F&C uses inline styles that
   resolve to light-pink-on-wine; without overrides V&T renders them
   bone-on-dark-blood (effectively a bright bone card on the dark
   page). Force the dark V&T treatment with high-specificity rules
   that win over the inline style (inline lacks !important; ours has
   it). */
.fc-cart-shell .alert,
[class*="cart-shell"] .alert,
.container .alert,
section .alert {
    background: var(--vt-ground-soft) !important;
    color: var(--vt-ink) !important;
    border: 1px solid var(--vt-ground-rule) !important;
    border-radius: var(--vt-radius);
    padding: 1.4rem 1.6rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
}
.container .alert a,
section .alert a,
.fc-cart-shell .alert a {
    color: var(--vt-bone-warm);
    font-style: normal;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    margin-left: 0.4rem;
    border-bottom: 1px solid var(--vt-bone-warm);
    padding-bottom: 2px;
    text-decoration: none;
}
.container .alert a:hover,
section .alert a:hover {
    color: var(--vt-ink);
    border-bottom-color: var(--vt-ink);
}

/* ============================================================ */
/* Brand lockup — Film Leader replaces emblem + text combo       */
/* ============================================================ */
/* logomark.svg is now the Film Leader horizontal lockup (3:1
   aspect, ~600x200 viewBox) which CONTAINS the wordmark inside
   its banner. So the next-to-it text wordmark is redundant and
   needs to be hidden. The emblem img is sized to read in the nav
   at ~150-180px wide, taller than F&C's square emblem treatment. */
.fc-brand-emblem {
    width: auto !important;
    height: 72px !important;
    max-width: 320px;
}
.fc-brand-emblem-footer {
    height: 220px !important;
    max-width: none !important;
    width: 100% !important;
    opacity: 0.95;
    display: block;
    margin-bottom: 1.5rem;
}

/* Mobile + tablet portrait (< 992px): the .fc-footer-brand column has
   `flex: 0 0 33%` locked at all viewports (set above for desktop
   layout), so on narrower screens the column is too thin and the
   3:1 lockup gets distorted by the height:220px lock. Override the
   column flex AND the inner img so the brand cell takes a full row
   and the lockup scales proportionally. Breakpoint at Bootstrap's
   lg (992px) so phones AND tablet portrait both look right; desktop
   (>=992px) keeps the 4-column footer with brand-on-left layout. */
@media (max-width: 991px) {
    .fc-footer .row > .col-md-3:first-child,
    .fc-footer-brand {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .fc-brand-emblem-footer {
        height: auto !important;
        width: 70% !important;
        max-width: 420px !important;
        margin: 0 auto 1.5rem auto !important;
    }
}
/* Footer brand column has to be wider than the default col-md-3
   to accommodate the large lockup without clipping. The 5-column
   layout (brand + 4 nav columns) collapses to brand col-md-4 +
   the rest. */
.fc-footer .row > .col-md-3:first-child,
.fc-footer-brand {
    flex: 0 0 33%;
    max-width: 100%;
}
/* Nav block needs more vertical room for the taller lockup */
.fc-nav {
    padding: 1.4rem 0 !important;
}
.fc-brand-wordmark {
    display: none !important;
}
/* Header anchor padding tightens since the lockup is wider than the
   old emblem+text combo. */
.fc-brand {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0;
    color: var(--vt-ink);
}
.fc-brand:hover .fc-brand-emblem {
    opacity: 0.85;
}

/* The // separator in any text wordmark that still surfaces (footer
   copyright currently uses @wmLeft@wmSep@wmRight literal text). Per
   house rule, // is always blood-red. */
.fc-brand-amp,
.fc-brand-wordmark-text .vt-slash,
.fc-footer-bottom .vt-slash {
    color: var(--vt-blood) !important;
}
/* Footer-bottom wordmark uses the literal "VAMPS//TRAMPS" with no
   span around the slash, so style by content match isn't possible.
   We re-render the footer wordmark with a styled // via JS at run
   time. Cleaner alternative is editing the layout to wrap // in a
   span; below is the CSS path that catches the wrap-when-rendered
   case. */

/* Reduced motion — kill transitions */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* ---------------------------------------------------------------------
   PBI #14928 — plain-language hint after the ritual label on auth
   forms. Smaller, muted, italicised so it reads as a stage direction,
   not a competing label.
   --------------------------------------------------------------------- */
.vt-auth-hint {
    display: inline-block;
    margin-left: 0.4em;
    font-family: var(--vt-sans, "Inter", system-ui, sans-serif);
    font-size: 0.78em;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(245, 240, 230, 0.55);
}

/* ---------------------------------------------------------------------
   PBI #14932 — footer social icons. Spaced, currentColor-fillable so
   the SVG paths inherit the footer link colour (bone-warm), with a
   hover lift to the blood red.
   --------------------------------------------------------------------- */
.vt-social {
    display: flex;
    gap: 0.9rem;
    align-items: center;
}
.vt-social a {
    color: rgba(245, 240, 230, 0.75);
    transition: color 160ms ease, transform 160ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}
.vt-social a:hover {
    color: var(--vt-blood, #6b0c0c);
    transform: translateY(-1px);
}

/* ---------------------------------------------------------------------
   PBI #14929 — above-the-fold trust bar on the homepage. Three cells
   in a row on desktop, stacked on mobile. Each is a link to the page
   that fleshes out the rule. Treats the row as a single horizontal
   line of authority so it can't be mistaken for body content.
   --------------------------------------------------------------------- */
.vt-trust-bar {
    margin-top: 0;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(245, 240, 230, 0.08);
    border-bottom: 1px solid rgba(245, 240, 230, 0.08);
    background: rgba(20, 16, 18, 0.6);
}
.vt-trust-cell {
    display: block;
    padding: 1.1rem 1.4rem;
    color: var(--vt-ink, #f5f0e6);
    text-decoration: none;
    border-right: 1px solid rgba(245, 240, 230, 0.05);
    transition: background 140ms ease;
}
.vt-trust-cell:last-child { border-right: none; }
.vt-trust-cell:hover {
    background: rgba(245, 240, 230, 0.04);
    color: var(--vt-ink, #f5f0e6);
}
.vt-trust-cell .fc-eyebrow {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--vt-blood, #6b0c0c);
}
.vt-trust-cell strong {
    font-family: var(--vt-serif, "Cormorant Garamond", serif);
    font-weight: 400;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.35;
    color: var(--vt-ink, #f5f0e6);
}
@media (max-width: 767px) {
    .vt-trust-cell { border-right: none; border-bottom: 1px solid rgba(245, 240, 230, 0.05); }
    .vt-trust-cell:last-child { border-bottom: none; }
}

/* ---------------------------------------------------------------------
   PBI #14924 — PDP shipping + returns + seal summary directly under
   the Add-to-Bag button. Three bullet rows, eyebrow strong + plain
   body. The links open the canonical content pages.
   --------------------------------------------------------------------- */
.vt-pdp-trust {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    border-top: 1px solid rgba(245, 240, 230, 0.08);
}
.vt-pdp-trust li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(245, 240, 230, 0.06);
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(245, 240, 230, 0.85);
}
.vt-pdp-trust li strong {
    color: var(--vt-ink, #f5f0e6);
    font-weight: 600;
    margin-right: 0.35em;
}
.vt-pdp-trust li a {
    margin-left: 0.45em;
    color: var(--vt-blood, #6b0c0c);
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
}
.vt-pdp-trust li a:hover { color: var(--vt-ink, #f5f0e6); }
