/* =====================================================================
   Shop Local Coupon Book — public stylesheet
   Design system driven by CSS variables (editable from the admin area).
   ===================================================================== */

:root {
    --primary: #f2bf45;
    --secondary: #000000;
    --accent: #d9a83a;
    --dark: #12100e;
    --light: #fbf7f0;

    --ink: #1f2a30;
    --muted: #5f6f78;
    --line: #e7e0d4;
    --white: #ffffff;

    --link: #b45309;
    --link-hover: #92400e;

    --radius: 0px;
    --radius-sm: 0px;
    --radius-lg: 0px;
    --shadow-sm: 0 1px 2px rgba(18, 16, 14, 0.04), 0 4px 14px rgba(18, 16, 14, 0.03);
    --shadow: 0 2px 8px rgba(18, 16, 14, 0.05), 0 14px 36px rgba(18, 16, 14, 0.06);
    --shadow-lg: 0 4px 20px rgba(18, 16, 14, 0.07), 0 28px 56px rgba(18, 16, 14, 0.08);

    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-head: var(--font-sans);
    --font-display: var(--font-sans);
    --font-body: var(--font-sans);

    --wrap: 1180px;
    --header-height: 64px;
    --topbar-height: 36px;
    --site-chrome-height: calc(var(--topbar-height) + var(--header-height));
    --grid-line: color-mix(in srgb, var(--secondary) 5%, transparent);
    --dot-fill: color-mix(in srgb, var(--secondary) 7%, transparent);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background-color: var(--light);
    background-image:
        radial-gradient(ellipse 80% 50% at 15% -10%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 105%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 50%);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a {
    color: var(--link);
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--link) 38%, transparent);
    text-underline-offset: 3px;
    transition: color .2s ease, text-decoration-color .2s ease;
}
a:hover {
    color: var(--link-hover);
    text-decoration-color: currentColor;
}

/* Readable link colour on dark backgrounds */
.band a:not([class*="btn"]),
.flipbook-panel a:not([class*="btn"]),
.cta-band:not(.cta-band--premium) a:not([class*="btn"]) {
    color: var(--primary);
    text-decoration: none;
}
.band a:not([class*="btn"]):hover,
.flipbook-panel a:not([class*="btn"]):hover,
.cta-band:not(.cta-band--premium) a:not([class*="btn"]):hover {
    color: #fff;
}

/* UI / navigation links — colour only, no underline */
a[class*="btn"],
.brand,
.nav-links a,
.cart-link,
.top-bar a,
.partner-banner__row,
.breadcrumb a,
.card-media,
.card-body h3 a,
.footer-links a,
.footer-contact a,
.footer-grid a,
.footer-brand,
.site-nav-mobile a,
.social-row a,
.social-row--footer a,
.pagination__btn,
.pagination__page,
.logo-marquee__item a {
    text-decoration: none;
}
.card-foot a { font-weight: 600; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--secondary);
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 .5em;
    letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h1 em { font-style: normal; color: var(--primary); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1.1em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; min-width: 0; }
main { min-width: 0; overflow-x: clip; }
.section {
    padding: 88px 0;
    position: relative;
}
.section--tight { padding: 56px 0; }

