:root {
  color-scheme: light;
  --ink: #231719;
  --ink-soft: #554646;
  --muted: #756763;
  --paper: #fbf7f2;
  --paper-deep: #f2e7da;
  --surface: #fffaf5;
  --surface-strong: #ffffff;
  --wine: #711521;
  --wine-dark: #3d0b12;
  --wine-soft: #9f2934;
  --clay: #b56a3b;
  --moss: #66705b;
  --gold: #c9974f;
  --line: rgba(35, 23, 25, 0.12);
  --line-strong: rgba(35, 23, 25, 0.2);
  --shadow-soft: 0 16px 42px rgba(50, 28, 24, 0.1);
  --shadow-deep: 0 28px 70px rgba(50, 20, 24, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 108px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(247, 238, 228, 0.82) 620px, var(--paper) 1000px);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  transform: translateY(-160%);
  background: var(--wine);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.7rem 0;
  background: rgba(251, 247, 242, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1216px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 1.1rem;
  padding: 0.55rem;
  border: 1px solid rgba(35, 23, 25, 0.11);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.9);
  box-shadow: 0 10px 34px rgba(40, 24, 20, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff6ee;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 10px 22px rgba(113, 21, 33, 0.18);
}

.brand-copy {
  display: block;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1.02rem;
  line-height: 1;
  font-weight: 850;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.32rem;
  border: 1px solid rgba(35, 23, 25, 0.09);
  border-radius: 999px;
  background: rgba(244, 235, 225, 0.8);
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  color: #4d3d3b;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover {
  background: var(--surface-strong);
  color: var(--wine);
}

.nav-links a[aria-current="page"] {
  background: var(--wine);
  color: #fff8f1;
  box-shadow: 0 8px 18px rgba(113, 21, 33, 0.14);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.nav-cta,
.button,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta,
.button-primary {
  background: var(--wine);
  color: #fff8f1;
  box-shadow: 0 14px 28px rgba(113, 21, 33, 0.18);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--wine-dark);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: var(--surface-strong);
}

.button-light {
  background: #fff;
  color: var(--wine);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
  font-weight: 850;
  cursor: pointer;
  background: var(--surface-strong);
  color: var(--ink);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.7rem);
  width: min(280px, calc(100vw - 32px));
  display: grid;
  gap: 0.25rem;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-deep);
  max-height: min(350px, calc(100svh - 96px));
  overflow-y: auto;
}

.mobile-menu-panel a {
  padding: 0.85rem 0.95rem;
  border-radius: 6px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
}

.mobile-menu-panel a:hover {
  background: var(--paper-deep);
}

.mobile-menu-panel a[aria-current="page"] {
  background: var(--wine);
  color: #fff8f1;
}

