:root {
  --ink: #071d35;
  --ink-2: #0d2c4a;
  --ink-3: #164568;
  --gold: #c7a04b;
  --gold-light: #e5cb88;
  --cream: #f3eee4;
  --paper: #fbfaf6;
  --white: #fff;
  --text: #17202a;
  --muted: #68717a;
  --line: rgba(7, 29, 53, .14);
  --line-light: rgba(255, 255, 255, .16);
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1440px;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --shadow: 0 24px 70px rgba(7, 29, 53, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body:has(dialog[open]) { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
/* Display type was large enough that a single heading filled the viewport and pushed
   products below the fold. Scaled back so content is reachable without scrolling. */
h1 { font-size: clamp(2.6rem, 5.2vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.9rem); }
h3 { font-size: 1.5rem; }
.shell { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; }
.section { padding: clamp(60px, 6.5vw, 104px) 0; }
.section-ink { background: var(--ink); color: var(--white); }
.section-ink h2, .section-ink h3 { color: var(--white); }
.section-cream { background: var(--cream); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 10000; top: 12px; left: 12px; padding: 10px 15px; background: var(--gold); color: var(--ink); transform: translateY(-150%); transition: transform 160ms var(--ease-out); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { margin-bottom: 18px; color: var(--ink-3); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-gold { color: var(--gold-light); }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; padding: 13px 22px; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: transform 150ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease; }
.button:active, button:active { transform: scale(.97); }
.button-small { min-height: 42px; padding: 10px 15px; font-size: .64rem; }
.button-gold { background: var(--gold); color: var(--ink); }
.button-ink { background: var(--ink); color: var(--white); }
.button-cream { background: var(--cream); color: var(--ink); }
.button-ghost { border-color: rgba(255, 255, 255, .32); color: var(--white); }
.button-outline-ink { border-color: var(--line); color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 8px; width: max-content; border-bottom: 1px solid currentColor; padding-bottom: 3px; color: var(--ink); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.text-link span { transition: transform 160ms var(--ease-out); }
.text-link-light { color: var(--cream); }
@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .button:active { transform: scale(.97); }
  .text-link:hover span { transform: translate(3px, -3px); }
}

.utility-bar { background: #031426; color: rgba(255, 255, 255, .58); font-size: .59rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.utility-bar .shell { min-height: 34px; display: flex; align-items: center; gap: 30px; }
.utility-bar span + span::before { content: "•"; margin-right: 30px; color: var(--gold); }
.utility-bar a { margin-left: auto; color: var(--gold-light); }
.site-header { position: relative; z-index: 100; background: rgba(251, 250, 246, .96); border-bottom: 1px solid var(--line); }
.nav-shell { min-height: 94px; display: grid; grid-template-columns: 300px 1fr auto; align-items: center; gap: 24px; }
.site-brand { display: flex; align-items: center; gap: 14px; width: max-content; }
.site-brand img { width: 72px; height: 72px; object-fit: contain; }
.site-brand strong, .site-brand small { display: block; }
.site-brand strong { color: var(--ink); font-family: var(--serif); font-size: 1.2rem; font-weight: 500; letter-spacing: .02em; }
.site-brand small { margin-top: 3px; color: var(--muted); font-size: .56rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.site-nav { display: flex; justify-content: center; align-items: stretch; gap: clamp(13px, 1.7vw, 28px); }
.site-nav > a { position: relative; padding: 36px 0 34px; color: var(--ink); font-size: .7rem; font-weight: 600; white-space: nowrap; }
.site-nav > a::after { content: ""; position: absolute; right: 100%; bottom: 25px; left: 0; height: 1px; background: var(--gold); transition: right 170ms var(--ease-out); }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.search-trigger { min-height: 42px; display: flex; align-items: center; gap: 16px; border: 1px solid var(--line); background: transparent; padding: 8px 12px; color: var(--muted); font-size: .67rem; }
.search-trigger-icon { width: 17px; height: 17px; display: none; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.6; }
.search-trigger kbd { border: 1px solid var(--line); padding: 2px 5px; background: var(--white); color: var(--ink); font: inherit; }
.mobile-menu-button { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; }
.mobile-menu-button span:not(.sr-only) { display: block; height: 1px; margin: 6px 0; background: var(--ink); }

.search-dialog { width: min(820px, calc(100% - 32px)); border: 0; padding: 0; background: var(--paper); color: var(--text); box-shadow: 0 40px 140px rgba(3, 20, 38, .35); opacity: 1; transform: translateY(0) scale(1); transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), display 180ms allow-discrete, overlay 180ms allow-discrete; }
.search-dialog::backdrop { background: rgba(3, 20, 38, .72); backdrop-filter: blur(5px); }
.search-dialog:not([open]) { opacity: 0; transform: translateY(-12px) scale(.98); }
@starting-style { .search-dialog[open] { opacity: 0; transform: translateY(-12px) scale(.98); } }
.dialog-close { position: absolute; top: 15px; right: 16px; z-index: 2; width: 38px; height: 38px; border: 0; background: transparent; color: var(--ink); font-family: var(--serif); font-size: 2rem; }
.search-command { padding: 58px 56px 36px; }
.search-spark { display: block; margin-bottom: 25px; color: var(--gold); font-size: 1.7rem; }
.search-command label { display: block; max-width: 560px; margin-bottom: 16px; color: var(--ink); font-family: var(--serif); font-size: 2rem; line-height: 1.1; }
.search-command input { width: 100%; height: 64px; border: 0; border-bottom: 1px solid var(--ink); background: transparent; padding: 0; color: var(--ink); font-family: var(--serif); font-size: 1.3rem; }
.search-command .button { margin-top: 24px; }
.search-suggestions { display: flex; flex-wrap: wrap; gap: 10px; padding: 22px 56px 32px; border-top: 1px solid var(--line); }
.search-suggestions span { width: 100%; color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.search-suggestions a { border: 1px solid var(--line); padding: 7px 11px; color: var(--ink); font-size: .72rem; }

.home-hero { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.home-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 20%, rgba(199, 160, 75, .16), transparent 38%), linear-gradient(135deg, transparent 0 52%, rgba(255, 255, 255, .025) 52% 53%, transparent 53%); }
.hero-grid { position: relative; min-height: 760px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr); gap: 70px; align-items: center; padding-block: 84px; }
.hero-copy h1 { max-width: 790px; margin-bottom: 28px; color: var(--white); font-size: clamp(2.7rem, 5vw, 5rem); }
.hero-copy h1 em { display: block; color: var(--gold-light); font-style: italic; }
.hero-lead { max-width: 700px; margin-bottom: 34px; color: rgba(255, 255, 255, .68); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 48px 0 0; border-top: 1px solid var(--line-light); }
.hero-facts div { padding: 18px 14px 0 0; }
.hero-facts dt { color: var(--gold-light); font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-facts dd { margin: 5px 0 0; color: rgba(255, 255, 255, .7); font-size: .76rem; }
.hero-visual { position: relative; min-height: 610px; }
.hero-image { position: absolute; margin: 0; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-main { inset: 0 5% 11% 11%; clip-path: polygon(0 0, 100% 5%, 94% 100%, 4% 94%); }
.hero-image-detail { right: -3%; bottom: -1%; width: 36%; aspect-ratio: 1; border: 8px solid var(--ink); }
.hero-seal { position: absolute; top: 0; left: 0; width: 150px; height: 150px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); box-shadow: var(--shadow); }
.hero-seal img { width: 92%; height: 92%; object-fit: contain; }
.proof-strip { border-bottom: 1px solid var(--line); background: var(--cream); }
.proof-strip .shell { min-height: 76px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.proof-strip span { padding: 0 25px; border-right: 1px solid var(--line); color: var(--ink); font-size: .64rem; font-weight: 700; letter-spacing: .09em; text-align: center; text-transform: uppercase; }
.proof-strip span:last-child { border-right: 0; }

.section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { max-width: 850px; margin: 0; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-card { min-height: 340px; display: flex; flex-direction: column; padding: 28px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); transition: background-color 180ms ease, color 180ms ease; }
.category-card > span { color: var(--gold); font-family: var(--serif); font-size: 1rem; }
.category-card div { margin: auto 0; }
.category-card h3 { margin-bottom: 15px; font-size: 2.2rem; }
.category-card p { margin: 0; color: var(--muted); font-size: .85rem; }
.category-card strong { font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; }
@media (hover: hover) and (pointer: fine) {
  .category-card:hover { background: var(--ink); color: var(--white); }
  .category-card:hover h3 { color: var(--white); }
  .category-card:hover p { color: rgba(255, 255, 255, .62); }
}
.split-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; }
.split-intro h2 { margin-bottom: 0; }
.split-intro > div:last-child > p { max-width: 580px; color: rgba(255, 255, 255, .62); font-size: 1.05rem; }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.method-grid article { min-height: 360px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.method-grid article > span { color: var(--gold-light); font-family: var(--serif); font-size: 1.1rem; }
.method-grid h3 { margin: auto 0 16px; font-size: 2rem; }
.method-grid p { margin: 0; color: rgba(255, 255, 255, .58); font-size: .85rem; }

.product-slider { min-width: 0; }
.slider-controls { display: flex; justify-content: flex-end; align-items: center; gap: 8px; margin: -16px 0 22px; }
.slider-controls > span { min-width: 72px; margin-right: 7px; color: var(--muted); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.slider-controls button { width: 46px; height: 46px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease, transform 150ms var(--ease-out); }
.slider-controls button:disabled { cursor: default; opacity: .3; }
.product-slider-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, calc((100% - 66px) / 4)); gap: 22px; overflow-x: auto; overscroll-behavior-inline: contain; padding: 2px 2px 22px; scroll-behavior: smooth; scroll-snap-type: inline mandatory; scrollbar-color: rgba(7,29,53,.25) transparent; scrollbar-width: thin; }
.product-slider-track > .product-card { scroll-snap-align: start; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); gap: 28px 20px; }
.product-grid > [role="listitem"] { min-width: 0; display: flex; }
.product-grid .product-card { width: 100%; display: flex; flex-direction: column; }
.product-grid .product-card-copy { display: flex; flex: 1; flex-direction: column; padding-top: 14px; }
.product-grid .product-card h3 { margin-bottom: 8px; font-size: 1.12rem; line-height: 1.15; }
.product-grid .product-meta { margin-top: auto; padding-top: 10px; font-size: .58rem; }
@media (max-width: 620px) {
  /* Two across on phones, matching how spice retailers present a shelf. */
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 14px; }
  .product-grid .product-card h3 { font-size: .96rem; }
  .product-grid .product-meta { flex-direction: column; gap: 2px; }
}
.search-results .product-slider-track { grid-auto-columns: minmax(250px, calc((100% - 44px) / 3)); }
.product-card { min-width: 0; }
.product-media { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: var(--cream); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 7px 10px; background: var(--ink); color: var(--white); font-size: .55rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.media-arrow { position: absolute; right: 12px; bottom: 12px; width: 38px; height: 38px; display: grid; place-items: center; background: var(--paper); color: var(--ink); opacity: 0; transform: translateY(6px); transition: opacity 170ms ease, transform 170ms var(--ease-out); }
.product-card-copy { padding-top: 18px; }
.product-card-copy .eyebrow { margin-bottom: 8px; color: var(--muted); font-size: .57rem; }
.product-card h3 { margin-bottom: 10px; font-size: 1.6rem; }
.product-card-copy > p:not(.eyebrow) { min-height: 3.9em; margin-bottom: 16px; color: var(--muted); font-size: .8rem; }
.product-meta { display: flex; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: .62rem; }
.product-card-compact .product-card-copy > p:not(.eyebrow) { display: none; }
.catalog-main .product-card-copy > p:not(.eyebrow) { display: none; }
.catalog-main .product-card h3 { font-size: 1.28rem; }
.catalog-main .product-meta { display: grid; }
@media (hover: hover) and (pointer: fine) {
  .product-media:hover img { transform: scale(1.035); }
  .product-media:hover .media-arrow { opacity: 1; transform: translateY(0); }
  .slider-controls button:not(:disabled):hover { background: var(--ink); color: var(--white); }
}

.search-story { background: var(--cream); }
.search-story-grid { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 650px; }
.search-story-visual { position: relative; min-height: 580px; }
.search-story-visual img { width: 100%; height: 100%; object-fit: cover; }
.search-story-visual span { position: absolute; right: 0; bottom: 0; padding: 15px 20px; background: var(--ink); color: var(--white); font-size: .61rem; letter-spacing: .09em; text-transform: uppercase; }
.search-story-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 8vw, 120px); background: var(--paper); }
.search-story-copy h2 { margin-bottom: 24px; }
.search-story-copy > p:not(.eyebrow) { color: var(--muted); }
.hero-search { margin-top: 28px; }
.hero-search > label { display: block; margin-bottom: 9px; color: var(--ink); font-size: .64rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.hero-search > div { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--ink); }
.hero-search input { min-width: 0; border: 0; background: transparent; padding: 16px 0; color: var(--ink); font-family: var(--serif); font-size: 1.25rem; }
.hero-search button { border: 0; background: transparent; color: var(--ink); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.query-examples { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.query-examples a { border: 1px solid var(--line); padding: 6px 9px; color: var(--muted); font-size: .65rem; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.insight-card { min-width: 0; }
.insight-image { display: block; aspect-ratio: 1.42; overflow: hidden; margin-bottom: 24px; }
.insight-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.insight-card .eyebrow { margin-bottom: 11px; color: var(--muted); font-size: .56rem; }
.insight-card h3 { margin-bottom: 13px; font-size: 2rem; line-height: 1.02; }
.insight-card p:not(.eyebrow) { color: var(--muted); font-size: .85rem; }
@media (hover: hover) and (pointer: fine) { .insight-image:hover img { transform: scale(1.03); } }

.page-hero { min-height: 530px; display: flex; align-items: end; padding: 100px 0 76px; background: var(--ink); color: var(--white); }
/* The catalog is a browse surface: keep the banner short so products are visible
   without scrolling, the way McCormick and The Spice House present their shelves. */
.page-hero-catalog { min-height: 0; padding-block: 40px 34px; }
.page-hero.page-hero-catalog h1 { max-width: none; margin-bottom: 14px; font-size: clamp(2rem, 3vw, 2.9rem); }
.page-hero.page-hero-catalog .shell > p:last-child { font-size: .95rem; }
.page-hero h1 { max-width: 1050px; margin-bottom: 26px; color: var(--white); font-size: clamp(2.5rem, 4.4vw, 4.4rem); }
.page-hero .shell > p:last-child { max-width: 650px; margin: 0; color: rgba(255, 255, 255, .65); font-size: 1.05rem; }
.catalog-layout { display: grid; grid-template-columns: 285px 1fr; gap: 48px; padding-block: 34px 96px; }
.filter-panel { position: sticky; top: 24px; align-self: start; }
.filter-panel-head { display: flex; justify-content: space-between; margin-bottom: 20px; padding-bottom: 17px; border-bottom: 1px solid var(--ink); }
.filter-panel-head span, .filter-panel-head strong { display: block; }
.filter-panel-head span { font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.filter-panel-head strong { margin-top: 3px; font-family: var(--serif); font-size: 1.15rem; font-weight: 500; }
.filter-panel-head button { display: none; border: 0; background: transparent; font-size: 1.7rem; }
.filter-search, .filter-select { display: block; margin-bottom: 26px; }
.filter-search span, .filter-select span, .filter-panel legend { display: block; margin-bottom: 9px; color: var(--muted); font-size: .6rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.filter-search input, .filter-select select { width: 100%; height: 46px; border: 1px solid var(--line); background: var(--white); padding: 0 11px; color: var(--ink); font-size: .75rem; }
.filter-panel fieldset { margin: 0 0 26px; border: 0; border-top: 1px solid var(--line); padding: 19px 0 0; }
.filter-panel legend { transform: translateY(9px); }
.check-row { display: grid; grid-template-columns: auto 1fr auto; gap: 9px; align-items: center; margin: 9px 0; color: var(--ink); font-size: .75rem; }
.check-row input { accent-color: var(--ink); }
.check-row small { color: var(--muted); }
.filter-submit { width: 100%; }
.clear-filters { display: block; margin-top: 11px; color: var(--muted); font-size: .68rem; text-align: center; text-decoration: underline; }
.catalog-toolbar { min-height: 58px; display: flex; justify-content: space-between; align-items: start; gap: 20px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.catalog-toolbar p { color: var(--muted); font-size: .76rem; }
.catalog-toolbar label { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .7rem; }
.catalog-toolbar select { border: 0; background: transparent; color: var(--ink); font-weight: 600; }
.filter-toggle { display: none; border: 0; background: transparent; color: var(--ink); font-weight: 700; }
.filter-toggle span { margin-left: 6px; border-radius: 999px; padding: 2px 7px; background: var(--ink); color: var(--white); font-size: .63rem; }
.pagination { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; margin-top: 70px; padding-top: 22px; border-top: 1px solid var(--line); }
.pagination > a:last-child { justify-self: end; }
.pagination a { font-size: .72rem; font-weight: 600; }
.pagination div { display: flex; gap: 5px; }
.pagination div a { width: 36px; height: 36px; display: grid; place-items: center; }
.pagination a[aria-current="page"] { background: var(--ink); color: var(--white); }
.empty-state { padding: 100px 30px; border: 1px solid var(--line); text-align: center; }
.empty-state > span { color: var(--gold); font-size: 2rem; }
.empty-state h2 { margin: 12px 0; font-size: 3rem; }
.empty-state p { max-width: 520px; margin: 0 auto 25px; color: var(--muted); }

.product-hero { padding: 36px 0 110px; background: var(--cream); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; color: var(--muted); font-size: .68rem; }
.breadcrumbs a { border-bottom: 1px solid currentColor; }
.product-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(55px, 7vw, 110px); align-items: start; }
.product-gallery-slider { min-width: 0; overflow: hidden; background: var(--white); }
.product-gallery-track { display: flex; overflow-x: auto; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-snap-type: inline mandatory; scrollbar-width: none; }
.product-gallery-track::-webkit-scrollbar { display: none; }
.product-gallery-track figure { min-width: 100%; margin: 0; overflow: hidden; background: var(--white); scroll-snap-align: start; }
.product-gallery-track img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 600ms var(--ease-out); }
.product-photo-open { position: relative; width: 100%; display: block; border: 0; background: transparent; padding: 0; color: var(--white); cursor: zoom-in; text-align: left; }
.product-photo-open > span { position: absolute; right: 16px; bottom: 16px; border: 1px solid rgba(255,255,255,.45); background: rgba(3,20,38,.76); padding: 8px 11px; font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(5px); transition: opacity 170ms ease, transform 170ms var(--ease-out); }
.gallery-controls { min-height: 70px; margin: 0; border-top: 1px solid var(--line); padding: 11px 14px; }
.product-summary-panel { position: sticky; top: 25px; }
.product-summary-panel h1 { margin: 8px 0 20px; font-size: clamp(4rem, 6vw, 7rem); }
.product-lead { color: var(--muted); font-family: var(--serif); font-size: 1.25rem; line-height: 1.45; }
.attribute-pills { display: flex; flex-wrap: wrap; gap: 6px; margin: 24px 0; }
.attribute-pills span { border: 1px solid var(--line); padding: 7px 10px; color: var(--ink); font-size: .68rem; }
.attribute-pills small { margin-right: 6px; color: var(--muted); font-size: .54rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.product-facts { margin: 26px 0; border-top: 1px solid var(--line); }
.product-facts div { display: grid; grid-template-columns: 145px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.product-facts dt { color: var(--muted); font-size: .59rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-facts dd { margin: 0; font-family: var(--serif); font-size: .98rem; line-height: 1.35; }
.product-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.program-note { margin-top: 17px; padding-left: 14px; border-left: 2px solid var(--gold); color: var(--muted); font-size: .7rem; }
@media (hover: hover) and (pointer: fine) { .product-photo-open:hover img { transform: scale(1.025); } .product-photo-open:hover > span { opacity: 1; transform: translateY(0); } }
.product-video-teaser { width: 100%; display: grid; grid-template-columns: 180px 1fr; gap: 22px; align-items: center; margin-top: 9px; border: 1px solid var(--line); padding: 0 22px 0 0; background: var(--paper); color: var(--ink); text-align: left; transition: transform 180ms var(--ease-out), border-color 180ms ease, box-shadow 180ms ease; }
.video-teaser-image { position: relative; display: block; height: 112px; overflow: hidden; background: var(--ink); }
.video-teaser-image::after { content: ""; position: absolute; inset: 0; background: rgba(3, 20, 38, .3); }
.video-teaser-image img { width: 100%; height: 100%; object-fit: cover; }
.video-teaser-image i { position: absolute; z-index: 1; top: 50%; left: 50%; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(251,250,246,.94); color: var(--ink); font-size: .7rem; font-style: normal; transform: translate(-50%, -50%); }
.product-video-teaser > span:last-child { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3px 18px; }
.product-video-teaser small { grid-column: 1 / -1; color: var(--muted); font-size: .56rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-video-teaser strong { font-family: var(--serif); font-size: 1rem; font-weight: 400; line-height: 1.25; }
.product-video-teaser em { color: var(--gold); font-size: .6rem; font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
@media (hover: hover) and (pointer: fine) { .product-video-teaser:hover { border-color: rgba(7,29,53,.35); box-shadow: 0 15px 40px rgba(7,29,53,.09); transform: translateY(-2px); } }
.product-jump-nav { position: sticky; z-index: 80; top: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(251,250,246,.94); backdrop-filter: blur(12px); }
.product-jump-nav .shell { min-height: 58px; display: flex; align-items: center; gap: clamp(18px, 4vw, 52px); overflow-x: auto; scrollbar-width: none; }
.product-jump-nav .shell::-webkit-scrollbar { display: none; }
.product-jump-nav a { flex: 0 0 auto; color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: color 160ms ease; }
@media (hover: hover) and (pointer: fine) { .product-jump-nav a:hover { color: var(--ink); } }
.product-profile-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-profile-heading, .product-profile-copy { grid-column: span 2; min-height: 420px; padding: clamp(34px, 5vw, 74px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-profile-heading { background: var(--ink); }
.product-profile-heading .eyebrow { color: var(--gold-light); }
.product-profile-heading h2 { max-width: 650px; margin: 0; color: var(--white); font-size: clamp(3rem, 4.7vw, 5.7rem); }
.product-profile-copy { display: flex; flex-direction: column; justify-content: center; }
.product-profile-copy p { color: var(--muted); font-family: var(--serif); font-size: 1.15rem; line-height: 1.7; }
.product-profile-copy p:last-child { margin-bottom: 0; }
.profile-grid-card { min-height: 295px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.profile-grid-card > span { color: var(--gold); font-family: var(--serif); }
.profile-grid-card h3 { margin: auto 0 16px; font-size: 2rem; }
.profile-grid-card p { margin: 0; color: var(--muted); font-size: .78rem; }
.recipe-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.recipe-card { min-width: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.recipe-card header { min-height: 205px; display: grid; grid-template-columns: 46px 1fr; gap: 20px; padding: 28px; border-bottom: 1px solid var(--line); }
.recipe-card header > span { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.recipe-card header > div { align-self: end; }
.recipe-card header p { margin-bottom: 11px; color: var(--muted); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.recipe-card h3 { margin: 0; font-size: 2.1rem; }
.recipe-dose { display: grid; gap: 4px; padding: 18px 28px; border-bottom: 1px solid var(--line); background: rgba(199,160,75,.09); }
.recipe-dose small, .recipe-body h4 { color: var(--muted); font-size: .56rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.recipe-dose strong { color: var(--ink); font-family: var(--serif); font-weight: 400; }
.recipe-body { display: grid; gap: 28px; padding: 28px; }
.recipe-body h4 { margin: 0 0 12px; }
.recipe-body ul, .recipe-body ol { margin: 0; padding-left: 1.2rem; color: var(--muted); font-size: .75rem; }
.recipe-body li + li { margin-top: 7px; }
.product-data-section { background: var(--ink); color: var(--white); }
.product-data-grid { display: grid; grid-template-columns: minmax(340px, .72fr) minmax(0, 1.28fr); gap: clamp(55px, 9vw, 140px); align-items: start; }
.product-data-section .eyebrow { color: var(--gold-light); }
.nutrition-panel { max-width: 540px; }
.nutrition-label { border: 1px solid rgba(255,255,255,.55); padding: clamp(24px, 4vw, 42px); background: var(--white); color: #111; }
.nutrition-label h2 { margin: 0; border-bottom: 8px solid #111; padding-bottom: 8px; color: #111; font-family: Arial, sans-serif; font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 900; letter-spacing: -.07em; line-height: .9; }
.nutrition-label > p { margin: 7px 0; font-family: Arial, sans-serif; font-size: .68rem; }
.nutrition-serving { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 4px solid #111; font-family: Arial, sans-serif; }
.nutrition-serving small { align-self: center; font-weight: 700; }
.nutrition-calories { display: flex; justify-content: space-between; align-items: end; border-bottom: 8px solid #111; padding: 6px 0; font-family: Arial, sans-serif; font-weight: 900; }
.nutrition-calories span { font-size: 1.35rem; }
.nutrition-calories strong { font-size: 2.8rem; line-height: 1; }
.nutrition-label dl { margin: 0; font-family: Arial, sans-serif; }
.nutrition-label dl div { display: flex; justify-content: space-between; gap: 15px; border-bottom: 1px solid #111; padding: 7px 0; }
.nutrition-label dt { font-weight: 700; }
.nutrition-label dd { margin: 0; }
.nutrition-label .nutrition-sub { padding-left: 18px; }
.nutrition-label .nutrition-disclaimer { margin: 13px 0 0; font-family: Arial, sans-serif; font-size: .58rem; line-height: 1.45; }
.data-source-link, .source-links a, .video-credit { display: inline-flex; gap: 8px; margin-top: 15px; border-bottom: 1px solid currentColor; padding-bottom: 3px; color: var(--gold-light); font-size: .62rem; }
.production-panel h2 { max-width: 800px; margin-bottom: 20px; color: var(--white); font-size: clamp(3.1rem, 5vw, 6rem); }
.production-intro { max-width: 680px; color: rgba(255,255,255,.64); }
.production-chart { margin-top: 45px; border-top: 1px solid var(--line-light); }
.production-row { display: grid; grid-template-columns: 38px minmax(110px, 1fr) minmax(140px, 2.2fr) 62px; gap: 16px; align-items: center; min-height: 69px; border-bottom: 1px solid var(--line-light); }
.production-rank { color: var(--gold-light); font-family: var(--serif); }
.production-row > strong { color: var(--white); font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.production-row > div { height: 6px; overflow: hidden; background: rgba(255,255,255,.11); }
.production-row i { width: var(--availability); height: 100%; display: block; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.production-row > b { color: var(--white); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; text-align: right; }
.production-row > b small { margin-left: 2px; color: rgba(255,255,255,.45); font-family: var(--sans); font-size: .52rem; }
.production-method { margin-top: 32px; border-left: 2px solid var(--gold); padding-left: 20px; }
.production-method strong { color: var(--gold-light); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.production-method p { max-width: 780px; margin: 7px 0 0; color: rgba(255,255,255,.57); font-size: .7rem; }
.source-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.product-photo-dialog { width: min(1180px, calc(100% - 32px)); max-height: calc(100vh - 32px); overflow: auto; border: 0; padding: 0; background: var(--paper); color: var(--ink); box-shadow: 0 45px 160px rgba(0,0,0,.55); opacity: 1; transform: scale(1); transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), display 220ms allow-discrete, overlay 220ms allow-discrete; }
.product-photo-dialog::backdrop { background: rgba(0,8,18,.86); backdrop-filter: blur(7px); transition: background-color 220ms ease, display 220ms allow-discrete, overlay 220ms allow-discrete; }
.product-photo-dialog:not([open]) { opacity: 0; transform: scale(.97); }
@starting-style { .product-photo-dialog[open] { opacity: 0; transform: scale(.97); } .product-photo-dialog[open]::backdrop { background: rgba(0,8,18,0); } }
.product-photo-shell { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 290px; min-height: min(820px, calc(100vh - 32px)); }
.product-photo-shell > form { display: contents; }
.product-photo-stage { display: grid; place-items: center; min-width: 0; background: #efeae0; }
.product-photo-stage img { width: 100%; height: 100%; max-height: calc(100vh - 32px); aspect-ratio: 1; object-fit: contain; }
.product-photo-footer { display: flex; flex-direction: column; justify-content: space-between; gap: 30px; padding: 78px 28px 30px; }
.product-photo-footer h2 { margin-bottom: 12px; font-size: 2.65rem; }
.product-photo-footer > div:first-child > span { color: var(--muted); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.product-photo-footer > div:last-child { display: flex; gap: 8px; }
.product-photo-footer button, .product-photo-close { width: 48px; height: 48px; border: 1px solid var(--line); background: transparent; color: var(--ink); }
.product-photo-close { position: absolute; z-index: 2; top: 18px; right: 18px; border-radius: 50%; font-family: var(--serif); font-size: 1.8rem; }
.product-video-dialog { width: min(1240px, calc(100% - 32px)); max-height: calc(100vh - 32px); overflow: auto; border: 0; padding: 0; background: var(--ink); color: var(--white); box-shadow: 0 45px 160px rgba(0,0,0,.55); opacity: 1; transform: scale(1); transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), display 220ms allow-discrete, overlay 220ms allow-discrete; }
.product-video-dialog::backdrop { background: rgba(0,8,18,.83); backdrop-filter: blur(7px); transition: background-color 220ms ease, display 220ms allow-discrete, overlay 220ms allow-discrete; }
.product-video-dialog:not([open]) { opacity: 0; transform: scale(.95); }
@starting-style { .product-video-dialog[open] { opacity: 0; transform: scale(.95); } .product-video-dialog[open]::backdrop { background: rgba(0,8,18,0); } }
.product-video-shell { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: 42px; padding: clamp(28px, 5vw, 64px); }
.product-video-shell > form { display: contents; }
.product-video-close { position: absolute; z-index: 3; top: 16px; right: 18px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: transparent; color: var(--white); font-family: var(--serif); font-size: 1.8rem; line-height: 1; }
.product-video-heading { align-self: center; }
.product-video-heading h2 { color: var(--white); font-size: clamp(3rem, 5vw, 5.7rem); }
.product-video-heading h2 span { color: var(--gold-light); }
.product-video-heading > p:last-child { color: rgba(255,255,255,.58); font-size: .72rem; }
.product-video-dialog video { width: 100%; align-self: center; aspect-ratio: 16 / 9; background: #020a13; object-fit: cover; }
.video-credit { grid-column: 2; justify-self: start; margin-top: -22px; }
.narrative-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.narrative-grid > div:first-child > p:last-child { color: var(--muted); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0; color: var(--ink); font-family: var(--serif); font-size: 1.25rem; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { transition: transform 180ms var(--ease-out); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; padding: 0 50px 20px 0; color: var(--muted); }

.article-header { max-width: 1120px; padding-top: 80px; text-align: center; }
.article-header .breadcrumbs { justify-content: center; }
.article-header h1 { margin: 20px auto 24px; font-size: clamp(4rem, 6.5vw, 7.3rem); }
.article-header > p:not(.eyebrow) { max-width: 760px; margin: 0 auto 55px; color: var(--muted); font-family: var(--serif); font-size: 1.2rem; }
.article-hero { height: min(68vw, 760px); margin-bottom: 80px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: 90px; justify-content: center; padding-bottom: 130px; }
.article-layout aside { position: sticky; top: 30px; align-self: start; padding-top: 17px; border-top: 1px solid var(--ink); color: var(--muted); font-size: .7rem; }
.article-layout aside > span { color: var(--ink); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.article-layout aside a { color: var(--ink); font-weight: 700; }
.article-body { color: #303943; font-family: var(--serif); font-size: 1.25rem; line-height: 1.72; }
.article-body h2 { margin: 2.3em 0 .6em; font-size: 2.6rem; }
.article-body h3 { margin-top: 2em; }
.article-body ul { padding-left: 1.2em; }
.article-body blockquote { margin: 2em 0; border-left: 3px solid var(--gold); padding-left: 25px; color: var(--ink); font-size: 1.5rem; }
.editorial-index-note { display: flex; justify-content: space-between; gap: 45px; align-items: start; margin-bottom: 48px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); padding: 18px 0; }
.editorial-index-note span { color: var(--ink); font-size: .64rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.editorial-index-note p { max-width: 660px; margin: 0; color: var(--muted); font-size: .76rem; }
.insight-grid-page { row-gap: 72px; }
.article-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin: -23px auto 42px; }
.article-tags span { border: 1px solid var(--line); padding: 6px 9px; color: var(--muted); font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; }
.article-hero { position: relative; }
.article-hero figcaption, .history-page figcaption, .maras-page figcaption { position: absolute; right: 10px; bottom: 10px; max-width: calc(100% - 20px); background: rgba(3,20,38,.84); padding: 7px 10px; color: rgba(255,255,255,.82); font-size: .56rem; }

.history-hero { overflow: hidden; background: var(--ink); color: var(--white); }
.history-hero-grid { min-height: 760px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; padding-block: 62px; }
.history-hero .breadcrumbs { color: rgba(255,255,255,.54); }
.history-hero h1 { max-width: 720px; margin-bottom: 28px; color: var(--white); }
.history-hero-grid > div > p:last-child { max-width: 680px; color: rgba(255,255,255,.68); font-size: 1.05rem; }
.history-hero figure, .maras-hero figure, .history-image-band figure, .maras-gallery figure { position: relative; margin: 0; overflow: hidden; }
.history-hero figure { height: 640px; }
.history-hero figure img, .maras-hero figure img, .history-image-band img, .maras-gallery img { width: 100%; height: 100%; object-fit: cover; }
.longform-lede { display: grid; grid-template-columns: 180px .86fr 1.14fr; gap: 55px; align-items: start; }
.longform-lede h2 { font-size: clamp(3.5rem, 5.4vw, 6rem); }
.longform-lede > div { columns: 2; column-gap: 36px; color: var(--muted); }
.longform-lede > div p { break-inside: avoid; }
.history-timeline { display: grid; grid-template-columns: 340px 1fr; gap: 90px; align-items: start; }
.history-timeline-heading { position: sticky; top: 30px; }
.history-timeline-heading h2 { margin-bottom: 24px; font-size: 4.3rem; }
.history-timeline-heading > p:last-child { color: var(--muted); }
.history-era-list { border-top: 1px solid var(--ink); }
.history-era-list article { position: relative; min-height: 390px; border-bottom: 1px solid var(--line); padding: 45px 10px 50px 95px; }
.history-era-list article > span { position: absolute; top: 48px; left: 0; color: var(--gold); font-family: var(--serif); font-size: 1.35rem; }
.history-era-list article .eyebrow { margin-bottom: 12px; color: var(--muted); }
.history-era-list h3 { max-width: 700px; margin-bottom: 22px; font-size: 3rem; }
.history-era-list article > p:not(.eyebrow) { max-width: 780px; color: var(--muted); }
.longform-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.longform-split h2 { font-size: 3rem; }
.longform-split > div:last-child { color: var(--muted); font-family: var(--serif); font-size: 1.22rem; }
.history-image-band { display: grid; grid-template-columns: 1.45fr .55fr; height: 680px; background: var(--ink); }
.history-today { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.history-today h2 { color: var(--white); }
.history-lessons { border-top: 1px solid var(--line-light); }
.history-lessons article { display: grid; grid-template-columns: 55px 210px 1fr; gap: 24px; align-items: baseline; border-bottom: 1px solid var(--line-light); padding: 27px 0; }
.history-lessons article > span { color: var(--gold-light); font-family: var(--serif); }
.history-lessons h3 { color: var(--white); font-size: 1.8rem; }
.history-lessons p { margin: 0; color: rgba(255,255,255,.58); font-size: .82rem; }
.source-panel { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.source-panel h2 { font-size: 2.6rem; }
.source-panel ul { margin: 0; border-top: 1px solid var(--ink); padding: 0; list-style: none; }
.source-panel li { border-bottom: 1px solid var(--line); }
.source-panel a { display: grid; grid-template-columns: .8fr 1.2fr; gap: 25px; padding: 24px 8px; }
.source-panel strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 500; }
.source-panel span { color: var(--muted); font-size: .76rem; }

.maras-hero { padding: 48px 0 72px; background: #f0e8dc; }
.maras-hero-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.maras-hero h1 { margin-bottom: 26px; font-size: clamp(2.5rem, 4.4vw, 4.4rem); }
.maras-hero-grid > div > p:not(.eyebrow) { max-width: 660px; margin-bottom: 30px; color: var(--muted); font-family: var(--serif); font-size: 1.2rem; }
.maras-hero figure { height: 690px; }
.maras-fact-strip { background: #9f2d20; color: var(--white); }
.maras-fact-strip .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
.maras-fact-strip article { min-height: 150px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.22); padding: 22px 30px; }
.maras-fact-strip article:first-child { border-left: 1px solid rgba(255,255,255,.22); }
.maras-fact-strip strong { color: #f2c67a; font-family: var(--serif); font-size: 2.3rem; font-weight: 400; }
.maras-fact-strip span { margin-top: 3px; color: rgba(255,255,255,.72); font-size: .64rem; }
.harvest-process { display: grid; grid-template-columns: 330px 1fr; gap: 90px; align-items: start; }
.harvest-process-heading { position: sticky; top: 30px; }
.harvest-process-heading h2 { font-size: 2.8rem; }
.harvest-process-heading > p:last-child { color: var(--muted); }
.harvest-process ol { margin: 0; border-top: 1px solid var(--ink); padding: 0; list-style: none; }
.harvest-process li { display: grid; grid-template-columns: 62px 1fr; gap: 22px; min-height: 190px; border-bottom: 1px solid var(--line); padding: 32px 0; }
.harvest-process li > span { color: #b23c2c; font-family: var(--serif); font-size: 1.3rem; }
.harvest-process h3 { margin-bottom: 12px; font-size: 2.35rem; }
.harvest-process li p { max-width: 760px; margin: 0; color: var(--muted); }
.harvest-film-section { padding: 100px 0; background: #21150f; color: var(--white); }
.harvest-film-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: center; }
.harvest-film-grid h2 { color: var(--white); font-size: 4.5rem; }
.harvest-film-grid p:not(.eyebrow) { color: rgba(255,255,255,.63); }
.harvest-film-grid a { color: #f2c67a; font-size: .7rem; text-decoration: underline; }
.harvest-film-grid video { width: 100%; aspect-ratio: 16 / 9; background: #090604; object-fit: cover; }
.maras-gallery { display: grid; grid-template-columns: 1.2fr .8fr 1fr; height: 520px; }

.search-page-hero { padding: 100px 0 70px; background: var(--ink); color: var(--white); }
.search-page-hero h1 { max-width: 1000px; color: var(--white); }
.search-page-form { display: grid; grid-template-columns: 1fr auto; max-width: 980px; margin-top: 40px; border-bottom: 1px solid rgba(255,255,255,.5); }
.search-page-form input { min-width: 0; border: 0; background: transparent; padding: 15px 0; color: var(--white); font-family: var(--serif); font-size: 1.4rem; }
.search-page-form input::placeholder { color: rgba(255,255,255,.45); }
.search-results { min-height: 480px; }
.search-answer { display: grid; grid-template-columns: 170px 1fr; gap: 28px; margin-bottom: 70px; padding: 18px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.search-answer span { font-size: .61rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.search-answer p { margin: 0; color: var(--muted); }
.search-article-results { margin-top: 120px; }

.capability-stack { border-top: 1px solid var(--ink); }
.capability-stack article { display: grid; grid-template-columns: 70px .95fr 1.05fr; gap: 60px; min-height: 310px; align-items: center; border-bottom: 1px solid var(--line); }
.capability-stack article > span { align-self: start; padding-top: 45px; color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.capability-stack h2 { margin: 0; font-size: 3.6rem; }
.capability-stack p { color: var(--muted); }
.capability-stack ul { margin: 0; padding: 0; list-style: none; }
.capability-stack li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .76rem; }
.brief-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.brief-list span { padding: 22px; background: var(--ink); color: rgba(255,255,255,.75); font-family: var(--serif); font-size: 1.05rem; }

.company-hero { padding: 75px 0; background: var(--ink); color: var(--white); }
.company-hero-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 90px; align-items: center; }
.company-hero h1 { color: var(--white); font-size: clamp(2.5rem, 4.4vw, 4.4rem); }
.company-hero p:not(.eyebrow) { max-width: 690px; color: rgba(255,255,255,.65); }
.company-hero figure { aspect-ratio: 1; margin: 0; clip-path: polygon(5% 0, 100% 4%, 96% 96%, 0 100%); }
.company-hero img { width: 100%; height: 100%; object-fit: cover; }
.company-story { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.company-story > div:last-child { color: var(--muted); font-size: 1.05rem; }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principle-grid article { min-height: 330px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-grid span { color: var(--gold); font-family: var(--serif); }
.principle-grid h3 { margin: auto 0 14px; }
.principle-grid p { color: var(--muted); font-size: .84rem; }

.contact-page { min-height: 760px; padding: 85px 0 110px; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.contact-copy { position: sticky; top: 30px; }
.contact-copy h1 { font-size: clamp(4.2rem, 6.7vw, 7.3rem); }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-copy dl { margin-top: 40px; border-top: 1px solid var(--ink); }
.contact-copy dl div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-copy dt { color: var(--muted); font-size: .59rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-copy dd { margin: 0; font-size: .82rem; }
.inquiry-form { padding: clamp(32px, 5vw, 64px); background: var(--paper); box-shadow: var(--shadow); }
.inquiry-form label { display: block; margin-bottom: 22px; color: var(--ink); font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.inquiry-form input, .inquiry-form textarea { width: 100%; margin-top: 8px; border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: 10px 0; color: var(--ink); letter-spacing: 0; text-transform: none; }
.inquiry-form textarea { border: 1px solid var(--line); padding: 12px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-submit { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 28px; }
.form-submit p { max-width: 380px; margin: 0; color: var(--muted); font-size: .67rem; }
.toast-region { position: fixed; z-index: 9999; right: 20px; bottom: 20px; display: grid; gap: 8px; }
.toast { max-width: 420px; padding: 14px 18px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); font-size: .78rem; opacity: 1; transform: translateY(0); transition: opacity 180ms ease, transform 180ms var(--ease-out); }
@starting-style { .toast { opacity: 0; transform: translateY(8px); } }
.toast.is-leaving { opacity: 0; transform: translateY(5px); }
.not-found { min-height: 650px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.not-found > span { color: var(--gold); font-family: var(--serif); font-size: 1.4rem; }
.not-found h1 { max-width: 900px; margin: 20px 0; }
.not-found p { color: var(--muted); }
.not-found > div { display: flex; gap: 24px; align-items: center; margin-top: 20px; }

.site-footer { background: var(--ink); color: var(--white); }
.footer-cta { padding: 90px 0; background: var(--gold); color: var(--ink); }
.footer-cta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; }
.footer-cta h2 { margin: 0; color: var(--ink); }
.footer-cta-grid > div:last-child p { max-width: 620px; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 70px; padding-block: 80px; }
.footer-brand img { width: 150px; height: 150px; object-fit: contain; margin-bottom: 18px; }
.footer-brand p { max-width: 380px; color: rgba(255,255,255,.62); }
.footer-main h3 { margin-bottom: 22px; color: var(--gold-light); font-family: var(--sans); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-main > div:not(.footer-brand) a { display: block; width: max-content; margin-bottom: 10px; color: rgba(255,255,255,.62); font-size: .78rem; }
.footer-legal { min-height: 60px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.43); font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 1180px) {
  .shell { width: min(calc(100% - 44px), var(--shell)); }
  .nav-shell { grid-template-columns: 250px 1fr auto; }
  .site-brand small, .search-trigger-label { display: none; }
  .site-brand img { width: 64px; height: 64px; }
  .hero-grid { grid-template-columns: 1fr .85fr; min-height: 690px; }
  .hero-seal { width: 110px; height: 110px; }
  .site-nav { gap: 13px; }
  .site-nav > a { font-size: .64rem; }
  .product-slider-track, .search-results .product-slider-track { grid-auto-columns: minmax(250px, calc((100% - 44px) / 3)); }
  .catalog-main .product-slider-track { grid-auto-columns: calc((100% - 48px) / 5); }
  .method-grid, .principle-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-layout { grid-template-columns: 250px 1fr; gap: 30px; }
  .product-layout { grid-template-columns: 1fr 1fr; gap: 45px; }
  .history-hero-grid, .maras-hero-grid { gap: 45px; }
  .history-timeline, .harvest-process { grid-template-columns: 280px 1fr; gap: 55px; }
  .longform-split { gap: 60px; }
}

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 34px), var(--shell)); }
  .utility-bar span:nth-child(2) { display: none; }
  .nav-shell { min-height: 76px; grid-template-columns: auto 1fr auto; }
  .site-brand { grid-column: 2; justify-self: center; }
  .site-brand span { display: none; }
  .site-brand img { width: 62px; height: 62px; }
  .mobile-menu-button { display: block; grid-column: 1; grid-row: 1; }
  .site-nav { position: absolute; top: 110px; right: 0; left: 0; display: none; flex-direction: column; gap: 0; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 16px 24px; border-top: 1px solid var(--line); }
  .site-nav > a::after { display: none; }
  .nav-actions { grid-column: 3; grid-row: 1; }
  .nav-actions .button { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-block: 80px 110px; }
  .hero-copy h1 { max-width: 820px; }
  .hero-visual { min-height: 580px; }
  .proof-strip .shell { grid-template-columns: 1fr 1fr; }
  .proof-strip span { min-height: 62px; display: grid; place-items: center; border-bottom: 1px solid var(--line); }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .split-intro, .search-story-grid, .narrative-grid, .company-hero-grid, .company-story, .contact-grid, .footer-cta-grid { grid-template-columns: 1fr; gap: 50px; }
  .search-story-visual { min-height: 480px; }
  .search-story-copy { padding: 55px 45px; }
  .insight-grid { grid-template-columns: 1fr 1fr; }
  .product-slider-track, .search-results .product-slider-track { grid-auto-columns: minmax(255px, 46%); }
  .catalog-main .product-slider-track { grid-auto-columns: calc((100% - 12px) / 2); gap: 12px; }
  .catalog-layout { display: block; }
  .filter-toggle { display: block; }
  .filter-panel { position: fixed; z-index: 600; inset: 0 auto 0 0; width: min(380px, 92vw); overflow-y: auto; background: var(--paper); padding: 25px; box-shadow: var(--shadow); transform: translateX(-102%); transition: transform 230ms var(--ease-out); }
  .filter-panel.is-open { transform: translateX(0); }
  .filter-panel-head button { display: block; }
  .product-layout { grid-template-columns: 1fr; }
  .product-summary-panel, .contact-copy { position: static; }
  .product-profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-profile-heading, .product-profile-copy { grid-column: 1 / -1; min-height: auto; }
  .recipe-grid { grid-template-columns: 1fr; }
  .recipe-card header { min-height: 160px; }
  .product-data-grid { grid-template-columns: 1fr; }
  .nutrition-panel { max-width: 600px; }
  .product-video-shell { grid-template-columns: 1fr; }
  .product-video-heading { padding-right: 38px; }
  .video-credit { grid-column: 1; margin-top: -22px; }
  .article-layout { grid-template-columns: 1fr; gap: 35px; }
  .article-layout aside { position: static; }
  .product-photo-shell { grid-template-columns: 1fr; }
  .product-photo-stage img { max-height: 72vh; }
  .product-photo-footer { flex-direction: row; align-items: end; padding: 24px; }
  .capability-stack article { grid-template-columns: 55px 1fr; gap: 28px; padding: 35px 0; }
  .capability-stack article ul { grid-column: 2; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .history-hero-grid, .maras-hero-grid, .longform-lede, .history-timeline, .longform-split, .history-today, .source-panel, .harvest-process, .harvest-film-grid { grid-template-columns: 1fr; }
  .history-hero-grid, .maras-hero-grid { padding-block: 55px; }
  .history-hero figure, .maras-hero figure { height: 540px; }
  .longform-lede > div { columns: 1; }
  .history-timeline-heading, .harvest-process-heading { position: static; }
  .history-image-band { height: 520px; }
  .history-lessons article { grid-template-columns: 45px 180px 1fr; }
  .maras-fact-strip .shell { grid-template-columns: 1fr 1fr; }
  .maras-fact-strip article:nth-child(3) { border-left: 1px solid rgba(255,255,255,.22); }
  .harvest-film-section { padding: 75px 0; }
  .maras-gallery { height: 420px; }
}

@media (max-width: 620px) {
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.9rem; }
  .shell { width: min(calc(100% - 26px), var(--shell)); }
  .section { padding: 75px 0; }
  .utility-bar .shell { gap: 0; justify-content: space-between; }
  .utility-bar span::before { display: none; }
  .search-trigger kbd { display: none; }
  .search-trigger { width: 42px; justify-content: center; padding: 8px; }
  .search-trigger-icon { display: block; }
  .search-dialog { width: calc(100% - 18px); }
  .search-command { padding: 48px 22px 28px; }
  .search-command label { font-size: 1.6rem; }
  .search-suggestions { padding: 20px 22px 26px; }
  .hero-grid { padding-top: 65px; }
  .hero-copy h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div { padding: 12px 0; border-bottom: 1px solid var(--line-light); }
  .hero-visual { min-height: 430px; }
  .hero-image-main { inset: 0 0 10% 6%; }
  .hero-seal { width: 85px; height: 85px; }
  .proof-strip .shell, .category-grid, .method-grid, .insight-grid, .principle-grid, .brief-list { grid-template-columns: 1fr; }
  .product-slider-track, .search-results .product-slider-track { grid-auto-columns: 86%; gap: 14px; }
  .catalog-main .product-slider-track { grid-auto-columns: calc((100% - 12px) / 2); gap: 12px; }
  .slider-controls { margin-top: 0; }
  .proof-strip span { border-right: 0; }
  .section-heading { display: block; }
  .section-heading .text-link, .section-heading > p { margin-top: 22px; }
  .category-card, .method-grid article, .principle-grid article { min-height: 280px; }
  .search-story-visual { min-height: 350px; }
  .search-story-copy { padding: 40px 24px; }
  .hero-search > div { grid-template-columns: 1fr; }
  .hero-search button { padding: 13px 0; text-align: left; }
  .page-hero { min-height: 440px; padding-bottom: 50px; }
  .page-hero h1 { font-size: 2.35rem; }
  .page-hero-catalog { min-height: 0; padding-block: 58px 46px; }
  .page-hero.page-hero-catalog h1 { font-size: 1.75rem; line-height: 1.08; }
  .catalog-toolbar p { display: none; }
  .pagination { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .pagination > a:last-child { justify-self: center; }
  .pagination div { justify-content: center; }
  .product-video-teaser { grid-template-columns: 118px 1fr; gap: 14px; padding-right: 14px; }
  .video-teaser-image { height: 104px; }
  .product-video-teaser > span:last-child { display: block; }
  .product-video-teaser small, .product-video-teaser strong { display: block; }
  .product-video-teaser em { display: none; }
  .product-summary-panel h1 { font-size: 4rem; }
  .product-facts div { grid-template-columns: 1fr; gap: 4px; }
  .product-actions { flex-direction: column; }
  .product-actions .button { width: 100%; }
  .product-jump-nav .shell { gap: 24px; }
  .product-profile-grid { grid-template-columns: 1fr; }
  .product-profile-heading, .product-profile-copy, .profile-grid-card { grid-column: 1; min-height: auto; padding: 30px 24px; }
  .profile-grid-card h3 { margin-top: 50px; }
  .recipe-card header { grid-template-columns: 34px 1fr; padding: 24px 20px; }
  .recipe-dose, .recipe-body { padding-inline: 20px; }
  .product-data-grid { grid-template-columns: minmax(0, 1fr); }
  .production-row { grid-template-columns: 30px minmax(90px, 1fr) 50px; gap: 9px; }
  .production-row > div { grid-column: 2 / -1; grid-row: 2; margin-bottom: 13px; }
  .production-row > b { grid-column: 3; grid-row: 1; }
  .product-video-dialog { width: calc(100% - 14px); max-height: calc(100vh - 14px); }
  .product-photo-dialog { width: calc(100% - 14px); max-height: calc(100vh - 14px); }
  .product-photo-shell { min-height: auto; }
  .product-photo-stage img { max-height: 66vh; }
  .product-photo-footer { align-items: center; padding: 18px; }
  .product-photo-footer h2 { max-width: 190px; margin-bottom: 7px; font-size: 1.55rem; }
  .product-photo-footer .eyebrow { margin-bottom: 4px; }
  .product-photo-footer button { width: 42px; height: 42px; }
  .product-photo-close { top: 10px; right: 10px; width: 40px; height: 40px; background: rgba(251,250,246,.9); }
  .product-video-shell { gap: 26px; padding: 54px 18px 24px; }
  .product-video-heading h2 { font-size: 1.9rem; }
  .video-credit { margin-top: -12px; }
  .article-header { padding-top: 55px; }
  .article-header h1 { font-size: 3.65rem; }
  .article-hero { width: 100%; height: 360px; }
  .article-layout { padding-bottom: 75px; }
  .article-body { font-size: 1.08rem; }
  .editorial-index-note { display: block; }
  .editorial-index-note p { margin-top: 8px; }
  .article-tags { margin-top: -28px; }
  .history-hero h1 { font-size: 2.4rem; }
  .history-hero figure, .maras-hero figure { height: 410px; }
  .longform-lede, .history-timeline, .longform-split, .history-today, .source-panel, .harvest-process, .harvest-film-grid { gap: 38px; }
  .history-timeline-heading h2, .harvest-process-heading h2, .longform-split h2, .harvest-film-grid h2, .source-panel h2 { font-size: 1.9rem; }
  .history-era-list article { min-height: 0; padding: 32px 0 38px 55px; }
  .history-era-list article > span { top: 34px; }
  .history-era-list h3 { font-size: 2.35rem; }
  .history-image-band { grid-template-columns: 1fr; height: auto; }
  .history-image-band figure { height: 360px; }
  .history-lessons article { grid-template-columns: 38px 1fr; gap: 10px 16px; }
  .history-lessons p { grid-column: 2; }
  .source-panel a { grid-template-columns: 1fr; gap: 4px; }
  .maras-hero { padding-bottom: 45px; }
  .maras-hero h1 { font-size: 2.4rem; }
  .maras-fact-strip article { min-height: 125px; padding: 16px; }
  .maras-fact-strip strong { font-size: 1.7rem; }
  .harvest-process li { grid-template-columns: 45px 1fr; gap: 10px; }
  .harvest-process h3 { font-size: 2rem; }
  .maras-gallery { grid-template-columns: 1fr; height: auto; }
  .maras-gallery figure { height: 330px; }
  .search-page-hero { padding: 70px 0 50px; }
  .search-page-hero h1 { font-size: 2.3rem; }
  .search-page-form { grid-template-columns: 1fr; }
  .search-page-form .button { margin-bottom: 12px; }
  .search-answer { grid-template-columns: 1fr; gap: 5px; }
  .capability-stack article { grid-template-columns: 1fr; gap: 12px; }
  .capability-stack article > span { padding: 0; }
  .capability-stack article ul { grid-column: 1; }
  .capability-stack h2 { font-size: 2.8rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .inquiry-form { padding: 28px 20px; }
  .form-submit { display: block; }
  .form-submit .button { width: 100%; margin-top: 18px; }
  .footer-cta { padding: 70px 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; justify-content: center; padding: 18px 0; text-align: center; }
}

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