/* =====================================================================
   Minoiko.gr — global stylesheet
   Design tokens & components rebuilt from the Minoiko design handoff.
   Fonts: Manrope (UI/body) + Tinos (serif display).
   ===================================================================== */

:root {
  /* Colours */
  --ink: #171716;
  --near-black: #0a0607;
  --paper: #FBFAF6;
  --sand: #ebe6db;
  --stone: #e5dfd3;
  --card-cream: #FFFDF8;
  --taupe: #978363;
  --taupe-dark: #7c6b4f;
  --taupe-light: #a89470;
  --taupe-pale: #bba986;

  /* Text on light */
  --on-light-strong: rgba(23, 23, 22, 0.82);
  --on-light-body: rgba(23, 23, 22, 0.72);
  --on-light-muted: rgba(23, 23, 22, 0.55);
  /* Text on dark */
  --on-dark-strong: rgba(251, 250, 246, 0.82);
  --on-dark-body: rgba(251, 250, 246, 0.72);
  --on-dark-muted: rgba(251, 250, 246, 0.55);

  /* Fonts */
  --serif: 'Tinos', 'Times New Roman', Georgia, serif;
  --sans: 'Manrope', 'Helvetica Neue', Arial, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --gutter: 60px;
  --container: min(1680px, calc(100% - 120px));
  --container-narrow: min(980px, calc(100% - 96px));
  --container-cta: min(880px, calc(100% - 96px));
  --header-h: 88px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; }
a { color: var(--taupe); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--taupe-dark); }
button { font-family: inherit; }
::selection { background: var(--taupe); color: var(--ink); }
h1, h2, h3, h4, p { margin: 0; }
[hidden] { display: none !important; }

/* ---------- Keyframes ---------- */
@keyframes drawerIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrimIn { from { opacity: 0; } to { opacity: 1; } }

/* =====================================================================
   Layout helpers
   ===================================================================== */
.container { width: var(--container); margin: 0 auto; }
.container--narrow { width: var(--container-narrow); margin: 0 auto; }
.container--cta { width: var(--container-cta); margin: 0 auto; }

.section { padding: 170px 0; position: relative; overflow: hidden; }
.section--paper { background: var(--paper); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: var(--paper); }

/* =====================================================================
   Typography
   ===================================================================== */
.eyebrow {
  display: inline-block;
  color: var(--taupe);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1;
}
.h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
}
.h2 em, .h1 em, .h3 em { font-style: italic; font-weight: 400; }
.lead { font-size: 17px; line-height: 1.8; color: var(--on-light-body); text-wrap: pretty; }
.muted-dark { color: var(--on-dark-body); }

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
/* Gold buttons: white label, inverting to ink-on-gold-text on hover. */
.btn--solid,
.btn--solid-ink,
.btn--hero { background: var(--taupe); color: var(--paper); border-color: var(--taupe); }
.btn--solid:hover,
.btn--solid-ink:hover,
.btn--hero:hover { background: var(--ink); color: var(--taupe); border-color: var(--ink); }
.btn--hero { box-shadow: 0 12px 32px rgba(0,0,0,0.28); }
.btn--hero:hover { transform: translateY(-2px); }

/* Transparent buttons invert the same way. */
.btn--glass {
  background: rgba(251,250,246,0.06);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--paper);
  border-color: rgba(251,250,246,0.5);
  font-weight: 700;
}
.btn--outline-light {
  background: transparent; color: var(--paper);
  border-color: rgba(251,250,246,0.45); font-weight: 700;
}
.btn--glass:hover,
.btn--outline-light:hover { background: var(--ink); color: var(--taupe); border-color: var(--taupe); }

.link-underline {
  color: var(--ink);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 1px solid rgba(23,23,22,0.4); padding-bottom: 6px; white-space: nowrap;
}
.link-underline:hover { color: var(--taupe); border-color: var(--taupe); }
.link-arrow { color: var(--taupe); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: fixed; left: 0; top: 0; width: 100%; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header.solid {
  background: var(--near-black);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(251,250,246,0.12);
}
.site-header__inner {
  width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 20px;
}
.site-header__logo img { height: 63px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  background: none; border: 1px solid rgba(251,250,246,0.45); border-radius: 50%;
  width: 48px; height: 48px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; padding: 0; position: relative;
  color: var(--paper);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.icon-btn:hover { background: rgba(251,250,246,0.08); border-color: var(--paper); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; background: var(--taupe); color: var(--ink);
  font-size: 10px; font-weight: 700; line-height: 18px; text-align: center;
}
.cart-count:empty, .cart-count[data-count="0"] { display: none; }

/* The EN/EL toggle is gone with the Greek pages; nothing renders .lang now.
   Kept hidden as a safety net in case a cached page still carries it. */
.lang { display: none !important; }

/* =====================================================================
   Menu drawer
   ===================================================================== */
.scrim {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(23,23,22,0.55); animation: scrimIn 0.25s ease;
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease;
}
.scrim.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; height: 100%; z-index: 210;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.drawer.open { transform: translateX(0); }

.menu-drawer { width: min(520px, 92vw); background: var(--ink); box-shadow: -24px 0 60px rgba(0,0,0,0.4); }
.menu-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 26px 48px 20px; }
.drawer-close { background: none; border: none; cursor: pointer; font-size: 30px; line-height: 1; color: var(--paper); padding: 4px; }
.menu-drawer__nav { flex: 1; overflow-y: auto; display: flex; flex-direction: column; justify-content: center; padding: 24px 48px; }
.menu-drawer__nav .menu-link {
  display: block;
  color: var(--paper); font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.2;
  padding: 14px 0; border-bottom: 1px solid rgba(251,250,246,0.12);
}
.menu-drawer__nav .menu-link:last-child { border-bottom: none; }
/* The e-shop is announced but not open yet: shown, dimmed, not clickable. */
.menu-drawer__nav a.menu-link:hover, .menu-drawer__nav .menu-link.active { color: var(--taupe-pale); }
.menu-drawer__foot { padding: 32px 48px 40px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid rgba(251,250,246,0.12); }
.menu-drawer__foot span, .menu-drawer__foot a { font-size: 13px; line-height: 1.7; color: rgba(251,250,246,0.6); letter-spacing: 0.04em; }
.menu-drawer__foot a.email { color: var(--taupe-pale); }
.menu-drawer__foot a:hover { color: var(--paper); }

/* Brand wordmark (drawer + footer) */
.wordmark { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.wordmark b { font-family: var(--sans); font-weight: 800; letter-spacing: -0.01em; line-height: 1; color: var(--taupe); }
.wordmark small { font-family: var(--sans); font-weight: 700; text-transform: uppercase; line-height: 1; color: var(--taupe); }
.wordmark--drawer b { font-size: 23px; }
.wordmark--drawer small { font-size: 8px; letter-spacing: 0.46em; }
.wordmark--footer b { font-size: 34px; }
.wordmark--footer small { font-size: 11px; letter-spacing: 0.46em; }

/* =====================================================================
   Cart drawer
   ===================================================================== */
.cart-drawer { width: min(440px, 92vw); background: var(--paper); box-shadow: -24px 0 60px rgba(23,23,22,0.3); z-index: 210; }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 26px 32px; border-bottom: 1px solid rgba(23,23,22,0.14); }
.cart-drawer__title { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--ink); }
.cart-drawer__title span { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--on-light-muted); }
.cart-drawer__close { background: none; border: none; cursor: pointer; font-size: 26px; line-height: 1; color: var(--ink); padding: 4px; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 8px 32px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 72px 0; text-align: center; }
.cart-empty b { font-family: var(--sans); font-size: 24px; font-weight: 500; color: var(--ink); }
.cart-empty span { font-size: 14px; color: var(--on-light-muted); }
.cart-line { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(23,23,22,0.1); }
.cart-line__name { font-size: 20px; font-weight: 500; color: var(--ink); }
.cart-line__size { font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-top: 6px; }
.qty { display: inline-flex; align-items: center; gap: 12px; border: 1px solid rgba(23,23,22,0.25); padding: 6px 12px; margin-top: 10px; }
.qty button { background: none; border: none; cursor: pointer; font-size: 15px; color: var(--ink); padding: 0 2px; }
.qty span { font-size: 13px; font-weight: 600; min-width: 14px; text-align: center; }
.cart-line__remove { background: none; border: none; cursor: pointer; font-size: 11.5px; color: var(--on-light-muted); text-decoration: underline; padding: 0; margin-top: 12px; margin-left: 14px; }
.cart-line__total { font-size: 20px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.cart-drawer__foot { border-top: 1px solid rgba(23,23,22,0.14); padding: 26px 32px 30px; display: flex; flex-direction: column; gap: 18px; }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; }
.cart-subtotal span:first-child { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-light-muted); }
.cart-subtotal b { font-size: 28px; font-weight: 500; color: var(--ink); }
.cart-checkout { background: var(--taupe); color: var(--paper); border: 1px solid var(--taupe); border-radius: 999px; cursor: pointer; padding: 18px; font-size: 13px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; width: 100%; text-align: center; }
.cart-checkout:hover { background: var(--ink); color: var(--taupe); border-color: var(--ink); }
.cart-note { font-size: 11px; color: rgba(23,23,22,0.5); text-align: center; }

