:root {
  --wine: #dd9b02;
  --wine-dark: #9e6200;
  --wine-soft: #f0bc48;
  --cream: #f7f1e8;
  --paper: #fffaf3;
  --sand: #e9dece;
  --ink: #211714;
  --muted: #766b64;
  --white: #fffdf9;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --radius: 28px;
  --shadow: 0 30px 70px rgba(63, 26, 19, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 0 clamp(22px, 5vw, 80px);
  transition: background .35s ease, min-height .35s ease, box-shadow .35s ease;
}

.site-header.scrolled {
  min-height: 70px;
  background: rgba(247, 241, 232, .9);
  box-shadow: 0 8px 35px rgba(48, 27, 21, .08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand-logo {
  width: 90px;
  height: 72px;
  object-fit: contain;
  filter:
    drop-shadow(0 12px 14px rgba(67, 39, 12, .18))
    drop-shadow(0 2px 0 rgba(255, 255, 255, .52));
  transform: translateZ(0);
}

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--wine);
  transition: right .25s ease;
}

.nav a:hover::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 11px 18px;
  color: var(--ink);
  border-radius: 999px;
  background: var(--wine);
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.header-cta:hover {
  color: var(--white);
  background: var(--wine-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--wine);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .25s ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  min-height: 100svh;
  padding: 128px clamp(22px, 5vw, 80px) 74px;
  background:
    radial-gradient(circle at 13% 30%, rgba(221, 155, 2, .09), transparent 28%),
    var(--cream);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
  padding-right: 5vw;
}

.eyebrow,
.section-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 5px rgba(221, 155, 2, .12);
}

.hero h1,
.section h2,
.story h2,
.catering h2,
.social-copy h2,
.contact h2 {
  margin: 22px 0 26px;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .85;
}

h1 em,
h2 em {
  color: var(--wine);
  font-weight: 500;
}

.hero-lead {
  max-width: 560px;
  margin: 0 0 35px;
  color: var(--muted);
  font-size: 15px;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--wine);
  box-shadow: 0 14px 30px rgba(221, 155, 2, .22);
}

.button-primary:hover {
  color: var(--white);
  background: var(--wine-dark);
  box-shadow: 0 18px 38px rgba(221, 155, 2, .3);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  color: var(--wine);
  font-size: 18px;
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-trust {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 42px;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-left: -8px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  color: var(--white);
  background: #c17b00;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
}

.trust-avatars span:first-child {
  margin-left: 0;
  background: var(--wine);
}

.trust-avatars span:nth-child(2) {
  background: #efbd59;
}

.hero-trust p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.hero-trust strong {
  color: var(--ink);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 600px;
}

.hero-image-wrap {
  position: absolute;
  inset: 12px 0 12px 0;
  overflow: hidden;
  border-radius: 220px 12px 180px 12px;
  box-shadow: var(--shadow);
  transform-origin: center;
}

.hero-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, transparent 58%, rgba(91, 56, 0, .16));
}

.floating-note {
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 251, 245, .82);
  box-shadow: 0 10px 35px rgba(47, 26, 22, .12);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .05em;
  animation: float 4s ease-in-out infinite;
}

.note-top {
  top: 18%;
  right: 5%;
}

.note-top i {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--wine);
  font-style: normal;
}

.note-bottom {
  right: 8%;
  bottom: 12%;
  flex-direction: column;
  align-items: flex-start;
  animation-delay: -2s;
}

