:root {
  --ivory: #fbf7f0;
  --paper: #fffdf9;
  --wine: #681a36;
  --wine-dark: #451022;
  --wine-soft: #8b3150;
  --ink: #24191d;
  --muted: #675a5f;
  --gold: #a77a2d;
  --gold-light: #d8af73;
  --blush: #ead6dc;
  --soft: #f4ece7;
  --line: #ddd2c9;
  --green: #245c4a;
  --shadow: 0 20px 60px rgba(69, 16, 34, 0.13);
  --shell: min(1240px, calc(100vw - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::selection { background: var(--blush); color: var(--wine-dark); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
h1, h2, h3, p, figure, dl, dd { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
h1 { font-size: clamp(3.2rem, 6vw, 6.4rem); }
h2 { font-size: clamp(2.2rem, 4vw, 4.25rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
code { padding: .15rem .35rem; border-radius: .25rem; background: var(--soft); font-size: .88em; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(5rem, 8vw, 9rem); }
.section-soft { background: var(--soft); }
.narrow-section { max-width: 940px; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  border: 2px solid var(--wine);
  background: white;
}
.skip-link:focus { transform: none; }
.eyebrow {
  margin-bottom: 1rem;
  color: var(--wine);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-light { color: #edcda7; }

.announcement {
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .85rem;
  padding: .45rem 1.25rem;
  background: var(--wine-dark);
  color: #f9e9de;
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.announcement-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold-light); }
.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(104, 26, 54, .12);
  background: rgba(251, 247, 240, .94);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { width: 228px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.8rem); }
.desktop-nav a {
  position: relative;
  font-size: .78rem;
  font-weight: 750;
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.5rem;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.shortlist-link { font-size: .75rem; font-weight: 800; white-space: nowrap; }
.shortlist-link > span {
  min-width: 1.55rem;
  height: 1.55rem;
  display: inline-grid;
  place-items: center;
  margin-left: .25rem;
  padding-inline: .25rem;
  border-radius: 999px;
  background: var(--wine);
  color: white;
  font-size: .68rem;
}
.round-action, .menu-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  background: transparent;
}
.round-action svg { width: 20px; fill: var(--wine); }
.menu-toggle { display: none; cursor: pointer; }
.menu-toggle span { width: 18px; height: 1.5px; background: var(--wine); transition: transform .2s ease; }
.menu-toggle span + span { margin-top: -11px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-nav { padding: .5rem 0 1.25rem; grid-template-columns: repeat(2, 1fr); gap: 0 2rem; }
.mobile-nav a { min-height: 52px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 1.08rem; }

.button-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.center-row { justify-content: center; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-align: center;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg, .text-link svg { width: 17px; fill: currentColor; flex: 0 0 auto; }
.button-primary { background: var(--wine); color: white; }
.button-primary:hover { background: var(--wine-dark); }
.button-outline { border-color: var(--wine); background: transparent; color: var(--wine); }
.button-outline:hover { background: var(--wine); color: white; }
.button-light { background: var(--paper); color: var(--wine-dark); }
.button-ghost-light { border-color: rgba(255,255,255,.5); background: transparent; color: white; }
.text-link { display: inline-flex; align-items: center; gap: .35rem; padding-bottom: .15rem; border-bottom: 1px solid rgba(104, 26, 54, .35); color: var(--wine); font-size: .82rem; font-weight: 800; }
.text-button { border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--wine); cursor: pointer; font-size: .78rem; font-weight: 800; }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid #d4a52d;
  outline-offset: 3px;
}

.hero {
  min-height: calc(100svh - 120px);
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(4rem, 7vw, 7rem);
}
.hero-copy h1 { max-width: 720px; margin-bottom: 1.55rem; }
.hero-lead { max-width: 650px; margin-bottom: 1.8rem; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.75; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .6rem 1.35rem; margin: 2rem 0 0; padding: 0; color: var(--muted); list-style: none; font-size: .75rem; font-weight: 700; }
.hero-proof li::before { content: "◆"; margin-right: .45rem; color: var(--gold); font-size: .55rem; }
.hero-visual { position: relative; min-height: 650px; }
.hero-product {
  position: absolute;
  inset: 0 15% 8% 0;
  margin: 0;
  overflow: hidden;
  background: #1c1719;
  box-shadow: var(--shadow);
}
.hero-product img { width: 100%; height: 100%; object-fit: contain; }
.hero-product figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(36, 25, 29, .86);
  color: white;
  backdrop-filter: blur(8px);
  font-family: Georgia, serif;
  font-size: 1.1rem;
}
.hero-product figcaption span { display: block; margin-bottom: .15rem; color: var(--gold-light); font-family: Inter, sans-serif; font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; }
.hero-store {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 39%;
  height: 43%;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--ivory);
  background: #ddd;
  box-shadow: var(--shadow);
}
.hero-store img { width: 100%; height: 100%; object-fit: cover; }
.hero-store figcaption { position: absolute; inset: auto 0 0; padding: .7rem; background: rgba(69,16,34,.91); color: white; font-size: .63rem; font-weight: 800; text-align: center; }
.hero-seal {
  position: absolute;
  top: 3%;
  right: 2%;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid white;
  border-radius: 50%;
  background: var(--wine);
  color: white;
  font-family: Georgia, serif;
  font-size: .92rem;
  line-height: 1.25;
  text-align: center;
}
.clarity-band { background: var(--wine); color: white; }
.clarity-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.clarity-grid > div { min-height: 130px; display: grid; align-content: center; padding: 1.6rem; border-right: 1px solid rgba(255,255,255,.18); }
.clarity-grid > div:last-child { border-right: 0; }
.clarity-grid span { color: var(--gold-light); font-size: .62rem; font-weight: 800; }
.clarity-grid strong { font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.clarity-grid small { color: #e3cdd4; font-size: .7rem; }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: clamp(2rem, 7vw, 7rem); margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.split-heading h2 { max-width: 780px; margin-bottom: 0; }
.split-heading > p { max-width: 560px; margin-bottom: .45rem; color: var(--muted); }
.split-heading.align-end > :last-child { justify-self: end; }
.collection-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 1.2rem; }
.collection-card { position: relative; min-height: 520px; overflow: hidden; background: #20181b; box-shadow: var(--shadow); }
.collection-card img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .5s ease, opacity .3s ease; }
.collection-card:hover img { transform: scale(1.03); opacity: .68; }
.collection-card > span { position: absolute; inset: auto 0 0; padding: 2rem; background: linear-gradient(transparent, rgba(24,11,17,.88)); color: white; }
.collection-card small { display: block; color: #e6bd80; font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.collection-card strong { display: block; font-family: Georgia, serif; font-size: clamp(1.7rem, 2.5vw, 2.8rem); font-weight: 500; line-height: 1.05; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); background: var(--paper); box-shadow: 0 10px 30px rgba(69,16,34,.05); }
.product-card-media { aspect-ratio: 1 / 1; display: block; overflow: hidden; background: #211a1d; }
.product-card-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-card-media img { transform: scale(1.025); }
.product-card-body { padding: 1.25rem; }
.product-kicker { margin-bottom: .55rem; color: var(--wine); font-size: .61rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.product-card h3 { margin-bottom: .65rem; font-size: clamp(1.28rem, 1.8vw, 1.7rem); }
.product-card-body > p:not(.product-kicker) { min-height: 2.4em; margin-bottom: 1.05rem; color: var(--muted); font-size: .73rem; line-height: 1.55; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-top: .85rem; border-top: 1px solid var(--line); }
.product-card-footer > span { color: var(--muted); font-size: .61rem; font-weight: 750; }
.shortlist-button { min-height: 38px; display: inline-flex; align-items: center; gap: .35rem; padding: .45rem .65rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--wine); cursor: pointer; font-size: .67rem; font-weight: 800; }
.shortlist-button svg { width: 17px; fill: currentColor; }
.shortlist-button[aria-pressed="true"] { border-color: var(--wine); background: var(--wine); color: white; }
.empty-state { padding: clamp(3rem, 8vw, 7rem); border: 1px solid var(--line); background: var(--paper); text-align: center; }
.empty-state h2 { margin-bottom: 1rem; }
.empty-state p { color: var(--muted); }

.process-preview { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.process-intro { position: sticky; top: 150px; }
.process-intro h2 { margin-bottom: 1.35rem; }
.process-intro > p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.process-steps article { display: grid; grid-template-columns: 74px 1fr; gap: 1.5rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.process-steps article:last-child { border-bottom: 1px solid var(--line); }
.process-steps article > span { color: var(--gold); font-family: Georgia, serif; font-size: 2rem; }
.process-steps h3 { margin-bottom: .55rem; font-size: 1.8rem; }
.process-steps p { margin-bottom: 0; color: var(--muted); }
.store-story { min-height: 720px; display: grid; grid-template-columns: 1.08fr .92fr; background: var(--wine-dark); color: white; }
.store-story-media { position: relative; min-height: 640px; overflow: hidden; }
.store-story-media > img { width: 100%; height: 100%; object-fit: cover; }
.store-inset { position: absolute; right: 2rem; bottom: 2rem; width: 38%; height: 42%; overflow: hidden; border: 8px solid var(--wine-dark); }
.store-inset img { width: 100%; height: 100%; object-fit: cover; }
.store-story-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.store-story-copy h2 { margin-bottom: 1.5rem; }
.store-story-copy > p:not(.eyebrow) { color: #ead8dc; }
.store-story-copy dl { margin: 1.8rem 0 2.2rem; }
.store-story-copy dl > div { display: grid; grid-template-columns: 78px 1fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.2); }
.store-story-copy dl > div:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.store-story-copy dt { color: #e9bd85; font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.store-story-copy dd { margin: 0; color: #f9efeb; font-size: .82rem; }

.faq-list { margin-bottom: 2rem; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; align-items: center; gap: 1.4rem; padding: 1.45rem 2.3rem 1.45rem .1rem; cursor: pointer; list-style: none; font-family: Georgia, serif; font-size: clamp(1.1rem, 1.8vw, 1.45rem); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .2rem; color: var(--wine); font-family: Inter, sans-serif; font-size: 1.35rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list summary span { color: var(--gold); font-family: Inter, sans-serif; font-size: .65rem; font-weight: 800; }
.faq-list details > div { max-width: 840px; padding: 0 2rem 1.45rem 2.75rem; color: var(--muted); }
.faq-list details p { margin: 0; }

.closing-cta { padding-block: clamp(5rem, 8vw, 8rem); background: var(--wine); color: white; text-align: center; }
.closing-inner h2 { max-width: 920px; margin: 0 auto 2rem; }
.site-footer { padding-top: clamp(4rem, 7vw, 7rem); background: #22161b; color: white; }
.footer-top { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(4rem, 9vw, 9rem); padding-bottom: 4.5rem; }
.footer-brand h2 { margin-bottom: 1.25rem; font-size: clamp(2.35rem, 4vw, 4rem); }
.footer-brand > p:not(.eyebrow) { max-width: 530px; margin-bottom: 1.8rem; color: #d9c7ce; }
.footer-links { display: grid; grid-template-columns: .9fr 1.1fr 1.25fr; gap: 2rem; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; }
.footer-heading { margin-bottom: .3rem; color: #e6b878; font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a, .footer-links p:not(.footer-heading) { margin: 0; color: #d9c7ce; font-size: .75rem; }
.footer-links a:hover { color: white; }
.footer-contact { line-height: 1.65; }
.footer-bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); color: #ab969e; font-size: .61rem; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 1rem; }
.mobile-quick-actions { display: none; }

.breadcrumbs { padding-top: 1.15rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .35rem .65rem; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .67rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .65rem; color: var(--gold); }
.breadcrumbs a { border-bottom: 1px solid transparent; }
.breadcrumbs a:hover { border-color: currentColor; }
.page-hero { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: clamp(2rem, 7vw, 7rem); padding-block: clamp(4.5rem, 8vw, 8rem); }
.page-hero h1 { max-width: 850px; margin-bottom: 1.3rem; }
.page-lead { max-width: 790px; margin-bottom: 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.page-aside { max-width: 480px; margin-bottom: .25rem; padding: 1.25rem 0 1.25rem 1.25rem; border-left: 2px solid var(--gold); color: var(--muted); font-size: .84rem; }

.catalogue-tools { margin-bottom: 1.5rem; }
.catalogue-form { display: grid; grid-template-columns: 1fr 280px auto; align-items: end; gap: .85rem; padding: 1.25rem; border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.field { display: grid; gap: .4rem; }
.field label { color: var(--muted); font-size: .64rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.field input, .field select { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 0; background: white; color: var(--ink); }
.field select { padding: 0 .8rem; }
.search-control { position: relative; }
.search-control svg { position: absolute; top: 50%; left: .9rem; width: 18px; fill: var(--wine); transform: translateY(-50%); }
.search-control input { padding: 0 1rem 0 2.8rem; }
.catalogue-jump-links { display: flex; flex-wrap: wrap; gap: .55rem; padding-top: 1rem; }
.catalogue-jump-links a { padding: .5rem .75rem; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--muted); font-size: .68rem; font-weight: 750; }
.catalogue-jump-links a[aria-current="page"] { border-color: var(--wine); background: var(--wine); color: white; }
.catalogue-section { padding-top: 2.8rem; }
.results-heading { display: flex; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.4rem; color: var(--muted); font-size: .75rem; }
.results-heading p { margin: 0; }
.answer-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 7vw, 7rem); margin-top: 1rem; margin-bottom: clamp(5rem, 9vw, 9rem); padding: clamp(2rem, 5vw, 4.5rem); border: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
.answer-panel h2 { margin-bottom: 0; font-size: clamp(2rem, 3.6vw, 3.8rem); }
.answer-panel > div:last-child > p { color: var(--muted); }

.product-detail { display: grid; grid-template-columns: 1.05fr .95fr; align-items: start; gap: clamp(2.5rem, 7vw, 7rem); padding-block: clamp(2.5rem, 5vw, 5rem) clamp(5rem, 8vw, 8rem); }
.product-gallery { min-width: 0; }
.gallery-main { aspect-ratio: 1 / 1; overflow: hidden; background: #20191c; box-shadow: var(--shadow); }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: .65rem; margin-top: .75rem; overflow-x: auto; padding: .2rem .2rem .5rem; }
.gallery-thumbs button { flex: 0 0 84px; aspect-ratio: 1; padding: 0; overflow: hidden; border: 2px solid transparent; background: #20191c; cursor: pointer; }
.gallery-thumbs button[aria-pressed="true"] { border-color: var(--wine); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-info { position: sticky; top: 130px; }
.product-info h1 { margin-bottom: 1rem; font-size: clamp(2.8rem, 5vw, 5.1rem); }
.product-sku { margin-bottom: 1.25rem; color: var(--muted); font-size: .72rem; }
.product-lead { margin-bottom: 1.6rem; color: var(--muted); font-size: 1rem; }
.product-facts { margin: 0 0 1.3rem; }
.product-facts > div { display: grid; grid-template-columns: 140px 1fr; gap: 1rem; padding: .9rem 0; border-top: 1px solid var(--line); }
.product-facts > div:last-child { border-bottom: 1px solid var(--line); }
.product-facts dt { color: var(--wine); font-size: .63rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-facts dd { margin: 0; font-size: .8rem; }
.accuracy-note { padding: .9rem 1rem; border-left: 3px solid var(--gold); background: var(--soft); color: var(--muted); font-size: .7rem; }
.product-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.4rem; }
.cta-note { margin-top: .75rem; color: var(--muted); font-size: .68rem; }
.product-clarity { padding-block: clamp(3.5rem, 6vw, 6rem); }
.clarity-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.clarity-cards article { padding: 1.5rem; background: var(--paper); }
.clarity-cards span { color: var(--gold); font-size: .63rem; font-weight: 800; }
.clarity-cards h2 { margin: .25rem 0 .7rem; font-size: 1.65rem; }
.clarity-cards p { margin: 0; color: var(--muted); font-size: .73rem; }
.product-next { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 7vw, 7rem); }
.product-next h2 { margin-bottom: 0; }
.product-next ol { margin: 0; padding: 0; list-style: none; }
.product-next li { display: grid; grid-template-columns: 42px 1fr; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.product-next li:last-child { border-bottom: 1px solid var(--line); }
.product-next li > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--wine); color: white; font-size: .7rem; }
.product-next p { margin: 0; color: var(--muted); font-size: .82rem; }

.numbered-journey { max-width: 1040px; }
.numbered-journey article { display: grid; grid-template-columns: 120px 1fr; gap: 2rem; padding: 2.2rem 0; border-top: 1px solid var(--line); }
.numbered-journey article:last-child { border-bottom: 1px solid var(--line); }
.numbered-journey article > span { color: var(--gold); font-family: Georgia, serif; font-size: 3rem; }
.numbered-journey h2 { margin-bottom: .75rem; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.numbered-journey p { max-width: 760px; margin-bottom: .55rem; color: var(--muted); }
.numbered-journey a { color: var(--wine); font-size: .78rem; font-weight: 800; border-bottom: 1px solid currentColor; }
.store-contact { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; margin-bottom: clamp(5rem, 8vw, 8rem); background: var(--paper); box-shadow: var(--shadow); }
.store-contact-card { padding: clamp(2rem, 5vw, 5rem); }
.store-contact-card h2 { margin-bottom: .9rem; font-size: clamp(2rem, 3.5vw, 3.5rem); }
.store-contact-card > p:not(.eyebrow):not(.cta-note) { color: var(--muted); }
.store-contact-card dl { margin: 1.5rem 0 1.8rem; }
.store-contact-card dl > div { display: grid; grid-template-columns: 80px 1fr; gap: .8rem; padding: .8rem 0; border-top: 1px solid var(--line); }
.store-contact-card dl > div:last-child { border-bottom: 1px solid var(--line); }
.store-contact-card dt { color: var(--wine); font-size: .64rem; font-weight: 800; text-transform: uppercase; }
.store-contact-card dd { margin: 0; font-size: .82rem; }
.store-contact > figure { min-height: 620px; margin: 0; overflow: hidden; }
.store-contact > figure img { width: 100%; height: 100%; object-fit: cover; }
.store-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: .8rem; }
.store-gallery img { width: 100%; height: 100%; object-fit: cover; }
.store-gallery img:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.store-gallery img:nth-child(2) { grid-column: span 5; }
.store-gallery img:nth-child(3) { grid-column: span 5; }
.store-gallery img:nth-child(n+4) { grid-column: span 4; }
.service-area-grid, .delivery-grid, .principles-grid, .editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-area-grid article, .delivery-grid article, .principles-grid article, .editorial-grid article { padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid var(--line); background: var(--paper); }
.service-area-grid h2, .delivery-grid h2, .principles-grid h2, .editorial-grid h2 { margin-bottom: .85rem; font-size: clamp(1.65rem, 2.5vw, 2.35rem); }
.service-area-grid p:not(.eyebrow), .delivery-grid p, .principles-grid p, .editorial-grid p { color: var(--muted); font-size: .82rem; }
.delivery-grid article > span, .principles-grid article > span, .editorial-grid article > span { color: var(--gold); font-size: .65rem; font-weight: 800; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { padding: .55rem 0 .55rem 1.4rem; border-bottom: 1px solid var(--line); color: var(--muted); }
.check-list li::before { content: "◆"; float: left; margin-left: -1.35rem; color: var(--gold); font-size: .5rem; }
.about-story { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; margin-bottom: clamp(5rem, 8vw, 8rem); background: var(--paper); box-shadow: var(--shadow); }
.about-story figure { min-height: 620px; margin: 0; }
.about-story figure img { width: 100%; height: 100%; object-fit: cover; }
.about-story > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 6vw, 6rem); }
.about-story > div > p:not(.eyebrow) { color: var(--muted); }
.about-story .button { align-self: flex-start; }
.policy-layout { display: grid; grid-template-columns: 240px 1fr; align-items: start; gap: clamp(2rem, 7vw, 7rem); }
.policy-layout > nav { position: sticky; top: 130px; display: grid; gap: .45rem; padding: 1.2rem; border: 1px solid var(--line); background: var(--paper); }
.policy-layout > nav a { color: var(--muted); font-size: .74rem; }
.policy-layout > nav a:hover { color: var(--wine); }
.policy-content { max-width: 820px; }
.policy-content section { padding: 0 0 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.policy-content h2 { margin-bottom: .8rem; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.policy-content p { color: var(--muted); }
.policy-content a { color: var(--wine); border-bottom: 1px solid currentColor; }
.editorial-grid { grid-template-columns: repeat(2, 1fr); padding-bottom: clamp(5rem, 8vw, 8rem); }
.search-page-tools { margin-bottom: 0; }
.shortlist-section { padding-top: 1rem; }
.shortlist-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.shortlist-toolbar p { margin: 0; }
.shortlist-section .product-grid { grid-template-columns: repeat(3, 1fr); }
.not-found { min-height: 70vh; display: grid; place-items: center; align-content: center; padding-block: 5rem; text-align: center; }
.not-found h1 { max-width: 900px; margin-bottom: 1rem; }
.not-found > p:not(.eyebrow) { max-width: 620px; color: var(--muted); }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 32px, 960px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero { grid-template-columns: .9fr 1.1fr; gap: 2.5rem; }
  .hero-visual { min-height: 560px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .collection-card:first-child { grid-row: span 2; }
  .footer-top { grid-template-columns: 1fr; }
  .catalogue-form { grid-template-columns: 1fr 240px; }
  .form-submit { grid-column: 1 / -1; }
  .clarity-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 28px); }
  body { padding-bottom: 62px; }
  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .announcement { justify-content: flex-start; overflow: hidden; white-space: nowrap; font-size: .56rem; }
  .announcement span:nth-child(n+4) { display: none; }
  .header-inner { height: 72px; gap: .75rem; }
  .brand { width: 175px; }
  .desktop-only-action { display: none; }
  .shortlist-link { font-size: 0; }
  .shortlist-link::before { content: "Shortlist"; font-size: .68rem; }
  .mobile-nav { grid-template-columns: 1fr; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 3.5rem 4.5rem; }
  .hero-lead { font-size: .98rem; }
  .hero-visual { min-height: 500px; }
  .hero-product { inset: 0 10% 10% 0; }
  .hero-store { width: 45%; height: 38%; border-width: 5px; }
  .hero-seal { width: 88px; height: 88px; right: 0; font-size: .7rem; }
  .clarity-grid { grid-template-columns: repeat(2, 1fr); }
  .clarity-grid > div { min-height: 100px; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.18); }
  .clarity-grid > div:nth-child(2) { border-right: 0; }
  .split-heading, .page-hero, .answer-panel, .product-next { grid-template-columns: 1fr; gap: 1.2rem; }
  .split-heading.align-end > :last-child { justify-self: start; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card, .collection-card:first-child { min-height: 380px; grid-row: auto; }
  .product-grid, .shortlist-section .product-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
  .product-card-body { padding: .85rem; }
  .product-card h3 { font-size: 1.05rem; }
  .product-card-body > p:not(.product-kicker) { min-height: 0; font-size: .64rem; }
  .product-card-footer { align-items: flex-end; }
  .product-card-footer > span { max-width: 70%; font-size: .55rem; overflow-wrap: anywhere; }
  .shortlist-button { min-height: 36px; padding: .4rem .5rem; }
  .shortlist-button [data-shortlist-label] { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .process-preview { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-intro, .product-info, .policy-layout > nav { position: static; }
  .process-steps article { grid-template-columns: 50px 1fr; gap: 1rem; }
  .store-story { grid-template-columns: 1fr; }
  .store-story-media { min-height: 520px; }
  .store-story-copy { padding: 4rem 1.5rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { padding: 1.2rem 0; flex-direction: column; align-items: flex-start; }
  .page-hero { align-items: start; padding-block: 3.5rem 4rem; }
  .page-aside { margin-top: .5rem; }
  .catalogue-form { grid-template-columns: 1fr; }
  .form-submit { grid-column: auto; }
  .results-heading { flex-direction: column; gap: .3rem; }
  .product-detail { grid-template-columns: 1fr; padding-top: 1.5rem; }
  .product-info h1 { font-size: clamp(2.7rem, 12vw, 4.5rem); }
  .clarity-cards { grid-template-columns: 1fr; }
  .product-facts > div { grid-template-columns: 115px 1fr; }
  .numbered-journey article { grid-template-columns: 64px 1fr; gap: 1rem; }
  .numbered-journey article > span { font-size: 2rem; }
  .store-contact, .about-story { grid-template-columns: 1fr; }
  .store-contact > figure, .about-story figure { min-height: 470px; }
  .store-gallery { grid-auto-rows: 180px; }
  .store-gallery img:nth-child(1) { grid-column: span 12; grid-row: span 2; }
  .store-gallery img:nth-child(n+2) { grid-column: span 6; }
  .service-area-grid, .delivery-grid, .principles-grid, .editorial-grid { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-layout > nav { display: flex; overflow-x: auto; gap: .75rem; }
  .policy-layout > nav .footer-heading { display: none; }
  .policy-layout > nav a { flex: 0 0 auto; }
  .mobile-quick-actions {
    position: fixed;
    z-index: 95;
    left: 0;
    right: 0;
    bottom: 0;
    height: 62px;
    display: grid;
    grid-template-columns: .42fr .58fr;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }
  .mobile-quick-actions a { display: flex; align-items: center; justify-content: center; gap: .45rem; color: var(--wine); font-size: .75rem; font-weight: 800; }
  .mobile-quick-actions a:last-child { background: var(--wine); color: white; }
  .mobile-quick-actions svg { width: 18px; fill: currentColor; }
}

@media (max-width: 390px) {
  .brand { width: 155px; }
  .header-actions { gap: .4rem; }
  .shortlist-link::before { content: "List"; }
  .hero-visual { min-height: 430px; }
  .hero-product { right: 6%; }
  .hero-store { width: 48%; }
  .section { padding-block: 4.2rem; }
  .product-grid, .shortlist-section .product-grid { grid-template-columns: 1fr; gap: 1rem; }
  .product-card h3 { font-size: 1.35rem; }
  .product-card-footer > span { max-width: none; }
  .shortlist-button [data-shortlist-label] { position: static; width: auto; height: auto; overflow: visible; clip: auto; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .product-actions .button { width: 100%; }
  .store-gallery img:nth-child(n) { grid-column: span 12; }
}

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