:root {
    --ink: #172019;
    --forest: #26382b;
    --cream: #f6f0e5;
    --paper: #fffdf8;
    --ember: #ed5b2a;
    --ember-dark: #c9431b;
    --moss: #a9b892;
    --line: rgba(23, 32, 25, 0.14);
    --muted: #667068;
    --shadow: 0 24px 70px rgba(23, 32, 25, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(1180px, calc(100% - 40px));
    max-width: none;
    padding: 0;
}

.announcement-bar {
    background: var(--ink);
    color: #fff;
    min-height: 34px;
    display: grid;
    place-items: center;
    padding: 7px 20px;
}

.announcement-bar p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.025em;
    text-align: center;
}

.announcement-bar span {
    color: #ffc260;
    font-weight: 800;
    margin-right: 8px;
    text-transform: uppercase;
}

header.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border: 0;
    background: rgba(255, 253, 248, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

header.site-header .header-inner {
    min-height: 72px;
    padding: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 24px;
    letter-spacing: -0.055em;
    text-decoration: none;
}

.brand strong {
    font-weight: 850;
}

.brand-mark {
    position: relative;
    width: 27px;
    height: 34px;
    overflow: hidden;
    border-radius: 68% 32% 64% 36% / 70% 40% 60% 30%;
    background: var(--ember);
    transform: rotate(12deg);
}

.brand-mark::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 18px;
    right: 3px;
    bottom: -2px;
    border-radius: 70% 30% 60% 40%;
    background: #ffc260;
}

.site-header nav ul {
    align-items: center;
    gap: 30px;
}

.site-header nav ul li {
    margin: 0;
}

.site-header nav ul li a {
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.site-header nav ul li a:not(.cart-link):hover {
    color: var(--ember-dark);
}

.site-header .cart-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border: 1px solid var(--ink);
    border-radius: 999px;
}

.site-header .cart-count {
    position: static;
    display: grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    padding: 0 6px;
    background: var(--ember);
    font-size: 11px;
}

.r2-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(52px, 7vw, 96px) 0 clamp(64px, 8vw, 112px);
    background:
        radial-gradient(circle at 6% 20%, rgba(237, 91, 42, 0.14), transparent 30%),
        linear-gradient(135deg, #f8f2e7 0%, #fffdf8 54%, #edf1e7 100%);
}

.r2-hero::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -190px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(38, 56, 43, 0.12);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
    gap: clamp(42px, 7vw, 92px);
    align-items: center;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--ember-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 680px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 6.5vw, 92px);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.hero-copy h1 em {
    color: var(--forest);
    font-weight: 500;
}

.hero-lede {
    max-width: 580px;
    margin: 28px 0 0;
    color: #4f5a52;
    font-size: clamp(17px, 1.65vw, 20px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 34px;
}

body .btn,
body a.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 13px 22px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    box-shadow: none;
}

body .btn-primary,
body a.btn-primary {
    background: var(--ember);
    color: #fff;
}

body .btn-primary:hover,
body a.btn-primary:hover {
    background: var(--ember-dark);
    box-shadow: 0 12px 28px rgba(201, 67, 27, 0.22);
}

.text-link {
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    text-underline-offset: 5px;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 44px 0 0;
    padding: 26px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.hero-facts li {
    display: grid;
    gap: 2px;
}

.hero-facts strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

.hero-facts span {
    color: var(--muted);
    font-size: 12px;
}

.hero-visual {
    position: relative;
    min-height: 590px;
}

.hero-visual > img {
    width: 100%;
    height: 590px;
    display: block;
    object-fit: cover;
    object-position: 47% center;
    border-radius: 220px 220px 16px 16px;
    box-shadow: var(--shadow);
}

.hero-note {
    position: absolute;
    right: -22px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 285px;
    padding: 16px 18px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 16px 42px rgba(23, 32, 25, 0.18);
    backdrop-filter: blur(10px);
}

.hero-note-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #51a35d;
    box-shadow: 0 0 0 5px rgba(81, 163, 93, 0.13);
}