/* Subtle dot texture for plain sections */
.section:not(.band):not(.section--surface):not(.partners-section):not(.flipbook-section) {
    background-image: radial-gradient(var(--dot-fill) 1px, transparent 1px);
    background-size: 22px 22px;
    background-position: center top;
}
.section:not(.band):not(.section--surface):not(.partners-section):not(.flipbook-section)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--light) 60%, transparent) 100%);
    pointer-events: none;
}
.section:not(.band):not(.section--surface):not(.partners-section):not(.flipbook-section) > .wrap {
    position: relative;
}
.center { text-align: center; }
.muted { color: var(--muted); }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 62ch; }
.center .lead { margin-left: auto; margin-right: auto; }
.center .hero-cta { justify-content: center; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}
.section-head--center .eyebrow { display: block; }
.eyebrow--light,
.band .eyebrow,
.flipbook-panel .eyebrow {
    color: color-mix(in srgb, var(--accent) 85%, #fff);
}
.eyebrow--pill {
    color: var(--muted);
    background: none;
    border: 0;
    padding: 0;
    box-shadow: none;
}

/* ---- Buttons ------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 18px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .01em;
    border-radius: 0;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .2s cubic-bezier(.22, 1, .36, 1), background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    text-align: center;
    box-shadow: none;
    line-height: 1.3;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
    background: var(--btn-primary, var(--primary));
    color: var(--btn-primary-text, #12100e);
    box-shadow: 0 1px 2px color-mix(in srgb, var(--btn-primary, var(--primary)) 30%, transparent);
}
.btn--primary:hover {
    color: var(--btn-primary-text, #12100e);
    background: color-mix(in srgb, var(--btn-primary, var(--primary)) 90%, #000);
    box-shadow: 0 3px 10px color-mix(in srgb, var(--btn-primary, var(--primary)) 25%, transparent);
}
.btn--dark { background: var(--secondary); color: #fff; }
.btn--dark:hover { color: #fff; background: color-mix(in srgb, var(--secondary) 92%, #000); }
.btn--ghost {
    background: color-mix(in srgb, var(--light) 50%, transparent);
    color: var(--btn-secondary-text, var(--secondary));
    border-color: var(--btn-secondary-border, var(--line));
}
.btn--ghost:hover {
    border-color: var(--btn-secondary-text, var(--secondary));
    color: var(--btn-secondary-text, var(--secondary));
    background: #fff;
}
.btn--light { background: #fff; color: var(--secondary); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: #fff; box-shadow: var(--shadow); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 11px 22px; font-size: .94rem; }
.btn--sm { padding: 6px 13px; font-size: .82rem; font-weight: 600; }

/* ---- Top bar ------------------------------------------------------- */
.top-bar {
    background: var(--secondary);
    color: rgba(255,255,255,.82);
    font-size: .8rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: var(--topbar-height);
    padding-top: 4px;
    padding-bottom: 4px;
}
.top-bar a { color: rgba(255,255,255,.82); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.top-bar a:hover { color: #fff; }
.top-bar__contact { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.top-bar__audience { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.top-bar__audience a {
    padding: 4px 10px;
    border-radius: 0;
    font-size: .76rem;
    background: rgba(255,255,255,.06);
    transition: background .2s ease, color .2s ease;
}
.top-bar__audience a.is-active {
    color: #fff;
    background: rgba(255,255,255,.16);
    text-decoration: none;
}
.top-bar__sep { display: none; }

/* ---- Partner / sponsor banner (above homepage hero) ---------------- */
.partner-banner {
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--primary) 22%, transparent), transparent 42%),
        color-mix(in srgb, var(--light) 70%, #fff);
    border-bottom: 1px solid var(--line);
}
.partner-banner__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    min-height: 52px;
    padding: 10px 0;
    color: inherit;
    text-decoration: none;
}
a.partner-banner__row:hover {
    color: inherit;
}
.partner-banner__main {
    display: flex;
    align-items: center;
    gap: 12px 16px;
    min-width: 0;
    flex: 1;
    flex-wrap: wrap;
}
.partner-banner__kicker {
    flex: none;
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--secondary);
    background: color-mix(in srgb, var(--primary) 55%, #fff);
    border: 1px solid color-mix(in srgb, var(--primary) 70%, var(--line));
    padding: 5px 9px;
    line-height: 1;
}
.partner-banner__logo {
    flex: none;
    display: grid;
    place-items: center;
    height: 34px;
    max-width: 150px;
}
.partner-banner__logo img {
    display: block;
    max-width: 100%;
    max-height: 34px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.partner-banner__text {
    font-size: .92rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.35;
    min-width: 0;
}
.partner-banner__cta {
    flex: none;
    white-space: nowrap;
}
a.partner-banner__row:hover .partner-banner__cta {
    border-color: var(--btn-secondary-text, var(--secondary));
    background: #fff;
}
@media (max-width: 640px) {
    .partner-banner__row {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        padding: 12px 0;
    }
    .partner-banner__main { gap: 8px 12px; }
    .partner-banner__cta { width: 100%; justify-content: center; }
}

/* ---- Header -------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 247, 240, .85);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 16px;
}
.nav-mobile-bar {
    display: none;
    align-items: center;
    gap: 2px;
    flex: none;
    margin-left: auto;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.28rem; color: var(--secondary); }
.brand img { height: 42px; width: auto; }
.brand-mark {
    width: 42px; height: 42px; border-radius: 0;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.35rem;
    box-shadow: var(--shadow-sm);
}
.brand span small { display: block; font-family: var(--font-body); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--secondary); font-weight: 600; font-size: .97rem; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--primary); transition: width .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.cart-link { position: relative; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--secondary); }
.cart-link svg { display: block; }
.chip-icon { display: inline-flex; align-items: center; gap: 6px; vertical-align: middle; }
.chip-icon svg { flex: none; display: block; }
.icon-badge { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 0; background: color-mix(in srgb, var(--primary) 12%, #fff); color: var(--secondary); margin: 0 auto 16px; border: 1.5px solid color-mix(in srgb, var(--primary) 35%, var(--line)); }
.icon-badge--success { background: color-mix(in srgb, var(--primary) 16%, #fff); color: var(--secondary); }
.icon-badge svg { display: block; flex: none; stroke-width: 2.25; }
.cart-count { background: var(--primary); color: var(--secondary); font-size: .72rem; font-weight: 700; border-radius: 0; padding: 2px 8px; }
.nav-toggle {
    display: none;
    flex: none;
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    padding: 10px 8px;
    transition: border-color .2s ease, background .2s ease;
}
.nav-toggle:hover { border-color: color-mix(in srgb, var(--secondary) 25%, var(--line)); }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary);
    margin: 4px auto;
    transition: transform .25s ease, opacity .2s ease;
    border-radius: 0;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(11, 57, 84, .35);
    opacity: 0;
    transition: opacity .25s ease;
    border: 0;
    padding: 0;
    cursor: pointer;
}
.site-nav-overlay.open { display: block; opacity: 1; }

.site-nav-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    width: min(300px, 86vw);
    padding: 16px 20px 28px;
    padding-top: 16px;
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: -8px 0 32px rgba(11, 57, 84, .12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(105%);
    transition: transform .28s cubic-bezier(.22, 1, .36, 1);
    visibility: hidden;
}
.site-nav-mobile__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.site-nav-mobile__title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
}
.site-nav-mobile__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    color: var(--secondary);
    cursor: pointer;
    flex: none;
    transition: border-color .2s ease, background .2s ease;
}
.site-nav-mobile__close:hover {
    border-color: color-mix(in srgb, var(--secondary) 25%, var(--line));
    background: var(--light);
}
.site-nav-mobile__close svg { display: block; }
.site-nav-mobile.open {
    transform: translateX(0);
    visibility: visible;
}
.site-nav-mobile__label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 18px 0 6px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.site-nav-mobile__label:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.site-nav-mobile a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    padding: 11px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.site-nav-mobile a:last-child { border-bottom: 1px solid var(--line); }
.site-nav-mobile__cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

/* ---- Hero ---------------------------------------------------------- */
.hero {
    position: relative;
    padding: 96px 0 84px;
    overflow: hidden;
    background:
        radial-gradient(1200px 500px at 85% -10%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 60%),
        radial-gradient(900px 500px at 0% 100%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 60%),
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
        var(--light);
    background-size: auto, auto, 56px 56px, 56px 56px, auto;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 40%, transparent 30%, color-mix(in srgb, var(--light) 85%, transparent) 100%);
    pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { color: var(--secondary); }
.hero h1 em { font-style: italic; color: var(--primary); }
.hero__copy { max-width: 36rem; }
.hero .hero__tagline {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 600;
    color: var(--secondary);
    max-width: 42ch;
}
.hero__body {
    margin: 18px 0 0;
    font-size: .98rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 50ch;
}
.hero__points {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.hero__points li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: .94rem;
    font-weight: 600;
    color: var(--secondary);
}
.hero__points li svg { flex: none; color: var(--primary); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero__cta-note {
    margin: 14px 0 0;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.5;
}
.hero__cta-note a { font-weight: 600; }
.hero__cta-note a:hover { color: var(--link-hover); }
.hero-trust { display: flex; gap: 26px; margin-top: 28px; flex-wrap: wrap; }
.hero-cta--center { justify-content: center; }
.hero-trust b { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--secondary); letter-spacing: -0.02em; line-height: 1; }
.hero-trust small { color: var(--muted); font-weight: 600; letter-spacing: .02em; }

.hero-card {
    position: relative;
    background: #fff;
    border-radius: 0;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transform: rotate(1.5deg);
    border: 1px solid var(--line);
}
.hero-card::before {
    content: "";
    position: absolute; inset: 14px;
    border: 2px dashed color-mix(in srgb, var(--primary) 40%, transparent);
    border-radius: 0;
    pointer-events: none;
}
.hero-ticket { text-align: center; padding: 22px 12px; }
.hero-ticket .save { font-family: var(--font-display); font-weight: 800; font-size: 3.4rem; color: var(--primary); line-height: 1; letter-spacing: -0.02em; }
.hero-ticket .save small { display: block; font-family: var(--font-body); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.hero-ticket hr { border: 0; border-top: 2px dashed var(--line); margin: 22px 0; }
.chip { display: inline-block; background: color-mix(in srgb, var(--accent) 18%, #fff); color: var(--secondary); font-weight: 700; font-size: .8rem; padding: 6px 14px; border-radius: 0; margin: 3px; }
.chip.chip-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}
.chip.chip-icon svg { flex: none; display: block; }

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--line) 60%, var(--primary)); }
.card-media { aspect-ratio: 4 / 5; background: linear-gradient(135deg, color-mix(in srgb, var(--secondary) 12%, #fff), color-mix(in srgb, var(--primary) 12%, #fff)); overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media__fallback { position: relative; width: 100%; height: 100%; }
.card-media__fallback img { width: 100%; height: 100%; object-fit: cover; }
.card-media__overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding: 20px; text-align: center;
    background: linear-gradient(180deg, transparent 35%, rgba(11, 57, 84, .82) 100%);
}
.card-media__savings {
    font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--primary); line-height: 1;
    letter-spacing: -0.02em; text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.card-media__type {
    font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: rgba(255,255,255,.88); margin-top: 6px;
}
.card--book { border-color: color-mix(in srgb, var(--line) 70%, var(--primary)); }
.card--book:hover { border-color: var(--primary); }
.card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { margin: 0; }
.card-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--secondary);
    background: color-mix(in srgb, var(--primary) 16%, #fff);
    padding: 6px 12px;
    border-radius: 0;
}
.card-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--secondary); letter-spacing: -0.02em; }
.price s { color: var(--muted); font-size: 1rem; font-family: var(--font-body); margin-left: 6px; }

.badge { position: absolute; top: 14px; left: 14px; background: var(--primary); color: var(--secondary); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 0; }

/* ---- Feature rows -------------------------------------------------- */
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature .ico {
    flex: none; width: 52px; height: 52px; border-radius: 0;
    display: grid; place-items: center;
    background: var(--primary);
    color: var(--secondary);
}
.feature .ico svg { display: block; }
.feature h3 { margin: 0 0 6px; font-size: 1.2rem; }
.feature p { margin: 0; color: var(--muted); }

/* ---- Value section (For Customers) -------------------------------- */
.value-section {
    align-items: center;
    gap: 40px;
}
.value-section__copy .section-head {
    margin-bottom: 0;
}
.value-section__copy .section-head__lead {
    max-width: none;
}
.value-section__panel {
    padding: 28px 32px;
}
.value-section__panel .feature-list.stack > * + * {
    margin-top: 20px;
}
.value-section__panel .feature .ico {
    width: 44px;
    height: 44px;
    border-radius: 0;
}
.value-section__panel .feature h3 {
    font-size: 1.05rem;
}
.value-section__panel .feature p {
    font-size: .94rem;
    line-height: 1.55;
}

.steps { counter-reset: step; }
.step { position: relative; padding-left: 66px; }
.step::before {
    counter-increment: step; content: counter(step);
    position: absolute; left: 0; top: 0;
    width: 46px; height: 46px; border-radius: 0;
    display: grid; place-items: center;
    background: var(--secondary); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
}

/* ---- Alternating band ---------------------------------------------- */
.band { background: var(--secondary); color: #fff; position: relative; overflow: hidden; }
.band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.band > .wrap { position: relative; z-index: 1; }
.band h2, .band h3 { color: #fff; }
.band .lead, .band .muted, .band p { color: rgba(255,255,255,.82); }
.band .section-head__title { color: #fff; }
.band .section-head__lead { color: rgba(255,255,255,.82); }
.band-accent { background: color-mix(in srgb, var(--secondary) 96%, #000); }

/* ---- Pricing / packages -------------------------------------------- */
.plan {
    background: #fff; border: 1px solid var(--line); border-radius: 0;
    padding: 34px; display: flex; flex-direction: column; gap: 8px; position: relative;
    box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.is-popular { border-color: var(--primary); box-shadow: var(--shadow); }
.plan .pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--secondary); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 0; }
.plan .plan-price { font-family: var(--font-head); font-size: 2.6rem; color: var(--secondary); }
.plan .plan-price small { font-family: var(--font-body); font-size: .95rem; color: var(--muted); font-weight: 600; }
.plan ul { list-style: none; margin: 16px 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.plan ul li { padding-left: 28px; position: relative; color: var(--muted); }
.plan ul li::before {
    content: "";
    position: absolute; left: 0; top: 3px;
    width: 16px; height: 16px;
    background: var(--primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---- Forms --------------------------------------------------------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 7px; color: var(--secondary); }
.input, .textarea, .select {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--line);
    border-radius: 0; font: inherit; color: var(--ink); background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 14%, transparent); }
.textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.file-upload { display: block; cursor: pointer; }
.file-upload__input {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.file-upload__box {
    display: flex; align-items: center; gap: 14px; padding: 14px 16px;
    border: 1.5px dashed var(--line); border-radius: 0;
    background: var(--light); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.file-upload:hover .file-upload__box,
.file-upload:focus-within .file-upload__box {
    border-color: color-mix(in srgb, var(--primary) 55%, var(--line));
    background: #fff;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 14%, transparent);
}
.file-upload__icon {
    flex: none; width: 42px; height: 42px; border-radius: 0;
    background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--secondary);
}
.file-upload__text { flex: 1; min-width: 0; }
.file-upload__label { display: block; font-weight: 700; font-size: .9rem; color: var(--secondary); margin-bottom: 2px; }
.file-upload__name { display: block; font-size: .82rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-upload__name.has-file { color: var(--ink); font-weight: 600; }
.file-upload__btn { flex: none; pointer-events: none; }

.card-pad {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.card-pad::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 100% 0%, color-mix(in srgb, var(--primary) 6%, transparent), transparent 55%);
    pointer-events: none;
}
.card-pad > * { position: relative; }

/* ---- Alerts -------------------------------------------------------- */
.alert { padding: 14px 18px; border-radius: 0; margin-bottom: 18px; font-weight: 600; }
.alert-success { background: #e7f6ec; color: #1c6b3a; border: 1px solid #b7e3c6; }
.alert-error { background: #fdecea; color: #a02222; border: 1px solid #f3c0bb; }

/* ---- Newsletter / CTA band ----------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; border-radius: 0; padding: 56px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); }
.subscribe { display: flex; gap: 10px; max-width: 480px; margin: 22px auto 0; }
.subscribe .input {
    flex: 1;
    min-width: 0;
    border: 1.5px solid color-mix(in srgb, var(--secondary) 14%, var(--line));
    background: var(--light);
    box-shadow: inset 0 1px 2px rgba(11, 57, 84, 0.05);
}
.subscribe .input::placeholder { color: color-mix(in srgb, var(--muted) 85%, var(--ink)); }
.subscribe .input:focus { background: #fff; border-color: var(--primary); }

/* ---- Article body -------------------------------------------------- */
.prose { max-width: 760px; margin: 0 auto; font-size: 1.12rem; }
.prose h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1.6em;
    letter-spacing: -0.02em;
}
.prose h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 1.4em;
    letter-spacing: -0.015em;
}
.prose h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 1.2em;
}
.prose img { border-radius: 0; margin: 1.6em 0; }
.prose ul, .prose ol { padding-left: 1.2em; margin-bottom: 1.2em; }
.prose li { margin-bottom: .5em; }
.prose blockquote { border-left: 4px solid var(--primary); margin: 1.5em 0; padding: .4em 0 .4em 1.2em; font-family: var(--font-head); font-size: 1.3rem; color: var(--secondary); font-style: italic; }

/* ---- Footer -------------------------------------------------------- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.78);
    position: relative;
    overflow: hidden;
}

.footer-cta {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--primary) 92%, #fff), color-mix(in srgb, var(--accent) 85%, #fff));
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-cta__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
}
.footer-cta__tag {
    display: block; font-size: .72rem; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: color-mix(in srgb, var(--secondary) 70%, #000); margin-bottom: 6px;
}
.footer-cta__title {
    margin: 0; font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--secondary); line-height: 1.2;
}
.footer-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-cta__ghost {
    background: rgba(255,255,255,.55) !important;
    border-color: rgba(11, 57, 84, .15) !important;
}

.footer-main {
    padding: 56px 0 40px;
    position: relative;
}
.footer-main::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.footer-main > .wrap { position: relative; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
    gap: 40px 32px;
}
.footer-col--brand { max-width: 340px; }
.footer-brand {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px; color: #fff; text-decoration: none;
}
.footer-brand:hover { color: #fff; }
.footer-brand__logo { height: 44px; width: auto; max-width: 220px; object-fit: contain; }
.footer-brand__name {
    font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; line-height: 1.2;
}
.brand-mark--footer {
    width: 44px; height: 44px; border-radius: 0;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--secondary); font-family: var(--font-display); font-size: 1.5rem;
}
.footer-about { margin: 0 0 18px; font-size: .94rem; line-height: 1.65; color: rgba(255,255,255,.7); }
.footer-trust { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-bottom: 20px; }
.footer-trust__item {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.65);
}
.footer-heading {
    color: #fff; font-family: var(--font-body); font-size: .78rem;
    letter-spacing: .14em; text-transform: uppercase; margin: 0 0 18px; font-weight: 700;
}
.footer-col--accordion > .footer-heading { margin-bottom: 0; }
.footer-col--accordion > summary.footer-heading {
    list-style: none;
    cursor: default;
    user-select: none;
}
.footer-col--accordion > summary.footer-heading::-webkit-details-marker { display: none; }
.footer-col--accordion > summary.footer-heading::marker { content: ''; }
.footer-links, .footer-contact {
    list-style: none; margin: 0; padding: 0; display: grid; gap: 10px;
}
.footer-links a, .footer-contact a {
    color: rgba(255,255,255,.75); display: inline-block; font-size: .94rem;
    transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--primary); transform: translateX(3px); }
.footer-contact__label {
    display: block; font-size: .7rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 2px;
}
.footer-contact li > span:not(.footer-contact__label) { font-size: .92rem; color: rgba(255,255,255,.7); }

.footer-newsletter { margin-top: 22px; }
.footer-newsletter__label {
    display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 8px;
}
.footer-newsletter__row { display: flex; gap: 8px; }
.footer-newsletter__input {
    flex: 1; min-width: 0; background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14); color: #fff;
}
.footer-newsletter__input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter__input:focus { background: rgba(255,255,255,.12); border-color: var(--primary); }

.social-row--footer { margin-top: 0; }
.social-row--footer a {
    width: 42px; height: 42px; border-radius: 0;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.social-row--footer a:hover {
    background: var(--primary); color: var(--secondary); transform: translateY(-2px);
    border-color: var(--primary);
}

.footer-bottom {
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255,255,255,.1);
    background: color-mix(in srgb, var(--dark) 92%, #000);
}
.footer-bottom__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap; font-size: .86rem; color: rgba(255,255,255,.55);
}
.footer-bottom__badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
    display: inline-flex; align-items: center; padding: 5px 12px;
    border-radius: 0; font-size: .74rem; font-weight: 600;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.65);
}

/* Legacy footer selectors (admin/other pages) */
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid a { color: rgba(255,255,255,.75); }
.footer-grid a:hover { color: #fff; }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a { width: 40px; height: 40px; border-radius: 0; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; margin: 0; }
.social-row a:hover { background: var(--primary); }

/* ---- Page hero (interior) ------------------------------------------ */
.page-hero {
    padding: 56px 0 56px;
    position: relative;
    background:
        radial-gradient(900px 400px at 80% -20%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 60%),
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
        var(--light);
    background-size: auto, 44px 44px, 44px 44px, auto;
}
.page-hero > .wrap { position: relative; }
.page-hero .lead { margin-top: 10px; }
.page-hero__meta { margin-top: 10px; }
.page-hero__visual { padding: 16px; transform: rotate(-1.5deg); }
.page-hero__visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0;
}
.page-hero__aside-stack { display: grid; gap: 12px; }
.page-hero__aside-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 0;
    background: color-mix(in srgb, var(--light) 70%, #fff);
    text-decoration: none;
    color: inherit;
    transition: background .2s ease, transform .2s ease;
}
a.page-hero__aside-link:hover {
    background: color-mix(in srgb, var(--primary) 10%, #fff);
    transform: translateX(2px);
    color: inherit;
}
.page-hero__aside-link--static { cursor: default; }
.page-hero__aside-icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--primary) 12%, #fff);
    color: var(--secondary);
    flex: none;
}
.page-hero__aside-label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}
.page-hero__aside-value {
    display: block;
    font-size: .92rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.4;
    word-break: break-word;
}
.hero-grid--solo { grid-template-columns: 1fr; max-width: 760px; }
.page-hero--compact { padding: 40px 0 32px; }
.page-hero--compact h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: .35em; }
.page-hero--legal { padding: 32px 0 24px; }
.page-hero--legal h1 {
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}
.page-hero--legal .breadcrumb { margin-bottom: 10px; }

.prose--legal {
    font-size: .98rem;
    line-height: 1.72;
    max-width: 68ch;
}
.prose--legal h2 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 1.75em;
    margin-bottom: .5em;
    letter-spacing: -0.01em;
}
.prose--legal h3 { font-size: .98rem; font-weight: 700; margin-top: 1.4em; }
.prose--legal p { margin-bottom: .95em; }
.prose--legal strong { font-weight: 600; }

.spotlight-article .page-hero--spotlight h1 { font-size: clamp(1.6rem, 3.5vw, 2.35rem); }
.page-hero--narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.page-hero--narrow.center-stack,
.section.center .page-hero--narrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.section.center .page-hero--narrow .delivery-estimate,
.section.center .page-hero--narrow .summary-panel,
.section.center .page-hero--narrow .card-pad {
    width: 100%;
    align-self: stretch;
}

.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb-bar {
    padding: 12px 0;
    background: color-mix(in srgb, var(--muted) 8%, var(--light));
}
.breadcrumb-bar .breadcrumb {
    margin-bottom: 0;
    font-size: .82rem;
    font-weight: 600;
}
.breadcrumb-bar .breadcrumb a:hover { color: var(--secondary); }

/* ---- Utilities ----------------------------------------------------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 12px; }
.feature.mb-0 { margin: 0; }
.stack > * + * { margin-top: 16px; }
.divider { height: 1px; background: var(--line); border: 0; margin: 40px 0; }
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; }

.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.form-section { margin-bottom: 24px; }
.form-section__title { margin: 0 0 18px; font-size: 1.2rem; }
.req { color: var(--primary); }
.contact-list { list-style: none; padding: 0; margin: 16px 0 0; }
.contact-list li { margin-bottom: 16px; }

.ad-space-card__preview { aspect-ratio: 4 / 3; }
.ad-space-card__placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
    text-align: center;
    background: linear-gradient(145deg, color-mix(in srgb, var(--secondary) 10%, #fff), color-mix(in srgb, var(--primary) 10%, #fff));
}
.ad-space-card__placement {
    font-family: var(--font-head);
    color: var(--secondary);
    font-size: 1.1rem;
    line-height: 1.3;
}
.ad-space-meta { list-style: none; padding: 0; margin: 8px 0 0; font-size: .9rem; color: var(--muted); }
.ad-space-meta li { margin-bottom: 6px; }
.ad-space-meta strong { color: var(--secondary); font-weight: 700; }

/* ---- Flipbook embeds ------------------------------------------------ */
.flipbook-shell {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 20px;
    box-shadow: var(--shadow);
}
.flipbook-shell--preview { max-width: 900px; margin: 0 auto; }
.flipbook-shell--home { margin: 0; }
.flipbook-section__grid { gap: 56px; align-items: center; }
.flipbook-section__copy .lead { margin-bottom: 12px; }

/* Premium digital-preview panel — sits on the full-width band */
.flipbook-panel {
    position: relative;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 48px;
    align-items: center;
    padding: 0;
    border-radius: 0;
    overflow: visible;
    color: #fff;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
}
.flipbook-panel::before {
    display: none;
}
.flipbook-panel__glow {
    position: absolute; z-index: -1;
    width: 460px; height: 460px; border-radius: 50%;
    top: -160px; right: -120px;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary) 45%, transparent), transparent 68%);
    filter: blur(20px);
    pointer-events: none;
}
.flipbook-panel h2 { color: #fff; margin-bottom: 12px; }
.flipbook-panel .lead { color: rgba(255,255,255,.82); margin-bottom: 20px; }
.flipbook-panel__list {
    list-style: none; margin: 0 0 26px; padding: 0;
    display: grid; gap: 12px;
}
.flipbook-panel__list li {
    display: flex; align-items: center; gap: 12px;
    font-size: .96rem; font-weight: 500; color: rgba(255,255,255,.9);
}
.flipbook-panel__list svg { flex: none; color: var(--primary); }
.flipbook-panel__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.flipbook-panel__hint { font-size: .82rem; color: rgba(255,255,255,.6); }
.flipbook-panel__viewer { display: flex; justify-content: center; }

/* Book teaser (homepage) */
.flipbook-teaser {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    color: inherit;
    font: inherit;
    text-align: center;
    transition: transform .25s ease;
}
.flipbook-teaser:hover { transform: translateY(-4px); }
.flipbook-teaser:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 8px;
    border-radius: 0;
}
.flipbook-teaser__scene {
    position: relative;
    width: min(100%, 320px);
    perspective: 1200px;
}
.flipbook-teaser__book {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    transform: rotateY(-14deg) rotateX(4deg);
    transform-style: preserve-3d;
    transition: transform .35s ease;
}
.flipbook-teaser:hover .flipbook-teaser__book {
    transform: rotateY(-6deg) rotateX(2deg) scale(1.02);
}
.flipbook-teaser__cover {
    position: absolute;
    inset: 0;
    border-radius: 0;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--primary) 18%, #fff), #fff),
        linear-gradient(135deg, rgba(255,255,255,.2), transparent 40%);
    background-size: cover;
    background-position: center;
    box-shadow:
        0 28px 50px -24px rgba(0,0,0,.55),
        inset 0 0 0 1px rgba(255,255,255,.25);
}
.flipbook-teaser__cover--image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #fff;
}
.flipbook-teaser__spine {
    position: absolute;
    top: 2%; bottom: 2%; left: -10px;
    width: 18px;
    border-radius: 0;
    background: linear-gradient(90deg, color-mix(in srgb, var(--secondary) 85%, #000), var(--secondary));
    transform: rotateY(90deg) translateZ(8px);
    box-shadow: inset -2px 0 6px rgba(0,0,0,.25);
}
.flipbook-teaser__edge {
    position: absolute;
    top: 4%; bottom: 4%; right: -5px;
    width: 10px;
    border-radius: 0;
    background: linear-gradient(90deg, #f3f3f3, #e2e2e2);
    transform: translateZ(-2px);
}
.flipbook-teaser__shadow {
    display: block;
    width: 78%;
    height: 22px;
    margin: 14px auto 0;
    border-radius: 0;
    background: radial-gradient(ellipse, rgba(0,0,0,.42), transparent 70%);
    filter: blur(2px);
}
.flipbook-teaser__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 0;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.92);
    font-size: .88rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
}
.flipbook-teaser.is-ready .flipbook-teaser__cover {
    background-color: #fff;
}

/* Flipbook modal */
body.flipbook-modal-open {
    overflow: hidden;
    touch-action: none;
}
body.flipbook-modal-open .cursor-dot,
body.flipbook-modal-open .cursor-ring {
    display: none !important;
}
.flipbook-modal {
    position: fixed;
    inset: 0;
    z-index: 10100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.flipbook-modal[hidden] { display: none; }
.flipbook-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 32, .82);
    backdrop-filter: blur(6px);
}
.flipbook-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(96vw, 1080px);
    height: min(92vh, 860px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 30px 80px -24px rgba(0,0,0,.55);
    overflow: hidden;
}
.flipbook-modal__head {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--light) 40%, #fff);
}
.flipbook-modal__title {
    margin: 0;
    font-size: 1.05rem;
    color: var(--secondary);
}
.flipbook-modal__close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: var(--muted);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 0 0 1px var(--line);
    transition: color .15s ease, background .15s ease;
}
.flipbook-modal__close:hover {
    color: var(--secondary);
    background: var(--bg);
}
.flipbook-modal__body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 24px 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--light) 55%, transparent), transparent 55%),
        #f7f9fb;
}
.flipbook-modal .flipbook-viewer {
    width: 100%;
    min-height: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.flipbook-modal .flipbook-viewer__canvas {
    position: relative;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}
.flipbook-modal .flipbook-viewer.is-loading .flipbook-viewer__canvas {
    min-width: min(320px, 100%);
    min-height: min(420px, 55vh);
}
.flipbook-modal .flipbook-viewer__stage {
    flex: none;
    overflow: visible;
}
.flipbook-modal .flipbook-viewer__book {
    box-shadow: 0 24px 60px -28px rgba(11, 57, 84, .45);
}
.flipbook-modal .flipbook-viewer__controls {
    flex: none;
}
.flipbook-modal .flipbook-viewer.is-loading .flipbook-viewer__loading {
    display: flex;
}
.flipbook-modal .flipbook-viewer.is-ready .flipbook-viewer__loading {
    display: none !important;
}

@media (max-width: 960px) {
    .flipbook-panel { grid-template-columns: 1fr; gap: 32px; padding: 0; }
    .flipbook-panel__glow { top: -120px; right: -140px; }
    .flipbook-teaser__book { transform: rotateY(-8deg) rotateX(2deg); }
    .flipbook-modal { padding: 10px; }
    .flipbook-modal__dialog {
        width: 100%;
        height: min(94vh, 860px);
    }
    .flipbook-modal__body { padding: 14px 12px 18px; }
}

.flipbook-shell--full { border: 0; box-shadow: none; padding: 0; background: transparent; }
.flipbook-embed {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    border-radius: 0;
    background: color-mix(in srgb, var(--secondary) 4%, #fff);
}
.flipbook-embed iframe,
.flipbook-embed object,
.flipbook-embed embed {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}
.flipbook-embed > div { width: 100%; }

/* ---- PDF flipbook viewer ------------------------------------------- */
.flipbook-viewer {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.flipbook-viewer__canvas {
    position: relative;
    flex: none;
    max-width: 100%;
}
.flipbook-viewer.is-loading .flipbook-viewer__canvas {
    min-height: 360px;
    min-width: 280px;
}
.flipbook-viewer__loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    font-weight: 600;
    font-size: .92rem;
    background: color-mix(in srgb, var(--bg) 88%, #fff);
}
.flipbook-viewer.is-ready .flipbook-viewer__loading {
    display: none !important;
}
.flipbook-viewer__loading--error { color: #a02222; }
.flipbook-viewer__stage {
    position: relative;
    z-index: 1;
    flex: none;
    display: flex;
    justify-content: center;
    max-width: 100%;
}
.flipbook-viewer__book {
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}
.flipbook-page {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
}
.flipbook-page__canvas {
    display: block;
    width: 100%;
    height: 100%;
}
.flipbook-viewer__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.flipbook-viewer__btn {
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--secondary);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}
.flipbook-viewer__btn:hover {
    border-color: var(--secondary);
    background: color-mix(in srgb, var(--light) 50%, #fff);
}
.flipbook-viewer__page {
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
    min-width: 72px;
    text-align: center;
}
.flipbook-panel .flipbook-viewer__loading { color: rgba(255,255,255,.7); }
.flipbook-panel .flipbook-viewer__btn {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: #fff;
}
.flipbook-panel .flipbook-viewer__page { color: rgba(255,255,255,.75); }
.flipbook-secure .flipbook-viewer__loading { color: rgba(255,255,255,.7); }
.flipbook-secure .flipbook-viewer__btn {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: #fff;
}
.flipbook-secure .flipbook-viewer__page { color: rgba(255,255,255,.75); }
.ebook-badge {
    background: color-mix(in srgb, var(--accent) 12%, #fff);
    border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
    border-radius: 0;
}

/* ---- Advertise page ------------------------------------------------ */
.advertise-split--reverse .advertise-split__media { order: 2; }
.advertise-split--reverse > div:last-child { order: 1; }
.advertise-photo { position: relative; border-radius: 0; overflow: hidden; }
.advertise-photo img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.advertise-photo::before {
    content: ''; position: absolute; width: 55%; height: 70%; border-radius: 0; z-index: -1;
}
.advertise-photo--accent-secondary::before { background: var(--secondary); top: -18px; left: -18px; }
.advertise-photo--accent-primary::before { background: var(--accent); bottom: -18px; right: -18px; }

.ad-layout-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 148px));
    gap: 18px 28px;
    justify-content: center;
    justify-items: center;
}
.ad-layout-card { text-align: center; width: 100%; max-width: 148px; }
.ad-layout-card__title { font-size: .85rem; margin: 10px 0 0; line-height: 1.35; color: var(--secondary); }
.ad-layout-card__diagram {
    border: 1.5px solid var(--line); border-radius: 0;
    background: #fff; aspect-ratio: 3/4; position: relative; overflow: hidden;
    width: 100%; max-width: 132px; margin: 0 auto;
}
.advertise-layouts { padding-bottom: 40px; }
.advertise-layouts__cta { margin-top: 28px; }
#advertise-form { padding-top: 40px; }

.ad-diagram--quarter-bl::after { content: ''; position: absolute; left: 8%; bottom: 12%; width: 42%; height: 28%; border: 2px dashed var(--primary); background: color-mix(in srgb, var(--primary) 12%, #fff); }
.ad-diagram--half-vertical::after { content: ''; position: absolute; left: 8%; top: 10%; bottom: 10%; width: 46%; border: 2px dashed var(--secondary); background: color-mix(in srgb, var(--secondary) 10%, #fff); }
.ad-diagram--half-horizontal::after { content: ''; position: absolute; left: 8%; right: 8%; bottom: 12%; height: 46%; border: 2px dashed var(--secondary); background: color-mix(in srgb, var(--secondary) 10%, #fff); }
.ad-diagram--full-page::after { content: ''; position: absolute; inset: 10%; border: 2px dashed var(--accent); background: color-mix(in srgb, var(--accent) 15%, #fff); }
.ad-diagram--double-spread::before, .ad-diagram--double-spread::after {
    content: ''; position: absolute; top: 8%; bottom: 8%; width: 40%; border: 2px dashed var(--primary);
    background: color-mix(in srgb, var(--primary) 10%, #fff);
}
.ad-diagram--double-spread::before { left: 6%; }
.ad-diagram--double-spread::after { right: 6%; }
.ad-diagram--quarters-4::after {
    content: ''; position: absolute; left: 8%; right: 8%; bottom: 14%; height: 22%;
    background: repeating-linear-gradient(90deg, color-mix(in srgb, var(--primary) 18%, #fff) 0 23%, transparent 23% 25%);
    border: 2px dashed var(--primary);
}
.ad-diagram--quarters-8::after {
    content: ''; position: absolute; left: 8%; right: 8%; bottom: 12%; height: 34%;
    background: repeating-linear-gradient(90deg, color-mix(in srgb, var(--primary) 18%, #fff) 0 11%, transparent 11% 12.5%);
    border: 2px dashed var(--primary);
}
.ad-diagram--directory::after {
    content: 'DIRECTORY'; position: absolute; inset: 30% 20%; display: grid; place-items: center;
    border: 2px dashed var(--secondary); font-size: .7rem; font-weight: 800; color: var(--secondary);
    letter-spacing: .08em; background: color-mix(in srgb, var(--secondary) 8%, #fff);
}

.advertise-form .form-section { margin-bottom: 20px; }
.advertise-form-wrap { max-width: 1040px; }
.advertise-form-intro { margin-bottom: 20px; max-width: 640px; }
.advertise-form-intro .lead { margin-bottom: 0; }
.advertise-form--compact .advertise-form__panel { margin-bottom: 16px; padding: 22px 24px; }
.advertise-form--compact .advertise-form__panel:last-of-type { margin-bottom: 20px; }
.advertise-form__heading {
    margin: 0 0 16px; font-size: 1.05rem; color: var(--secondary);
    font-family: var(--font-head); font-weight: 700;
}
.advertise-form--compact .field { margin-bottom: 0; }
.advertise-form-grid { display: flex; flex-direction: column; gap: 14px; }
.advertise-form-grid .form-row { gap: 14px; }
.advertise-form-split {
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: start;
}
.advertise-form-side { display: flex; flex-direction: column; gap: 14px; }
.advertise-form__actions {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.advertise-form__fine { margin: 0; font-size: .85rem; }
.textarea--sm { min-height: 88px; }
.layout-check-grid--cols { grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 900px) {
    .layout-check-grid--cols { grid-template-columns: repeat(4, 1fr); }
}
.layout-check-grid--cols .layout-check { padding: 9px 11px; }
.layout-check-grid--cols .layout-check span { font-size: .86rem; line-height: 1.35; }
.radio-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-weight: 500; line-height: 1.45; }
.radio-line input { margin-top: 4px; flex: none; }
.layout-check-grid { display: grid; gap: 10px; }
.layout-check {
    display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px;
    border: 1.5px solid var(--line); border-radius: 0; background: var(--light); cursor: pointer;
}
.layout-check:has(input:checked) { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 8%, #fff); }
.layout-check input { margin-top: 3px; flex: none; }
.layout-check span { font-size: .92rem; line-height: 1.4; }

/* ---- Testimonials grid ------------------------------------------------ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    position: relative; margin: 0; padding: 32px 28px 28px;
    background: #fff; border: 1px solid var(--line); border-radius: 0;
    box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px;
    transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease, border-color .25s ease;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--line) 50%, var(--primary)); }
.testimonial-card__quote {
    position: absolute; top: 16px; right: 22px; font-family: var(--font-head);
    font-size: 4rem; line-height: 1; color: color-mix(in srgb, var(--primary) 18%, transparent);
    pointer-events: none;
}
.testimonial-card__text {
    margin: 0; font-size: 1.02rem; line-height: 1.65; color: var(--ink); flex: 1;
}
.testimonial-card__foot { display: flex; align-items: center; gap: 12px; font-style: normal; margin-top: auto; }
.testimonial-card__foot cite { display: block; font-style: normal; font-weight: 700; color: var(--secondary); }
.testimonial-card__foot > div span { display: block; font-size: .85rem; color: var(--muted); margin-top: 2px; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 0; object-fit: cover; flex: none; }
.testimonial-card__avatar--placeholder {
    display: grid; place-items: center;
    background: linear-gradient(145deg, var(--secondary), color-mix(in srgb, var(--secondary) 85%, #000));
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1;
    border: 2px solid color-mix(in srgb, var(--primary) 35%, transparent);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--secondary) 16%, transparent);
}

/* ---- Partner logo marquee ------------------------------------------ */
.partners-section {
    background:
        linear-gradient(180deg, transparent, color-mix(in srgb, var(--accent) 5%, transparent)),
        radial-gradient(var(--dot-fill) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px;
}
.logo-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-marquee__track {
    display: flex; align-items: center; gap: 48px; width: max-content;
    animation: logoScroll 40s linear infinite;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-marquee__item { flex: none; display: grid; place-items: center; width: 140px; height: 64px; }
.logo-marquee__item img { max-width: 120px; max-height: 52px; object-fit: contain; opacity: .72; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.logo-marquee__item a:hover img, .logo-marquee__item img:hover { opacity: 1; filter: none; }

@media (prefers-reduced-motion: reduce) {
    .logo-marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 24px 40px; }
    .logo-marquee { mask-image: none; overflow: visible; }
}

/* ---- Premium design system ----------------------------------------- */
.hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.hero--premium { padding: 110px 0 96px; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero__glow--1 { width: 420px; height: 420px; top: -80px; right: 8%; background: color-mix(in srgb, var(--accent) 35%, transparent); }
.hero__glow--2 { width: 360px; height: 360px; bottom: -60px; left: -40px; background: color-mix(in srgb, var(--primary) 20%, transparent); }

.hero-trust--cards { gap: 10px; margin-top: 24px; }
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: color-mix(in srgb, var(--white) 88%, var(--light));
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 10px 14px;
    min-width: 0;
    flex: 1 1 0;
    box-shadow: var(--shadow-sm);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.hero-stat__value,
.hero-stat__label {
    display: block;
}
.hero-stat__value {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.hero-stat__label {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .03em;
    line-height: 1.35;
}
.hero-stat:hover {
    border-color: color-mix(in srgb, var(--primary) 35%, var(--line));
    box-shadow: var(--shadow-sm);
    transform: none;
}
.hero-card--tilt { transform: rotate(-1.5deg); }
@media (max-width: 960px) {
    .hero-card--tilt { transform: none; }
}
.tag-list--wrap { justify-content: center; }

/* ---- Coupon ticket + hero showcase --------------------------------- */
.coupon-ticket {
    background: #fff;
    border: 2px dashed color-mix(in srgb, var(--primary) 55%, var(--line));
    border-radius: 0;
    padding: 22px 20px 18px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.coupon-ticket__label {
    display: block; font-size: .68rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.coupon-ticket__value {
    display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.2rem);
    color: var(--primary); line-height: 1; letter-spacing: -0.02em;
}
.coupon-ticket__fine {
    display: block; font-size: .78rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--muted); margin-top: 4px;
}
.coupon-ticket__perforation {
    height: 10px; margin: 16px 0 14px;
    background: radial-gradient(circle, var(--line) 2px, transparent 2.5px) center / 10px 10px;
}
.coupon-ticket__tags { justify-content: center; }
.coupon-ticket--compact { padding: 16px; min-width: 140px; }
.coupon-ticket--compact .coupon-ticket__value { font-size: 2.2rem; }

.hero-showcase { position: relative; max-width: 480px; margin: 0 auto; }
.hero-showcase--simple {
    max-width: 520px;
}
.hero-showcase--simple .hero-showcase__book {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border: 0;
    box-shadow: none;
    transform: none;
    border-radius: 0;
    background: transparent;
}
.hero-showcase__frame { position: relative; }
.hero-showcase__book-wrap { position: relative; }
.hero-showcase__book {
    width: 100%; border-radius: 0;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
    transform: rotate(-2deg);
    aspect-ratio: 4/5; object-fit: cover;
}
.hero-showcase__edition {
    position: absolute; top: 20px; left: -8px; z-index: 2;
    background: var(--secondary); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: .04em;
    padding: 8px 16px; border-radius: 0;
    box-shadow: var(--shadow);
    transform: rotate(-3deg);
}
.hero-showcase__ticket {
    position: absolute; bottom: -24px; left: -20px; right: 24px;
    transform: rotate(2deg); z-index: 2;
}
.hero-showcase__thumb {
    position: absolute; top: 18px; right: -12px; z-index: 3;
    display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid var(--line); border-radius: 0;
    padding: 6px 14px 6px 6px; box-shadow: var(--shadow);
    font-size: .78rem; font-weight: 600; color: var(--secondary);
}
.hero-showcase__thumb img {
    width: 44px; height: 44px; border-radius: 0; object-fit: cover;
    border: 2px solid var(--primary);
}

/* ---- Band visual layout -------------------------------------------- */
.band-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.band-layout__media {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.band-photo {
    position: relative; border-radius: 0; overflow: hidden;
    box-shadow: var(--shadow-lg); border: 3px solid rgba(255,255,255,.15);
}
.band-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.band-photo__badge {
    position: absolute; bottom: 16px; left: 16px;
    transform: rotate(-2deg); text-align: left;
    background: rgba(255,255,255,.96);
}
.band-photo__badge .coupon-ticket__value { color: var(--secondary); }

.section--books {
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--primary) 6%, var(--light)), var(--light)),
        radial-gradient(var(--dot-fill) 1px, transparent 1px);
    background-size: 100% 100%, 22px 22px;
}

.section--surface {
    background:
        linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--light) 35%, #fff) 100%),
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
}
.surface-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.surface-panel::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 280px; height: 280px;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary) 10%, transparent), transparent 70%);
    pointer-events: none;
}
.surface-panel > * { position: relative; }

.section-head { margin-bottom: 40px; }
.section-head--center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-head__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head--center .section-head__row { justify-content: center; }
.section-head__title { margin: 0 0 8px; font-size: clamp(1.55rem, 2.8vw, 2.15rem); }
.section-head__lead { margin: 0; color: var(--muted); font-size: 1.02rem; max-width: 52ch; line-height: 1.6; }
.section-head--center .section-head__lead { margin-left: auto; margin-right: auto; }

.step-card {
    position: relative; background: #fff; border: 1px solid var(--line); border-radius: 0;
    padding: 32px 28px 30px; box-shadow: var(--shadow-sm);
    transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease, border-color .25s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--line) 50%, var(--primary)); }
.step-card__num {
    position: absolute; top: 20px; right: 22px; font-family: var(--font-head);
    font-size: .82rem; font-weight: 700; color: color-mix(in srgb, var(--primary) 70%, var(--muted));
    letter-spacing: .08em;
}
.step-card__icon {
    width: 48px; height: 48px; border-radius: 0; display: grid; place-items: center;
    background: color-mix(in srgb, var(--primary) 14%, #fff);
    color: var(--secondary);
    margin-bottom: 16px;
    border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--line));
}
.step-card__icon svg { display: block; }
.step-card h3 { margin: 0 0 10px; }
.step-card p { margin: 0; color: var(--muted); font-size: .98rem; }

.band--premium {
    background:
        linear-gradient(135deg, var(--secondary) 0%, color-mix(in srgb, var(--secondary) 75%, #000) 100%),
        radial-gradient(ellipse 50% 80% at 100% 50%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 60%);
}
.value-cards { display: grid; gap: 16px; }
.value-card {
    display: flex; gap: 16px; align-items: flex-start; padding: 22px;
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 0;
}
.value-card__icon {
    flex: none; width: 48px; height: 48px; border-radius: 0;
    display: grid; place-items: center; background: rgba(255,255,255,.12); color: #fff;
}
.value-card h3 { color: #fff; margin: 0 0 6px; font-size: 1.1rem; }
.value-card p { margin: 0; color: rgba(255,255,255,.78); font-size: .95rem; }

.card--elevated { border-color: color-mix(in srgb, var(--line) 70%, var(--primary)); }
.card--elevated:hover { box-shadow: var(--shadow-lg); }

.cta-band--premium {
    position: relative;
    padding: 56px 48px;
    border-radius: 0;
    background:
        linear-gradient(145deg,
            color-mix(in srgb, var(--primary) 22%, #fff) 0%,
            color-mix(in srgb, var(--primary) 8%, #fff) 42%,
            #fff 100%);
    border: 1px solid color-mix(in srgb, var(--primary) 32%, var(--line));
    box-shadow: var(--shadow);
    overflow: hidden;
    color: var(--secondary);
}
.cta-band--premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(520px 240px at 100% -10%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 65%),
        radial-gradient(420px 200px at 0% 110%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%),
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: auto, auto, 36px 36px, 36px 36px;
    pointer-events: none;
}
.cta-band--premium > * { position: relative; }
.cta-band--premium h2 { color: var(--secondary); margin-bottom: 14px; }
.cta-band--premium p { max-width: 56ch; margin: 0 auto; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }
.cta-band__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: color-mix(in srgb, var(--secondary) 70%, var(--primary));
    letter-spacing: .14em;
}
.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

.cta-band--visual {
    display: grid; grid-template-columns: .85fr 1.15fr; gap: 0;
    padding: 0; text-align: left; overflow: hidden;
}
.cta-band--visual .cta-band__media { position: relative; min-height: 280px; }
.cta-band--visual .cta-band__media img {
    width: 100%; height: 100%; object-fit: cover; min-height: 280px;
}
.cta-band--visual .cta-band__content { padding: 44px 40px; }
.cta-band--visual h2 { margin-bottom: 12px; }
.cta-band--visual p { margin: 0; max-width: none; }
.cta-band--visual .cta-band__actions { justify-content: flex-start; margin-top: 22px; }

.newsletter-panel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px 28px;
    align-items: start;
    padding: 28px 32px;
    border-radius: 0;
    background:
        linear-gradient(145deg, #fff, color-mix(in srgb, var(--accent) 8%, #fff)),
        radial-gradient(var(--dot-fill) 1px, transparent 1px);
    background-size: 100% 100%, 18px 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.newsletter-panel__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}
.newsletter-panel--visual .newsletter-panel__visual {
    width: 72px;
    height: 72px;
    border-radius: 0;
    border: 3px solid var(--primary);
    flex: none;
    box-shadow: var(--shadow-sm);
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--primary) 14%, #fff);
    color: var(--secondary);
}
.newsletter-panel--visual .newsletter-panel__visual svg { display: block; }
.newsletter-panel__copy h2 { margin-bottom: 8px; }
.newsletter-panel__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    position: relative;
}
.newsletter-panel__fields {
    display: flex;
    gap: 10px;
    align-items: stretch;
}
.newsletter-panel__fields .input {
    flex: 1;
    min-width: 0;
}
.newsletter-panel__fields .btn {
    flex: none;
    white-space: nowrap;
}

.page-hero--premium {
    padding: 88px 0 72px;
    background:
        radial-gradient(900px 380px at 90% -20%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 55%),
        radial-gradient(700px 320px at 0% 100%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 50%),
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
        var(--light);
    background-size: auto, auto, 48px 48px, 48px 48px, auto;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
    background: #fff; border: 1px solid var(--line); border-radius: 0;
    font-size: .88rem; font-weight: 600; color: var(--secondary); box-shadow: var(--shadow-sm);
}

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.contact-panel h3, .contact-form-panel h3 { margin-top: 0; }
.contact-list--premium { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 18px; }
.contact-list--premium li { display: grid; gap: 4px; }
.contact-list__label { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.contact-panel__note { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }

.spotlight-cover { margin-top: -32px; margin-bottom: 48px; }
.spotlight-cover img { width: 100%; border-radius: 0; box-shadow: var(--shadow-lg); aspect-ratio: 21/9; object-fit: cover; }
.article-cover { width: 100%; border-radius: 0; box-shadow: var(--shadow); }
.spotlight-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 40px; align-items: start; }
.spotlight-main { display: grid; gap: 36px; min-width: 0; }
.spotlight-block__title {
    margin: 0 0 12px;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--secondary);
}
.spotlight-block__lead {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}
.spotlight-services {
    display: grid;
    gap: 14px;
}
.spotlight-service {
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    box-shadow: var(--shadow);
}
.spotlight-service__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}
.spotlight-service__head h3 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--secondary);
}
.spotlight-service__price {
    flex: none;
    font-weight: 800;
    color: var(--secondary);
    white-space: nowrap;
}
.spotlight-service__text {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}
.spotlight-service__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    font-weight: 700;
    font-size: .92rem;
}
.spotlight-results {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.spotlight-result {
    padding: 22px 20px;
    border-radius: 0;
    background: color-mix(in srgb, var(--light) 45%, #fff);
    border: 1px solid var(--line);
}
.spotlight-result__value {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: 6px;
}
.spotlight-result__label {
    display: block;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}
.spotlight-result__detail {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55;
}
.spotlight-result__link {
    display: inline-block;
    margin-top: 10px;
    font-size: .88rem;
    font-weight: 700;
}
.spotlight-sidebar { position: sticky; top: 100px; text-align: center; }
.spotlight-sidebar__logo { max-height: 56px; max-width: 160px; object-fit: contain; margin: 0 auto 16px; }
.spotlight-sidebar__text {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.6;
}
.prose--premium { font-size: 1.06rem; line-height: 1.75; max-width: 68ch; }
.prose--premium h2 { font-size: 1.22rem; }
.prose--premium h3 { font-size: 1.1rem; }
.prose--premium h4 { font-size: 1.02rem; }
.empty-panel { padding: 56px 32px; }

.advertise-form__panel { border-radius: 0; }

.newsletter-section { padding-bottom: 72px; }

.grecaptcha-badge { visibility: hidden; }

/* ---- Custom cursor (desktop) --------------------------------------- */
.cursor-dot,
.cursor-ring {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
}
body.has-custom-cursor .cursor-dot,
body.has-custom-cursor .cursor-ring {
    display: block;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: var(--secondary);
    z-index: 10001;
}
.cursor-ring {
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    border-radius: 50%;
    border: 1.5px solid color-mix(in srgb, var(--primary) 55%, var(--secondary));
    background: color-mix(in srgb, var(--primary) 6%, transparent);
    z-index: 10000;
    transition: width .22s ease, height .22s ease, margin .22s ease, border-color .22s ease, background .22s ease;
}
body.cursor-hover .cursor-ring {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    border-color: var(--primary);
    background: color-mix(in srgb, var(--primary) 14%, transparent);
}
body.cursor-click .cursor-ring {
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
}
body.cursor-click .cursor-dot {
    transform: scale(0.75);
}

/* ---- Share bar ----------------------------------------------------- */
.share-bar { display: flex; flex-direction: column; gap: 12px; }
.share-bar__label {
    margin: 0;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.share-bar__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 600;
    color: var(--secondary);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.share-btn:hover {
    border-color: color-mix(in srgb, var(--primary) 45%, var(--line));
    background: color-mix(in srgb, var(--primary) 8%, #fff);
    color: var(--secondary);
    transform: translateY(-1px);
}
.share-btn svg { flex: none; display: block; }
.share-btn__brand { flex: none; display: block; }
.share-btn--ai {
    border-color: color-mix(in srgb, var(--primary) 35%, var(--line));
    background: color-mix(in srgb, var(--primary) 10%, #fff);
}
.share-btn--chatgpt:hover { border-color: color-mix(in srgb, #10A37F 45%, var(--line)); }
.share-btn--perplexity:hover { border-color: color-mix(in srgb, #20808D 45%, var(--line)); }
.share-btn__li {
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    font-size: .62rem;
    font-weight: 800;
    border-radius: 0;
    background: #0a66c2;
    color: #fff;
    line-height: 1;
}
.share-bar__feedback {
    margin: 0;
    font-size: .82rem;
    font-weight: 600;
    color: #1c6b3a;
}
.blog-hero__share { margin-top: 22px; }
.blog-hero__share .share-bar__label { display: none; }

/* ---- Pagination ---------------------------------------------------- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--secondary);
    border: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease;
}
.pagination__btn:hover { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 8%, #fff); color: var(--secondary); }
.pagination__btn.is-disabled { opacity: .4; pointer-events: none; }
.pagination__pages { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pagination__page {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--secondary);
    border: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    text-decoration: none;
}
.pagination__page:hover { border-color: var(--primary); }
.pagination__page.is-active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

/* ---- Blog article layout ------------------------------------------- */
.page-hero--article { padding: 48px 0 32px; }
.page-hero--article h1 { font-size: clamp(1.55rem, 3.2vw, 2.35rem); }
.blog-article__meta { margin: 0; }
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: 40px;
    align-items: start;
}
.article-layout__aside {
    position: sticky;
    top: calc(var(--site-chrome-height) + 20px);
}
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.article-sidebar__card {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
}
.article-sidebar__title {
    margin: 0 0 14px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.article-sidebar__meta {
    margin: 0;
    display: grid;
    gap: 12px;
}
.article-sidebar__meta-row {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}
.article-sidebar__meta-row dt {
    margin: 0;
    font-size: .78rem;
    font-weight: 700;
    color: var(--muted);
}
.article-sidebar__meta-row dd {
    margin: 0;
    font-size: .92rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.45;
}
.article-sidebar__card--share .share-bar__label { margin-bottom: 2px; }
.article-sidebar__card--share .share-bar__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.article-sidebar__card--share .share-btn {
    justify-content: center;
    width: 100%;
    border-radius: 0;
    padding: 10px 8px;
}
.article-sidebar__posts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.article-sidebar__post {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    margin: -10px;
    border-radius: 0;
    transition: background .2s ease;
}
.article-sidebar__post:hover {
    background: color-mix(in srgb, var(--primary) 8%, #fff);
}
.article-sidebar__post-thumb {
    flex: none;
    width: 56px;
    height: 56px;
    border-radius: 0;
    overflow: hidden;
    background: var(--light);
}
.article-sidebar__post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.article-sidebar__post-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.article-sidebar__post-title {
    font-size: .92rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.35;
}
.article-sidebar__post-date {
    font-size: .78rem;
    color: var(--muted);
}
.article-sidebar__card--cta {
    background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--primary) 8%, #fff) 100%);
    border-color: color-mix(in srgb, var(--primary) 25%, var(--line));
}
.article-sidebar__cta-copy {
    margin: 0 0 14px;
    font-size: .92rem;
    line-height: 1.6;
    color: var(--muted);
}
.prose--article { max-width: none; }
.prose--article .lead {
    font-size: 1.08rem;
    line-height: 1.65;
}
.prose--article h2 { font-size: 1.25rem; }
.prose--article h3 { font-size: 1.12rem; }
.prose--article h4 { font-size: 1.02rem; }
.article-more { margin-top: 0; }

/* ---- Contact page -------------------------------------------------- */
.contact-hero .wrap { display: flex; flex-direction: column; gap: 28px; }
.contact-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.contact-chip {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
a.contact-chip:hover {
    border-color: color-mix(in srgb, var(--primary) 40%, var(--line));
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: inherit;
}
.contact-chip__icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--primary) 12%, #fff);
    color: var(--secondary);
}
.contact-chip__label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}
.contact-chip__value {
    font-size: .92rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.4;
    word-break: break-word;
}
.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: start;
}
.contact-page__side { display: flex; flex-direction: column; gap: 20px; }
.contact-info-panel h3 { font-size: 1.1rem; }
.contact-help-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-help-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-help-item__icon {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--primary) 12%, #fff);
    color: var(--secondary);
}
.contact-form__intro { margin: -4px 0 18px; font-size: .95rem; }

@media (max-width: 960px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .article-layout__aside {
        position: static;
    }
    .article-sidebar {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .article-sidebar__block--wide {
        grid-column: auto;
    }
    .article-sidebar__card--share .share-bar__actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .contact-chips { grid-template-columns: 1fr; }
    .contact-page-layout { grid-template-columns: 1fr; }
}

@media (min-width: 640px) and (max-width: 960px) {
    .article-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .article-sidebar__block--wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .pagination__btn span:not(.sr-only) { display: none; }
    .article-sidebar__card--share .share-bar__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .article-sidebar__meta-row {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}

/* ---- Commerce / account layouts ------------------------------------ */
.page-section--compact { padding: 40px 0 72px; }
.page-section--compact .breadcrumb { margin-bottom: 10px; }

.commerce-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, .9fr);
    gap: 28px;
    align-items: start;
    margin-top: 24px;
}
.account-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 28px;
}
.account-grid__main { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.account-grid__sidebar { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.account-form-heading { margin: 20px 0 4px; font-size: .95rem; }
.account-danger { border-color: color-mix(in srgb, #c0392b 25%, var(--line)); }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    cursor: pointer;
    margin: 12px 0 0;
}
.checkbox-label input { margin-top: 3px; flex-shrink: 0; }

.list-row--link {
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}
.list-panel .list-row--link:hover { background: color-mix(in srgb, var(--primary) 6%, transparent); }
.card-pad:not(.list-panel) > .list-row--link {
    margin-left: -32px;
    margin-right: -32px;
    padding-left: 32px;
    padding-right: 32px;
}
.card-pad:not(.list-panel) > .list-row--link:hover { background: color-mix(in srgb, var(--primary) 6%, transparent); }
.card-pad.list-panel {
    padding: 0;
    overflow: hidden;
}
.card-pad.list-panel .list-row--link {
    margin: 0;
    padding: 16px 24px;
}
.card-pad.list-panel .list-row--link:hover { background: color-mix(in srgb, var(--primary) 6%, transparent); }

.btn--danger {
    background: #c0392b;
    color: #fff;
    border: 1px solid #c0392b;
}
.btn--danger:hover { background: #a93226; color: #fff; }

.summary-panel h3,
.surface-panel > h3:first-child { margin-top: 0; }
.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 0;
    font-size: .95rem;
}
.summary-row--total {
    font-size: 1.15rem;
    margin-top: 4px;
}
.summary-panel .divider { margin: 14px 0; }

.cart-panel { padding: 0; overflow: hidden; }
.cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    min-width: 0;
}
.cart-item__thumb {
    width: 64px;
    height: 64px;
    border-radius: 0;
    overflow: hidden;
    background: var(--light);
    flex: none;
}
.cart-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__body { flex: 1; min-width: 0; }
.cart-item__body a { color: var(--secondary); font-weight: 700; }
.cart-item__qty { width: 72px; flex: none; min-width: 0; }
.cart-item__total { width: 84px; text-align: right; font-weight: 700; flex: none; }
.cart-panel__foot {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    flex-wrap: wrap;
}

.list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
    min-width: 0;
}
.list-row:last-child { border-bottom: 0; }
.list-panel { padding: 0; overflow: hidden; }
.list-panel .list-row,
.list-panel .list-row--link { padding-left: 24px; padding-right: 24px; }

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}
.product-layout--detail {
    gap: 56px;
}
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: calc(var(--site-chrome-height) + 20px);
}
.product-media {
    border-radius: 0;
    border: 1px solid var(--line);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media__fallback {
    height: 100%;
    display: grid;
    place-content: center;
    gap: 8px;
    font-family: var(--font-head);
    color: var(--secondary);
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--secondary) 8%, #fff), color-mix(in srgb, var(--primary) 10%, #fff));
}
.product-media__fallback span { font-size: 2rem; font-weight: 800; line-height: 1.1; }
.product-media__fallback small { color: var(--muted); font-size: .85rem; font-weight: 600; }
.product-badge {
    position: absolute;
    z-index: 2;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 0;
}
.product-badge--sale {
    top: 14px;
    right: 14px;
    background: var(--secondary);
    color: #fff;
}
.product-badge--sold {
    bottom: 14px;
    left: 14px;
    background: rgba(18, 16, 14, .78);
    color: #fff;
}
.product-badge--card {
    top: auto;
    bottom: 12px;
    right: 12px;
    left: auto;
}
.product-trust-mini {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--muted);
    font-size: .84rem;
    font-weight: 600;
}
.product-trust-mini li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.product-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.product-meta .eyebrow {
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    padding: 5px 0;
}
.product-meta .product-stock {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    min-height: 28px;
}
.product-stock {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 0;
}
.product-stock--in {
    color: #1c6b3a;
    background: #e7f6ec;
}
.product-stock--out {
    color: #a02222;
    background: #fdecea;
}
.product-title { margin-top: 0; margin-bottom: 8px; }
.product-subtitle { margin-bottom: 0; }
.product-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 14px;
    flex-wrap: wrap;
}
.product-price-row .price { font-size: 2rem; }
.product-compare { font-size: 1.1rem; }
.product-savings-chip {
    margin-left: 0;
    align-self: center;
}
.product-tags { margin-bottom: 18px; }
.product-purchase {
    padding: 18px 20px;
    margin-bottom: 18px;
}
.product-owned__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 14px;
}
.product-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.product-in-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: .92rem;
    font-weight: 600;
    color: var(--secondary);
}
.product-buy-row {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 12px;
}
.product-buy-form {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    flex: 1 1 auto;
    margin: 0;
    min-height: 0;
    position: relative;
}
.product-buy-form__submit { flex: 1 1 auto; min-height: 48px; }
.product-buy-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}
.product-buy-actions .btn--primary { flex: 1 1 180px; }
.product-buy-now { margin-top: 0; }
.product-buy-now-form { margin: 0; }
.product-sold-out { margin-bottom: 14px; }
.qty-stepper {
    display: inline-flex;
    align-items: stretch;
    border: 1.5px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    flex: none;
    height: 48px;
}
.qty-stepper__btn {
    width: 42px;
    border: 0;
    background: color-mix(in srgb, var(--light) 60%, #fff);
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s ease;
}
.qty-stepper__btn:hover { background: var(--light); }
.qty-stepper__input {
    width: 56px !important;
    min-width: 56px;
    max-width: 56px;
    height: 100%;
    border: 0;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-radius: 0;
    text-align: center;
    padding: 0 6px;
    margin: 0;
    box-shadow: none;
}
.qty-stepper__input:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--primary) 25%, transparent);
}
.wishlist-form { display: inline-flex; margin: 0; }
.wishlist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--secondary);
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.wishlist-btn--md { padding: 11px 18px; min-height: 48px; }
.wishlist-btn--sm {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 0;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-sm);
}
.wishlist-btn.is-saved {
    color: #b42318;
    border-color: color-mix(in srgb, #b42318 25%, var(--line));
    background: color-mix(in srgb, #b42318 6%, #fff);
}
.wishlist-btn.is-saved svg { fill: currentColor; }
.wishlist-btn--block { width: 100%; justify-content: center; }
.product-sold-out-actions { margin-top: 4px; }
.card-media-wrap { position: relative; }
.card-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}
.card-body h3 a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: inherit;
}
.card-body h3 a:hover { color: var(--link-hover); }
.card-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .84rem;
    color: var(--muted);
    margin: -2px 0 0;
}
.card-note--savings { color: color-mix(in srgb, var(--link) 85%, var(--secondary)); font-weight: 600; }
.product-description {
    margin: 24px 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.product-description h2 {
    font-size: 1.2rem;
    margin: 0 0 12px;
}
.prose--product {
    font-size: 1rem;
    line-height: 1.7;
    max-width: none;
    margin: 0;
}
.product-features { margin-top: 8px; }
.product-page .share-bar { margin-top: 4px; }
.page-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.shop-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.shop-toolbar__label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}
.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.shop-filter {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 0;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--secondary);
    font-weight: 600;
    font-size: .86rem;
    text-decoration: none;
    transition: border-color .15s ease, background .15s ease;
}
.shop-filter:hover,
.shop-filter.is-active {
    border-color: var(--secondary);
    background: color-mix(in srgb, var(--secondary) 6%, #fff);
}
.shop-toolbar__wishlist {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
}
.shop-count { margin: 0 0 20px; }
.shop-grid { margin-top: 0; }
.shop-benefits { align-items: start; }
.shop-benefit {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
}
.shop-benefit__icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--primary) 14%, #fff);
    color: var(--secondary);
    margin-bottom: 14px;
}
.shop-benefit h3 { margin: 0 0 8px; font-size: 1.08rem; }
.shop-benefit--highlight {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.shop-benefit--highlight .shop-benefit__icon { margin-left: auto; margin-right: auto; }
.feature-list { list-style: none; padding: 0; margin: 0; }

.featured-post {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    margin-bottom: 40px;
    text-decoration: none;
    color: inherit;
}
.featured-post .card-media { aspect-ratio: auto; min-height: 220px; }
.featured-post .card-body { justify-content: center; padding: 32px; }
.featured-post h2 { margin: 6px 0; color: var(--secondary); }

.page-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.field--narrow { max-width: 200px; }
.textarea--short { min-height: 80px; }
.hint { color: var(--muted); font-size: .88rem; }

/* ---- Responsive ---------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1024px) {
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-showcase { max-width: 400px; }
    .hero-showcase__ticket { left: 0; right: 16px; bottom: -16px; }
    .hero-showcase__thumb { right: 0; top: 8px; }
    .hero-card { transform: none; max-width: 420px; margin: 0 auto; }
    .band-layout { grid-template-columns: 1fr; gap: 32px; }
    .value-section { gap: 28px; }
    .value-section__panel { padding: 22px 20px; }
    .cta-band--visual { grid-template-columns: 1fr; }
    .cta-band--visual .cta-band__media { min-height: 200px; }
    .cta-band--visual .cta-band__media img { min-height: 200px; }
    .cta-band--visual .cta-band__content { padding: 32px 28px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-col--brand { max-width: none; grid-column: 1 / -1; }
    .ad-layout-grid { grid-template-columns: repeat(2, minmax(0, 148px)); }
    .advertise-form-split { grid-template-columns: 1fr; }
    .layout-check-grid--cols { grid-template-columns: 1fr; }
    .advertise-split--reverse .advertise-split__media,
    .advertise-split--reverse > div:last-child { order: unset; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .newsletter-panel, .newsletter-panel--visual { grid-template-columns: 1fr; padding: 24px 20px; gap: 18px; }
    .newsletter-panel--visual .newsletter-panel__visual { width: 56px; height: 56px; }
    .newsletter-panel__fields { flex-direction: column; }
    .newsletter-panel__fields .btn { width: 100%; justify-content: center; }
    .contact-layout { grid-template-columns: 1fr; }
    .spotlight-layout { grid-template-columns: 1fr; }
    .spotlight-results { grid-template-columns: 1fr; }
    .spotlight-sidebar { position: static; }
}

@media (min-width: 769px) {
    .site-nav-mobile,
    .site-nav-overlay { display: none !important; }

    .footer-col--accordion {
        border-bottom: 0;
    }
    .footer-col--accordion > summary.footer-heading {
        pointer-events: none;
        padding: 0;
        margin-bottom: 18px;
    }
    .footer-col--accordion > summary.footer-heading::after { display: none; }
    .footer-col--accordion > .footer-links,
    .footer-col--accordion > .footer-contact {
        display: grid !important;
    }
    .footer-col--accordion > .footer-newsletter {
        display: block !important;
    }
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    .section { padding: 56px 0; }
    .page-section--compact { padding: 32px 0 56px; }
    .hero--premium { padding: 64px 0 72px; }
    .top-bar__inner {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .top-bar__contact { display: none; }
    .top-bar__audience { width: 100%; justify-content: center; }
    .top-bar__audience a { flex: 1; justify-content: center; text-align: center; }
    .nav-links, .nav-actions { display: none; }
    .nav-mobile-bar { display: flex; }
    body.nav-open .nav-mobile-bar {
        position: fixed;
        top: calc(var(--site-chrome-height) - var(--header-height));
        right: 18px;
        z-index: 110;
    }
    .nav-mobile-bar .cart-link {
        position: relative;
        width: 40px;
        height: 40px;
        justify-content: center;
        border-radius: 0;
    }
    .nav-mobile-bar .cart-count {
        position: absolute;
        top: 2px;
        right: 0;
        min-width: 18px;
        padding: 2px 5px;
        font-size: .65rem;
        text-align: center;
    }
    .nav-toggle { display: block; margin-left: 2px; }
    .brand { font-size: 1.1rem; min-width: 0; }
    .brand img { height: 36px; }
    .brand-mark { width: 36px; height: 36px; font-size: 1.1rem; }
    .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .ad-layout-grid { grid-template-columns: minmax(0, 148px); }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .commerce-grid, .account-grid, .product-layout, .checkout-grid { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
    .product-buy-row { flex-wrap: wrap; align-items: stretch; }
    .product-buy-form { flex-wrap: wrap; }
    .product-buy-form__submit,
    .product-buy-row .wishlist-btn {
        width: 100%;
        flex: 0 0 auto;
        min-height: 48px;
    }
    .product-buy-actions { flex-direction: column; }
    .product-page .share-bar__actions { gap: 6px; }
    .product-page .share-btn { padding: 7px 10px; font-size: .78rem; }
    .product-page .share-btn > span { display: none; }
    .product-page .share-btn[title] { position: relative; }
    .shop-toolbar { flex-direction: column; align-items: stretch; }
    .featured-post { grid-template-columns: 1fr; }
    .featured-post .card-body { padding: 24px; }
    .cart-item__total { margin-left: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 0; }
    .footer-col--brand { padding-bottom: 24px; margin-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.1); }
    .footer-col--accordion {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .footer-col--accordion > summary.footer-heading {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin: 0;
        padding: 16px 0;
        font-size: .82rem;
    }
    .footer-col--accordion > summary.footer-heading::after {
        content: "+";
        font-size: 1.2rem;
        font-weight: 400;
        line-height: 1;
        color: rgba(255,255,255,.55);
        transition: transform .2s ease;
    }
    .footer-col--accordion[open] > summary.footer-heading::after {
        content: "−";
    }
    .footer-col--accordion .footer-links,
    .footer-col--accordion .footer-contact {
        gap: 0;
        padding-bottom: 12px;
    }
    .footer-col--accordion .footer-links a,
    .footer-col--accordion .footer-contact a,
    .footer-col--accordion .footer-contact li > span:not(.footer-contact__label) {
        display: block;
        padding: 11px 0;
        font-size: 1rem;
    }
    .footer-col--accordion .footer-contact li {
        padding: 4px 0 8px;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .footer-col--accordion .footer-contact li:last-child { border-bottom: 0; }
    .footer-col--contact .footer-newsletter {
        margin-top: 8px;
        padding-bottom: 16px;
    }
    .footer-newsletter__row {
        flex-direction: column;
        align-items: stretch;
    }
    .footer-newsletter__row .btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
    .footer-newsletter__input { min-height: 44px; }
    .footer-cta__inner { flex-direction: column; align-items: flex-start; }
    .footer-cta__actions { width: 100%; }
    .footer-cta__actions .btn { flex: 1; justify-content: center; }
    .footer-bottom__inner { flex-direction: column; align-items: flex-start; }
    .cta-band { padding: 36px 22px; }
    .subscribe { flex-direction: column; }
    .hero__body { font-size: .98rem; }
    .hero__points li { font-size: .9rem; }
    .hero-trust { gap: 20px; }
    .hero-trust--cards { flex-direction: row; }
    .hero-stat { flex: 1 1 calc(33.333% - 8px); }
    .hero-showcase__thumb { display: none; }
    .cta-band, .card-pad, .surface-panel { border-radius: 0; }
    .surface-panel { padding: 22px 18px; }
    .newsletter-panel__form { width: 100%; }
    .newsletter-panel__consent { margin-top: 4px; }
    .field--narrow { max-width: none; }
}

@media (max-width: 420px) {
    .wrap { padding: 0 18px; }
    .hero-ticket .save { font-size: 2.6rem; }
    .coupon-ticket__value { font-size: 2.2rem; }
    .hero-showcase__ticket { position: relative; bottom: auto; left: auto; right: auto; margin-top: -32px; transform: none; }
}

/* Checkout */
.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
    gap: 24px;
    align-items: start;
    margin-top: 24px;
}
.checkout-form { min-width: 0; }
.checkout-summary { position: sticky; top: calc(var(--site-chrome-height) + 16px); }
.checkout-summary__row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: .95rem; }
.checkout-summary__total { display: flex; justify-content: space-between; padding: 16px 0 20px; font-size: 1.15rem; border-top: 1px solid var(--line); margin-top: 8px; }
.checkout-summary__fine { font-size: .82rem; margin-top: 12px; }
.payment-options { display: grid; gap: 10px; margin-bottom: 18px; }
.payment-option { display: block; cursor: pointer; }
.payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.payment-option__box {
    display: block; border: 1px solid var(--line); border-radius: 0;
    padding: 14px 16px; transition: border-color .2s, box-shadow .2s;
}
.payment-option__box b { display: block; margin-bottom: 2px; }
.payment-option__box small { color: var(--muted); font-size: .85rem; }
.payment-option input:checked + .payment-option__box {
    border-color: var(--primary); box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 18%, transparent);
}
.paypal-wrap { margin: 16px 0 20px; min-height: 45px; }
.social-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.social-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 13px; border: 1.5px solid var(--line); border-radius: 0;
    font-weight: 600; color: var(--secondary); background: #fff; text-decoration: none;
    transition: border-color .2s, box-shadow .2s;
}
.social-btn:hover { border-color: var(--secondary); box-shadow: 0 4px 14px rgba(11,57,84,.08); }
.social-btn--google { border-color: #dadce0; }
.social-btn--facebook { border-color: #dadce0; }
.divider-or {
    display: flex; align-items: center; gap: 14px; color: var(--muted);
    font-size: .85rem; margin: 8px 0 18px;
}
.divider-or::before, .divider-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.checkout-login-prompt {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 0;
    border: 1px solid color-mix(in srgb, var(--primary) 35%, var(--line));
    background: color-mix(in srgb, var(--primary) 8%, var(--surface));
}
.checkout-login-prompt__title { margin: 0 0 6px; }
.checkout-login-prompt__text { margin: 0 0 14px; font-size: .92rem; }
.checkout-login-prompt__social { margin-bottom: 0; }
.checkout-login-prompt .divider-or { margin: 14px 0; }
.checkout-login-prompt__fields { align-items: end; }
.checkout-login-prompt__action .btn { margin-top: 0; }
#checkout-login-error { color: #a02222; margin-top: 8px; }
.track-order-form { max-width: 520px; margin-left: auto; margin-right: auto; }
.order-tracker { margin-bottom: 0; }
.order-tracker__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.order-tracker__step {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    position: relative;
    padding-bottom: 22px;
}
.order-tracker__step:last-child { padding-bottom: 0; }
.order-tracker__step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 28px;
    bottom: 0;
    width: 2px;
    background: var(--line);
}
.order-tracker__step--complete:not(:last-child)::before { background: color-mix(in srgb, var(--primary) 55%, var(--line)); }
.order-tracker__marker {
    width: 28px;
    height: 28px;
    border-radius: 0;
    border: 2px solid var(--line);
    background: var(--surface);
    margin-top: 2px;
    position: relative;
    z-index: 1;
}
.order-tracker__step--complete .order-tracker__marker {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: inset 0 0 0 4px var(--surface);
}
.order-tracker__step--active .order-tracker__marker {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent);
}
.order-tracker__step--cancelled .order-tracker__marker {
    border-color: #c0392b;
    background: #c0392b;
    box-shadow: inset 0 0 0 4px var(--surface);
}
.order-tracker__content { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; }
.order-tracker__content .muted { font-size: .9rem; }
@media (max-width: 900px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
}