/* =====================================================================
   Back to top
   ===================================================================== */
.back-to-top {
  position: fixed; right: 32px; bottom: 32px; z-index: 120;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--near-black); border: 1px solid var(--taupe); color: var(--taupe);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--taupe); color: var(--ink); }

/* =====================================================================
   Cookie consent banner
   ===================================================================== */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  background: var(--near-black); color: var(--paper);
  border-top: 1px solid rgba(251,250,246,0.14);
  display: flex; align-items: center; gap: 28px;
  padding: 20px var(--gutter);
  transform: translateY(100%); transition: transform 0.4s var(--ease);
  box-shadow: 0 -20px 50px rgba(0,0,0,0.35);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__text { margin: 0; font-size: 13.5px; line-height: 1.65; color: var(--on-dark-body); max-width: 900px; }
.cookie-banner__text a { color: var(--taupe-pale); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; margin-left: auto; flex: none; }
.cookie-banner .btn { padding: 12px 26px; }
@media (max-width: 720px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 18px 24px; }
  .cookie-banner__actions { margin-left: 0; width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--ink); border-top: 1px solid rgba(251,250,246,0.14); padding: 110px 0 0; position: relative; overflow: hidden; color: var(--paper); }
.site-footer__mark { position: absolute; right: -90px; bottom: -60px; height: 600px; width: auto; opacity: 0.05; pointer-events: none; user-select: none; z-index: 0; }
.site-footer__grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 0.9fr 1fr 0.9fr; gap: 60px; padding-bottom: 90px; position: relative; z-index: 1; }
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col > span:first-child { font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe); }
.footer-col a { color: var(--on-dark-body); font-size: 14px; }
.footer-col a:hover { color: var(--paper); }
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(251,250,246,0.6); max-width: 300px; }
.footer-social { display: flex; gap: 20px; margin-top: 8px; }
.footer-social a { color: rgba(251,250,246,0.7); font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-social a:hover { color: var(--taupe); }
.site-footer__bar { border-top: 1px solid rgba(251,250,246,0.12); position: relative; z-index: 1; }
.site-footer__bar-inner { width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 26px 0; }
.site-footer__bar-inner span, .site-footer__bar-inner a { font-size: 12px; color: rgba(251,250,246,0.45); white-space: nowrap; }
.site-footer__bar-inner a:hover { color: var(--taupe); }
.site-footer__bar-inner a span { color: var(--taupe); }

/* =====================================================================
   Hero
   ===================================================================== */
.hero { position: relative; height: 100vh; min-height: 640px; background: var(--ink); overflow: hidden; }
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.hero__scrim { position: absolute; inset: 0; background: rgba(23,23,22,0.42); pointer-events: none; }
.hero__gradient { position: absolute; left: 0; bottom: 0; width: 100%; height: 40%; background: linear-gradient(to top, rgba(23,23,22,0.5), rgba(23,23,22,0)); pointer-events: none; }
.hero__content { position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: 88px; }
.hero__stack { max-width: 780px; display: flex; flex-direction: column; align-items: flex-start; gap: 30px; }
.hero__stack .h1 { color: var(--paper); font-size: clamp(42px, 4.6vw, 72px); line-height: 1.08; letter-spacing: -0.01em; }
.hero__stack p { max-width: 500px; font-size: 17px; line-height: 1.75; color: var(--on-dark-strong); text-wrap: pretty; }
.hero__cta { display: flex; gap: 14px; margin-top: 6px; flex-wrap: wrap; }
.anim-1 { animation: heroFadeUp 1s var(--ease) 0.28s both; }
.anim-2 { animation: heroFadeUp 1s var(--ease) 0.42s both; }
.anim-3 { animation: heroFadeUp 1s var(--ease) 0.56s both; }

/* Subpage hero (dark) */
.subhero { background: var(--ink); color: var(--paper); padding: 216px 0 120px; position: relative; overflow: hidden; }
.subhero__inner { display: flex; flex-direction: column; gap: 22px; }
.subhero .h1 { color: var(--paper); font-size: clamp(44px, 4.6vw, 68px); }
.subhero p { font-size: 17px; line-height: 1.8; color: var(--on-dark-body); max-width: 620px; }

/* Subpage hero extras */
.subhero__crumbs { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.08em; }
.subhero__crumbs a { color: rgba(251,250,246,0.55); }
.subhero__crumbs a:hover { color: var(--paper); }
.subhero__crumbs .sep { color: rgba(251,250,246,0.35); }
.subhero__crumbs .cur { color: var(--taupe); }
.subhero .eyebrow { letter-spacing: 0.3em; }
.subhero__mark { position: absolute; right: -70px; top: 50%; transform: translateY(-50%); height: 560px; width: auto; opacity: 0.06; pointer-events: none; z-index: 0; }
.subhero__inner { position: relative; z-index: 1; }

/* Filter bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; }
.filter-pill { border: 1px solid rgba(23,23,22,0.25); background: transparent; color: var(--ink); border-radius: 999px; padding: 10px 20px; font-size: 12.5px; font-weight: 700; cursor: pointer; transition: all .2s ease; font-family: var(--sans); }
.filter-pill:hover { background: var(--ink); color: var(--taupe); border-color: var(--ink); }
.filter-pill.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Masonry gallery */
.masonry { column-count: 3; column-gap: 20px; }
.masonry figure { break-inside: avoid; margin: 0 0 20px; overflow: hidden; background: var(--stone); }
.masonry img { width: 100%; height: auto; display: block; transition: transform .6s var(--ease); }
.masonry figure:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }

/* Recipes grid (taller row gap) */
.recipes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; row-gap: 88px; }
@media (max-width: 1100px) { .recipes-grid { grid-template-columns: 1fr 1fr; row-gap: 56px; } }
@media (max-width: 680px) { .recipes-grid { grid-template-columns: 1fr; row-gap: 44px; } }

/* =====================================================================
   Cards / grids
   ===================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }

.product-card { background: var(--paper); border: 1px solid rgba(23,23,22,0.1); display: flex; flex-direction: column; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 32px 64px rgba(23,23,22,0.16); }
.product-card__media { position: relative; aspect-ratio: 5/4; background: var(--stone); overflow: hidden; }
.product-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 40px 44px 46px; display: flex; flex-direction: column; gap: 16px; }
.product-card__body p { font-size: 15px; line-height: 1.7; color: var(--on-light-body); }

/* Product commerce (Collection) */
.size-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.size-pill { padding: 11px 20px; border-radius: 999px; cursor: pointer; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; transition: all 0.2s ease; background: transparent; color: var(--ink); border: 1px solid rgba(23,23,22,0.35); }
.size-pill.selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.product-buy { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; border-top: 1px solid rgba(23,23,22,0.12); padding-top: 24px; }
.product-price { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--ink); }
.add-btn { background: var(--taupe); color: var(--paper); border: 1px solid var(--taupe); border-radius: 999px; cursor: pointer; padding: 16px 32px; font-family: var(--sans); font-size: 12.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; transition: all 0.25s ease; }
.add-btn:hover { background: var(--ink); color: var(--taupe); border-color: var(--ink); }

.recipe-card { display: flex; flex-direction: column; gap: 18px; }
.recipe-card__media { position: relative; aspect-ratio: 3/2; background: var(--stone); overflow: hidden; }
.recipe-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.recipe-card h3 { font-size: 26px; line-height: 1.3; }

/* Blog / journal */
.featured-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: center; }
.featured-grid__media { position: relative; aspect-ratio: 4/3; background: var(--stone); overflow: hidden; }
.featured-grid__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-card { background: var(--paper); border: 1px solid rgba(23,23,22,0.1); display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease; }
.post-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(23,23,22,0.14); }
.post-card__media { position: relative; aspect-ratio: 3/2; background: var(--stone); overflow: hidden; }
.post-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 30px 32px 34px; display: flex; flex-direction: column; gap: 12px; }
.post-card__body h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; line-height: 1.25; color: var(--ink); }
.post-card__body p { font-size: 14.5px; line-height: 1.7; color: rgba(23,23,22,0.7); }
.read-more { margin-top: 6px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }
.newsletter-form { display: flex; gap: 10px; width: 100%; max-width: 440px; margin-top: 6px; }
.newsletter-form input { flex: 1; min-width: 0; background: rgba(251,250,246,0.06); border: 1px solid rgba(251,250,246,0.22); border-radius: 999px; padding: 15px 22px; color: var(--paper); font-family: var(--sans); font-size: 14px; outline: none; }
.newsletter-form input::placeholder { color: rgba(251,250,246,0.4); }
.newsletter-form button { background: var(--taupe); color: var(--ink); border: none; border-radius: 999px; cursor: pointer; padding: 15px 28px; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; }
.newsletter-form button:hover { background: var(--taupe-light); }
@media (max-width: 900px) { .featured-grid { grid-template-columns: 1fr; gap: 32px; } }

.section-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; margin-bottom: 90px; }
.section-head p { max-width: 560px; font-size: 16px; line-height: 1.7; }
.section--ink .section-head p { color: var(--on-dark-body); }
.section--sand .section-head p, .section--paper .section-head p { color: var(--on-light-body); }

/* =====================================================================
   Production process (steps + arrows)
   ===================================================================== */
.process { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 28px; align-items: start; }
.process__step { display: flex; flex-direction: column; gap: 22px; }
.process__icon {
  width: 74px; height: 74px; border-radius: 50%;
  border: 1px solid rgba(151,131,99,0.4); color: var(--taupe); background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s ease, transform .5s var(--ease), box-shadow .5s ease;
}
.process__step:hover .process__icon { background: var(--taupe); color: var(--ink); border-color: var(--taupe); transform: translateY(-6px); box-shadow: 0 20px 44px -20px rgba(151,131,99,0.75); }
.process__title { font-family: var(--serif); font-size: 27px; font-weight: 500; color: var(--paper); line-height: 1.2; }
.process__step p { font-size: 14.5px; line-height: 1.75; color: rgba(251,250,246,0.65); }
.process__arrow { color: var(--taupe); font-size: 20px; margin-top: 24px; }
/* 5-step variant (with subtitles, no arrows) */
.process--5 { grid-template-columns: repeat(5, 1fr); gap: 44px 30px; }
.process--5 .process__step { gap: 16px; }
.process--5 .process__title { font-size: 23px; }
.process__sub { font-size: 13px; font-weight: 700; line-height: 1.4; color: var(--taupe-pale); margin-top: -4px; }

/* =====================================================================
   Quality — care at every stage
   ===================================================================== */
.quality-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 100px; align-items: center; }
.quality-media { position: relative; padding: 28px 28px 0 0; }
.quality-media__frame { position: absolute; right: 0; top: 0; width: 78%; height: 82%; border: 1px solid var(--taupe); pointer-events: none; }
.quality-media__pic { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.quality-media__pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quality-body { display: flex; flex-direction: column; gap: 22px; }
.quality-features { list-style: none; margin: 8px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.quality-features li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: var(--ink); }
.quality-features__ic { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--taupe); color: var(--paper); display: flex; align-items: center; justify-content: center; }

/* =====================================================================
   Taste & usage (split)
   ===================================================================== */