.hero-note div {
    display: grid;
    gap: 1px;
}

.hero-note strong {
    font-size: 13px;
}

.hero-note span:last-child {
    color: var(--muted);
    font-size: 12px;
}

.product-spotlight {
    padding: clamp(72px, 9vw, 126px) 0;
    background: var(--ink);
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.82fr);
    gap: clamp(50px, 8vw, 112px);
    align-items: center;
}

.product-photo {
    position: relative;
}

.product-photo img {
    width: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.stock-chip {
    position: absolute;
    z-index: 1;
    top: 18px;
    left: 18px;
    padding: 9px 12px;
    background: #fff8e8;
    color: var(--ink);
    border-radius: 2px;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-copy .eyebrow {
    color: #ffc260;
}

.product-copy h2 {
    margin: 0 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1;
}

.product-intro {
    margin: 0;
    color: #cbd1cb;
    font-size: 17px;
    line-height: 1.7;
}

.included-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 30px 0;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    list-style: none;
}

.included-list li {
    position: relative;
    padding: 14px 8px 14px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: #e8ece8;
    font-size: 13px;
}

.included-list li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: #ffc260;
    font-weight: 900;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.price-row > div {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.old-price {
    color: #8f9991;
    font-size: 16px;
    text-decoration: line-through;
}

.price-row strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 500;
}

.currency {
    color: #9da69f;
    font-size: 12px;
}

.save-pill {
    padding: 6px 10px;
    border: 1px solid rgba(255, 194, 96, 0.55);
    border-radius: 999px;
    color: #ffc260;
    font-size: 12px;
    font-weight: 800;
}

.product-copy .cart-control {
    width: 100%;
    margin: 0;
}

.product-copy .add-to-cart,
.product-copy .added-actions {
    width: 100%;
}

.product-copy .added-actions {
    grid-template-columns: minmax(190px, 0.92fr) minmax(180px, 1.08fr);
    gap: 10px;
}

.product-copy .quantity-controls {
    width: 100%;
    gap: 8px;
}

.product-copy .quantity-btn {
    width: 52px;
    height: 52px;
    background: var(--ember);
    border-radius: 3px;
}

.product-copy .quantity-input {
    height: 52px;
    background: #fff;
    border: 0;
    border-radius: 3px;
}

body a.view-cart-inline {
    min-height: 52px;
    background: var(--cream);
    color: var(--ink);
}

body a.view-cart-inline:hover {
    background: #fff;
    color: var(--ember-dark);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.delivery-note {
    margin: 15px 0 0;
    color: #aeb7b0;
    font-size: 12px;
}

.delivery-note span {
    margin-right: 5px;
    color: #ffc260;
}

.how-section,
.story-section,
.faq-section,
.contact-section {
    padding: clamp(78px, 10vw, 138px) 0;
}

.how-section {
    background: var(--cream);
}

.section-heading h2,
.story-copy h2,
.contact-copy h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 48px;
}

.split-heading > p,
.section-heading > p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.step-card {
    position: relative;
    padding: 14px 14px 28px;
    background: var(--paper);
    border: 1px solid rgba(23, 32, 25, 0.08);
}

.step-image {
    height: 250px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #e8e5dd;
}

.step-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.step-card:nth-child(1) .step-image img {
    object-position: 58% center;
}

.step-card:nth-child(2) .step-image img {
    object-position: center 28%;
}

.step-number {
    display: block;
    margin: 0 8px 15px;
    color: var(--ember-dark);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.step-card h3 {
    margin: 0 8px 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 500;
}

.step-card p {
    margin: 0 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

#about.story-section {
    padding: clamp(78px, 10vw, 138px) 0;
    background: var(--paper);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(440px, 0.94fr) minmax(390px, 0.86fr);
    gap: clamp(60px, 9vw, 128px);
    align-items: center;
}

.story-gallery {
    position: relative;
    min-height: 690px;
}

.story-gallery img {
    display: block;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.story-main {
    width: 78%;
    height: 650px;
    object-position: center 60%;
}

.story-inset {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 300px;
    border: 10px solid var(--paper);
}

#about .story-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(44px, 5vw, 68px);
    text-align: left;
}

.story-copy h2 em {
    color: var(--ember-dark);
    font-weight: 500;
}

.story-lede {
    margin: 26px 0 38px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.material-list {
    border-top: 1px solid var(--line);
}

.material-list article {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.material-list article > span {
    padding-top: 4px;
    color: var(--ember-dark);
    font-size: 11px;
    font-weight: 850;
}

.material-list h3 {
    margin: 0 0 5px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 500;
}

.material-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.cookout-gallery {
    overflow: hidden;
    padding: 0 14px 14px;
    background: var(--paper);
}

.gallery-track {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr;
    gap: 14px;
}

.gallery-track figure {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    margin: 0;
    background: var(--ink);
}

.gallery-track img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-track figure:nth-child(2) img {
    object-position: center 67%;
}

.gallery-track figure:hover img {
    transform: scale(1.025);
}

.gallery-track figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 13px 15px;
    background: rgba(23, 32, 25, 0.86);
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    backdrop-filter: blur(8px);
}

.safety-section {
    padding: clamp(64px, 8vw, 104px) 0;
    background: var(--ember);
    color: #fff;
}

.safety-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(370px, 0.75fr);
    gap: clamp(52px, 9vw, 120px);
    align-items: center;
}

.safety-title {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.safety-mark {
    display: grid;
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid rgba(255,255,255,0.72);
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
}

.safety-section .eyebrow {
    color: #4d1809;
}

.safety-title h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1;
}

.safety-lede {
    margin: 0 0 22px;
    font-size: 20px;
    line-height: 1.5;
}

.safety-copy ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.safety-copy li {
    position: relative;
    padding-left: 22px;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    line-height: 1.55;
}

.safety-copy li::before {
    content: "—";
    position: absolute;
    left: 0;
}

#faq.faq-section {
    padding: clamp(78px, 10vw, 138px) 0;
    background: #edf1e7;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.65fr) minmax(480px, 1fr);
    gap: clamp(55px, 9vw, 120px);
    align-items: start;
}

.faq-section .section-heading {
    position: sticky;
    top: 120px;
}

#faq .section-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(44px, 5vw, 68px);
    text-align: left;
}