/* Cookie consent banner — compact floating card */
.cookie-notice {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 120;
    pointer-events: none;
}
.cookie-notice[hidden] { display: none !important; }
.cookie-notice__card {
    pointer-events: auto;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px 10px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: var(--shadow);
}
.cookie-notice__text {
    margin: 0;
    font-size: .78rem;
    line-height: 1.45;
    color: var(--muted);
    flex: 1;
    min-width: 0;
}
.cookie-notice__links {
    display: inline;
    white-space: nowrap;
    font-weight: 600;
}
.cookie-notice__links a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}
.cookie-notice__links a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}
.cookie-notice__links span[aria-hidden="true"] {
    margin: 0 4px;
    color: var(--line);
}
.cookie-notice__actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.cookie-notice__btn {
    padding: 5px 11px;
    font-size: .76rem;
}
@media (max-width: 640px) {
    .cookie-notice {
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }
    .cookie-notice__card {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 14px;
    }
    .cookie-notice__actions {
        justify-content: stretch;
    }
    .cookie-notice__actions .btn {
        flex: 1;
        justify-content: center;
    }
}

.checkbox--sm {
    font-size: .82rem;
    line-height: 1.45;
    margin-top: 10px;
}
.checkbox--sm a { color: inherit; }
.footer-newsletter__consent,
.newsletter-panel__consent {
    display: block;
    margin-top: 10px;
    text-align: left;
}
.form-legal-note {
    font-size: .82rem;
    margin: 0 0 14px;
}
.form-legal-note a { color: inherit; }