.note-bottom strong {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

.hero-seal {
  position: absolute;
  left: -58px;
  bottom: 40px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  color: var(--white);
  background: var(--wine-dark);
  box-shadow: 0 15px 40px rgba(221, 155, 2, .3);
}

.hero-seal svg {
  position: absolute;
  inset: 8px;
  width: 100px;
  height: 100px;
  animation: spin 18s linear infinite;
}

.hero-seal text {
  fill: var(--white);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.hero-seal > span {
  font-family: var(--serif);
  font-size: 38px;
}

.scroll-cue {
  position: absolute;
  left: clamp(22px, 5vw, 80px);
  bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 32px;
  overflow: hidden;
  background: rgba(33,23,20,.2);
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: -100% 0 100%;
  background: var(--wine);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

@keyframes float {
  50% { transform: translateY(-9px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.marquee {
  overflow: hidden;
  color: var(--ink);
  background: var(--wine);
}

.marquee-track {
  display: flex;
  gap: 34px;
  align-items: center;
  width: max-content;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.marquee i {
  color: #ffe2a8;
  font-size: 10px;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding: 120px clamp(22px, 7vw, 110px);
}

.advantages {
  background: var(--paper);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  background: var(--sand);
}

.advantage-card {
  position: relative;
  min-height: 330px;
  padding: 42px;
  background: var(--paper);
  transition: background .3s ease, color .3s ease;
}

.advantage-card:hover {
  color: var(--white);
  background: var(--wine-dark);
}

.advantage-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 12px;
  transition: color .3s ease;
}

.advantage-card:hover .advantage-number,
.advantage-card:hover p {
  color: rgba(255,255,255,.68);
}

.advantage-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 54px;
  border-radius: 50%;
  color: var(--wine);
  background: rgba(221, 155, 2, .1);
  transition: background .3s ease, color .3s ease;
}

.advantage-card:hover .advantage-icon {
  color: var(--wine);
  background: var(--white);
}

.advantage-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.advantage-card h3,
.story-point h3,
.process-step h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.05;
}

.advantage-card p,
.story-point p,
.process-step p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  transition: color .3s ease;
}

.products {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 50px;
  align-items: end;
}

.section-heading h2,
.story h2,
.catering h2,
.social-copy h2,
.contact h2 {
  margin-top: 20px;
  font-size: clamp(48px, 5.2vw, 78px);
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  margin: 55px 0 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-button {
  flex: 0 0 auto;
  padding: 10px 19px;
  border: 1px solid #d8cabb;
  border-radius: 999px;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.filter-button:hover,
.filter-button.active {
  color: var(--ink);
  border-color: var(--wine);
  background: var(--wine);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px;
}

.product-card {
  transition: opacity .3s ease, transform .3s ease;
}

.product-card.filtered-out {
  display: none;
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: var(--sand);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}

.product-card:hover img {
  transform: scale(1.055);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 253, 249, .88);
  backdrop-filter: blur(8px);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge-dark {
  color: var(--white);
  background: var(--wine);
}

.product-plus {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--wine);
  font-family: var(--serif);
  font-size: 28px;
  cursor: pointer;
  transform: translateY(70px);
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .2s ease;
}

.product-card:hover .product-plus,
.product-plus:focus-visible {
  transform: translateY(0);
}

.product-plus:hover {
  color: var(--white);
  background: var(--wine-dark);
}

.product-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  padding: 18px 3px 0;
}

.product-info span {
  color: var(--wine);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 2px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.products-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid #d8cabb;
}

.products-footer p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.catalog-summary {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: -10px 0 28px;
}

.catalog-summary span {
  padding: 9px 14px;
  border: 1px solid #d8cabb;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.25);
  font-size: 9px;
  font-weight: 700;
}

.catalog-summary strong {
  color: var(--wine-dark);
}

.catalog-page-body {
  background:
    radial-gradient(circle at 12% 8%, rgba(221, 155, 2, .14), transparent 28%),
    var(--cream);
}

.catalog-page-main {
  padding-top: 94px;
}

.catalog-page-heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.05em;
}

.catalog-page-heading h1 em {
  color: var(--wine);
  font-style: italic;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin: 34px 0 24px;
}

.catalog-search {
  display: grid;
  gap: 8px;
}

.catalog-search span {
  color: var(--wine-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid #d8cabb;
  border-radius: 16px;
  outline: 0;
  color: var(--ink);
  background: rgba(255,255,255,.55);
  font: inherit;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.catalog-search input:focus {
  border-color: var(--wine);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(221, 155, 2, .14);
}

.catalog-empty {
  margin: 26px 0 0;
  padding: 22px;
  border: 1px dashed rgba(158, 98, 0, .35);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255,255,255,.42);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.catalog-grid-preview {
  margin-top: 8px;
}

.catalog-card {
  overflow: hidden;
  border: 1px solid #dfd2c1;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(58, 34, 20, .04);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.catalog-card:hover,
.catalog-card.open {
  border-color: rgba(221, 155, 2, .75);
  box-shadow: 0 16px 35px rgba(79, 46, 13, .1);
  transform: translateY(-2px);
}

.catalog-card-top {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 10px;
}

.catalog-image-button {
  position: relative;
  overflow: hidden;
  width: 112px;
  height: 112px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.catalog-image-button img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  background: #fdf6de;
  transition: transform .35s ease, filter .35s ease;
}

.catalog-image-button span {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(33, 23, 20, .72);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}

.catalog-image-button:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.catalog-image-button:hover span {
  opacity: 1;
  transform: translateY(0);
}

.catalog-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 8px 6px 8px 0;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.catalog-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.catalog-card-copy small {
  overflow: hidden;
  color: var(--wine-dark);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-card-copy strong {
  margin: 6px 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.02;
}

.catalog-card-copy em {
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.catalog-card-head > i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--wine);
  font-size: 18px;
  font-style: normal;
  transition: transform .3s ease, background .25s ease, color .25s ease;
}

.catalog-card.open .catalog-card-head > i {
  color: var(--white);
  background: var(--wine-dark);
  transform: rotate(45deg);
}

.catalog-card-barcode {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 0 14px 12px;
  padding: 10px 12px;
  border: 1px solid rgba(221, 155, 2, .28);
  border-radius: 12px;
  background: rgba(221, 155, 2, .08);
}

.catalog-card-barcode span {
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-card-barcode strong {
  color: var(--wine-dark);
  font-family: "Manrope", monospace;
  font-size: 12px;
  letter-spacing: .08em;
}

.barcode-copy {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.barcode-copy em {
  color: var(--muted);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.barcode-copy:hover em,
.barcode-copy.copied em {
  color: var(--wine-dark);
}

.catalog-card-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.22,1,.36,1);
}

.catalog-card.open .catalog-card-detail {
  grid-template-rows: 1fr;
}

.catalog-card-detail-inner {
  min-height: 0;
  overflow: hidden;
}

.catalog-card-detail dl {
  margin: 0 14px;
  padding: 18px 0 8px;
  border-top: 1px solid var(--sand);
}

.catalog-card-detail dl > div {
  margin-bottom: 13px;
}

.catalog-card-detail dt {
  margin-bottom: 3px;
  color: var(--wine-dark);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-card-detail dd {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.catalog-card-detail a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4px 14px 14px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--wine);
  font-size: 9px;
  font-weight: 800;
}

.catalog-card-detail a span {
  font-size: 15px;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.load-more-wrap [hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.image-lightbox.open {
  pointer-events: auto;
  opacity: 1;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 12, 8, .72);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}

.image-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 720px);
  max-height: 92vh;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
  transform: scale(.96) translateY(12px);
  transition: transform .25s ease;
}

.image-lightbox.open .image-lightbox-panel {
  transform: scale(1) translateY(0);
}

.image-lightbox-panel img {
  width: 100%;
  max-height: calc(92vh - 88px);
  object-fit: contain;
  background: #fdf6de;
}

.image-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(33, 23, 20, .76);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.image-lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
}

.image-lightbox-caption strong {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.image-lightbox-caption span {
  color: var(--wine-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.button-outline {
  border-color: var(--wine);
  color: var(--wine);
}

.button-outline:hover {
  color: var(--white);
  background: var(--wine);
}

.wholesale {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
  padding: 110px clamp(25px, 8vw, 130px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(135deg, #825000, var(--wine-dark));
}

.wholesale-copy h2 {
  margin: 20px 0 26px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .88;
}

.wholesale-copy h2 em {
  color: #ffe1a6;
  font-weight: 500;
}

.wholesale-copy > p {
  max-width: 640px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}

.wholesale-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.wholesale-features span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: rgba(255,255,255,.85);
  font-size: 9px;
}

.wholesale-numbers {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.15);
}

.wholesale-numbers article {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  min-height: 140px;
  padding: 28px;
  background: rgba(72, 43, 0, .55);
  backdrop-filter: blur(8px);
}

.wholesale-numbers strong {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 600;
  line-height: .8;
}

.wholesale-numbers span {
  max-width: 130px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.story {
  display: grid;
  grid-template-columns: minmax(400px, .85fr) 1.15fr;
  min-height: 760px;
  background: var(--paper);
}

.story-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.story-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(76, 18, 31, .32), transparent 40%);
}

.story-label {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--white);
  text-transform: uppercase;
}

.story-label strong {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  line-height: .8;
}

.story-label span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(36px, 8vw, 130px);
}

.story-intro {
  max-width: 580px;
  margin: -3px 0 45px;
  color: var(--muted);
  font-size: 14px;
}

.story-points {
  border-top: 1px solid var(--sand);
}

.story-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--sand);
}

.story-point > span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 13px;
}

.story-point h3 {
  margin-bottom: 7px;
  font-size: 22px;
}

.catering {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background: var(--wine-dark);
}

.catering-bg {
  position: absolute;
  inset: 0;
}

.catering-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catering-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(55, 34, 0, .93) 0%, rgba(105, 64, 0, .75) 45%, rgba(105,64,0,.18) 100%),
    linear-gradient(0deg, rgba(55,34,0,.38), transparent);
}