.faq-section .section-heading > p:last-child {
    max-width: 380px;
    margin-top: 25px;
}

.faq-list {
    border-top: 1px solid rgba(23, 32, 25, 0.22);
}

.faq-section .faq-item {
    margin: 0;
    border-bottom: 1px solid rgba(23, 32, 25, 0.22);
}

.faq-section .faq-item summary {
    position: relative;
    padding: 25px 42px 25px 0;
    cursor: pointer;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    list-style: none;
}

.faq-section .faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-section .faq-item summary::after {
    content: "+";
    position: absolute;
    top: 22px;
    right: 2px;
    color: var(--ember-dark);
    font-family: Inter, sans-serif;
    font-size: 25px;
}

.faq-section .faq-item[open] summary::after {
    content: "−";
}

.faq-section .faq-item p {
    display: block;
    max-width: 680px;
    margin: -4px 50px 25px 0;
    padding: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

#contact.contact-section {
    padding: clamp(78px, 10vw, 138px) 0;
    background: var(--cream);
    text-align: left;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1fr);
    gap: clamp(55px, 9vw, 120px);
    align-items: center;
}

.contact-copy > p:nth-of-type(2) {
    max-width: 480px;
    margin: 25px 0 30px;
    color: var(--muted);
    font-size: 17px;
}

#contact .contact-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(44px, 5vw, 68px);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-section .contact-card {
    max-width: none;
    margin: 0;
    padding: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    text-align: left;
}

.contact-section .contact-card img {
    width: 100%;
    display: block;
    margin: 0 0 15px;
    border-radius: 0;
}

.contact-section .contact-card div {
    display: grid;
    gap: 3px;
}

.contact-section .contact-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 500;
}

.contact-section .contact-card span {
    color: var(--muted);
    font-size: 13px;
}