.taste { display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; background: var(--paper); }
.taste__media { position: relative; min-height: 820px; overflow: hidden; background: var(--stone); }
.taste__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.taste__panel { display: flex; flex-direction: column; justify-content: center; gap: 26px; padding: 170px min(150px, 9vw); }
.taste__bars { display: flex; flex-direction: column; gap: 22px; margin-top: 6px; }
.taste__bar { display: flex; flex-direction: column; gap: 9px; }
.taste__bar__head { display: grid; grid-template-columns: 90px 1fr; gap: 20px; align-items: center; }
.taste__bar__head > span { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.taste__bar .bar { height: 3px; background: rgba(23,23,22,0.12); }
.taste__bar .bar i { display: block; height: 100%; background: var(--taupe); }
.taste__bar__desc { margin: 0; padding-left: 110px; font-size: 13px; line-height: 1.6; color: var(--on-light-muted); }
.taste__pairing { border-top: 1px solid rgba(23,23,22,0.15); padding-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.pair-title { font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1.4; color: var(--ink); }
.pair-quote { font-size: 15px; line-height: 1.75; color: rgba(23,23,22,0.7); }

/* =====================================================================
   Final CTA (full-bleed photo)
   ===================================================================== */
.final-cta { padding: 210px 0 170px; }

/* =====================================================================
   About page components
   ===================================================================== */
.split { display: grid; gap: 120px; align-items: center; }
.split--who { grid-template-columns: 1.05fr 0.95fr; }
.split--identity { grid-template-columns: 1fr 1fr; }
.framed-photo { position: relative; padding: 0 0 28px 28px; }
.framed-photo__border { position: absolute; left: 0; bottom: 0; width: 78%; height: 78%; border: 1px solid var(--taupe); pointer-events: none; }
.framed-photo__img { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--stone); }
.framed-photo__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-copy p { font-size: 16px; line-height: 1.8; color: var(--on-light-strong); }
.eyebrow--wide { letter-spacing: 0.28em; }
.about-h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px,3.4vw,48px); line-height: 1.12; letter-spacing: -0.005em; }

.band { position: relative; aspect-ratio: 21/8; background: var(--stone); overflow: hidden; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Story — alternating photo timeline */
.story-tl { display: flex; flex-direction: column; gap: 84px; margin-top: 20px; }
.story-tl__row { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; align-items: center; }
.story-tl__row--flip .story-tl__media { order: 2; }
.story-tl__media { position: relative; padding: 22px 22px 0 0; }
.story-tl__row--flip .story-tl__media { padding: 22px 0 0 22px; }
.story-tl__media .frame { position: absolute; right: 0; top: 0; width: 74%; height: 82%; border: 1px solid var(--taupe); pointer-events: none; }
.story-tl__row--flip .story-tl__media .frame { right: auto; left: 0; }
.story-tl__media .pic { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--stone); }
.story-tl__media .pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-tl__body { display: flex; flex-direction: column; gap: 14px; }
.story-tl__year { font-family: var(--serif); font-style: italic; font-size: 16px; letter-spacing: 0.02em; color: var(--taupe-dark); }
.story-tl__body h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.18; color: var(--ink); }
.story-tl__body p { font-size: 15.5px; line-height: 1.8; color: var(--on-light-body); }
@media (max-width: 860px) {
  .story-tl { gap: 56px; }
  .story-tl__row, .story-tl__row--flip { grid-template-columns: 1fr; gap: 28px; }
  .story-tl__row--flip .story-tl__media { order: 0; }
  .story-tl__media, .story-tl__row--flip .story-tl__media { padding: 16px 16px 0 0; max-width: 560px; }
  .story-tl__row--flip .story-tl__media .frame { right: 0; left: auto; }
}

.timeline { max-width: 820px; margin: 0 auto; position: relative; padding-left: 40px; }
.timeline__line { position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px; background: rgba(151,131,99,0.4); }
.timeline__item { position: relative; padding: 0 0 52px 0; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot { position: absolute; left: -40px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--taupe); box-shadow: 0 0 0 5px var(--sand); }
.timeline__item h3 { margin: 8px 0 12px; font-family: var(--serif); font-weight: 500; font-size: 26px; line-height: 1.2; color: var(--ink); }
.timeline__item p { font-size: 15px; line-height: 1.8; color: var(--on-light-body); }

.phil-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; }
.phil-grid > div { display: flex; flex-direction: column; gap: 14px; border-top: 1px solid rgba(151,131,99,0.4); padding-top: 26px; }
.phil-grid h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; line-height: 1.2; color: var(--paper); }
.phil-grid p { font-size: 14.5px; line-height: 1.75; color: rgba(251,250,246,0.65); }

.identity-list { display: flex; flex-direction: column; }
.identity-list > div { display: flex; align-items: center; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(23,23,22,0.14); }
.identity-list .num { font-family: var(--serif); font-size: 16px; color: var(--taupe); min-width: 28px; }
.identity-list span:last-child { font-size: 16px; color: var(--ink); }