.hero {
  position: relative;
  width: min(1216px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4rem 0 3.25rem;
}

.hero-shell {
  display: block;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-copy {
  min-width: 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--wine);
  font-size: 0.76rem;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h1 {
  max-width: 670px;
  font-size: 4.8rem;
  line-height: 1.03;
  font-weight: 780;
}

h2 {
  font-size: 3.55rem;
  line-height: 1.08;
  font-weight: 760;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.22;
  font-weight: 850;
}

.hero-text {
  max-width: 610px;
  margin: 1.15rem 0 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.75;
}

.hero-stage {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(190px, 0.68fr) minmax(460px, 1.42fr) minmax(190px, 0.68fr);
  align-items: center;
  gap: 1.5rem;
  margin: 2.25rem 0 1.6rem;
}

.hero-visual {
  margin: 0;
  display: grid;
  justify-items: center;
}

.hero-visual img {
  width: min(620px, 100%);
  aspect-ratio: 900 / 680;
  object-fit: cover;
  border: 1px solid rgba(35, 23, 25, 0.11);
  border-radius: var(--radius);
  background: var(--paper-deep);
  box-shadow: var(--shadow-deep);
}

.hero-visual figcaption {
  max-width: 520px;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.hero-note {
  display: grid;
  gap: 0.55rem;
  align-content: center;
  min-height: 182px;
  padding: 1.1rem;
  border-block: 1px solid var(--line);
  color: var(--ink-soft);
}

.hero-note-left {
  text-align: right;
  justify-items: end;
}

.hero-note-right {
  text-align: left;
  justify-items: start;
}

.note-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  color: var(--wine);
  box-shadow: 0 10px 26px rgba(50, 28, 24, 0.08);
}

.hero-note strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.hero-note p {
  margin: 0;
  max-width: 230px;
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.85rem;
  margin: 1.8rem 0 0;
}

.section {
  width: min(1216px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5.5rem 0.28rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading .eyebrow {
  grid-column: 1;
}

.section-heading,
.about-hero-copy,
.about-story-copy,
.about-path > div,
.order-section > div {
  min-width: 0;
}

.section-heading h2,
.about-hero h1,
.about-story-copy h2,
.about-path h2,
.order-section h2,
.contact-hero h1 {
  text-wrap: balance;
}

.section-heading h2 {
  grid-column: 1;
  grid-row: 2;
}

.about-hero h1,
.about-story-copy h2,
.values-section .section-heading h2,
.about-path h2,
.order-section h2,
.faq .section-heading h2,
.contact-hero h1 {
  padding-inline-start: 0.04em;
}

.section-heading p:last-child {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  min-height: 100%;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.82);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
  border-color: rgba(111, 24, 32, 0.28);
  box-shadow: var(--shadow-deep);
  transform: translateY(-2px);
}

.product-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: var(--paper-deep);
}

.product-card div {
  padding: 0 0.15rem 0.25rem;
}

.product-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.card-stretched-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
}

.card-stretched-link:focus-visible::after {
  outline: 3px solid rgba(201, 151, 79, 0.45);
  outline-offset: 3px;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.72fr);
  gap: 5rem;
  align-items: center;
}

.process-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.process-copy h2 {
  font-size: clamp(2.25rem, 3.9vw, 3.05rem);
  line-height: 1.12;
}

.steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0.25rem 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.steps span {
  grid-row: span 2;
  color: var(--clay);
  font-size: 1.5rem;
  font-weight: 900;
}

.steps strong {
  font-size: 1rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.process-visual img,
.story img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: var(--paper-deep);
  box-shadow: var(--shadow-deep);
}

.story {
  display: grid;
  grid-template-columns: minmax(480px, 0.82fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 4rem;
  padding: 5.5rem max(16px, calc((100vw - 1216px) / 2));
  background: var(--wine);
  color: #fff;
  overflow: hidden;
}

.story-copy,
.story-visual {
  min-width: 0;
  position: relative;
}

.story-copy {
  z-index: 1;
  max-width: 560px;
}

.story-title {
  max-width: 560px;
  font-size: 2.85rem;
  line-height: 1.1;
}

.story-title span {
  display: block;
}

.story-visual {
  z-index: 0;
  margin: 0;
  min-width: 0;
}

.story .eyebrow,
.order-section .eyebrow {
  color: #f4c8a2;
}

.story p:not(.eyebrow) {
  color: #f8dfd3;
  font-size: 1.05rem;
}

.quote-section {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5.5rem 0;
  text-align: center;
}

blockquote {
  font-size: 2.45rem;
  line-height: 1.22;
  font-weight: 690;
}

.collection-hero {
  width: min(1216px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4.25rem 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.75rem);
}

.collection-hero-copy {
  min-width: 0;
}

.collection-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(3.15rem, 5.2vw, 5.05rem);
  line-height: 1.01;
}

.collection-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.catalog-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.45rem 0 0;
}

.catalog-summary div {
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.78);
}

.catalog-summary dt {
  color: var(--wine);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 940;
}

.catalog-summary dd {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 820;
}

.catalog-control-panel {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.86);
  box-shadow: var(--shadow-deep);
}

.catalog-panel-head {
  display: grid;
  gap: 0.45rem;
  padding: 0.4rem 0.15rem 0.1rem;
}