footer.site-footer {
    padding: 56px 0 32px;
    background: var(--ink);
    border: 0;
    color: #fff;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    color: #fff;
}

.site-footer .footer-grid > div > p {
    margin-top: 14px;
    color: #aeb7b0;
    font-size: 14px;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: flex-end;
}

.site-footer nav a {
    color: #dce1dd;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.site-footer nav a:hover {
    color: #ffc260;
}

.site-footer .copyright {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.14);
    color: #7f8a82;
    font-size: 12px;
}

body .floating-cart.cart-tray {
    width: min(370px, calc(100vw - 36px));
    min-width: 0;
    height: auto;
    right: 22px;
    bottom: 22px;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 12px 12px 18px;
    background: var(--ink);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 5px;
    color: #fff;
    box-shadow: 0 18px 50px rgba(23, 32, 25, 0.32);
    text-align: left;
}

body .floating-cart.cart-tray:hover {
    background: #202b22;
    color: #fff;
    box-shadow: 0 22px 56px rgba(23, 32, 25, 0.38);
    transform: translateY(-2px);
}

.cart-tray-summary {
    display: grid;
    gap: 2px;
}

.cart-tray-label {
    color: #aeb7b0;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cart-tray-summary strong {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 500;
}

.cart-tray-action {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    padding: 0 15px;
    background: var(--ember);
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    font-weight: 850;
}

body #floating-cart-count {
    position: static;
    display: inline;
    min-width: 0;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: inherit;
    font: inherit;
}

.cart-tray-highlight {
    animation: cart-tray-highlight 0.7s ease both;
}

@keyframes cart-tray-highlight {
    0% { transform: translateY(22px); opacity: 0; }
    55% { transform: translateY(-4px); opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}

.cart-page {
    background: #f4f0e8;
}

.checkout-main {
    min-height: 70vh;
}

#cart.cart-section {
    padding-top: clamp(56px, 7vw, 92px);
    padding-right: 0;
    padding-bottom: clamp(72px, 9vw, 122px);
    padding-left: 0;
    background: transparent;
}

.cart-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.cart-heading h1,
.checkout-intro h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1;
}

.cart-heading > p:last-child,
.checkout-intro > p:not(.eyebrow) {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.46fr);
    gap: 22px;
    align-items: start;
}

.cart-items-panel,
.order-summary,
.checkout-form {
    background: var(--paper);
    border: 1px solid var(--line);
}

#cart-items.cart-items-panel {
    min-height: 330px;
    margin: 0;
    padding: 8px 28px;
}

.cart-page .cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 150px minmax(170px, 1fr) auto 30px;
    gap: 24px;
    align-items: center;
    margin: 0;
    padding: 28px 0;
    border: 0;
}

.cart-page .cart-item + .cart-item {
    border-top: 1px solid var(--line);
}

.cart-page .cart-item img {
    width: 150px;
    height: 150px;
    border-radius: 2px;
}

.cart-page .cart-item-details {
    margin: 0;
}

.cart-page .cart-item-details h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 500;
}

.cart-page .cart-item-details p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.cart-page .cart-item-details strong {
    color: var(--ink);
    font-size: 19px;
}

.cart-page .cart-item-controls {
    gap: 6px;
}

.cart-page .cart-item-controls .quantity-btn,
.cart-page .cart-item-controls input[type="number"] {
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 2px;
    font-size: 15px;
}

.cart-page .cart-item-controls .quantity-btn {
    background: var(--ink);
}

.cart-page .cart-item-controls .quantity-btn:hover {
    background: var(--ember);
}

.cart-page .cart-item-remove {
    width: 30px;
    height: 42px;
    margin: 0;
    padding: 0;
    color: #929992;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 26px;
}

.cart-page .cart-item-remove:hover {
    color: var(--ember-dark);
    background: transparent;
    box-shadow: none;
}

.empty-state {
    display: grid;
    min-height: 312px;
    place-content: center;
    justify-items: start;
    max-width: 430px;
    margin: 0 auto;
    padding: 35px;
}