.proc-row { display: grid; grid-template-columns: 120px 1fr 320px; gap: 40px; padding: 40px 0; border-top: 1px solid rgba(23,23,22,0.18); }
.proc-row__num { font-family: var(--serif); font-size: 48px; font-weight: 500; color: var(--taupe); line-height: 1; }
.proc-row__body { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.proc-row__body h3 { font-family: var(--serif); font-weight: 500; font-size: 28px; line-height: 1.2; color: var(--ink); }
.proc-row__body p { margin: 6px 0 0; font-size: 15px; line-height: 1.8; color: var(--on-light-body); }
.proc-row__img { position: relative; aspect-ratio: 4/3; background: var(--stone); overflow: hidden; align-self: start; }
.proc-row__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.closing { position: relative; overflow: hidden; }
.closing__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.closing__overlay { position: absolute; inset: 0; background: rgba(23,23,22,0.62); z-index: 0; }
.closing__inner { position: relative; z-index: 1; }
/* The photo and its scrim are absolutely positioned, so any static content
   beside them would paint underneath. Lift everything else above by default
   rather than relying on each CTA to remember. */
.closing > *:not(.closing__bg):not(.closing__overlay) { position: relative; z-index: 1; }

@media (max-width: 980px) {
  .split--who, .split--identity { grid-template-columns: 1fr; gap: 48px; }
  .phil-grid { grid-template-columns: 1fr 1fr; }
  .proc-row { grid-template-columns: 60px 1fr; }
  .proc-row__img { grid-column: 1 / -1; max-width: 480px; }
  .proc-row__num { font-size: 36px; }
}
@media (max-width: 560px) { .phil-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   Forms
   ===================================================================== */
.form-card { background: var(--sand); padding: 56px; display: flex; flex-direction: column; gap: 26px; }
.form-card h2 { margin: 0 0 6px; font-family: var(--serif); font-weight: 500; font-size: 34px; line-height: 1.15; color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field > span { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(23,23,22,0.65); }
.field input, .field textarea, .field select {
  background: var(--paper); border: 1px solid rgba(23,23,22,0.25); padding: 16px 18px;
  font-family: var(--sans); font-size: 14.5px; color: var(--ink); outline: none; width: 100%; box-sizing: border-box;
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--taupe); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.form-note { font-size: 12px; color: var(--taupe); font-weight: 600; }
.contact-info { display: flex; flex-direction: column; gap: 34px; }
.contact-info__block { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid rgba(23,23,22,0.15); padding-top: 26px; }
.contact-info__block a { font-size: 16px; }
@media (max-width: 820px) { .form-row { grid-template-columns: 1fr; } .form-card { padding: 32px; } }

/* =====================================================================
   B2B page
   ===================================================================== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.info-card { background: var(--sand); padding: 38px 34px; display: flex; flex-direction: column; gap: 14px; }
.info-card .num { font-family: var(--serif); font-size: 17px; color: var(--taupe); }
.info-card h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; line-height: 1.2; color: var(--ink); }
.info-card p { font-size: 14.5px; line-height: 1.75; color: var(--on-light-body); }
.dash-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.dash-list > div { display: flex; align-items: flex-start; gap: 14px; padding: 20px 0; border-top: 1px solid rgba(151,131,99,0.35); }
.dash-list .dash { color: var(--taupe); font-size: 16px; }
.dash-list > div span:last-child { font-size: 15.5px; line-height: 1.5; color: rgba(251,250,246,0.85); }
.check-row { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.check-row input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--taupe); flex: none; }
.check-row span { font-size: 13px; line-height: 1.6; color: var(--on-light-body); }
.b2b-direct { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.b2b-direct__item { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid rgba(251,250,246,0.2); padding-top: 20px; }
.b2b-direct__item span:first-child { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }
.b2b-direct__item a, .b2b-direct__item > span:last-child { color: var(--paper); font-size: 17px; }
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } .dash-list { grid-template-columns: 1fr; } .b2b-direct { grid-template-columns: 1fr; gap: 40px; } [data-why] { grid-template-columns: 1fr !important; gap: 40px !important; } .contact-grid { grid-template-columns: 1fr !important; gap: 56px !important; } }

/* =====================================================================
   FAQ (native <details>)
   ===================================================================== */
.faq-group { display: flex; flex-direction: column; gap: 0; }
.faq-group h2 { margin: 0 0 20px; font-family: var(--serif); font-weight: 500; font-size: clamp(28px,2.8vw,38px); line-height: 1.1; color: var(--ink); }
.faq-item { border-top: 1px solid rgba(23,23,22,0.16); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 26px 0; font-family: var(--serif); font-size: 20px; line-height: 1.35; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-plus { flex: none; font-size: 26px; color: var(--taupe); transition: transform .25s ease; line-height: 1; margin-top: -2px; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { margin: -6px 0 28px; max-width: 840px; font-size: 15px; line-height: 1.8; color: var(--on-light-body); }

/* =====================================================================
   Products — chess / zigzag rows
   ===================================================================== */
.chess { display: flex; flex-direction: column; gap: 120px; }
.chess__row { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.chess__media { position: relative; padding: 0 0 24px 24px; }
.chess__media .frame { position: absolute; left: 0; bottom: 0; width: 78%; height: 78%; border: 1px solid var(--taupe); pointer-events: none; }
.chess__media .pic { position: relative; aspect-ratio: 5/4; overflow: hidden; background: var(--stone); }
.chess__media .pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.chess__row--flip .chess__media { order: 2; padding: 0 24px 24px 0; }
.chess__row--flip .chess__media .frame { left: auto; right: 0; }
/* Product carousel — the photo side of a chess row.
   Slides are stacked and cross-faded, so the frame never reflows. */
.pcar { position: relative; aspect-ratio: 4/5; background: var(--stone); overflow: hidden; }
.pcar__stage { position: absolute; inset: 0; }
.pcar__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.04);
  transition: opacity .7s var(--ease), transform 1.2s var(--ease);
  pointer-events: none;
}
.pcar__slide.is-on { opacity: 1; transform: scale(1); }
.pcar:hover .pcar__slide.is-on { transform: scale(1.03); }

.pcar__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(251,250,246,0.9); color: var(--ink); border: none;
  box-shadow: 0 8px 24px -10px rgba(23,23,22,0.5);
  opacity: 0; transition: opacity .3s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.pcar__arrow--prev { left: 16px; }
.pcar__arrow--next { right: 16px; }
.pcar:hover .pcar__arrow, .pcar__arrow:focus-visible { opacity: 1; }
.pcar__arrow:hover { background: var(--ink); color: var(--taupe); }
.pcar__arrow[hidden] { display: none; }

.pcar__badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: rgba(23,23,22,0.78); color: var(--paper);
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px; backdrop-filter: blur(6px);
}
.pcar__badge:empty { display: none; }

.pcar__dots { position: absolute; left: 0; right: 0; bottom: 16px; z-index: 3;
  display: flex; gap: 7px; justify-content: center; }
.pcar__dots button {
  width: 7px; height: 7px; padding: 0; border-radius: 50%; cursor: pointer; border: none;
  background: rgba(251,250,246,0.55); transition: all .25s ease;
}
.pcar__dots button:hover { background: var(--paper); }
.pcar__dots button.is-on { background: var(--paper); width: 22px; border-radius: 999px; }
.pcar__dots:has(button:only-child) { display: none; }

/* Product showcase — the home page slider across collections */
.pshow { display: grid; grid-template-columns: 250px 1fr;
  grid-template-areas: "tabs view" "tabs nav"; column-gap: 64px; row-gap: 30px; align-items: start; }
.pshow__tabs { grid-area: tabs; display: flex; flex-direction: column; align-items: stretch; }
.pshow__tab {
  background: transparent; cursor: pointer; width: 100%; text-align: left;
  color: var(--on-light-muted); border: 0; border-bottom: 1px solid rgba(23,23,22,0.14);
  border-radius: 0; padding: 15px 2px; font-family: var(--serif); font-size: 19px;
  font-weight: 500; line-height: 1.25; letter-spacing: 0.005em;
  transition: color .22s ease, border-color .22s ease;
}
.pshow__tab:hover { color: var(--ink); }
.pshow__tab.is-on { color: var(--taupe-dark); border-bottom-color: var(--ink); }

.pshow__viewport { grid-area: view; overflow: hidden; }
.pshow__track { display: flex; transition: transform .6s var(--ease); }
.pshow__item {
  flex: 0 0 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  opacity: .25; transition: opacity .5s var(--ease);
}
.pshow__item.is-on { opacity: 1; }
.pshow__media { position: relative; padding: 0 0 24px 24px; width: 100%; max-width: 440px;
  justify-self: end; }
.pshow__media .frame { position: absolute; left: 0; bottom: 0; width: 78%; height: 78%;
  border: 1px solid var(--taupe); pointer-events: none; }
.pshow__body { display: flex; flex-direction: column; gap: 16px; }
.pshow__body p { font-size: 16px; line-height: 1.8; color: var(--on-light-body); }

.pshow__nav { grid-area: nav; display: flex; align-items: center; justify-content: center; gap: 22px; }
.pshow__arrow {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--ink); border: 1px solid rgba(23,23,22,0.25);
  transition: all .22s ease;
}
.pshow__arrow:hover { background: var(--ink); color: var(--taupe); border-color: var(--ink); }
.pshow__count { font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--on-light-muted); min-width: 62px; text-align: center; }

@media (max-width: 900px) {
  .pshow { grid-template-columns: 1fr; grid-template-areas: "tabs" "view" "nav"; row-gap: 22px; }
  .pshow__item { grid-template-columns: 1fr; gap: 28px; }
  .pshow__media { padding: 0 0 18px 18px; justify-self: start; max-width: 380px; }
  .pshow__tabs { flex-direction: row; flex-wrap: nowrap; overflow-x: auto; gap: 0 20px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .pshow__tabs::-webkit-scrollbar { display: none; }
  .pshow__tab { flex: 0 0 auto; width: auto; white-space: nowrap; font-size: 16px; padding: 10px 2px; }
}

/* Size chips — selecting one drives the carousel */
.sizes { display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid rgba(23,23,22,0.14); padding-top: 20px; margin-top: 2px; }
.sizes__label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--on-light-muted); }
.sizes__row { display: flex; flex-wrap: wrap; gap: 9px; }
.size-chip {
  background: transparent; color: var(--ink); cursor: pointer;
  border: 1px solid rgba(23,23,22,0.3); border-radius: 999px;
  padding: 10px 20px; font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; transition: all .22s ease;
}
.size-chip:hover { border-color: var(--ink); background: var(--ink); color: var(--taupe); }
.size-chip.is-on { background: var(--taupe); border-color: var(--taupe); color: var(--paper); }

