:root {
    --cream: #f6f0e4;
    --paper: #fffaf0;
    --ink: #171915;
    --muted: #69675f;
    --line: rgba(23, 25, 21, .14);
    --fire: #d92d18;
    --fire-dark: #a91f12;
    --paprika: #f0641e;
    --plum: #59233c;
    --green: #536b2d;
    --radius: 24px;
    --shadow: 0 24px 70px rgba(42, 24, 12, .12);
    --shell: min(1240px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
body.nav-is-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.site-main { min-height: 62vh; }
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.draft-bar {
    padding: 8px 20px;
    color: #fff7de;
    background: var(--plum);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .025em;
    text-align: center;
}

.site-header {
    position: relative;
    z-index: 30;
    background: rgba(246, 240, 228, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}
.header-inner { min-height: 86px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; line-height: 1; }
.brand img, .custom-logo { width: 58px; height: 58px; object-fit: contain; }
.custom-logo-link { display: flex; }
.brand-copy { display: grid; gap: 6px; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; letter-spacing: -.03em; }
.brand-copy small { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.primary-nav { margin-left: auto; }
.primary-nav ul, .footer-menu { display: flex; gap: 28px; padding: 0; margin: 0; list-style: none; }
.primary-nav a { font-size: 14px; font-weight: 750; text-decoration: none; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--fire); }
.cart-link { display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; border: 1px solid var(--ink); border-radius: 100px; font-size: 14px; font-weight: 800; text-decoration: none; }
.cart-count { display: grid; width: 22px; height: 22px; place-items: center; color: #fff; background: var(--fire); border-radius: 50%; font-size: 11px; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; margin-left: auto; border: 0; background: transparent; }
.nav-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { position: relative; min-height: 720px; display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; overflow: hidden; color: #fff; background: #17130f; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media { background: url('../images/hero.webp') 72% 50% / cover no-repeat; transform: scale(1.01); }
.hero-shade { background: linear-gradient(90deg, rgba(14, 13, 11, .96) 0%, rgba(14, 13, 11, .82) 34%, rgba(14, 13, 11, .22) 70%, rgba(14, 13, 11, .08) 100%); }
.hero-content { position: relative; z-index: 2; min-width: 0; padding-block: 90px 60px; }
.hero-content h1, .section h2, .page-heading h1, .woocommerce-products-header__title, .product_title, .empty-state h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: .98;
}
.hero-content h1 { max-width: 780px; font-size: clamp(58px, 7.3vw, 112px); }
.hero-content h1 em { color: #ff7250; font-weight: 500; }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.82); font-size: 20px; line-height: 1.6; }
.eyebrow { margin: 0 0 18px; color: var(--fire); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-light { color: #ff9a75; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    padding: 14px 24px;
    border: 0;
    border-radius: 100px;
    font-weight: 850;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover { transform: translateY(-2px); }
.button-fire, .woocommerce a.button, .woocommerce button.button.alt { color: #fff; background: var(--fire); }
.button-fire:hover, .woocommerce a.button:hover, .woocommerce button.button.alt:hover { color: #fff; background: var(--fire-dark); }
.button-dark { color: #fff; background: var(--ink); }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--ink); font-weight: 850; text-decoration: none; border-bottom: 1px solid currentColor; }
.text-link-light { color: #fff; }
.hero-proof { display: flex; gap: 46px; margin-top: 72px; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.hero-proof span { display: grid; gap: 5px; }
.hero-proof strong { color: #fff; font-family: Georgia, serif; font-size: 28px; font-weight: 500; }

.section { padding-block: 105px; }
.section h2 { font-size: clamp(44px, 5.4vw, 78px); }
.manifesto-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: end; }
.manifesto-copy > p { max-width: 740px; margin: 0; font-family: Georgia, serif; font-size: clamp(24px, 2.6vw, 38px); line-height: 1.36; }
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); }
.feature-row span { display: grid; gap: 8px; font-size: 13px; font-weight: 850; text-transform: uppercase; }
.feature-row b { color: var(--fire); font-size: 11px; }

.products-section { background: var(--paper); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 52px; }
.section-heading.compact { margin-bottom: 44px; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin: 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { position: relative; float: none !important; width: auto !important; padding: 0 0 24px; margin: 0 !important; overflow: hidden; background: var(--cream); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease; }
.woocommerce ul.products li.product:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.woocommerce ul.products li.product a img { width: 100%; aspect-ratio: 1; margin: 0 0 22px; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0 22px; font-family: Georgia, serif; font-size: 25px; line-height: 1.15; }
.woocommerce ul.products li.product .price { padding: 0 22px; color: var(--fire); font-size: 18px; font-weight: 900; }
.woocommerce ul.products li.product .button { margin: 12px 22px 0; }
.firejar-heat-badge { position: absolute; z-index: 3; top: 18px; left: 18px; display: inline-flex; gap: 7px; align-items: center; padding: 7px 10px; color: #fff; background: rgba(23,25,21,.88); border-radius: 100px; font-size: 11px; font-weight: 850; backdrop-filter: blur(7px); }
.firejar-heat-badge span { color: #ff5135; letter-spacing: -2px; }
.firejar-loop-meta { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 22px; color: var(--muted); font-size: 12px; font-weight: 750; }
.firejar-loop-meta span + span::before { content: '·'; margin-right: 8px; }

.heat-section { color: #fff; background: var(--fire); }
.heat-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.heat-copy p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.78); font-size: 19px; }
.heat-meter { padding: 44px; background: rgba(54, 4, 0, .2); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); }
.heat-step { display: grid; grid-template-columns: 34px 1fr 90px; gap: 15px; align-items: center; margin: 13px 0; color: rgba(255,255,255,.55); }
.heat-step i { display: block; height: 8px; background: rgba(255,255,255,.18); border-radius: 9px; }
.heat-step.active { color: #fff; font-weight: 850; }
.heat-step.active i { background: linear-gradient(90deg, #ffd13a, #fff4ce); box-shadow: 0 0 20px rgba(255,209,58,.5); }
.heat-step small { text-transform: uppercase; font-size: 10px; font-weight: 850; letter-spacing: .08em; }

.process-section { background: var(--ink); color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.process-grid article { min-height: 285px; padding: 30px; background: var(--ink); }
.process-grid span { color: #ff7250; font-size: 12px; font-weight: 900; }
.process-grid h3 { margin: 46px 0 10px; font-family: Georgia, serif; font-size: 28px; }
.process-grid p { margin: 0; color: rgba(255,255,255,.6); font-size: 15px; }

.delivery-section { background: var(--paper); }
.delivery-card { display: grid; grid-template-columns: 1fr .6fr; gap: 60px; align-items: center; padding: 68px; background: #e9dfca; border-radius: calc(var(--radius) * 1.4); }
.delivery-card p:not(.eyebrow) { max-width: 640px; color: var(--muted); font-size: 19px; }
.delivery-stamp { justify-self: center; width: 270px; height: 270px; display: grid; place-content: center; text-align: center; color: #fff; background: var(--fire); border: 8px solid var(--paper); border-radius: 50%; outline: 2px dashed var(--fire); transform: rotate(5deg); box-shadow: var(--shadow); }
.delivery-stamp span { font-family: Georgia, serif; font-size: 54px; font-weight: 800; line-height: 1; }
.delivery-stamp strong, .delivery-stamp small { text-transform: uppercase; letter-spacing: .08em; }
.delivery-stamp small { opacity: .76; }

.page-shell, .shop-shell { padding-block: 72px 110px; }
.content-card { max-width: 920px; padding: clamp(28px, 5vw, 72px); margin: 0 auto; background: var(--paper); border-radius: var(--radius); box-shadow: 0 10px 40px rgba(40,30,20,.06); }
.page-heading { margin-bottom: 38px; }
.page-heading h1, .woocommerce-products-header__title, .product_title { font-size: clamp(42px, 5vw, 68px); }
.prose h2 { margin-top: 2.2em; font-family: Georgia, serif; font-size: 34px; line-height: 1.15; }
.prose h3 { margin-top: 2em; }
.prose li { margin-block: 8px; }
.prose a { color: var(--fire-dark); }
.empty-state { padding-block: 130px; text-align: center; }
.empty-state h1 { font-size: clamp(52px, 7vw, 90px); }

.shop-shell .woocommerce-products-header { margin-bottom: 42px; }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { margin-bottom: 28px; }
.woocommerce .quantity .qty { min-height: 48px; border: 1px solid var(--line); border-radius: 12px; }
.woocommerce div.product { padding: 38px; background: var(--paper); border-radius: var(--radius); }
.woocommerce div.product div.images img { border-radius: 18px; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--fire); font-size: 27px; font-weight: 900; }
.woocommerce-tabs { padding-top: 40px; }
.firejar-product-draft { margin-top: 18px; padding: 14px 16px; color: #fff; background: var(--plum); border-radius: 12px; font-size: 14px; }
.woocommerce-message, .woocommerce-info { border-top-color: var(--fire); background: var(--paper); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--fire); }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select, .select2-container--default .select2-selection--single {
    min-height: 50px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

.site-footer { padding: 74px 0 28px; color: rgba(255,255,255,.7); background: #11130f; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr .8fr; gap: 70px; }
.brand-footer { color: #fff; }
.brand-footer img { width: 64px; height: 64px; }
.site-footer h2 { margin: 0 0 18px; color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.footer-menu { display: grid; gap: 9px; }
.footer-menu a { text-decoration: none; }
.footer-menu a:hover { color: #fff; }
.footer-small { font-size: 12px; opacity: .68; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 60px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 980px) {
    :root { --shell: min(100% - 28px, 760px); }
    .header-inner { min-height: 74px; }
    .brand-copy small { display: none; }
    .nav-toggle { display: block; }
    .primary-nav { position: fixed; inset: 0; z-index: -1; display: none; padding: 130px 30px 50px; background: var(--cream); }
    .primary-nav.is-open { display: block; z-index: 10; }
    .primary-nav ul { display: grid; gap: 18px; }
    .primary-nav a { font-family: Georgia, serif; font-size: 34px; }
    .cart-link { padding: 9px 12px; }
    .cart-link > span:nth-child(2) { display: none; }
    .hero { min-height: 680px; }
    .hero-media { background-position: 62% 50%; opacity: .6; }
    .hero-shade { background: linear-gradient(90deg, rgba(14,13,11,.96), rgba(14,13,11,.7)); }
    .manifesto-grid, .heat-grid, .delivery-card { grid-template-columns: 1fr; gap: 50px; }
    .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    body { font-size: 16px; }
    .shell { width: calc(100% - 28px); max-width: none; min-width: 0; }
    .draft-bar { font-size: 11px; }
    .header-inner { gap: 10px; }
    .brand { gap: 8px; }
    .brand-copy strong { font-size: 17px; white-space: nowrap; }
    .brand img, .custom-logo { width: 48px; height: 48px; }
    .hero { min-height: 720px; }
    .hero-content { padding-block: 64px 44px; }
    .hero-content > * { max-width: 100%; }
    .hero-content h1 { font-size: clamp(42px, 11.7vw, 50px); overflow-wrap: anywhere; }
    .hero-lead { font-size: 16px; overflow-wrap: break-word; }
    .hero-actions { align-items: flex-start; flex-direction: column; }
    .hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; width: 100%; margin-top: 52px; }
    .hero-proof span { min-width: 0; font-size: 9px; overflow-wrap: anywhere; }
    .hero-proof strong { font-size: 24px; }
    .section { padding-block: 72px; }
    .manifesto-grid { gap: 36px; }
    .feature-row { grid-template-columns: 1fr; }
    .section-heading { align-items: flex-start; flex-direction: column; }
    .woocommerce ul.products { grid-template-columns: 1fr; }
    .heat-meter { padding: 24px 18px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid article { min-height: 220px; }
    .delivery-card { padding: 34px 24px; }
    .delivery-stamp { width: 220px; height: 220px; }
    .woocommerce div.product { padding: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-grid > div:first-child { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