.delivery-estimate {
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
}
.delivery-estimate__head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}
.delivery-estimate__icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: color-mix(in srgb, var(--primary) 14%, #fff);
    color: var(--secondary);
    flex: none;
}
.delivery-estimate__icon svg { display: block; }
.delivery-estimate__date {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: var(--secondary);
}

/* ---- Resources ----------------------------------------------------- */
.resources-grid { gap: 28px; }
.resource-card {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.resource-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background: color-mix(in srgb, var(--secondary) 8%, #fff);
    overflow: hidden;
}
.resource-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.resource-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--secondary);
    opacity: .55;
}
.resource-card__video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: var(--secondary);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 10px;
}
.resource-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.resource-card__body h3 { margin: 0; font-size: 1.2rem; }
.resource-card__body h3 a { color: var(--secondary); text-decoration: none; }
.resource-card__body p { margin: 0; flex: 1; }
.resource-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    margin: 24px 0 8px;
    overflow: hidden;
}
.resource-video iframe,
.resource-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.resource-video video {
    object-fit: contain;
    background: #000;
}
.spotlight-block .resource-video { margin-top: 0; }
.social-row--spotlight {
    margin-top: 18px;
    flex-wrap: wrap;
}
.social-row--spotlight a {
    background: color-mix(in srgb, var(--secondary) 6%, #fff);
    color: var(--secondary);
    border: 1px solid var(--line);
}
.social-row--spotlight a:hover {
    background: var(--primary);
    color: #12100e;
    border-color: var(--primary);
}
.resource-cover { margin: 24px 0 8px; }
.resource-cover img { width: 100%; display: block; }
.resource-cover--inline { max-width: 420px; }

/* Spotlight cover: plain photo, no card frame/tilt */
.page-hero__visual--plain {
    padding: 0;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.page-hero__visual--plain::before { display: none; }
.page-hero__visual--plain img,
.page-hero__visual--plain video,
.page-hero__visual--plain iframe {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 0;
    box-shadow: none;
    background: #0b1218;
}
.page-hero__visual--plain iframe {
    object-fit: unset;
}

.spotlight-article > .section--tight {
    padding-bottom: 40px;
}
.spotlight-article .spotlight-more {
    padding-top: 24px;
}