.chess__body { display: flex; flex-direction: column; gap: 18px; }
.chess__body .desc { font-size: 16px; line-height: 1.8; color: var(--on-light-body); }
.chess__specs { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-light-muted); border-top: 1px solid rgba(23,23,22,0.14); padding-top: 18px; }
.chess__body .btn { align-self: flex-start; margin-top: 8px; }
@media (max-width: 900px) {
  .chess { gap: 72px; }
  .chess__row, .chess__row--flip { grid-template-columns: 1fr; gap: 32px; }
  .chess__row--flip .chess__media { order: 0; padding: 0 0 18px 18px; }
  .chess__row--flip .chess__media .frame { left: 0; right: auto; }
  .chess__media { padding: 0 0 18px 18px; }
  .pcar { aspect-ratio: 1/1; }
  .pcar__arrow { opacity: 1; width: 40px; height: 40px; }
  .pcar__arrow--prev { left: 10px; }
  .pcar__arrow--next { right: 10px; }
}

/* =====================================================================
   Article / recipe (single post)
   ===================================================================== */
.article__meta { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); }
.article__meta .cat { color: var(--taupe); }
.article__meta .dot { color: rgba(251,250,246,0.35); }
.article__lead { width: var(--container); margin: -70px auto 0; position: relative; z-index: 2; }
.article__lead .pic { position: relative; aspect-ratio: 21/9; overflow: hidden; background: var(--stone); box-shadow: 0 40px 80px -40px rgba(23,23,22,0.5); }
.article__lead .pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article__body { padding: 70px 0 40px; display: flex; flex-direction: column; gap: 4px; }
.article__body > p { font-size: 17px; line-height: 1.85; color: var(--on-light-strong); margin: 0 0 22px; }
.article__body h2 { font-family: var(--serif); font-weight: 500; font-size: 30px; line-height: 1.25; color: var(--ink); margin: 26px 0 14px; }
.article__body h3 { font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: 0.02em; color: var(--ink); margin: 18px 0 6px; }
.article__body ul, .article__body ol { margin: 0 0 22px; padding-left: 24px; }
.article__body li { font-size: 16.5px; line-height: 1.8; color: var(--on-light-body); margin-bottom: 8px; }
.article__body blockquote { margin: 8px 0 26px; padding: 4px 0 4px 26px; border-left: 2px solid var(--taupe); font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.55; color: rgba(23,23,22,0.85); }
.article__body .lead-in { font-size: 19px; line-height: 1.8; color: var(--ink); }
.recipe-facts { display: flex; flex-wrap: wrap; gap: 28px 40px; padding: 22px 0; border-top: 1px solid rgba(23,23,22,0.14); border-bottom: 1px solid rgba(23,23,22,0.14); margin-bottom: 30px; }
.recipe-facts div { display: flex; flex-direction: column; gap: 4px; }
.recipe-facts span { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-light-muted); }
.recipe-facts b { font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--ink); }
.article__foot { border-top: 1px solid rgba(23,23,22,0.12); margin-top: 30px; padding-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
@media (max-width: 820px) {
  .article__lead { margin-top: -40px; }
  .article__lead .pic { aspect-ratio: 16/10; }
  .article__body { padding: 48px 0 30px; }
  .article__body h2 { font-size: 26px; }
}

/* =====================================================================
   Legal pages
   ===================================================================== */
.legal { display: flex; flex-direction: column; gap: 36px; }
.legal .updated { font-size: 13px; color: var(--on-light-muted); letter-spacing: 0.04em; }
.legal__block h2 { font-family: var(--serif); font-weight: 500; font-size: 26px; line-height: 1.25; color: var(--ink); margin-bottom: 14px; }
.legal__block h3 { font-family: var(--sans); font-weight: 700; font-size: 14px; letter-spacing: 0.02em; text-transform: none; color: var(--ink); margin: 20px 0 8px; }
.legal__block p, .legal__block li { font-size: 15.5px; line-height: 1.8; color: var(--on-light-body); }
.legal__block p { margin-bottom: 12px; }
.legal__block ul { margin: 6px 0 12px; padding-left: 22px; }
.legal__block li { margin-bottom: 6px; }
.legal__block a { color: var(--taupe); text-decoration: underline; }
.legal__id { background: var(--sand); padding: 26px 30px; font-size: 14.5px; line-height: 1.8; color: var(--on-light-strong); }
.legal__id strong { color: var(--ink); }

/* =====================================================================
   Reveal on scroll (IntersectionObserver)
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1100px) {
  :root { --container: min(1680px, calc(100% - 64px)); }
  .grid-3 { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 980px) {
  .taste { grid-template-columns: 1fr; }
  .taste__media { min-height: 460px; }
  .taste__panel { padding: 90px 32px; }
  .process { grid-template-columns: 1fr 1fr; gap: 44px 28px; }
  .process__arrow { display: none; }
  .taste__bar__desc { padding-left: 0; }
  .quality-grid { grid-template-columns: 1fr; gap: 48px; }
  .quality-media { padding: 20px 20px 0 0; max-width: 560px; }
}
@media (max-width: 820px) {
  .section { padding: 110px 0; }
  .subhero { padding: 168px 0 90px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .hero__stack .h1 { font-size: clamp(34px, 8vw, 52px); }
  .site-header__logo img { height: 50px; }
  .icon-btn { width: 44px; height: 44px; }
  .section-head { margin-bottom: 56px; }
  .intro-grid { grid-template-columns: 1fr !important; gap: 56px !important; }
  .awards-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .recipes-head { flex-direction: column; align-items: flex-start !important; gap: 24px; }
  .section[style*="190px"], .section[style*="180px"] { padding-top: 110px !important; padding-bottom: 110px !important; }
  .final-cta { padding: 130px 0 110px !important; }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; }
  .quality-features { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --container: min(1680px, calc(100% - 40px)); }
  .site-footer__grid { grid-template-columns: 1fr; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .btn { padding: 15px 26px; }
}

/* =====================================================================
   E-shop — catalogue, filters, product grid
   ===================================================================== */
.btn--outline-ink { background: transparent; color: var(--ink); border-color: rgba(23,23,22,0.35); font-weight: 700; }
.btn--outline-ink:hover { background: var(--ink); color: var(--taupe); border-color: var(--ink); }

/* position: sticky needs no clipping ancestor — .section hides overflow. */
.section--flow { overflow: visible; }

.shop__trust { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.shop__trust li { position: relative; padding-left: 20px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-muted); }
.shop__trust li::before { content: ''; position: absolute; left: 0; top: 50%; width: 7px; height: 7px; margin-top: -3px; border-radius: 50%; background: var(--taupe); }

.shop { display: grid; grid-template-columns: 282px 1fr; gap: 64px; align-items: start; }
.shop__mobile-btn { display: none; }

.shop__side { position: sticky; top: calc(var(--header-h) + 28px); }
.shop__side-head { display: none; }
.shop__filters { display: flex; flex-direction: column; gap: 34px; }
.fgroup { display: flex; flex-direction: column; gap: 14px; border-top: 1px solid rgba(23,23,22,0.16); padding-top: 20px; }
.fgroup h3 { margin: 0; font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); }
.fgroup__rows { display: flex; flex-direction: column; gap: 2px; }
.fchk { display: flex; align-items: center; gap: 11px; cursor: pointer; padding: 6px 0; }
.fchk input { width: 17px; height: 17px; flex: none; accent-color: var(--taupe); cursor: pointer; margin: 0; }
.fchk span { flex: 1; font-size: 14.5px; color: var(--on-light-body); transition: color 0.2s ease; }
.fchk:hover span { color: var(--ink); }
.fchk input:checked + span { color: var(--ink); font-weight: 600; }
.fchk i { font-style: normal; font-size: 11.5px; font-weight: 700; color: var(--on-light-muted); }
.shop__clear { align-self: flex-start; background: none; border: none; padding: 0; cursor: pointer; font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); border-bottom: 1px solid currentColor; }
.shop__clear:hover { color: var(--ink); }