.catering-content {
  position: relative;
  z-index: 2;
  width: min(680px, 70%);
  padding: 110px clamp(28px, 8vw, 130px);
}

.section-kicker.light {
  color: #f8d99c;
}

.catering h2 em,
.social-copy h2 em,
.contact h2 em {
  color: #ffe1a6;
}

.catering-content > p {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}

.catering-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.catering-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: rgba(255,255,255,.85);
  font-size: 9px;
}

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

.button-light:hover {
  color: var(--white);
  background: var(--wine);
}

.process {
  background: var(--paper);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 70px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 63px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--sand);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step > span {
  position: absolute;
  top: -1px;
  right: calc(50% - 44px);
  color: var(--wine);
  font-family: var(--serif);
  font-size: 11px;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 25px auto 28px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  color: var(--wine);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 26px;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.process-step:hover .process-icon {
  color: var(--white);
  background: var(--wine);
  transform: translateY(-6px);
}

.process-step h3 {
  font-size: 24px;
}

.process-step p {
  margin-inline: auto;
}

.social-proof {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  color: var(--white);
  background: var(--wine-dark);
}

.social-number {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: baseline;
  min-height: 610px;
  padding: 90px clamp(30px, 7vw, 110px);
  border-right: 1px solid rgba(255,255,255,.15);
  background:
    radial-gradient(circle at 30% 35%, rgba(255,255,255,.12), transparent 28%),
    var(--wine-dark);
}

.social-number > span {
  font-family: var(--serif);
  font-size: clamp(100px, 14vw, 205px);
  font-weight: 600;
  letter-spacing: -.08em;
  line-height: .7;
}

.social-number b {
  color: #ffe0a0;
  font-family: var(--serif);
  font-size: clamp(50px, 7vw, 100px);
  font-weight: 500;
}

.social-number p {
  width: 100%;
  margin: 42px 0 0;
  color: rgba(255,255,255,.63);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.social-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(36px, 8vw, 130px);
}

.value-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 40px;
}