.empty-state h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
}

.empty-state > p:last-of-type {
    margin: 12px 0 22px;
    color: var(--muted);
}

.order-summary {
    position: sticky;
    top: 96px;
    padding: 28px;
}

.summary-label {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.cart-page #cart-summary {
    margin: 0;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.cart-page #cart-summary p {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 10px 0;
    color: var(--muted);
    font-size: 14px;
}

.cart-page #grand-total {
    padding-top: 15px;
    border-top: 1px solid var(--line);
    color: var(--ink) !important;
    font-size: 19px !important;
}

.delivery-card {
    display: grid;
    gap: 5px;
    margin: 22px 0;
    padding: 16px;
    background: #edf1e7;
}

.delivery-card strong {
    font-size: 13px;
}

.delivery-card span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.cart-page .cart-buttons {
    display: grid;
    gap: 10px;
    margin: 0;
}

.cart-page .cart-buttons .btn {
    width: 100%;
    margin: 0;
    font-size: 14px;
}

.cart-page .cart-buttons .btn-light {
    order: 2;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
}

.cart-page .cart-buttons .btn-light:hover {
    background: var(--cream);
}

.order-help {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

.order-help a {
    color: var(--ink);
    font-weight: 700;
    text-underline-offset: 3px;
}

#checkout.checkout-section {
    margin: 0;
    padding: clamp(60px, 8vw, 108px) 0;
    background: transparent;
    border-radius: 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.64fr) minmax(520px, 1fr);
    gap: clamp(55px, 9vw, 120px);
    align-items: start;
}

.checkout-intro {
    position: sticky;
    top: 120px;
}

.checkout-back {
    min-height: auto;
    margin: 0 0 48px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 13px;
    font-weight: 800;
}

.checkout-back:hover {
    color: var(--ember-dark);
    background: transparent;
    box-shadow: none;
}

.checkout-note {
    display: grid;
    gap: 5px;
    margin-top: 35px;
    padding: 18px;
    background: #edf1e7;
    border-left: 3px solid var(--forest);
}

.checkout-note strong {
    font-size: 13px;
}

.checkout-note span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.cart-page #checkout-form.checkout-form {
    max-width: none;
    margin: 0;
    padding: clamp(26px, 4vw, 46px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field-group {
    margin-bottom: 20px;
}

.cart-page #checkout-form .field-group > label {
    display: flex;
    justify-content: space-between;
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.cart-page #checkout-form .field-group > label span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-page #checkout-form input[type="text"],
.cart-page #checkout-form input[type="email"],
.cart-page #checkout-form select {
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0 13px;
    background: #fff;
    border: 1px solid #cfd3cc;
    border-radius: 2px;
    color: var(--ink);
    font: inherit;
    font-size: 15px;
}

.cart-page #checkout-form input:focus,
.cart-page #checkout-form select:focus {
    outline: 2px solid rgba(237, 91, 42, 0.35);
    border-color: var(--ember);
}

.contact-preferences {
    display: flex;
    gap: 22px;
    margin-top: 10px;
}

.cart-page #checkout-form .contact-preferences label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.contact-preferences input {
    accent-color: var(--ember);
}

.form-divider {
    margin: 14px 0 22px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
}

.form-divider span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.form-divider p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.cart-page .contact-warning {
    margin: -5px 0 18px;
    padding: 11px 13px;
    background: #fff0eb;
    color: #a73516 !important;
    font-size: 12px;
}

.security-check {
    margin-top: 8px;
    padding: 20px;
    background: #f6f3ec;
    border: 1px solid var(--line);
}

.security-check > p:first-child {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 800;
}

.cart-page .recaptcha-status {
    margin-bottom: 0;
}

.cart-page #checkout-form .submit-order {
    width: 100%;
    margin-top: 18px;
}

.form-footnote {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}

.compact-footer {
    margin-top: 0;
}

.error-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 85% 20%, rgba(237, 91, 42, 0.18), transparent 28%),
        var(--cream);
}

.error-main {
    width: min(1100px, calc(100% - 40px));
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    margin: 0 auto;
    padding: 42px 0 30px;
}