.catalog-panel-head h2 {
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  line-height: 1.12;
}

.catalog-panel-head p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.catalog-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.catalog-category-list a {
  min-width: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.2rem 0.7rem;
  align-content: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.catalog-category-list a:hover {
  border-color: rgba(111, 24, 32, 0.38);
  background: #fff8f1;
  transform: translateY(-1px);
}

.catalog-category-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff8f1;
  font-size: 0.78rem;
  font-weight: 900;
}

.catalog-category-list strong {
  min-width: 0;
  align-self: end;
  font-size: 0.98rem;
  line-height: 1.2;
}

.catalog-category-list small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.catalog-featured-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf5;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.catalog-featured-card:hover {
  border-color: rgba(111, 24, 32, 0.28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.catalog-featured-card img {
  width: 100%;
  height: 168px;
  display: block;
  object-fit: contain;
  border-radius: 6px;
  background: var(--paper-deep);
}

.catalog-featured-card div {
  display: grid;
  gap: 0.45rem;
}

.catalog-featured-card span {
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 900;
}

.catalog-featured-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.18;
}

.catalog-featured-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.catalog-featured-card a {
  color: var(--wine);
  font-weight: 900;
  text-decoration: none;
}

.catalog-featured-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
}

.catalog-featured-card a:focus-visible::after {
  outline: 3px solid rgba(201, 151, 79, 0.45);
  outline-offset: 3px;
}

.collection-hero-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.7);
  box-shadow: var(--shadow-deep);
}

.collection-hero-board a {
  position: relative;
  min-height: 212px;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}

.collection-hero-board img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.collection-hero-board a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(35, 23, 25, 0.05), rgba(35, 23, 25, 0.72));
}

.collection-hero-board a:hover img {
  transform: scale(1.04);
}

.collection-hero-board span {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  font-weight: 900;
  line-height: 1.2;
}

.catalog {
  padding-top: 4rem;
}

.catalog-browser {
  position: relative;
  padding-top: 2.2rem;
}

.catalog-anchor {
  position: absolute;
  top: 0;
}

.catalog-groups {
  display: grid;
  gap: 1rem;
}

.catalog-group {
  display: grid;
  gap: 1rem;
  padding: 0;
  border-top: 0;
}

.catalog-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.catalog-group-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.56fr);
  gap: 3rem;
  align-items: end;
}

.catalog-group-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-card {
  min-width: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.84);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.catalog-card:hover {
  border-color: rgba(111, 24, 32, 0.28);
  box-shadow: var(--shadow-deep);
  transform: translateY(-2px);
}

.catalog-media {
  min-height: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-deep);
}

.catalog-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.catalog-card-body {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-width: 0;
  padding: 0.1rem 0.15rem 0.2rem;
}

.catalog-card-title {
  display: grid;
  gap: 0.45rem;
}

.catalog-card-title span {
  width: fit-content;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  background: #f3e4d8;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 900;
}

.catalog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.catalog-card-body > a {
  width: fit-content;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  padding: 0.62rem 0.95rem;
  background: var(--wine);
  color: #fff8f1;
  text-decoration: none;
  font-weight: 850;
}

.catalog-card-body > a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
}

.catalog-card-body > a:focus-visible::after {
  outline: 3px solid rgba(201, 151, 79, 0.45);
  outline-offset: 3px;
}

.choice-guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 3rem;
  padding: 5.5rem max(16px, calc((100vw - 1216px) / 2));
  background: var(--wine);
  color: #fff;
}

.choice-guide .eyebrow {
  color: #f4c8a2;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.guide-grid article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.guide-grid span {
  color: #f4c8a2;
  font-size: 1.25rem;
  font-weight: 900;
}

.guide-grid p {
  margin: 0;
  color: #f8dfd3;
  font-size: 0.95rem;
}

.about-hero {
  width: min(1216px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4.25rem 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.about-hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(150px, 0.68fr);
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: 0.9rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.7);
  box-shadow: var(--shadow-deep);
}

.about-hero-visual figure {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-deep);
}

