:root {
  --paper: #f3eee3;
  --paper-2: #eae3d5;
  --ink: #171713;
  --muted: #6d6a60;
  --line: rgba(23, 23, 19, .18);
  --accent: #c9a84e;
  --dark: #1a1a16;
  --white: #fffdf8;
  --radius: 2px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --mono: "Space Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.5; overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.announcement { height: 28px; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font: 700 9px/1 var(--mono); letter-spacing: .15em; white-space: nowrap; overflow: hidden; }
.site-header { position: sticky; top: 0; z-index: 30; height: 82px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 4vw; background: rgba(243,238,227,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.brand { display: inline-flex; flex-direction: column; width: max-content; line-height: .82; letter-spacing: -.07em; }
.brand-main { font: 700 24px/1 var(--sans); }
.brand-sub { font: 500 19px/1.05 var(--serif); letter-spacing: -.03em; margin-left: 22px; }
.desktop-nav { display: flex; gap: 30px; justify-content: center; font-size: 12px; font-weight: 600; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; transform: scaleX(0); transform-origin: right; background: var(--ink); transition: transform .3s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.cart-button { justify-self: end; border: 1px solid var(--ink); background: transparent; padding: 10px 14px; font: 700 10px var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.cart-button span { display: inline-grid; place-items: center; min-width: 20px; height: 20px; margin-left: 5px; background: var(--ink); color: var(--paper); border-radius: 50%; }

.section-pad { padding: 9vw 6vw; }
.section-pad-tight { padding: 0 6vw 8vw; }
.section-number { font: 700 9px/1.2 var(--mono); letter-spacing: .15em; color: var(--muted); }
.eyebrow { margin: 0 0 20px; font: 700 10px var(--mono); letter-spacing: .14em; }

.hero { min-height: calc(100vh - 110px); display: grid; grid-template-columns: .95fr 1.05fr; gap: 6vw; align-items: center; padding-top: 7vw; }
.hero-copy { max-width: 660px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font: 600 clamp(58px, 8vw, 130px)/.82 var(--serif); letter-spacing: -.07em; margin: 0 0 36px; }
h1 em, h2 em { font-family: var(--serif); font-weight: 500; }
.hero-text { max-width: 510px; color: var(--muted); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 35px; }
.button { border: 1px solid var(--ink); padding: 15px 18px; min-height: 50px; display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; font: 700 10px var(--mono); text-transform: uppercase; letter-spacing: .08em; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-light { background: var(--paper); color: var(--ink); }
.text-link, .arrow-link { border: 0; background: none; padding: 0; font-size: 12px; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }
.hero-visual { position: relative; }
.hero-image-wrap { position: relative; overflow: hidden; background: var(--paper-2); aspect-ratio: .93 / 1; }
.hero-image { width: 100%; height: 100%; object-fit: contain; filter: saturate(.82); transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.hero-image-wrap:hover .hero-image { transform: scale(1.035); }
.image-stamp { position: absolute; right: 18px; bottom: 18px; width: 94px; height: 94px; border-radius: 50%; background: var(--paper); border: 1px solid var(--ink); display: grid; place-items: center; text-align: center; font: 700 14px/.9 var(--serif); transform: rotate(8deg); }
.image-stamp span { font: 700 6px/1.2 var(--mono); letter-spacing: .1em; }
.hero-caption { display: flex; justify-content: space-between; margin-top: 10px; font: 8px var(--mono); letter-spacing: .1em; text-transform: uppercase; }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 13px 0; background: var(--paper-2); }
.marquee-track { width: max-content; display: flex; gap: 18px; align-items: center; animation: marquee 28s linear infinite; font: 700 10px var(--mono); letter-spacing: .12em; }
.marquee-track i { font-style: normal; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 9vw; margin-top: 70px; }
h2 { font: 600 clamp(45px, 6.8vw, 98px)/.9 var(--sans); letter-spacing: -.075em; margin-bottom: 0; }
.intro-grid h2 span { font-family: var(--serif); font-weight: 500; }
.intro-copy { padding-top: 12px; max-width: 540px; }
.intro-copy p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.intro-copy .lead { color: var(--ink); font: 500 21px/1.4 var(--serif); }
.arrow-link { display: inline-flex; gap: 15px; margin-top: 15px; }

.editorial-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; align-items: start; }
.editorial-photo { margin: 0; }
.editorial-photo img { width: 100%; height: 420px; object-fit: contain; filter: saturate(.85); }
.editorial-photo.tall img { height: 670px; }
.editorial-photo figcaption { display: flex; justify-content: space-between; gap: 15px; margin-top: 10px; font: 9px var(--mono); color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.editorial-photo figcaption span { color: var(--ink); }

.products { background: var(--dark); color: var(--paper); }
.products .section-number, .products .section-heading > p { color: #a9a79d; }
.section-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 10vw; align-items: end; margin-bottom: 65px; }
.section-heading h2 { margin-top: 35px; }
.section-heading h2 em { color: #c9c5b7; }
.section-heading > p { max-width: 430px; line-height: 1.7; font-size: 14px; margin: 0 0 5px; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.product-card { background: #e8e0d0; color: var(--ink); }
.product-media { position: relative; height: min(58vw, 700px); overflow: hidden; background: #e1d9c8; }
.product-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .6s ease; filter: saturate(.8); }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-index { position: absolute; top: 16px; left: 16px; z-index: 2; font: 700 9px var(--mono); padding: 7px 8px; background: var(--paper); }
.product-info { padding: 24px; }
.product-type { font: 700 8px var(--mono); letter-spacing: .13em; color: var(--muted); margin-bottom: 13px; }
.product-info h3 { font: 600 28px/1 var(--sans); letter-spacing: -.04em; margin-bottom: 5px; }
.product-size { margin: 0; color: var(--muted); font-size: 13px; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 30px; }
.product-bottom strong { font: 600 22px var(--serif); }
.add-button { border: 1px solid var(--ink); background: transparent; padding: 11px 12px; font: 700 9px var(--mono); text-transform: uppercase; letter-spacing: .05em; }
.add-button:hover { background: var(--ink); color: var(--paper); }
.add-button span { font-size: 15px; margin-left: 8px; }

.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 11vw; margin-top: 60px; }
.why h2 em { font-family: var(--serif); }
.feature-list { border-top: 1px solid var(--line); }
.feature-list article { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.feature-list article > span { font: 9px var(--mono); color: var(--muted); }
.feature-list h3 { font: 600 20px var(--sans); letter-spacing: -.03em; margin-bottom: 7px; }
.feature-list p { color: var(--muted); font-size: 13px; max-width: 520px; margin: 0; line-height: 1.6; }

.process { background: var(--paper-2); }
.process-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.process-header h2 { text-align: right; }
.process-header h2 em { font-family: var(--serif); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); margin-top: 80px; }
.step { padding: 25px 25px 0 0; min-height: 210px; border-right: 1px solid var(--line); margin-right: 25px; }
.step:last-child { border-right: 0; margin-right: 0; }
.step > span { font: 700 9px var(--mono); color: var(--muted); }
.step h3 { margin: 35px 0 10px; font: 600 19px var(--sans); }
.step p { color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 230px; }

.gallery-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.gallery-top p { margin: 0; color: var(--muted); font-size: 11px; }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-auto-rows: 270px; gap: 12px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: contain; filter: saturate(.82); }
.gallery-grid img:first-child { grid-row: span 2; }
.gallery-grid img:last-child { grid-column: span 2; object-position: center 44%; }

.knowledge { padding-top: 4vw; }
.knowledge-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5vw; background: #e9e1d1; padding: 5vw; align-items: center; }
.knowledge-card h2 { margin: 30px 0 25px; }
.knowledge-card p { color: var(--muted); max-width: 430px; line-height: 1.7; font-size: 14px; }


.order-banner { background: var(--accent); padding-top: 8vw; padding-bottom: 8vw; }
.order-banner-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.order-banner h2 { margin: 25px 0 0; font-size: clamp(55px, 8vw, 115px); }
.order-banner h2 em { font-family: var(--serif); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; margin-top: 65px; align-items: end; }
.contact h2 { font-size: clamp(55px, 8vw, 120px); }
.contact > .section-number { margin-bottom: 0; }
.contact-grid > div:first-child p { max-width: 420px; color: var(--muted); line-height: 1.7; margin-top: 30px; }
.contact-card { border-top: 1px solid var(--line); }
.contact-card > div { display: flex; flex-direction: column; gap: 6px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-card span { font: 700 8px var(--mono); color: var(--muted); letter-spacing: .13em; }
.contact-card strong { font: 600 21px var(--serif); }
.contact-action { display: block; padding: 13px 0 20px; font-size: 11px; text-decoration: underline; text-underline-offset: 5px; }


.location-grid { display:grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; align-items: stretch; }
.location-copy { display:flex; flex-direction:column; align-items:flex-start; justify-content:center; }
.location-copy h2 { margin: 18px 0 25px; }
.location-copy > p:not(.eyebrow) { max-width: 470px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.map-card { position:relative; min-height: 480px; background:#ddd8cb; overflow:hidden; border:1px solid var(--line); }
.map-card iframe { width:100%; height:100%; min-height:480px; border:0; display:block; filter: grayscale(.85) contrast(.95); }
.map-label { position:absolute; left:18px; bottom:18px; background:var(--paper); padding:14px 16px; box-shadow:0 10px 30px rgba(0,0,0,.12); display:flex; flex-direction:column; gap:5px; }
.map-label span { font:700 8px var(--mono); letter-spacing:.12em; color:var(--muted); }
.map-label strong { font:600 18px var(--serif); }

.delivery-strip { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.delivery-strip div { padding: 25px 6vw; border-right: 1px solid var(--line); }
.delivery-strip div:last-child { border-right: 0; }
.delivery-strip span { display: block; font: 700 8px var(--mono); letter-spacing: .12em; color: var(--muted); margin-bottom: 9px; }
.delivery-strip strong { font: 600 18px var(--serif); }

.site-footer { background: var(--ink); color: var(--paper); padding: 6vw; }
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr .5fr; gap: 7vw; padding-bottom: 7vw; }
.footer-brand .brand-main { font-size: 33px; }
.footer-brand .brand-sub { font-size: 25px; margin-left: 30px; }
.footer-main p { color: #a9a79d; font-size: 12px; line-height: 1.7; margin-top: 25px; }
.footer-links, .footer-social { display: flex; flex-direction: column; gap: 12px; font-size: 12px; }
.footer-social span { font: 700 8px var(--mono); color: #77766f; letter-spacing: .14em; margin-bottom: 5px; }
.footer-social a { text-decoration: underline; text-underline-offset: 5px; }
.footer-bottom { border-top: 1px solid rgba(243,238,227,.2); padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; color: #77766f; font: 8px var(--mono); letter-spacing: .05em; }
.footer-bottom a { color: var(--paper); }

.overlay { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,.45); backdrop-filter: blur(3px); }
.cart-drawer { position: fixed; z-index: 60; top: 0; right: 0; width: min(520px, 100vw); height: 100dvh; background: var(--paper); transform: translateX(105%); transition: transform .45s cubic-bezier(.2,.75,.2,1); display: flex; flex-direction: column; box-shadow: -20px 0 70px rgba(0,0,0,.18); }
.cart-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: flex-start; justify-content: space-between; padding: 28px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-size: 48px; margin-top: 18px; }
.drawer-head h2 span { font: 10px var(--mono); vertical-align: top; margin-left: 5px; }
.icon-button { width: 40px; height: 40px; border: 1px solid var(--ink); background: transparent; font-size: 25px; line-height: 1; }
.cart-content { overflow-y: auto; padding: 25px 28px 40px; }
/* Text-based honey knowledge sections */
.editorial-info-card {
  min-height: 420px;
  padding: clamp(28px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
}
.editorial-info-card .section-number { color: rgba(255,255,255,.55); }
.editorial-info-card h3 { font-family: var(--serif); font-size: clamp(34px, 4vw, 62px); line-height: .98; margin: 18px 0; }
.editorial-info-card h3 em { font-weight: 500; }
.editorial-info-card p { max-width: 540px; color: rgba(255,255,255,.72); line-height: 1.7; }

.knowledge-intro { display: grid; grid-template-columns: 1fr .8fr; gap: 50px; align-items: end; margin-bottom: 60px; }
.knowledge-intro h2 { font-size: clamp(48px, 7vw, 100px); line-height: .88; margin: 18px 0 0; }
.knowledge-intro h2 em { font-family: var(--serif); font-weight: 500; }
.knowledge-intro > p { color: var(--muted); line-height: 1.7; max-width: 500px; margin: 0; }
.knowledge-block { border-top: 1px solid var(--line); padding: 40px 0 55px; }
.knowledge-title { display: flex; justify-content: space-between; gap: 30px; align-items: baseline; margin-bottom: 35px; }
.knowledge-title > span { font: 700 11px/1 var(--mono); letter-spacing: .08em; color: var(--muted); }
.knowledge-title h3 { font-size: clamp(32px, 4vw, 56px); margin: 0; text-align: right; }
.knowledge-title h3 em { font-family: var(--serif); font-weight: 500; }
.benefit-grid, .facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.benefit-grid article, .facts-grid article { background: var(--paper); min-height: 150px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.benefit-grid article > span, .facts-grid article > span { font: 700 10px/1 var(--mono); color: var(--muted); }
.benefit-grid p, .facts-grid p { margin: 25px 0 0; line-height: 1.55; font-size: 15px; }
.benefit-grid strong, .facts-grid strong { font-weight: 700; }
.knowledge-note { margin: 16px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }

@media (max-width: 900px) {
  .knowledge-intro { grid-template-columns: 1fr; gap: 24px; }
  .knowledge-title { align-items: flex-start; flex-direction: column; }
  .knowledge-title h3 { text-align: left; }
  .benefit-grid, .facts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .benefit-grid, .facts-grid { grid-template-columns: 1fr; }
  .editorial-info-card { min-height: 360px; }
}

.cart-item { display: grid; grid-template-columns: 75px 1fr auto; gap: 15px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 75px; height: 85px; object-fit: contain; background: var(--paper-2); }
.cart-item-name { font-weight: 700; font-size: 13px; }
.cart-item-size { color: var(--muted); font-size: 11px; margin: 4px 0 10px; }
.cart-item-price { font: 600 14px var(--serif); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.qty button { width: 28px; height: 28px; border: 0; background: transparent; }
.qty span { min-width: 25px; text-align: center; font: 9px var(--mono); }
.empty-cart { padding: 45px 0; color: var(--muted); font-size: 13px; }
.cart-summary { border-top: 1px solid var(--ink); margin-top: 28px; padding-top: 17px; }
.cart-summary > div { display: flex; justify-content: space-between; padding: 6px 0; font-size: 12px; }
.cart-summary strong { font: 600 16px var(--serif); }
.cart-summary .summary-total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 15px; font-weight: 700; }
.cart-summary .summary-total strong { font-size: 22px; }
.order-form { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.form-heading span { font: 700 8px var(--mono); color: var(--muted); letter-spacing: .12em; }
.form-heading h3 { margin: 12px 0 20px; font: 600 28px/1 var(--serif); }
.order-form label { display: block; font: 700 9px var(--mono); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 15px; }
.order-form input, .order-form textarea { width: 100%; margin-top: 8px; border: 1px solid var(--line); background: rgba(255,255,255,.35); padding: 13px; outline: none; color: var(--ink); resize: vertical; }
.order-form select { width: 100%; margin-top: 8px; border: 1px solid var(--line); background: rgba(255,255,255,.35); padding: 13px; outline: none; color: var(--ink); appearance: auto; }
.order-form select:focus { border-color: var(--ink); }
.order-form input::placeholder, .order-form textarea::placeholder { color: rgba(24, 22, 18, .48); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.order-form input:focus, .order-form textarea:focus { border-color: var(--ink); }
.cart-item-zero { opacity: .78; }
.qty button:disabled { opacity: .35; cursor: not-allowed; }

.order-preview { margin-top: 24px; padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.28); }
.order-preview-heading { display: grid; gap: 6px; margin-bottom: 16px; }
.order-preview-heading span { font: 700 8px var(--mono); color: var(--muted); letter-spacing: .12em; }
.order-preview-heading strong { font: 600 22px/1.05 var(--serif); }
.preview-products { border-top: 1px solid var(--line); }
.preview-line, .preview-total, .preview-payment { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 10px; line-height: 1.4; }
.preview-line strong, .preview-total strong, .preview-payment strong { white-space: nowrap; }
.preview-total { font-weight: 700; }
.preview-customer { padding: 15px 0 4px; }
.preview-subheading { margin-bottom: 9px; font: 700 8px var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.preview-customer > div:not(.preview-subheading) { display: flex; justify-content: space-between; gap: 18px; padding: 5px 0; font-size: 10px; line-height: 1.4; }
.preview-customer span { color: var(--muted); }
.preview-customer strong { text-align: right; max-width: 62%; overflow-wrap: anywhere; }
.preview-muted { color: var(--muted); font-size: 10px; line-height: 1.5; }
.preview-payment { margin-top: 8px; border-top: 1px solid var(--line); border-bottom: 0; }

.form-note { color: var(--muted); font-size: 10px; line-height: 1.5; }
.full { width: 100%; margin-top: 10px; }
.floating-order { position: fixed; z-index: 25; right: 20px; bottom: 20px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper); padding: 12px 15px; display: none; font: 700 9px var(--mono); text-transform: uppercase; box-shadow: 0 10px 25px rgba(0,0,0,.15); }
.floating-order b { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-left: 8px; border-radius: 50%; background: var(--accent); color: var(--ink); }

[hidden] { display: none !important; }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 16vw; }
  .hero-visual { margin-top: 10vw; }
  .intro-grid, .section-heading, .why-grid, .knowledge-card, .contact-grid, .location-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 35px; }
  .section-heading > p { max-width: 600px; }
  .why-grid { gap: 60px; }
  .process-header { align-items: flex-start; flex-direction: column; }
  .process-header h2 { text-align: left; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; margin-right: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .gallery-grid img:first-child { grid-row: span 1; }
  .gallery-grid img:last-child { grid-column: span 2; }
  .order-banner-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .preview-customer > div:not(.preview-subheading) { align-items: flex-start; }
  .preview-customer strong { max-width: 58%; }
\n  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 2; }
  .footer-bottom { flex-direction: column; }
  .floating-order { display: block; }
}

@media (max-width: 600px) {
  .announcement { font-size: 7px; letter-spacing: .08em; }
  .site-header { height: 70px; padding: 0 5vw; }
  .brand-main { font-size: 20px; }
  .brand-sub { font-size: 16px; }
  .cart-button { padding: 8px 10px; }
  .section-pad { padding: 17vw 5vw; }
  .section-pad-tight { padding: 0 5vw 15vw; }
  h1 { font-size: 58px; margin-bottom: 28px; }
  h2 { font-size: 49px; }
  .hero { padding-top: 16vw; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-image-wrap { aspect-ratio: .85 / 1; }
  .image-stamp { width: 78px; height: 78px; font-size: 11px; }
  .intro-grid { margin-top: 45px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-photo.tall img, .editorial-photo img { height: auto; aspect-ratio: 4 / 5; }
  .product-grid { grid-template-columns: 1fr; }
  .product-media { height: 115vw; }
  .product-info { padding: 20px; }
  .product-bottom { align-items: flex-end; }
  .process-steps { grid-template-columns: 1fr; }
  .step, .step:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); margin: 0; padding: 25px 0; min-height: auto; }
  .step:last-child { border-bottom: 0; }
  .gallery-top { align-items: flex-start; flex-direction: column; gap: 10px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; gap: 7px; }
  .knowledge-card { padding: 8vw 6vw; }
  
.location-grid { display:grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; align-items: stretch; }
.location-copy { display:flex; flex-direction:column; align-items:flex-start; justify-content:center; }
.location-copy h2 { margin: 18px 0 25px; }
.location-copy > p:not(.eyebrow) { max-width: 470px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.map-card { position:relative; min-height: 480px; background:#ddd8cb; overflow:hidden; border:1px solid var(--line); }
.map-card iframe { width:100%; height:100%; min-height:480px; border:0; display:block; filter: grayscale(.85) contrast(.95); }
.map-label { position:absolute; left:18px; bottom:18px; background:var(--paper); padding:14px 16px; box-shadow:0 10px 30px rgba(0,0,0,.12); display:flex; flex-direction:column; gap:5px; }
.map-label span { font:700 8px var(--mono); letter-spacing:.12em; color:var(--muted); }
.map-label strong { font:600 18px var(--serif); }

.delivery-strip { grid-template-columns: 1fr 1fr; }
  .delivery-strip div { padding: 20px 5vw; }
  .delivery-strip div:nth-child(2) { border-right: 0; }
  .delivery-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-social { grid-column: auto; }
  .map-card, .map-card iframe { min-height: 360px; }
  .footer-bottom { font-size: 7px; }
  .cart-content, .drawer-head { padding-left: 20px; padding-right: 20px; }
}