.error-copy {
    max-width: 760px;
    align-self: center;
    padding: 70px 0;
}

.error-copy h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 9vw, 112px);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.error-copy > p:not(.eyebrow) {
    max-width: 580px;
    margin: 28px 0 32px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.error-footer {
    margin: 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

@media (max-width: 900px) {
    .hero-grid,
    .product-grid,
    .story-grid,
    .safety-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 50px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero-visual,
    .hero-visual > img {
        min-height: 500px;
        height: 500px;
    }

    .hero-visual > img {
        border-radius: 160px 160px 12px 12px;
    }

    .product-copy {
        max-width: 680px;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-grid,
    .safety-grid,
    .faq-grid,
    .contact-grid {
        gap: 55px;
    }

    .story-gallery {
        max-width: 680px;
    }

    .gallery-track {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-track .gallery-wide {
        grid-column: 1 / -1;
    }

    .faq-section .section-heading {
        position: static;
    }

    .contact-options {
        max-width: 600px;
    }

    .cart-layout,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary,
    .checkout-intro {
        position: static;
    }

    .checkout-grid {
        gap: 42px;
    }
}

@media (max-width: 680px) {
    .container,
    .legacy-content {
        width: min(100% - 28px, 1180px);
    }

    .announcement-bar p {
        font-size: 11px;
    }

    header.site-header .header-inner {
        min-height: 64px;
    }

    .brand {
        font-size: 21px;
    }

    .brand-mark {
        width: 23px;
        height: 29px;
    }

    .site-header nav ul {
        gap: 8px;
    }

    .site-header nav li:not(:last-child) {
        display: none;
    }

    .r2-hero {
        padding-top: 48px;
    }

    .hero-copy h1 {
        font-size: clamp(48px, 15vw, 66px);
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero-facts {
        gap: 10px;
    }

    .hero-facts strong {
        font-size: 15px;
    }

    .hero-facts span {
        font-size: 10px;
    }

    .hero-visual,
    .hero-visual > img {
        min-height: 420px;
        height: 420px;
    }

    .hero-note {
        right: 12px;
        bottom: 18px;
    }

    .product-photo img {
        min-height: 360px;
    }

    .included-list {
        grid-template-columns: 1fr;
    }

    .price-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-copy .added-actions {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .gallery-track,
    .contact-options {
        grid-template-columns: 1fr;
    }

    .step-image {
        height: 280px;
    }

    .story-gallery {
        min-height: 530px;
    }

    .story-main {
        width: 88%;
        height: 500px;
    }

    .story-inset {
        width: 58%;
        height: 230px;
        border-width: 7px;
    }

    .gallery-track .gallery-wide {
        grid-column: auto;
    }

    .gallery-track figure {
        min-height: 380px;
    }

    .safety-title {
        gap: 16px;
    }

    .safety-mark {
        width: 48px;
        height: 48px;
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer nav {
        justify-content: flex-start;
    }

    .cart-page .site-header nav li:first-child {
        display: none;
    }

    .cart-heading {
        margin-bottom: 30px;
    }

    #cart-items.cart-items-panel {
        min-height: 280px;
        padding: 4px 18px;
    }

    .cart-page .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 14px;
        align-items: start;
        padding: 20px 0;
    }

    .cart-page .cart-item img {
        width: 100px;
        height: 100px;
    }

    .cart-page .cart-item-details {
        width: auto;
    }

    .cart-page .cart-item-controls {
        grid-column: 2;
        width: auto;
    }

    .cart-page .cart-item-remove {
        position: absolute;
        top: 12px;
        right: -8px;
    }

    .order-summary {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cart-page #checkout-form.checkout-form {
        padding: 24px 18px;
    }

    .security-check {
        overflow: hidden;
        padding: 16px 10px;
    }

    .checkout-back {
        margin-bottom: 34px;
    }

    body .floating-cart.cart-tray {
        width: auto;
        right: 14px;
        bottom: max(14px, env(safe-area-inset-bottom));
        left: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