.about-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-large {
  grid-row: span 2;
}

.about-proof {
  width: min(1216px, calc(100% - 32px));
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-proof article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.78);
  box-shadow: var(--shadow-soft);
}

.about-proof span {
  color: var(--clay);
  font-weight: 900;
}

.about-proof h2 {
  font-size: 1.28rem;
  line-height: 1.22;
  font-weight: 900;
}

.about-proof p {
  margin: 0;
  color: var(--muted);
}

.about-story-block {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 0.72fr);
  gap: 5rem;
  align-items: center;
  width: min(1216px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.about-story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-story-block figure {
  margin: 0;
}

.about-story-block img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(35, 23, 25, 0.11);
  border-radius: var(--radius);
  background: var(--paper-deep);
  box-shadow: var(--shadow-deep);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.values-grid article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.82);
  box-shadow: var(--shadow-soft);
}

.values-grid span {
  width: fit-content;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  background: #f3e4d8;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 900;
}

.values-grid p {
  margin: 0;
  color: var(--muted);
}

.about-path {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 3rem;
  padding: 5.5rem max(16px, calc((100vw - 1216px) / 2));
  background: var(--wine);
  color: #fff;
}

.about-path .eyebrow {
  color: #f4c8a2;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.path-grid article {
  min-height: 235px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.path-grid span {
  color: #f4c8a2;
  font-size: 1.25rem;
  font-weight: 900;
}

.path-grid p {
  margin: 0;
  color: #f8dfd3;
  font-size: 0.96rem;
}

.order-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem max(16px, calc((100vw - 1216px) / 2));
  background: #2e2621;
  color: #fff;
}

.order-section div {
  max-width: 760px;
}

.order-section p:not(.eyebrow) {
  color: #e8d5c9;
}

.contact-hero {
  width: min(1216px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4rem 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.contact-hero-copy {
  min-width: 0;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.contact-hero h1 {
  font-size: clamp(3.1rem, 4.35vw, 4.45rem);
}

.contact-visual-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.78);
  box-shadow: var(--shadow-deep);
}

.contact-visual-photo {
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.contact-visual-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #f3e4d8;
  color: var(--wine);
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-methods.section {
  padding-top: 3.25rem;
}

.contact-method-grid article {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.82);
  box-shadow: var(--shadow-soft);
}

.contact-method-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-method-grid a {
  width: fit-content;
  color: var(--wine);
  font-weight: 900;
  text-decoration: none;
}

.contact-method-grid a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.product-detail-hero {
  width: min(1216px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4.25rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.62fr);
  align-items: start;
  gap: clamp(1.2rem, 2.4vw, 2rem);
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  grid-column: 1 / -1;
  margin: 0 0 0.15rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-breadcrumbs a {
  color: var(--wine);
  text-decoration: none;
}

.product-breadcrumbs span:last-child {
  color: var(--ink-soft);
}

.product-detail-copy {
  min-width: 0;
  position: sticky;
  top: 104px;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 1.5vw, 1.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.9);
  box-shadow: var(--shadow-deep);
}

.product-detail-copy .eyebrow {
  margin: 0;
  order: 1;
}

.product-detail-copy h1 {
  width: 100%;
  max-width: none;
  font-size: clamp(2.05rem, 3vw, 3.15rem);
  line-height: 1.08;
  overflow-wrap: break-word;
  text-wrap: balance;
  order: 2;
}

.product-detail-copy > p:not(.eyebrow) {
  max-width: none;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  order: 3;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 0;
}

.product-media-column {
  min-width: 0;
  display: grid;
  gap: 0.8rem;
}

.product-visual-card {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf5;
  box-shadow: var(--shadow-deep);
}

.product-visual-card img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  background: var(--paper-deep);
}

.product-main-media img {
  height: clamp(420px, 42vw, 560px);
  padding: clamp(0.7rem, 1.4vw, 1rem);
  object-fit: contain;
  box-sizing: border-box;
}

.product-order-panel {
  display: grid;
  gap: 0.9rem;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf5;
  order: 4;
}

