/* ==========================================================
   EIGHT12 — global.css v5
   Designer fonts: Urbanist (headings) · D-DIN (body/UI) · Roboto (D-DIN fallback)
   Mochiy Pop One: accent/decorative — add @font-face below when file is supplied.
   No Helvetica. No Arial. No system font chains.
   ========================================================== */

/* ----------------------------------------------------------
   1. SELF-HOSTED FONTS
   ---------------------------------------------------------- */

/* Urbanist variable font */
@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Urbanist.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Urbanist-Italic.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* D-DIN — body / UI */
@font-face {
    font-family: 'D-DIN';
    src: url('../fonts/D-DIN.ttf') format('truetype'),
         url('../fonts/DDIN.ttf') format('truetype'),
         url('../fonts/D-DIN-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'D-DIN';
    src: url('../fonts/D-DIN-Italic.ttf') format('truetype'),
         url('../fonts/DDIN-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'D-DIN';
    src: url('../fonts/D-DIN-Bold.ttf') format('truetype'),
         url('../fonts/DDIN-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Roboto — fallback for D-DIN (same body/UI role, similar geometry) */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Mochiy Pop One — decorative / accent
   Uncomment when the designer supplies the font file.
   Usage: font-family: 'Mochiy Pop One', sans-serif;
*/
/*
@font-face {
    font-family: 'Mochiy Pop One';
    src: url('../fonts/MochiyPopOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
*/

/* CDN fallbacks — load AFTER @font-face so local files win */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/d-din');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* ----------------------------------------------------------
   2. COLOUR TOKENS
   ---------------------------------------------------------- */
:root {
    --e12-accent:        #8a4e2a;
    --e12-accent-deep:   #5c3219;
    --e12-accent-soft:   #c89876;
    --e12-accent-tint:   rgba(138, 78, 42, .12);

    --e12-bg:            #e9e2d6;
    --e12-panel-light:   #f0eadc;
    --e12-panel-mid:     #d8cdb9;
    --e12-cream:         #f1ead9;

    --e12-ink:           #20180f;

    /* Back-compat aliases */
    --e12-green:         #8a4e2a;
    --e12-bronze:        #8a4e2a;
    --e12-bronze-deep:   #5c3219;
    --e12-bronze-soft:   #c89876;
    --e12-gold:          #b8924a;

    --e12-rule:          rgba(32, 24, 15, .14);
    --e12-rule-strong:   rgba(32, 24, 15, .24);
    --e12-rule-on-dark:  rgba(241, 234, 217, .16);
}

/* ----------------------------------------------------------
   3. GLOBAL TYPOGRAPHY
   ---------------------------------------------------------- */
html, body {
    font-family: 'D-DIN', Roboto, sans-serif !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
    background: var(--e12-bg);
    color: var(--e12-ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-family: 'D-DIN', Roboto, sans-serif;
    font-size: 13px;
    line-height: 1.85;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Urbanist, sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

button, label, input, select, textarea {
    font-family: 'D-DIN', Roboto, sans-serif;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
*,
*::before,
*::after { box-sizing: border-box; }

/* ----------------------------------------------------------
   4. TYPOGRAPHY UTILITY CLASSES
   ---------------------------------------------------------- */
.e12-display {
    font-family: Urbanist, sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    line-height: 0.98 !important;
    margin: 0;
}

.e12-heading {
    font-family: Urbanist, sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    margin: 0;
}

.e12-eyebrow,
.e12-label {
    font-family: 'D-DIN', Roboto, sans-serif !important;
    font-weight: 500 !important;
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: var(--e12-accent) !important;
}

.e12-spec {
    font-family: 'D-DIN', Roboto, sans-serif !important;
    font-weight: 400 !important;
    font-size: 9.5px !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: var(--e12-ink);
}

.e12-body {
    font-size: 13px !important;
    line-height: 1.85 !important;
    font-family: 'D-DIN', Roboto, sans-serif !important;
}

.e12-nav__wordmark {
    font-family: Urbanist, sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.22em !important;
}

.e12-nav__link {
    font-family: 'D-DIN', Roboto, sans-serif !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    font-size: 10px !important;
    font-weight: 500 !important;
}

.e12-btn {
    font-family: 'D-DIN', Roboto, sans-serif !important;
    font-weight: 500 !important;
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
}

.e12-footer__links a {
    font-family: 'D-DIN', Roboto, sans-serif !important;
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
}
.e12-footer__bottom div {
    font-family: 'D-DIN', Roboto, sans-serif !important;
    font-size: 9.5px !important;
    letter-spacing: 0.28em !important;
}

/* ----------------------------------------------------------
   5. LOGO
   ---------------------------------------------------------- */
.e12-nav__logo img {
    height: 40px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    background: transparent;
}

/* ----------------------------------------------------------
   6. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ----------------------------------------------------------
   7. BUTTONS
   ---------------------------------------------------------- */
.e12-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    height: 46px;
    padding: 0 28px;
    background: var(--e12-accent);
    color: #fff;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    transition: background-color .25s ease;
}
.e12-btn:hover              { background: var(--e12-accent-deep) !important; }
.e12-btn--ghost-light       { background: var(--e12-cream) !important; color: var(--e12-accent) !important; }
.e12-btn--ghost-light:hover { background: #fff !important; }
.e12-btn--disabled          { background: rgba(32,24,15,.16) !important; color: rgba(32,24,15,.5) !important; cursor: not-allowed !important; pointer-events: none !important; }
.e12-btn--block             { width: 100% !important; }

/* ----------------------------------------------------------
   8. PRODUCT CARDS
   ---------------------------------------------------------- */
.e12-woo-grid { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 900px)  { .e12-woo-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 540px)  { .e12-woo-grid { grid-template-columns: 1fr !important; } }
.e12-woo-img    { aspect-ratio: 4/5 !important; }
.e12-woo-info   { padding: 16px 20px 6px !important; }
.e12-woo-name   { font-size: 10px !important; margin: 0 0 3px !important; }
.e12-woo-sub    { font-size: 11.5px !important; margin: 0 0 4px !important; }
.e12-woo-price  { font-size: 11px !important; }
.e12-woo-cta    { margin: 10px 20px 16px !important; padding: 9px 0 !important; font-size: 8.5px !important; }

/* ----------------------------------------------------------
   9. QUANTITY STEPPER
   ---------------------------------------------------------- */
.e12-qty-wrap {
    display: flex;
    align-items: stretch;
    border: .5px solid var(--e12-rule-strong);
    height: 46px;
    flex-shrink: 0;
}
.e12-qty-btn {
    width: 36px; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: none; cursor: pointer;
    font-size: 18px; font-weight: 300;
    color: var(--e12-ink);
    transition: background .2s, color .2s;
    user-select: none; padding: 0; line-height: 1;
}
.e12-qty-btn:hover          { background: var(--e12-accent); color: #fff; }
.e12-qty-btn.decrement      { border-right: .5px solid var(--e12-rule); }
.e12-qty-btn.increment      { border-left:  .5px solid var(--e12-rule); }
.e12-qty-wrap input[type="number"],
.e12-qty-wrap .qty {
    width: 44px !important; height: 100% !important;
    border: none !important; background: transparent !important;
    text-align: center !important;
    font-size: 13px !important; color: var(--e12-ink) !important;
    outline: none !important; -moz-appearance: textfield !important;
    padding: 0 !important; border-radius: 0 !important; box-shadow: none !important;
}
.e12-qty-wrap input[type="number"]::-webkit-inner-spin-button,
.e12-qty-wrap input[type="number"]::-webkit-outer-spin-button,
.e12-qty-wrap .qty::-webkit-inner-spin-button,
.e12-qty-wrap .qty::-webkit-outer-spin-button { -webkit-appearance: none; }

/* ----------------------------------------------------------
   10. SINGLE PRODUCT (PDP)
   ---------------------------------------------------------- */
.e12-pdp-wrap  { display: grid !important; grid-template-columns: 1fr 1fr; align-items: start !important; }
@media (max-width: 767px) { .e12-pdp-wrap { grid-template-columns: 1fr !important; } }
.e12-pdp-gallery { position: sticky !important; top: 68px !important; align-self: start !important; overflow: hidden !important; }
.e12-pdp-stage   { aspect-ratio: 4/5 !important; position: relative !important; overflow: hidden !important; }
.e12-pdp-info    { min-height: 0; padding: 40px 32px !important; }
@media (min-width: 768px)  { .e12-pdp-info { padding: 48px !important; } }
@media (min-width: 1024px) { .e12-pdp-info { padding: 64px !important; } }

.e12-pdp-acc details > div {
    overflow: hidden;
    animation: e12AccOpen .28s ease forwards;
}
@keyframes e12AccOpen {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: .75; transform: translateY(0); }
}

.e12-pdp form.cart, .e12-pdp .cart {
    display: flex !important; gap: 8px !important;
    align-items: stretch !important; margin-bottom: 20px !important; flex-wrap: nowrap !important;
}
.e12-pdp .single_add_to_cart_button,
.e12-pdp button.single_add_to_cart_button {
    flex: 1 !important; height: 46px !important; padding: 0 20px !important;
    font-size: 9.5px !important; letter-spacing: .22em !important;
    text-transform: uppercase !important; font-weight: 500 !important;
    background: var(--e12-accent) !important; color: #fff !important;
    border: none !important; border-radius: 0 !important;
    cursor: pointer !important; transition: background .25s !important;
}
.e12-pdp .single_add_to_cart_button:hover    { background: var(--e12-accent-deep) !important; }
.e12-pdp .single_add_to_cart_button:disabled { background: rgba(32,24,15,.2) !important; cursor: not-allowed !important; }

/* ----------------------------------------------------------
   11. CART MODAL
   ---------------------------------------------------------- */
.e12-cart-modal-box      { border-top: 2px solid var(--e12-accent) !important; }
.e12-cart-modal-sub      { color: var(--e12-accent-soft) !important; }
.e12-cart-modal-secondary { color: var(--e12-accent-soft) !important; }


/* 11. CART MODAL */
.e12-cart-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.e12-cart-modal.open {
    display: flex;
}
.e12-cart-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(32, 24, 15, .45);
    cursor: pointer;
}
.e12-cart-modal-box {
    position: relative;
    z-index: 1;
    background: var(--e12-bg);
    padding: 48px 40px 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border-top: 2px solid var(--e12-accent);
}
.e12-cart-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none; border: none;
    cursor: pointer; font-size: 14px;
    color: var(--e12-ink); opacity: .4;
}
.e12-cart-modal-close:hover { opacity: 1; }
.e12-cart-modal-check { margin-bottom: 20px; }
.e12-cart-modal-title {
    font-family: Urbanist, sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: var(--e12-ink);
}
.e12-cart-modal-sub {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0 0 28px;
    color: var(--e12-accent-soft);
}
.e12-cart-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.e12-cart-modal-secondary {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--e12-accent-soft);
    text-decoration: none;
    cursor: pointer;
}
.e12-cart-modal-secondary:hover { color: var(--e12-accent); }

/* Check animation */
.e12-cart-modal.open .e12-check-circle { animation: e12CircleDraw .5s ease forwards; }
.e12-cart-modal.open .e12-check-tick   { animation: e12TickDraw .4s ease .45s forwards; }
@keyframes e12CircleDraw { to { stroke-dashoffset: 0; } }
@keyframes e12TickDraw   { to { stroke-dashoffset: 0; } }
/* ----------------------------------------------------------
   12. GLOBAL ACCENT OVERRIDES
   ---------------------------------------------------------- */
.e12-nav__link:hover,
.e12-nav__link.current      { color: var(--e12-accent) !important; }
.e12-nav-cart:hover         { color: var(--e12-accent) !important; }
.e12-nav-cart-badge         { background: var(--e12-accent) !important; }
.e12-pdp-acc details > summary::after { color: var(--e12-accent) !important; }
details.e12-acc > summary::after      { color: var(--e12-bronze) !important; }
.e12-pdp-grid .cell .l      { color: var(--e12-accent) !important; }
.e12-pdp-stock.outofstock .e12-pdp-stock-dot { background: var(--e12-accent) !important; }
.e12-pdp-prog-fill          { background: var(--e12-accent) !important; }
.e12-pdp-thumb.active       { border-color: var(--e12-accent) !important; }
.e12-woo-item:hover .e12-woo-cta     { background: var(--e12-accent) !important; border-color: var(--e12-accent) !important; }
.e12-woo-item:hover .e12-woo-overlay span { background: var(--e12-accent) !important; }
.e12-woo-sale               { background: var(--e12-accent) !important; }
.e12-strip.green            { background: var(--e12-accent) !important; }

/* ----------------------------------------------------------
   13. CART / CHECKOUT / ACCOUNT
   ---------------------------------------------------------- */
.e12-cart-page .wc-proceed-to-checkout .checkout-button:hover { background: var(--e12-accent) !important; }
.e12-checkout-page .form-row input:focus,
.e12-checkout-page .form-row select:focus { border-bottom-color: var(--e12-accent) !important; }
.e12-checkout-page #place_order:hover     { background: var(--e12-accent) !important; }
.e12-account-page .woocommerce-MyAccount-navigation li a:hover { color: var(--e12-accent) !important; }
.e12-account-page .woocommerce-MyAccount-navigation li.is-active a { border-bottom-color: var(--e12-accent) !important; }
.e12-account-page .button       { background: var(--e12-accent) !important; }
.e12-account-page .button:hover { background: var(--e12-accent-deep) !important; }

/* ----------------------------------------------------------
   14. WC NOTICES
   ---------------------------------------------------------- */
.blockUI.blockOverlay { opacity: 0 !important; }
.woocommerce-error, .woocommerce-message, .woocommerce-info {
    border-top-color: var(--e12-accent) !important;
    font-size: 12px !important;
}
.woocommerce-notices-wrapper,
a.added_to_cart.wc-forward,
p.demo_store { display: none !important; }

/* ----------------------------------------------------------
   15. STONE / TEXTURE EFFECTS
   ---------------------------------------------------------- */
.e12-stone {
    background-color: #20180f;
    background-image:
        radial-gradient(ellipse at 18% 22%, rgba(180,120,70,.22), transparent 55%),
        radial-gradient(ellipse at 78% 80%, rgba(110,70,40,.30), transparent 60%),
        radial-gradient(ellipse at 60% 35%, rgba(50,35,22,.55), transparent 70%),
        linear-gradient(180deg, #251b10 0%, #1a130a 100%);
    position: relative; isolation: isolate;
}
.e12-stone::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.32 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
    mix-blend-mode: overlay; opacity: .55; z-index: 0;
}
.e12-stone > * { position: relative; z-index: 1; }

.e12-onyx {
    background-color: #d8cdb9;
    background-image:
        radial-gradient(ellipse at 30% 30%, rgba(255,245,225,.75), transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(138,78,42,.18), transparent 65%);
}

/* ----------------------------------------------------------
   16. COMPONENT PATTERNS
   ---------------------------------------------------------- */

/* Nav */
.e12-nav {
    position: sticky; top: 0; z-index: 50;
    background: var(--e12-bg); border-bottom: .5px solid var(--e12-rule);
}
.e12-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.e12-nav__links { display: none; gap: 36px; }
@media (min-width: 900px) { .e12-nav__links { display: flex; } .e12-nav__toggle { display: none; } }
.e12-nav__toggle { background: none; border: 0; padding: 8px; cursor: pointer; color: var(--e12-ink); }
.e12-nav__mobile { display: none; padding: 24px; flex-direction: column; gap: 18px; border-top: .5px solid var(--e12-rule); background: var(--e12-bg); }
.e12-nav__mobile.open { display: flex; }

/* Hero */
.e12-hero { position: relative; overflow: hidden; min-height: 520px; display: flex; color: #fff; }
@media (min-width: 768px) { .e12-hero { min-height: 620px; } }
.e12-hero__bg, .e12-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.e12-hero__scrim  { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(20,14,8,.88) 0%, rgba(20,14,8,.65) 35%, rgba(20,14,8,.28) 65%, rgba(20,14,8,.08) 100%); }
.e12-hero__scrim-2 { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgba(20,14,8,.7) 0%, rgba(20,14,8,.25) 40%, rgba(20,14,8,0) 65%); }
.e12-hero__content { position: relative; z-index: 2; width: 100%; max-width: 1440px; margin: 0 auto; padding: 96px 24px 72px; display: flex; flex-direction: column; justify-content: flex-end; }
@media (min-width: 768px) { .e12-hero__content { padding: 96px 40px 80px; } }
.e12-hero__eyebrow { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: #e9c9a0; margin-bottom: 24px; }
.e12-hero__display { font-family: Urbanist, sans-serif; font-weight: 700; text-transform: uppercase; font-size: 44px; line-height: .98; letter-spacing: .06em; display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
@media (min-width: 640px)  { .e12-hero__display { font-size: 56px; } }
@media (min-width: 768px)  { .e12-hero__display { font-size: 72px; gap: 24px; } }
@media (min-width: 1024px) { .e12-hero__display { font-size: 96px; } }
.e12-hero__subline { margin-top: 32px; max-width: 520px; font-size: 13px; opacity: .7; line-height: 1.9; letter-spacing: .04em; }

/* Product row */
.e12-row { display: grid; grid-template-columns: 1fr; border-bottom: .5px solid var(--e12-rule); }
@media (min-width: 768px) { .e12-row { grid-template-columns: 1fr 1fr; } }
.e12-row__image { display: flex; align-items: center; justify-content: center; padding: 48px 32px; min-height: 480px; }
.e12-row__image.light { background: var(--e12-panel-light); }
.e12-row__image.mid   { background: var(--e12-panel-mid); }
.e12-row__image img   { max-width: 70%; height: auto; mix-blend-mode: multiply; }
.e12-row__info { background: var(--e12-bg); padding: 40px 32px; }
@media (min-width: 768px)  { .e12-row__info { padding: 56px; } }
@media (min-width: 1024px) { .e12-row__info { padding: 72px; } }
.e12-row__header { display: grid; grid-template-columns: 1fr 1fr; padding-bottom: 16px; border-bottom: .5px solid var(--e12-rule); margin-bottom: 40px; }
.e12-row__header .l { font-family: Urbanist, sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .18em; }
.e12-row__header .r { font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; text-align: right; opacity: .7; }
.e12-row__name { font-family: Urbanist, sans-serif; font-weight: 700; font-size: 28px; letter-spacing: .08em; margin: 0 0 32px; text-transform: uppercase; }
@media (min-width: 768px) { .e12-row__name { font-size: 34px; } }
.e12-row__desc { font-size: 13px; line-height: 1.85; max-width: 420px; margin: 0 0 32px; opacity: .9; }
.e12-row__grid { display: grid; grid-template-columns: 1fr 1fr; border-top: .5px solid var(--e12-rule); border-left: .5px solid var(--e12-rule); margin-bottom: 32px; }
.e12-row__grid .cell { border-right: .5px solid var(--e12-rule); border-bottom: .5px solid var(--e12-rule); padding: 20px; }
.e12-row__grid .cell .l { display: block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--e12-accent); margin-bottom: 8px; }
.e12-row__grid .cell .v { font-family: Urbanist, sans-serif; font-weight: 700; font-size: 13px; }
.e12-row__footnote { font-size: 9.5px; line-height: 1.7; opacity: .4; max-width: 460px; margin: 0 0 32px; letter-spacing: .04em; }
.e12-row__footer { display: flex; justify-content: space-between; align-items: flex-end; border-top: .5px solid var(--e12-rule); padding-top: 20px; margin-bottom: 24px; font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; opacity: .7; }

/* CTA Strip */
.e12-strip { padding: 96px 24px; }
.e12-strip__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.e12-strip.green  { background: var(--e12-accent); color: #fff; }
.e12-strip.ink    { background: var(--e12-ink); color: #fff; }
.e12-strip.linen  { background: var(--e12-bg); color: var(--e12-ink); }
.e12-strip__eyebrow { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 24px; color: #e9c9a0; opacity: .8; }
.e12-strip.linen .e12-strip__eyebrow { color: var(--e12-accent); }
.e12-strip__headline { font-family: Urbanist, sans-serif; font-weight: 700; font-size: 28px; letter-spacing: .04em; line-height: 1.1; margin: 0 0 24px; text-transform: uppercase; }
@media (min-width: 768px) { .e12-strip__headline { font-size: 40px; } }
.e12-strip__body { font-size: 13px; line-height: 1.9; opacity: .75; max-width: 520px; margin: 0 auto 40px; }

/* Footer */
.e12-footer { background: var(--e12-ink); color: #fff; }
.e12-footer__grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding: 80px 0; }
@media (min-width: 768px) { .e12-footer__grid { grid-template-columns: 1fr 2fr 1fr; } }
.e12-footer__col h4 { font-family: Urbanist, sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .22em; margin: 0 0 8px; }
.e12-footer__col .tag  { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; opacity: .6; margin-bottom: 40px; }
.e12-footer__col .copy { font-size: 9.5px; letter-spacing: .06em; opacity: .5; text-transform: uppercase; }
.e12-footer__bottom { border-top: .5px solid var(--e12-rule-on-dark); padding: 24px 0; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 768px) { .e12-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* Forms */
.e12-form { max-width: 560px; }
.e12-form label { display: block; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; opacity: .6; margin-bottom: 8px; }
.e12-form .field { margin-bottom: 32px; }
.e12-form input, .e12-form textarea {
    width: 100%; background: transparent; border: 0;
    border-bottom: .5px solid var(--e12-rule-strong);
    padding: 14px 0; font: inherit; color: var(--e12-ink);
    outline: none; border-radius: 0;
}
.e12-form input:focus, .e12-form textarea:focus { border-bottom-color: var(--e12-accent); }

/* Accordion */
details.e12-acc { border-bottom: .5px solid var(--e12-rule); }
details.e12-acc > summary { list-style: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; gap: 24px; font-size: 14px; }
details.e12-acc > summary::-webkit-details-marker { display: none; }
details.e12-acc > summary::after { content: "+"; color: var(--e12-accent); font-size: 20px; }
details.e12-acc[open] > summary::after { content: "−"; }
details.e12-acc > div { padding-bottom: 24px; opacity: .75; max-width: 720px; }

/* Two-column split */
.e12-split { display: grid; grid-template-columns: 1fr; border-bottom: .5px solid var(--e12-rule); }
@media (min-width: 768px) { .e12-split { grid-template-columns: 1fr 1fr; } }
.e12-split__text { background: var(--e12-bg); padding: 56px 32px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .e12-split__text { padding: 96px 80px; } }
.e12-split__media { background: var(--e12-panel-light); display: flex; align-items: center; justify-content: center; padding: 48px; min-height: 480px; }
.e12-split__media img { max-width: 70%; mix-blend-mode: multiply; }

/* Generic section */
.e12-section { padding: 96px 24px; }
@media (min-width: 768px) { .e12-section { padding: 128px 40px; } }
.e12-prose { max-width: 680px; margin: 0 auto; }
.e12-prose p { font-size: 13px; line-height: 1.85; margin-bottom: 20px; opacity: .9; }
.e12-prose .lab { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--e12-accent); margin: 56px 0 28px; padding-top: 56px; border-top: .5px solid var(--e12-rule); }
.e12-prose .lab.first { border-top: 0; padding-top: 0; margin-top: 0; }

/* Reveal animation */
@keyframes e12-rise { from { opacity:0; transform: translateY(10px); } to { opacity:1; transform: translateY(0); } }
.e12-rise   { animation: e12-rise .9s cubic-bezier(.2,.7,.2,1) both; }
.e12-rise-2 { animation-delay: .12s; }
.e12-rise-3 { animation-delay: .24s; }
.e12-rise-4 { animation-delay: .36s; }