.shop__toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(23,23,22,0.16); padding-bottom: 18px; margin-bottom: 40px; }
.shop__count { font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-light-muted); }
.shop__sort { display: flex; align-items: center; gap: 12px; }
.shop__sort > span { font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-light-muted); }
.shop__sort select { background: transparent; border: 1px solid rgba(23,23,22,0.25); border-radius: 999px; padding: 9px 16px; font-family: var(--sans); font-size: 13.5px; color: var(--ink); cursor: pointer; outline: none; }
.shop__sort select:focus { border-color: var(--taupe); }

.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 30px; }
.pcard { display: flex; flex-direction: column; background: var(--card-cream); border: 1px solid rgba(23,23,22,0.08); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.pcard:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(23,23,22,0.12); }
.pcard__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--stone); }
.pcard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.04); }
.pcard__note { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(23,23,22,0.72); color: var(--paper); font-size: 10.5px; letter-spacing: 0.06em; padding: 7px 12px; text-align: center; }
.pcard__body { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 26px 26px 28px; }
.pcard__eyebrow { font-size: 10px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); }
.pcard__name { margin: 0; font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1.22; color: var(--ink); }
.pcard__desc { margin: 0; font-size: 13.5px; line-height: 1.65; color: var(--on-light-body); }
.pcard__foot { margin-top: auto; padding-top: 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.pcard__price { display: flex; flex-direction: column; gap: 3px; }
.pcard__price b { font-size: 25px; font-weight: 500; color: var(--ink); line-height: 1; }
.pcard__price span { font-size: 11px; color: var(--on-light-muted); }
.pcard__add { background: var(--taupe); color: var(--paper); border: 1px solid var(--taupe); border-radius: 999px; cursor: pointer; padding: 12px 20px; font-family: var(--sans); font-size: 10.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; transition: all 0.25s ease; }
.pcard__add:hover { background: var(--ink); color: var(--taupe); border-color: var(--ink); }

.shop__empty { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; padding: 100px 0; }
.shop__empty b { font-family: var(--serif); font-size: 27px; font-weight: 500; color: var(--ink); }
.shop__empty span { font-size: 14.5px; color: var(--on-light-muted); }

.shop__notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px; }
.shop__notes h3 { margin: 0 0 12px; font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--ink); }
.shop__notes p { margin: 0; font-size: 14.5px; line-height: 1.75; color: var(--on-light-body); }
.shop__notes .btn { margin-top: 20px; }

.cart-line__thumb { width: 64px; height: 80px; object-fit: cover; flex: none; background: var(--stone); }

/* =====================================================================
   Checkout
   ===================================================================== */
.subhero--slim { padding: 176px 0 66px; }
.subhero--slim .h1 { font-size: clamp(38px, 3.4vw, 52px); }