.product-order-panel span {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-order-panel p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-order-panel .product-actions {
  margin: 0;
}

.product-order-panel .button {
  flex: 1 1 180px;
  justify-content: center;
}

.related-products h2 {
  max-width: 880px;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 0.98;
}

.related-products {
  display: grid;
  gap: 1.2rem;
}

.product-detail-hero + .related-products {
  padding-top: 1.75rem;
}

.related-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.related-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.86);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.related-product-card:hover {
  border-color: rgba(111, 24, 32, 0.28);
  box-shadow: var(--shadow-deep);
  transform: translateY(-2px);
}

.related-product-card img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: contain;
  padding: 0.65rem;
  background: var(--paper-deep);
  box-sizing: border-box;
}

.related-product-card div {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem;
}

.related-product-card span {
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 900;
}

.related-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.related-product-card a {
  color: var(--wine);
  font-weight: 900;
  text-decoration: none;
}

.related-product-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
}

.related-product-card a:focus-visible::after {
  outline: 3px solid rgba(201, 151, 79, 0.45);
  outline-offset: 3px;
}

.faq {
  display: grid;
  gap: 0.85rem;
}

.faq .section-heading {
  margin-bottom: 0.75rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 245, 0.72);
  padding: 1rem 1.1rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 900;
}

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

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--wine);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 1rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.footer {
  background:
    linear-gradient(180deg, #4c1018, var(--wine-dark));
  color: #fff;
  padding: 4rem 0 1.3rem;
}

.footer-inner {
  width: min(1216px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 2.4rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: end;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer .brand-copy strong {
  color: #fff;
}

.footer-main p,
.footer-column a,
.footer-panel p,
.footer-bottom {
  color: #e8cfc6;
}

.footer-main p {
  max-width: 620px;
  margin: 0;
  font-size: 1.05rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(190px, 0.65fr) minmax(280px, 0.9fr);
  gap: 1rem;
}

.footer-column,
.footer-column nav {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-column span,
.footer-panel strong {
  color: #fff;
  font-weight: 900;
}

.footer-column a {
  text-decoration: none;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-panel {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.footer-panel-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.footer-panel p {
  margin: 0;
}

.footer-cta {
  width: fit-content;
  min-height: 42px;
  background: #fff;
  color: var(--wine);
  padding-inline: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #fff;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: minmax(210px, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  h1 {
    font-size: 3.85rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
    gap: 2rem;
  }

  .process,
  .story,
  .collection-hero,
  .about-hero,
  .about-story-block,
  .about-path,
  .contact-hero,
  .catalog-group-head,
  .choice-guide,
  .section-heading,
  .footer-main,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .product-grid,
  .guide-grid,
  .about-proof,
  .values-grid,
  .path-grid,
  .contact-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-title {
    max-width: 720px;
    font-size: 2.45rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.55rem 0;
  }

  .nav {
    width: min(1216px, calc(100% - 20px));
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 30px;
    gap: 0.6rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    max-width: 132px;
    white-space: normal;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu summary span {
    display: none;
  }

  .mobile-menu summary {
    width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .hero {
    width: min(1216px, calc(100% - 24px));
    padding: 3rem 0 2.25rem;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 2.1rem;
  }

  .story-title {
    font-size: 2.05rem;
  }

  blockquote {
    font-size: 1.55rem;
  }

  .hero-text {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(230px, 1fr);
    gap: 1rem;
  }

  .hero-visual img {
    width: 100%;
  }

  .hero-visual figcaption {
    font-size: 0.82rem;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 0.68rem 0.85rem;
    font-size: 0.86rem;
  }

  .product-grid,
  .catalog-grid,
  .guide-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .collection-hero {
    width: min(1216px, calc(100% - 24px));
    padding: 3rem 0 1rem;
  }

  .collection-hero-copy h1 {
    font-size: clamp(2.05rem, 10vw, 2.65rem);
    line-height: 1.08;
  }

  .catalog-control-panel {
    padding: 0.75rem;
  }

  .catalog-summary {
    gap: 0.55rem;
  }

  .catalog-summary div {
    padding: 0.72rem;
  }

  .catalog-featured-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-featured-card img {
    height: clamp(180px, 52vw, 260px);
  }

  .about-hero,
  .about-story-block,
  .about-proof,
  .contact-hero {
    width: min(1216px, calc(100% - 24px));
  }

  .about-hero {
    padding: 3rem 0 2rem;
  }

  .contact-hero {
    padding: 3rem 0 2rem;
  }

  .about-hero-visual {
    grid-template-columns: 1fr 1fr;
  }

  .about-photo-large {
    grid-column: span 2;
    grid-row: auto;
    min-height: 260px;
  }

  .collection-hero-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 0.55rem;
  }

  .collection-hero-board a {
    min-height: 156px;
  }

  .catalog {
    padding-top: 1.5rem;
  }

  .catalog-group {
    padding: 0;
  }

  .choice-guide {
    padding: 3.5rem 12px;
    gap: 2rem;
  }

  .about-path {
    padding: 3.5rem 12px;
    gap: 2rem;
  }

  .section {
    width: min(1216px, calc(100% - 24px));
    padding: 3.5rem 0.28rem;
  }

  .about-page .section-heading h2,
  .contact-page .section-heading h2,
  .process-copy h2,
  .story-title,
  .about-story-copy h2,
  .about-path h2,
  .order-section h2,
  .contact-hero h1 {
    font-size: clamp(1.58rem, 7.2vw, 2.1rem);
    line-height: 1.14;
  }

  .process-copy h2 {
    font-size: clamp(1.45rem, 6.2vw, 2.1rem);
  }

  .process,
  .story {
    gap: 2rem;
  }

  .about-story-block {
    gap: 2rem;
    padding: 3.5rem 0;
  }

  .story,
  .order-section {
    padding: 3.5rem 12px;
  }

  .order-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-section {
    width: min(900px, calc(100% - 24px));
    padding: 3.5rem 0;
  }

  .footer {
    padding-top: 3rem;
  }

  .footer-inner {
    width: min(1216px, calc(100% - 24px));
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .catalog-category-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 1100px) {
  .product-detail-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
    padding: 3rem 0 3rem;
  }

  .product-breadcrumbs {
    display: none;
  }

  .product-media-column {
    order: 1;
  }

  .product-detail-copy {
    order: 2;
    position: static;
  }

  .product-visual-card img {
    height: clamp(300px, 58vw, 500px);
  }

  .product-main-media img {
    height: clamp(320px, 56vw, 520px);
  }

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

@media (max-width: 720px) {
  .product-detail-hero {
    width: min(1216px, calc(100% - 24px));
    padding: 2.35rem 0 2.75rem;
  }

  .product-detail-hero + .related-products {
    padding-top: 0.75rem;
  }

  .product-detail-copy h1,
  .related-products h2 {
    font-size: clamp(1.68rem, 7.5vw, 2.28rem);
    line-height: 1.12;
  }

  .product-detail-copy {
    padding: 0.85rem;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .related-product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-main-media img {
    height: clamp(260px, 76vw, 420px);
  }

  .product-order-panel {
    padding: 0.8rem;
  }

  .product-order-panel .button {
    flex: 0 0 auto;
    width: 100%;
  }

}

@media (max-width: 390px) {
  h1 {
    font-size: 2.25rem;
  }

  .brand-copy strong {
    max-width: 112px;
    font-size: 0.88rem;
  }

  .button {
    width: 100%;
  }

  .collection-hero-board,
  .catalog-summary,
  .catalog-category-list,
  .about-hero-visual,
  .about-proof,
  .values-grid,
  .path-grid,
  .contact-method-grid,
  .related-product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-photo-large {
    grid-column: auto;
  }

  .catalog-group-head h2 {
    font-size: clamp(1.5rem, 7.2vw, 2rem);
  }
}

@media (max-width: 540px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  h1 {
    font-size: 2.25rem;
  }

  .hero-visual {
    margin-top: 0.4rem;
  }
}