.value-chips span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  font-size: 9px;
}

.social-link {
  display: inline-flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  width: min(100%, 420px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.3);
  font-size: 13px;
  font-weight: 700;
}

.social-link span {
  font-size: 19px;
  transition: transform .25s ease;
}

.social-link:hover span {
  transform: translate(4px,-4px);
}

.faq {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 9vw;
  background: var(--cream);
}

.faq-heading h2 {
  font-size: clamp(48px, 5vw, 76px);
}

.accordion {
  border-top: 1px solid #d5c8b8;
}

.accordion-item {
  border-bottom: 1px solid #d5c8b8;
}

.accordion-item button {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  width: 100%;
  padding: 25px 0;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.accordion-item i {
  color: var(--wine);
  font-family: var(--sans);
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  transition: transform .3s ease;
}

.accordion-item.open i {
  transform: rotate(45deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.accordion-content p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
}

.accordion-item.open .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-content p {
  padding-bottom: 26px;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: end;
  overflow: hidden;
  padding: 105px clamp(25px, 8vw, 130px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 25%, rgba(255,255,255,.08), transparent 28%),
    var(--wine-dark);
}

.contact-decor {
  position: absolute;
  right: -30px;
  bottom: -220px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.07);
  font-family: var(--serif);
  font-size: 620px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.contact-copy,
.contact-details {
  position: relative;
  z-index: 1;
}

.contact-copy > p {
  max-width: 560px;
  margin: 0 0 35px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.contact-phone {
  color: #f8d99c;
  font-size: 13px;
  font-weight: 700;
}

.contact-details {
  display: grid;
  gap: 30px;
  padding: 35px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}

.contact-details div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-details div:last-child {
  padding-bottom: 0;
  border: 0;
}

.contact-details span {
  color: rgba(255,255,255,.45);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-details strong,
.contact-details a {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: 30px;
  align-items: center;
  padding: 38px clamp(22px, 5vw, 80px);
  color: var(--muted);
  background: var(--paper);
  font-size: 9px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 12;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: var(--white);
  background: #239b56;
  box-shadow: 0 12px 28px rgba(20, 92, 51, .28);
  transition: transform .25s ease, box-shadow .25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 34px rgba(20, 92, 51, .34);
}

.floating-whatsapp svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .8s cubic-bezier(.22,1,.36,1) var(--delay, 0ms),
    transform .8s cubic-bezier(.22,1,.36,1) var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-modal {
  position: fixed;
  z-index: 31;
  top: 50%;
  left: 50%;
  width: min(460px, calc(100% - 36px));
  padding: 46px;
  border-radius: 25px;
  background: var(--paper);
  box-shadow: 0 35px 90px rgba(28, 13, 11, .3);
  transform: translate(-50%, -47%) scale(.96);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.product-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-backdrop {
  position: fixed;
  z-index: 30;
  inset: 0;
  background: rgba(30, 12, 14, .58);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s ease;
}

.modal-backdrop.open {
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  font-size: 22px;
  cursor: pointer;
}

.modal-kicker {
  color: var(--wine);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.product-modal h2 {
  margin: 12px 0;
  font-family: var(--serif);
  font-size: 43px;
  line-height: 1;
}

.product-modal p {
  margin: 0 0 27px;
  color: var(--muted);
  font-size: 12px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 240px;
    padding: 24px;
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    margin-left: 10px;
  }

  .header-cta {
    justify-self: end;
  }

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

  .hero h1 {
    font-size: clamp(52px, 7vw, 72px);
  }

  .hero-seal {
    left: -40px;
  }

  .story-copy {
    padding-inline: 60px;
  }

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

  .wholesale {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    min-height: 70px;
    padding-inline: 18px;
  }

  .brand-logo {
    width: 74px;
    height: 58px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    flex: 0 0 42px;
    margin-left: auto;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 110px 18px 62px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    padding: 0;
  }

  .hero h1 {
    margin-block: 20px;
    font-size: clamp(54px, 16vw, 74px);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    gap: 17px;
  }

  .hero-trust {
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 470px;
    margin-top: 38px;
  }

  .hero-image-wrap {
    inset: 0;
    border-radius: 120px 10px 100px 10px;
  }

  .hero-seal {
    left: -5px;
    bottom: -20px;
    width: 96px;
    height: 96px;
  }

  .hero-seal svg {
    width: 80px;
    height: 80px;
  }

  .note-top {
    top: 13%;
    right: 4%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 86px 18px;
  }

  .products {
    padding-right: 36px;
  }

  .advantage-grid,
  .product-grid,
  .section-heading,
  .story,
  .social-proof,
  .faq {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: 280px;
    padding: 32px;
  }

  .advantage-icon {
    margin-bottom: 38px;
  }

  .section-heading {
    gap: 10px;
  }

  .section-heading h2,
  .story h2,
  .catering h2,
  .social-copy h2,
  .contact h2 {
    font-size: clamp(47px, 14vw, 65px);
  }

  .filter-bar {
    margin-top: 40px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 30px;
  }

  .catalog-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-card,
  .catalog-card-head {
    width: 100%;
    min-width: 0;
  }

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

  .catalog-image-button {
    width: 88px;
    height: 88px;
  }

  .catalog-image-button span {
    display: none;
  }

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

  .catalog-card-barcode {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .image-lightbox {
    padding: 12px;
  }

  .image-lightbox-panel {
    width: min(96vw, 720px);
    border-radius: 20px;
  }

  .image-lightbox-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .products .section-heading h2 {
    font-size: clamp(38px, 10.6vw, 46px);
  }

  .products .section-heading > p {
    padding-right: 6px;
    overflow-wrap: anywhere;
  }

  .wholesale {
    gap: 50px;
    padding: 85px 18px;
  }

  .wholesale-copy h2 {
    font-size: clamp(47px, 14vw, 65px);
  }

  .wholesale-numbers article {
    min-height: 112px;
  }

  .product-plus {
    transform: translateY(0);
  }

  .products-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-visual {
    min-height: 520px;
  }

  .story-copy {
    padding: 80px 18px;
  }

  .catering {
    min-height: 740px;
    align-items: flex-end;
  }

  .catering-bg::after {
    background: linear-gradient(0deg, rgba(55,34,0,.96) 0%, rgba(75,45,0,.72) 58%, rgba(75,45,0,.18) 100%);
  }

  .catering-content {
    width: 100%;
    padding: 80px 18px;
  }

  .process-line {
    grid-template-columns: 1fr 1fr;
    gap: 55px 20px;
  }

  .process-line::before {
    display: none;
  }

  .social-number {
    min-height: 420px;
    padding: 75px 25px;
  }

  .social-copy {
    padding: 80px 18px;
  }

  .faq {
    gap: 40px;
  }

  .accordion-item button {
    font-size: 19px;
  }

  .contact {
    gap: 50px;
    padding: 85px 18px;
  }

  .contact-details {
    padding: 26px 20px;
  }

  .contact-details div {
    grid-template-columns: 82px 1fr;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 38px 18px 90px;
  }

  .footer-brand .brand-logo {
    width: 96px;
    height: 78px;
  }

  .product-modal {
    padding: 40px 28px 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