.ck { display: grid; grid-template-columns: 1fr 440px; gap: 72px; align-items: start; }
.ck__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.ck__form { display: flex; flex-direction: column; gap: 44px; }
.ck__set { border: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.ck__set legend { padding: 0 0 20px; font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--ink); border-bottom: 1px solid rgba(23,23,22,0.16); width: 100%; margin-bottom: 4px; }
.ck__choices { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ck__choice { display: flex; align-items: flex-start; gap: 13px; border: 1px solid rgba(23,23,22,0.22); padding: 18px 20px; cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease; }
.ck__choice:hover { border-color: var(--taupe); }
.ck__choice input { margin-top: 3px; width: 17px; height: 17px; flex: none; accent-color: var(--taupe); }
.ck__choice:has(input:checked) { border-color: var(--taupe); background: rgba(151,131,99,0.07); }
.ck__choice span { display: flex; flex-direction: column; gap: 4px; }
.ck__choice b { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.ck__choice small { font-size: 12.5px; line-height: 1.5; color: var(--on-light-muted); }
.ck__error { margin: 0; background: rgba(151,131,99,0.12); border-left: 3px solid var(--taupe); padding: 16px 20px; font-size: 14px; color: var(--ink); }

.ck__sum { position: sticky; top: calc(var(--header-h) + 28px); background: var(--sand); padding: 36px 34px 34px; display: flex; flex-direction: column; gap: 20px; }
.ck__sum h2 { margin: 0; font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--ink); }
.ck__lines { display: flex; flex-direction: column; max-height: 42vh; overflow-y: auto; }
.ck__line { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(23,23,22,0.14); }
.ck__line:first-child { border-top: none; padding-top: 0; }
.ck__line img, .ck__line-noimg { width: 58px; height: 72px; object-fit: cover; flex: none; background: var(--stone); }
.ck__line-main { flex: 1; min-width: 0; }
.ck__line-name { font-size: 14.5px; line-height: 1.4; color: var(--ink); }
.ck__line-size { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-top: 5px; }
.ck__line-controls { display: flex; align-items: center; }
.ck__line-total { font-size: 15px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.ck__totals { border-top: 1px solid rgba(23,23,22,0.2); padding-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.ck__row { display: flex; align-items: baseline; justify-content: space-between; font-size: 13.5px; color: var(--on-light-body); }
.ck__row b { font-size: 15px; font-weight: 600; color: var(--ink); }
.ck__row--total { border-top: 1px solid rgba(23,23,22,0.2); padding-top: 14px; margin-top: 4px; }
.ck__row--total span { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-light-muted); }
.ck__row--total b { font-size: 27px; font-weight: 500; }

.ck__empty, .ck__done { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; padding: 90px 0 60px; max-width: 700px; margin: 0 auto; }
.ck__empty b { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--ink); }
.ck__empty span { font-size: 15px; color: var(--on-light-muted); }
.ck__done p { font-size: 15.5px; line-height: 1.8; color: var(--on-light-body); }
.ck__done-ref { font-size: 13px !important; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-light-muted) !important; }
.ck__done-ref b { display: block; margin-top: 8px; font-family: var(--serif); font-size: 30px; letter-spacing: 0.02em; text-transform: none; color: var(--taupe); }
.ck__done-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 12px; }

/* ---------- Shop & checkout responsive ---------- */
@media (max-width: 1400px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
  .shop { grid-template-columns: 240px 1fr; gap: 44px; }
  .ck { grid-template-columns: 1fr 380px; gap: 48px; }
}
@media (max-width: 900px) {
  .shop { grid-template-columns: 1fr; gap: 0; }
  .shop__mobile-btn {
    display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
    background: var(--ink); color: var(--paper); border: none; border-radius: 999px;
    cursor: pointer; padding: 14px 28px; margin-bottom: 26px;
    font-family: var(--sans); font-size: 11.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  }
  .shop__side {
    position: fixed; inset: 0 auto 0 0; z-index: 220; width: min(340px, 88vw);
    background: var(--paper); box-shadow: 24px 0 60px rgba(23,23,22,0.3);
    transform: translateX(-100%); transition: transform 0.45s var(--ease);
    display: flex; flex-direction: column; overflow-y: auto; padding: 0 26px 32px;
  }
  .shop__side.open { transform: translateX(0); }
  .shop__side-head { display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: var(--paper); padding: 24px 0 18px; border-bottom: 1px solid rgba(23,23,22,0.14); margin-bottom: 24px; }
  .shop__side-head span { font-size: 12px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; }
  .shop__side-close { background: none; border: none; cursor: pointer; font-size: 28px; line-height: 1; color: var(--ink); padding: 0 4px; }
  .fgroup:first-child { border-top: none; padding-top: 0; }
  .shop__notes { grid-template-columns: 1fr; gap: 36px; }
  .ck { grid-template-columns: 1fr; gap: 48px; }
  .ck__sum { position: static; order: -1; }
  .ck__lines { max-height: none; }
}
@media (max-width: 620px) {
  .pgrid { grid-template-columns: 1fr; }
  .shop__toolbar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .pcard__foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pcard__add { width: 100%; text-align: center; }
  .ck__choices { grid-template-columns: 1fr; }
  .ck__sum { padding: 28px 22px; }
}

.ck__bank { width: 100%; max-width: 520px; margin-top: 10px; background: var(--sand); padding: 28px 30px; text-align: left; }
.ck__bank h3 { margin: 0 0 18px; font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); }
.ck__bank dl { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.ck__bank dl > div { display: grid; grid-template-columns: 150px 1fr; gap: 14px; align-items: baseline; }
.ck__bank dt { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-light-muted); }
.ck__bank dd { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--ink); word-break: break-word; }
.ck__bank p { margin: 18px 0 0; font-size: 12.5px !important; line-height: 1.6; color: var(--on-light-muted) !important; }
@media (max-width: 560px) { .ck__bank dl > div { grid-template-columns: 1fr; gap: 3px; } }

/* Sold-out and sale states on shop cards */
.pcard.is-soldout .pcard__media img { filter: grayscale(0.7); opacity: 0.75; }
.pcard__soldout { display: inline-block; border: 1px solid rgba(23,23,22,0.25); border-radius: 999px; padding: 12px 20px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-light-muted); white-space: nowrap; }
.pcard__price b s { margin-left: 8px; font-size: 15px; font-weight: 400; color: var(--on-light-muted); }

/* Checkout coupon + VAT rows */
.ck__coupon { display: flex; gap: 8px; }
.ck__coupon input { flex: 1; text-transform: uppercase; }
.ck__coupon .btn { flex: none; align-self: center; }
.ck__coupon-note { margin: 0; font-size: 12.5px; }
.ck__coupon-note.is-ok { color: #3f6d4e; }
.ck__coupon-note.is-bad { color: #9d3b32; }
.ck__row--vat span, .ck__row--vat b { font-size: 11.5px !important; font-weight: 400 !important; color: var(--on-light-muted) !important; }

/* Account page */
.acc__tabs { display: flex; gap: 10px; margin-bottom: 26px; }
.acc__tab { background: transparent; border: 1px solid rgba(23,23,22,0.25); border-radius: 999px; cursor: pointer; padding: 12px 26px; font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); }
.acc__tab.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.panel-plain { border-top: 1px solid rgba(23,23,22,0.16); padding: 34px 0 40px; }
.acc__h { margin: 0 0 20px; font-family: var(--serif); font-weight: 500; font-size: 25px; color: var(--ink); }
.acc__order, .acc__addr { display: flex; justify-content: space-between; gap: 24px; padding: 18px 0; border-bottom: 1px solid rgba(23,23,22,0.1); font-size: 14.5px; }
.acc__order-date { margin-left: 12px; font-size: 12px; color: var(--on-light-muted); }
.acc__order-items { margin-top: 8px; font-size: 13px; line-height: 1.6; color: var(--on-light-body); }
.acc__order-side { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; white-space: nowrap; }
.acc__order-status { font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); }
.js-acc-out .form-card { max-width: 560px; }

/* Checkout: shipping notice + locker + COD */
.ck__notice { margin: 12px 0 0; background: rgba(151,131,99,0.12); border-left: 3px solid var(--taupe); padding: 12px 16px; font-size: 13.5px; color: var(--ink); }
.js-ck-locker { margin-top: 16px; }
.ck__row--vat + .ck__row, .js-ck-cod-row b { font-weight: 600; }
