:root {
  --cream: #f7f1e7;
  --cream-2: #fffaf2;
  --ink: #0b2d25;
  --ink-2: #143c34;
  --dark: #062b24;
  --dark-2: #041f1a;
  --gold: #c9944e;
  --gold-2: #e2b36b;
  --gold-3: #d9b47c;
  --muted: #5f665f;
  --line: #e6dac9;
  --card: rgba(255, 255, 255, 0.72);
  --shadow: 0 18px 45px rgba(46, 34, 18, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.container {
  width: min(var(--max), calc(100% - 88px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 96px;
  padding: 0 max(44px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: 26px;
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(16, 45, 38, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 72px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
  color: #0d231e;
}

.main-nav a {
  position: relative;
  padding: 38px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.lang span,
.lang a {
  opacity: 0.45;
  color: inherit;
  text-decoration: none;
}

.lang span.is-active,
.lang a.is-active {
  opacity: 1;
  color: #0d231e;
}

.lang i {
  width: 1px;
  height: 16px;
  background: #0d231e;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 4px;
  color: #fffdf7;
  background: #08271f;
  box-shadow: 0 12px 24px rgba(8, 39, 31, 0.18);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta--accent,
.header-cta--secondary {
  background: transparent;
  color: #08271f;
  border: 1.5px solid #08271f;
  box-shadow: none;
}

.header-cta--secondary:hover {
  background: rgba(8, 39, 31, 0.06);
  transform: translateY(-2px);
}

.header-cta svg {
  width: 18px;
  height: 18px;
  color: var(--gold-2);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: calc(100svh - 96px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 1) 0 45%, rgba(247, 241, 231, 0.78) 57%, rgba(247, 241, 231, 0.24) 74%, rgba(247, 241, 231, 0) 100%),
    radial-gradient(circle at 2% 0%, #fffaf2, transparent 42%),
    #f5eee3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.98) 0 45%, rgba(247, 241, 231, 0.7) 57%, rgba(247, 241, 231, 0.16) 74%, rgba(247, 241, 231, 0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100svh - 96px);
  width: min(var(--max), calc(100% - 88px));
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  width: 100%;
  padding: 56px 36px 56px 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #b77831;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.eyebrow svg {
  width: 28px;
  height: 28px;
}

.eyebrow i {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 720px;
  margin: 28px 0 24px;
  color: var(--ink);
  font-size: clamp(40px, 4.05vw, 62px);
}

.hero p {
  max-width: 680px;
  margin: 0 0 28px;
  color: #24342e;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 0;
}

.btn,
.video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  padding: 0 28px;
  color: #fffaf0;
  background: #082d25;
  box-shadow: 0 16px 34px rgba(8, 45, 37, 0.18);
}

.btn svg,
.video-link svg {
  width: 18px;
  height: 18px;
}

.video-link {
  color: #0e2f27;
  background: transparent;
  text-decoration: none;
}

.video-link span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #9aa39c;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 680px;
  border: 1px solid rgba(16, 45, 38, 0.13);
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.68);
  box-shadow: 0 18px 44px rgba(47, 35, 20, 0.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero-badges span {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 12px 18px;
  color: #123229;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-badges i {
  display: grid;
  gap: 3px;
  font-style: normal;
}

.hero-badges strong {
  color: #082d25;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1;
}

.hero-badges small {
  color: #5a665e;
  font-size: 10px;
  font-weight: 600;
}

.hero-badges span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 1px;
  background: rgba(201, 148, 78, 0.28);
}

.hero-badges svg {
  width: 30px;
  height: 30px;
  color: #b77831;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - 96px);
  object-fit: cover;
  object-position: right center;
}

.partners-strip {
  color: #fffaf2;
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 87, 71, 0.55), transparent 70%),
    linear-gradient(90deg, #082d25, #073027 45%, #05261f);
  padding: 28px 0 32px;
  overflow: hidden;
}

.partners-strip__inner {
  width: 100%;
}

.partners-strip .partner-panel__label {
  margin: 0 0 10px;
  color: var(--gold-3);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partners-strip .partner-panel__copy {
  width: min(var(--max), calc(100% - 88px));
  margin: 0 auto 18px;
  color: #fffaf2;
}

.partners-strip .partner-panel__subtitle {
  margin: 0;
  max-width: 42ch;
  color: #fffaf2;
  font-family: var(--sans);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 500;
  line-height: 1.35;
}

.partners-strip .partner-panel__fact {
  margin: 10px 0 0;
  max-width: 56ch;
  color: rgba(255, 250, 242, 0.88);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
}

.partners-strip .partner-panel__accent {
  color: var(--gold-3);
  font-weight: 700;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.logo-marquee__track,
.degusta-band__track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: logo-marquee 36s linear infinite;
  will-change: transform;
}

.logo-marquee__track[data-infinite-marquee],
.degusta-band__track[data-infinite-marquee] {
  animation-play-state: paused;
}

.logo-marquee__track[data-infinite-marquee].is-marquee-ready,
.degusta-band__track[data-infinite-marquee].is-marquee-ready {
  animation-play-state: running;
}

.logo-marquee:hover .logo-marquee__track[data-infinite-marquee].is-marquee-ready {
  animation-play-state: paused;
}

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

.partners-strip .logo-card {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 160px;
  min-height: 76px;
  padding: 12px 20px;
  text-align: center;
}

.partners-strip .logo-card img {
  width: auto;
  max-width: 140px;
  height: 40px;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
}

.proof-strip {
  padding: 56px max(24px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: linear-gradient(120deg, #0f2a20 0%, #1d4536 50%, #0f2a20 100%);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
}

.proof-item {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  text-align: center;
  border-right: 0;
}

.proof-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(217, 180, 124, 0.35);
}

.proof-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 40px;
  margin-bottom: 14px;
  color: var(--gold-3);
  font-size: 32px;
  line-height: 1;
}

.proof-item__icon i {
  color: inherit;
}

.proof-item__title,
.proof-item strong {
  display: block;
  margin: 0 0 8px;
  color: #ffffff;
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.proof-item__text,
.proof-item span:not(.proof-item__icon) {
  max-width: 180px;
  color: #c9d3ce;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.4;
}

.section {
  padding: 82px 0;
  scroll-margin-top: 104px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: stretch;
}

.why,
.process,
.faq {
  background:
    radial-gradient(circle at 0% 0%, #fffdf8 0, transparent 38%),
    var(--cream);
}

.why h2,
.products h2,
.standards h2,
.cases h2,
.tasting h2,
.faq h2,
.process h2 {
  max-width: 680px;
  margin: 12px 0 18px;
  color: #161b16;
  font-size: clamp(38px, 4.2vw, 48px);
}

.section-lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: #3a443e;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.benefit-card,
.product-card,
.cert-card,
.accordion details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(58, 41, 20, 0.07);
}

.benefit-card {
  min-height: 172px;
  padding: 26px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.benefit-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 148, 78, 0.58);
  box-shadow: 0 20px 42px rgba(58, 41, 20, 0.12);
}

.benefit-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #112d27;
  stroke-width: 1.45;
}

.benefit-card h3 {
  margin-bottom: 9px;
  color: #111611;
  font-family: var(--sans);
  font-size: 21px;
  line-height: 1.12;
}

.benefit-card p,
.product-card p {
  margin: 0;
  color: #4a534d;
  font-size: 14px;
}

.image-card {
  margin: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.catalogue-cta {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(300px, 0.75fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 48px;
  padding: 40px max(44px, calc((100vw - var(--max)) / 2));
  scroll-margin-top: 104px;
  color: #fffaf2;
  background:
    radial-gradient(circle at 70% 20%, rgba(32, 88, 72, 0.7), transparent 45%),
    linear-gradient(90deg, #082b23, #06281f);
}

.catalogue-image {
  margin-left: -44px;
}

.catalogue-image img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 0 8px 8px 0;
}

.catalogue-copy h2 {
  max-width: 520px;
  margin-bottom: 22px;
  color: #fffaf2;
  font-size: clamp(32px, 3vw, 42px);
}

.catalogue-copy ul,
.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalogue-copy li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 250, 242, 0.9);
}

.catalogue-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold-2);
  border-radius: 3px;
  color: var(--gold-2);
  font-size: 12px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form .field {
  display: grid;
  gap: 6px;
  margin: 0;
}

.lead-form .field-label {
  color: rgba(255, 250, 242, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lead-form input,
.lead-form textarea,
.lead-form select,
.custom-select__button {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 250, 242, 0.38);
  border-radius: 2px;
  padding: 0 14px;
  color: #fffaf2;
  background: rgba(255, 255, 255, 0.03);
  outline: 0;
}

.lead-form textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 250, 242, 0.82);
}

.phone-field {
  display: grid;
  gap: 6px;
}

.phone-field__row {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  border: 1px solid rgba(255, 250, 242, 0.38);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
}

.phone-field__row > span {
  text-align: center;
  border-right: 1px solid rgba(255, 250, 242, 0.2);
}

.phone-field__row input {
  border: 0;
  min-height: 44px;
  background: transparent;
}

.custom-select {
  position: relative;
  z-index: 6;
}

.custom-select__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.custom-select__button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--gold-2);
  stroke-width: 1.7;
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select__button,
.custom-select__button:hover,
.custom-select__button:focus-visible {
  border-color: rgba(226, 179, 107, 0.82);
  background: rgba(255, 250, 242, 0.06);
  box-shadow: 0 0 0 3px rgba(226, 179, 107, 0.12);
}

.custom-select.is-open .custom-select__button svg {
  transform: rotate(180deg);
}

.custom-select.is-invalid .custom-select__button {
  border-color: rgba(226, 108, 83, 0.9);
  box-shadow: 0 0 0 3px rgba(226, 108, 83, 0.14);
}

.custom-select__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  display: grid;
  gap: 2px;
  max-height: 260px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid rgba(226, 179, 107, 0.44);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(9, 53, 43, 0.98), rgba(4, 34, 28, 0.98));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.custom-select.is-open .custom-select__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select__list li {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 4px;
  color: rgba(255, 250, 242, 0.86);
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease;
}

.custom-select__list li:hover,
.custom-select__list li.is-selected {
  color: #fffaf2;
  background: rgba(201, 148, 78, 0.2);
}

.custom-select__list li.is-selected::after {
  content: "✓";
  margin-left: auto;
  color: var(--gold-2);
}

.btn-gold {
  min-height: 52px;
  color: #fffaf2;
  background: linear-gradient(135deg, #bf7f38, #dca75d);
}

.lead-form p {
  margin: 4px 0 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 11px;
}

.process {
  padding-bottom: 70px;
}

.process-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 46px;
  align-items: stretch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.step {
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 58px;
  width: calc(100% - 44px);
  height: 1px;
  background: var(--gold);
}

.step b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: #fffaf2;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: #3f4842;
  font-size: 13px;
}

.process-media {
  align-self: stretch;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 218, 201, 0.9);
  border-radius: 14px;
  background: #fffaf2;
  box-shadow: 0 22px 54px rgba(58, 41, 20, 0.12);
}

.process-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: 72% center;
}

.products {
  background:
    radial-gradient(circle at 88% 8%, rgba(201, 148, 78, 0.12), transparent 30%),
    linear-gradient(180deg, #fff9ef, #f8f0e5);
}

.products-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 48px;
  align-items: end;
}

.products-head p {
  max-width: 480px;
  margin: 0 0 22px;
  color: #4a534d;
  font-size: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.product-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 326px;
  padding: 24px 138px 22px 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 48%, rgba(226, 179, 107, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.76));
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(226, 179, 107, 0));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 48px;
  z-index: 1;
  width: 96px;
  height: 220px;
  background: var(--product-image, url("../product-card-bottle.png")) center / contain no-repeat;
  filter: drop-shadow(0 16px 20px rgba(42, 27, 10, 0.18));
  opacity: 0.92;
  transform: rotate(0deg) scale(1);
  transform-origin: 50% 88%;
  transition: transform 0.32s ease, filter 0.32s ease, opacity 0.32s ease;
}

.product-card:hover::after {
  opacity: 1;
  filter: drop-shadow(0 22px 28px rgba(42, 27, 10, 0.24));
  transform: translateY(-6px) rotate(-4deg) scale(1.08);
}

.product-card.product-card--syrups::after {
  background-image: var(--product-image, url("../products/syrups.png"));
}

.product-card.product-card--topping::after {
  background-image: var(--product-image, url("../products/topping.png"));
}

.product-card.product-card--puree::after {
  background-image: var(--product-image, url("../products/puree.png"));
}

.product-card.product-card--milkshake::after {
  background-image: var(--product-image, url("../products/milkshake.png"));
}

.product-card.product-card--bar::after {
  background-image: var(--product-image, url("../products/bar-sauce.png"));
}

.product-card.product-card--dekor::after {
  background-image: var(--product-image, url("../products/dekor-sauce.png"));
}

.product-card > * {
  position: relative;
  z-index: 2;
}

.product-card h3 {
  max-width: 330px;
  margin: 8px 0 10px;
  color: #0b2d25;
  font-size: 25px;
  line-height: 1.12;
}

.product-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  padding: 6px 9px;
  border-radius: 4px;
  color: #435049;
  background: rgba(11, 45, 37, 0.06);
  font-size: 12px;
  font-weight: 700;
}

.product-card strong {
  display: inline-flex;
  align-self: end;
  margin-top: 22px;
  color: #b77831;
  font-size: 14px;
  font-weight: 800;
}

.sku-comparison {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(226, 179, 107, 0.14), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(8, 45, 37, 0.08), transparent 36%),
    #f6efe4;
}

.sku-comparison::before {
  content: "";
  position: absolute;
  left: max(28px, calc((100vw - var(--max)) / 2));
  right: max(28px, calc((100vw - var(--max)) / 2));
  top: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 148, 78, 0), rgba(201, 148, 78, 0.42), rgba(201, 148, 78, 0));
}

.sku-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.sku-heading h2 {
  max-width: 720px;
  margin: 12px 0 0;
  color: #111611;
  font-size: clamp(38px, 4vw, 48px);
}

.sku-heading p {
  max-width: 470px;
  margin: 0 0 8px;
  color: #48524c;
  font-size: 16px;
}

.sku-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sku-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px 20px;
  border: 1px solid rgba(16, 45, 38, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 242, 0.76));
  box-shadow: 0 14px 34px rgba(58, 41, 20, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.sku-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 148, 78, 0.5);
  box-shadow: 0 20px 42px rgba(58, 41, 20, 0.12);
}

.sku-card h3 {
  margin: 0;
  color: #0b2d25;
  font-family: var(--sans);
  font-size: 20px;
}

.sku-card p {
  margin: 0;
  color: #3a443e;
}

.sku-card b {
  color: var(--gold);
  font-size: 15px;
}

.sku-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.sku-card li {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 45, 38, 0.08);
  color: #4a534d;
  font-size: 13px;
}

.sku-card li span {
  color: #9a682c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sku-panel {
  position: relative;
  z-index: 1;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 250, 242, 0.86));
  box-shadow: 0 28px 70px rgba(58, 41, 20, 0.12);
}

.sku-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 30px;
  align-items: end;
  padding: 30px 34px;
  color: #fffaf2;
  background:
    radial-gradient(circle at 92% 0%, rgba(226, 179, 107, 0.24), transparent 38%),
    linear-gradient(100deg, #062b24 0%, #082d25 58%, #263b2b 100%);
}

.sku-panel__head span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sku-panel__head h3 {
  color: #fffaf2;
  font-size: 28px;
  line-height: 1.1;
}

.sku-panel__head p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 13px;
}

.sku-table {
  width: 100%;
  border-collapse: collapse;
  color: #112f28;
}

.sku-table th,
.sku-table td {
  padding: 18px 28px;
  border-bottom: 1px solid rgba(230, 218, 201, 0.9);
  text-align: left;
  vertical-align: middle;
}

.sku-table th {
  color: #9a682c;
  background: rgba(255, 250, 242, 0.8);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sku-table td {
  color: #18362f;
  font-size: 15px;
}

.sku-table td:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
  font-weight: 800;
}

.sku-table td b {
  color: #082d25;
  font-size: 15px;
  white-space: nowrap;
}

.sku-table tr:last-child td {
  border-bottom: 0;
}

.sku-table tbody tr {
  transition: background 0.18s ease;
}

.sku-table tbody tr:hover {
  background: rgba(201, 148, 78, 0.08);
}

.sku-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 148, 78, 0.34);
  border-radius: 6px;
  color: #b77831;
  background: rgba(255, 250, 242, 0.78);
}

.sku-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.55;
}

.degusta-band {
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 148, 78, 0.35), transparent 45%),
    linear-gradient(90deg, #082d25, #0a3a30 50%, #06261f);
  border-block: 1px solid rgba(226, 179, 107, 0.35);
}

.degusta-band__link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 88px));
  margin: 0 auto;
  min-height: 88px;
  padding: 18px 0;
  color: #fffaf2;
}

.degusta-band__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.degusta-band__track {
  display: flex;
  gap: 18px;
  width: max-content;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: logo-marquee 28s linear infinite;
  color: rgba(255, 250, 242, 0.88);
}

.degusta-band__track span:nth-child(odd) {
  color: var(--gold-2);
}

.degusta-band__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  background: linear-gradient(135deg, #bf7f38, #dca75d);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.degusta-band__link:hover .degusta-band__cta {
  transform: translateY(-2px);
}

.degusta-band__cta svg {
  width: 18px;
  height: 18px;
}

.footer-degusta {
  display: inline-flex;
  margin-top: 18px;
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 250, 242, 0.72);
}

.footer-bottom a:hover {
  color: var(--gold-2);
}

.tasting {
  background:
    radial-gradient(circle at 100% 0%, #fffdf8 0, transparent 42%),
    radial-gradient(circle at 0% 80%, rgba(8, 45, 37, 0.06), transparent 40%),
    var(--cream);
}

.tasting-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 1fr);
  gap: 54px;
  align-items: center;
}

.tasting-media {
  min-height: 420px;
  border-radius: 20px;
}

.tasting-media img {
  min-height: 420px;
}

.tasting h2 {
  max-width: 560px;
  margin: 12px 0 18px;
  color: #161b16;
  font-size: clamp(38px, 4.2vw, 48px);
}

.tasting-copy .section-lead {
  margin-bottom: 22px;
}

.tasting-list {
  margin-bottom: 28px;
}

.tasting-list li {
  position: relative;
  padding-left: 34px;
  color: #3a443e;
  font-size: 15px;
}

.tasting-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold-3);
  border-radius: 3px;
  color: var(--gold-3);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.tasting-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}

.tasting-wa-link {
  display: inline-block;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(217, 180, 124, 0.7);
}

.tasting-wa-link:hover,
.tasting-wa-link:focus-visible {
  color: var(--gold);
  outline: none;
}

.tasting-marquee {
  padding: 18px 0;
  overflow: hidden;
  color: #fffaf2;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 148, 78, 0.35), transparent 65%),
    linear-gradient(90deg, #082d25, #0a3a30 45%, #073027);
}

.tasting-marquee .logo-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.tasting-marquee__track {
  gap: 0;
  animation-duration: 28s;
}

.tasting-marquee__item {
  flex: 0 0 auto;
  padding: 6px 22px;
  color: #fffaf2;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.tasting-marquee__item:hover,
.tasting-marquee__item:focus-visible {
  color: #e8b86a;
  outline: none;
}

.tasting-marquee__dot {
  flex: 0 0 auto;
  padding: 0 4px;
  color: rgba(232, 184, 106, 0.7);
  font-size: 22px;
  line-height: 1;
  user-select: none;
}

.standards {
  position: relative;
  overflow: hidden;
  color: #102d27;
  background:
    radial-gradient(circle at 10% 8%, rgba(226, 179, 107, 0.16), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(8, 45, 37, 0.08), transparent 34%),
    linear-gradient(180deg, #fffaf2, #f5ede2);
}

.standards::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(201, 148, 78, 0) 0, rgba(201, 148, 78, 0.1) 50%, rgba(201, 148, 78, 0) 100%);
  opacity: 0.55;
}

.standards-wrap {
  position: relative;
  z-index: 1;
}

.standards-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.standards-title {
  display: block;
}

.standards-title span {
  display: none;
}

.standards-title svg {
  display: none;
}

.standards h2 {
  max-width: 720px;
  margin: 0;
  color: #111611;
  font-size: clamp(36px, 3.6vw, 46px);
}

.standards-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #3a443e;
  font-size: 18px;
}

.standards-extra {
  max-width: 620px;
  margin: 10px 0 0;
  color: #3a443e;
  font-size: 16px;
  line-height: 1.45;
}

.cert-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cert-nav__btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16, 45, 38, 0.16);
  border-radius: 50%;
  background: #fffaf2;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cert-nav__btn:hover {
  border-color: var(--gold);
  background: #fff;
}

.cert-nav__btn svg {
  width: 20px;
  height: 20px;
}

.cert-slider {
  overflow: hidden;
  margin-right: calc(-1 * max(44px, calc((100vw - var(--max)) / 2)));
  mask-image: linear-gradient(90deg, #000 0%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 78%, transparent 100%);
}

.cert-slider.is-at-end {
  mask-image: none;
  -webkit-mask-image: none;
}

.cert-slider__track {
  display: flex;
  gap: 18px;
  transition: transform 0.4s ease;
}

.cert-slider .cert-card {
  flex: 0 0 calc((100% - 36px) / 2.25);
  min-width: 260px;
}

.cert-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  color: #102d27;
  text-decoration: none;
  border: 1px solid rgba(201, 148, 78, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.84));
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 148, 78, 0.52);
  box-shadow: 0 24px 54px rgba(58, 41, 20, 0.14);
}

.cert-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(230, 218, 201, 0.95);
  border-radius: 6px;
  background: #efe7da;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.cert-visual img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: top center;
  background: #fff;
  transition: transform 0.35s ease;
}

.cert-card:hover .cert-visual img {
  transform: scale(1.03);
}

.cert-card p {
  margin: 0;
  color: #0b2d25;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.quality-panel {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid rgba(226, 179, 107, 0.26);
  border-radius: 10px;
  color: #fffaf2;
  background:
    radial-gradient(circle at 90% 0%, rgba(226, 179, 107, 0.2), transparent 36%),
    linear-gradient(100deg, #062b24 0%, #082d25 58%, #263b2b 100%);
  box-shadow: 0 28px 70px rgba(58, 41, 20, 0.13);
}

.quality-panel h3 {
  margin-bottom: 24px;
  color: #fffaf2;
  font-size: 28px;
}

.quality-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quality-steps article {
  position: relative;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(226, 179, 107, 0.25);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.06);
}

.quality-steps article::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 66px;
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 179, 107, 0.5), rgba(226, 179, 107, 0));
}

.quality-steps b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  color: var(--gold-2);
}

.quality-steps p {
  margin: 0;
  color: rgba(255, 250, 242, 0.84);
  font-size: 14px;
}

.cases {
  position: relative;
  overflow: hidden;
  color: #102d27;
  background:
    radial-gradient(circle at 8% 0%, rgba(226, 179, 107, 0.2), transparent 32%),
    radial-gradient(circle at 86% 16%, rgba(9, 53, 43, 0.09), transparent 34%),
    linear-gradient(180deg, #fffaf2 0%, #f3ecdf 100%);
}

.cases::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(226, 179, 107, 0.12), transparent 24%, transparent 76%, rgba(9, 53, 43, 0.06));
}

.cases-wrap {
  position: relative;
  z-index: 1;
}

.cases-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.cases h2 {
  display: block;
  max-width: 760px;
  margin: 0;
  color: #161b16;
  font-size: clamp(38px, 4vw, 48px);
}

.cases h2 svg {
  display: none;
}

.cases p {
  color: rgba(255, 250, 242, 0.76);
}

.partner-panel {
  padding: 24px;
  border: 1px solid rgba(226, 179, 107, 0.26);
  border-radius: 10px;
  background:
    radial-gradient(circle at 96% 0%, rgba(226, 179, 107, 0.13), transparent 34%),
    linear-gradient(145deg, #113d32, #082d25);
  box-shadow: 0 28px 70px rgba(58, 41, 20, 0.14);
}

.partner-panel__label {
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.logos span {
  display: grid;
  align-content: center;
  place-items: center;
  gap: 8px;
  min-height: 88px;
  padding: 10px;
  border: 1px solid rgba(226, 179, 107, 0.28);
  border-radius: 7px;
  color: rgba(255, 250, 242, 0.9);
  background:
    radial-gradient(circle at 50% 0%, rgba(226, 179, 107, 0.12), transparent 55%),
    rgba(255, 250, 242, 0.045);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.logos span:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 179, 107, 0.58);
  background: rgba(255, 250, 242, 0.08);
}

.logo-card {
  position: relative;
  overflow: hidden;
}

.logo-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border-radius: 5px;
  border: 1px solid rgba(255, 250, 242, 0.04);
}

.logo-card img {
  display: block;
  width: min(138px, 100%);
  height: 42px;
  object-fit: contain;
  padding: 7px 10px;
  border: 1px solid rgba(226, 179, 107, 0.18);
  border-radius: 6px;
  opacity: 0.96;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 237, 223, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.logo-card i {
  display: block;
  position: relative;
  z-index: 1;
  font-style: normal;
  color: rgba(255, 250, 242, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.logo-card.is-placeholder img {
  display: none;
}

.logo-card.is-placeholder i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px dashed rgba(226, 179, 107, 0.42);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.88);
  background: rgba(255, 250, 242, 0.04);
  font-size: 12px;
  letter-spacing: 0.01em;
}

.cases-carousel {
  position: relative;
  overflow: hidden;
}

.cases-carousel__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.cases-carousel__controls {
  display: none;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.cases-nav {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16, 45, 38, 0.16);
  border-radius: 4px;
  color: #0b2d25;
  background: rgba(255, 250, 242, 0.88);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cases-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 148, 78, 0.55);
}

.cases-nav svg {
  width: 20px;
  height: 20px;
}

.case-slide {
  --case-accent: #bc7c3e;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(16, 45, 38, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(58, 41, 20, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.case-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(58, 41, 20, 0.16);
}

.case-slide__body {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 28px 28px 22px;
  background:
    radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--case-accent) 14%, transparent), transparent 42%),
    #ffffff;
}

.case-slide__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.case-slide .case-slide__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 0 0 6px;
  color: var(--case-accent);
  border-bottom: 2px solid var(--case-accent);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--case-accent);
  opacity: 1;
}

.case-slide__copy h3 {
  max-width: 420px;
  margin: 0 0 18px;
  color: #171717;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.case-slide__copy dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.case-slide__copy dl div {
  display: grid;
  gap: 2px;
}

.case-slide__copy dt {
  margin: 0;
  color: var(--case-accent);
  font-size: 14px;
  font-weight: 800;
}

.case-slide__copy dd {
  margin: 0;
  color: #222;
  font-size: 13px;
  line-height: 1.45;
}

.case-slide__copy .is-result {
  position: relative;
  padding-bottom: 10px;
}

.case-slide__copy .is-result dd {
  max-width: 520px;
}

.case-slide__copy .is-result::after {
  content: "";
  position: absolute;
  left: 42px;
  bottom: -18px;
  width: 1px;
  height: 28px;
  background: var(--case-accent);
}

.case-slide__copy .is-result::before {
  content: "";
  position: absolute;
  left: 36px;
  bottom: -26px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--case-accent);
}

.case-slide__client {
  width: 118px;
  height: auto;
  max-height: 92px;
  object-fit: contain;
  object-position: top right;
}

.case-slide--nevada .case-slide__client {
  filter: brightness(0);
}

.case-slide--tavuk .case-slide__client {
  filter: brightness(0) sepia(1) saturate(5) hue-rotate(295deg) brightness(0.55);
}

.case-slide__metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
  text-align: center;
}

.case-slide__metrics div {
  display: grid;
  gap: 4px;
  align-content: start;
}

.case-slide__metrics strong {
  color: var(--case-accent);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.case-slide__metrics b {
  color: #171717;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.case-slide__metrics span {
  color: #333;
  font-size: 12px;
  line-height: 1.3;
}

.case-slide__foot {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px 18px;
  background: var(--case-accent);
}

.case-slide__foot img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.history-production {
  position: relative;
  overflow: hidden;
  color: #102d27;
  background:
    radial-gradient(circle at 10% 0%, rgba(226, 179, 107, 0.18), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(9, 53, 43, 0.09), transparent 34%),
    linear-gradient(180deg, #fffaf2 0%, #f3ecdf 100%);
}

.history-production::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(226, 179, 107, 0.1), transparent 18%, transparent 82%, rgba(9, 53, 43, 0.06)),
    repeating-linear-gradient(90deg, rgba(9, 53, 43, 0.035) 0 1px, transparent 1px 120px);
  opacity: 0.55;
}

.history-wrap {
  position: relative;
  z-index: 1;
}

.history-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.45fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}

.history-head h2 {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 820px;
  margin: 0;
  color: #161b16;
  font-size: clamp(38px, 4vw, 50px);
}

.history-head h2 svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--gold-2);
  stroke-width: 1.55;
}

.history-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.timeline-panel,
.production-card,
.sustainability-panel {
  border: 1px solid rgba(226, 179, 107, 0.26);
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 0%, rgba(226, 179, 107, 0.13), transparent 34%),
    linear-gradient(145deg, #143e34, #092e26);
  box-shadow: 0 28px 70px rgba(58, 41, 20, 0.14);
}

.timeline-panel {
  padding: 30px 30px 34px;
}

.timeline-panel--wide {
  margin-bottom: 22px;
}

.ops-panel {
  padding: 20px 22px;
  border: 1px solid rgba(226, 179, 107, 0.26);
  border-radius: 12px;
  background:
    radial-gradient(circle at 96% 0%, rgba(226, 179, 107, 0.14), transparent 34%),
    radial-gradient(circle at 8% 100%, rgba(255, 250, 242, 0.06), transparent 40%),
    linear-gradient(145deg, #143e34, #092e26);
  box-shadow: 0 28px 70px rgba(58, 41, 20, 0.14);
}

.ops-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.ops-panel__head .panel-label {
  margin-bottom: 0;
}

.ops-panel__head p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: 13px;
  line-height: 1.4;
  text-align: right;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ops-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-content: start;
  min-height: 0;
  padding: 12px 12px 13px;
  border: 1px solid rgba(226, 179, 107, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ops-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(226, 179, 107, 0.48);
  background: rgba(255, 250, 242, 0.08);
}

.ops-grid__label {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ops-grid__label i {
  width: 1.1em;
  font-size: 13px;
  text-align: center;
}

.ops-grid strong {
  grid-column: 1 / -1;
  color: rgba(255, 250, 242, 0.9);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.history-compact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: stretch;
}

.sustainability-panel--compact {
  margin-top: 0;
}

.sustainability-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.panel-label {
  margin-bottom: 20px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0;
  padding: 34px 0 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 13px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 179, 107, 0.92), transparent);
}

.timeline li {
  position: relative;
  min-height: 170px;
  padding: 28px 20px 22px;
  border: 1px solid rgba(226, 179, 107, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -28px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  background: #082a23;
  box-shadow: 0 0 0 6px rgba(226, 179, 107, 0.1);
}

.timeline li:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 179, 107, 0.52);
  background: rgba(255, 250, 242, 0.08);
}

.timeline time {
  display: block;
  margin-bottom: 12px;
  color: #fffaf2;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.timeline p {
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.production-card {
  display: grid;
  align-content: start;
  padding: 30px;
  background:
    radial-gradient(circle at 100% 100%, rgba(226, 179, 107, 0.14), transparent 42%),
    linear-gradient(145deg, #143e34, #092e26);
}

.production-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.production-card li {
  display: grid;
  gap: 7px;
  padding: 15px 0;
  border-top: 1px solid rgba(226, 179, 107, 0.18);
  color: rgba(255, 250, 242, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.production-card li:first-child {
  border-top: 0;
  padding-top: 0;
}

.production-card span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sustainability-panel {
  margin-top: 22px;
  padding: 30px;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sustainability-grid article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(226, 179, 107, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.045);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.sustainability-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 179, 107, 0.46);
  background: rgba(255, 250, 242, 0.075);
}

.sustainability-grid b {
  display: block;
  margin-bottom: 9px;
  color: #fffaf2;
  font-size: 17px;
}

.sustainability-grid p {
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(226, 179, 107, 0.18), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(9, 53, 43, 0.08), transparent 34%),
    linear-gradient(180deg, #fffaf2 0%, #f3ecdf 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(226, 179, 107, 0.12), transparent 24%, transparent 76%, rgba(9, 53, 43, 0.06));
}

.final-cta-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.8fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(226, 179, 107, 0.3);
  border-radius: 10px;
  color: #fffaf2;
  background:
    radial-gradient(circle at 68% 4%, rgba(226, 179, 107, 0.18), transparent 34%),
    linear-gradient(145deg, #123f34, #082d25);
  box-shadow: 0 30px 76px rgba(58, 41, 20, 0.16);
}

.final-cta-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 242, 0.05);
  border-radius: 7px;
}

.final-cta-media {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}

.final-cta-panel:hover .final-cta-media img {
  transform: scale(1.07);
}

.final-cta-copy,
.cta-contact-form {
  position: relative;
  z-index: 1;
}

.final-cta-copy h2 {
  max-width: 500px;
  margin: 10px 0 24px;
  color: #fffaf2;
  font-size: clamp(36px, 2.25vw, 52px);
  line-height: 1.04;
}

.final-cta-copy p {
  max-width: 420px;
  margin: 0 0 22px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.final-cta-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.final-cta-copy li {
  position: relative;
  min-height: 38px;
  padding: 9px 14px 9px 42px;
  border: 1px solid rgba(226, 179, 107, 0.22);
  border-radius: 999px;
  color: rgba(255, 250, 242, 0.9);
  background: rgba(255, 250, 242, 0.055);
  font-weight: 700;
}

.final-cta-copy li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 3px rgba(226, 179, 107, 0.18);
}

.cta-contact-form {
  padding: 20px;
  border: 1px solid rgba(226, 179, 107, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.055);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 46px;
}

.faq-visual {
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(58, 41, 20, 0.12);
  background: #12352c;
}

.faq-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion__item {
  padding: 0;
  overflow: hidden;
}

.accordion summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 22px 18px 42px;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.accordion summary::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #171717;
  transform: translateY(-50%);
  transform-origin: 35% 50%;
  transition: transform 0.3s ease;
}

.accordion__item.is-open > summary::before,
.accordion__item[open] > summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.accordion__panel {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.35s ease, opacity 0.28s ease;
}

.accordion__item.is-open > .accordion__panel {
  opacity: 1;
}

.accordion__panel p {
  margin: 0;
  padding: 0 22px 18px 42px;
  color: #4c554f;
}

.footer {
  color: rgba(255, 250, 242, 0.82);
  background: linear-gradient(180deg, #062c24, #041b16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr 0.85fr 1fr;
  gap: 38px;
  padding: 48px 0;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  height: 74px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer p {
  max-width: 260px;
  margin: 0;
  font-size: 13px;
}

.footer h3 {
  margin: 0 0 14px;
  color: #fffaf2;
  font-size: 15px;
}

.footer nav,
.footer address {
  display: grid;
  align-content: start;
  gap: 8px;
  font-style: normal;
}

.footer a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(44px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 250, 242, 0.16);
  color: rgba(255, 250, 242, 0.56);
  font-size: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  max-width: calc(100% - 32px);
  padding: 14px 18px;
  border: 1px solid rgba(226, 179, 107, 0.35);
  border-radius: 4px;
  color: #fffaf2;
  background: #062b24;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, 140%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 1;
  transform: none;
  animation: fade-up 0.55s ease both;
}

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1220px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 78px;
    padding: 0 24px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  body.menu-open .main-nav,
  body.menu-open .header-actions {
    position: fixed;
    left: 18px;
    right: 18px;
    display: flex;
    background: #fffaf2;
    border: 1px solid var(--line);
  }

  body.menu-open .main-nav {
    top: 88px;
    flex-direction: column;
    gap: 0;
    padding: 18px;
  }

  body.menu-open .main-nav a {
    padding: 14px 0;
  }

  body.menu-open .header-actions {
    top: 470px;
    justify-content: space-between;
    padding: 18px;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
  }

  .hero-copy {
    padding: 54px 0 24px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: calc(100svh - 96px);
  }

  .catalogue-cta {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta-panel {
    grid-template-columns: 0.9fr 1fr;
  }

  .cta-contact-form {
    grid-column: 1 / -1;
  }

  .catalogue-image {
    margin-left: 0;
  }

  .lead-form {
    grid-column: 1 / -1;
  }

  .products-head,
  .sku-heading,
  .standards-head,
  .history-head,
  .sku-panel__head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cert-grid,
  .quality-steps,
  .sustainability-grid,
  .sku-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .logos,
  .partners-strip .logos {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .product-card {
    padding-right: 128px;
  }

  .product-card::after {
    right: 22px;
    width: 78px;
    height: 206px;
  }

  .history-compact {
    grid-template-columns: 1fr;
  }

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

  .ops-panel__head {
    align-items: start;
    flex-direction: column;
  }

  .ops-panel__head p {
    text-align: left;
  }

  .proof-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 40px;
  }

  .proof-item:nth-child(4)::before {
    display: none;
  }

  .proof-item:nth-child(n + 4) {
    border-top: 0;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .benefit-grid,
  .product-grid,
  .footer-grid,
  .steps,
  .sku-cards {
    grid-template-columns: 1fr;
  }

  .proof-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .proof-item::before {
    display: none;
  }

  .proof-item:nth-child(2n)::before {
    display: block;
  }

  @media (max-width: 600px) {
    .proof-strip__grid {
      grid-template-columns: 1fr;
      row-gap: 32px;
    }

    .proof-item::before {
      display: none;
    }
  }

  .split-grid,
  .tasting-grid,
  .process-wrap,
  .standards-grid,
  .history-grid,
  .history-compact,
  .faq-grid,
  .final-cta-panel,
  .catalogue-cta,
  .cases-carousel__track {
    grid-template-columns: 1fr;
  }

  .cases-carousel__controls {
    display: flex;
  }

  .cert-grid,
  .quality-steps,
  .sustainability-grid,
  .sustainability-grid--3,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    padding: 0 0 0 28px;
  }

  .timeline::before {
    left: 6px;
    right: auto;
    top: 8px;
    bottom: 8px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(226, 179, 107, 0.92), transparent);
  }

  .timeline li {
    min-height: 0;
  }

  .timeline li::before {
    left: -29px;
    top: 28px;
  }

  .logos,
  .partners-strip .logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-slide__top {
    grid-template-columns: 1fr;
  }

  .case-slide__client {
    justify-self: start;
    object-position: left top;
  }

  .case-slide__metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-slide__copy .is-result::after,
  .case-slide__copy .is-result::before {
    display: none;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .process-media {
    max-width: 420px;
    justify-self: center;
  }

  .process-media img {
    min-height: 280px;
  }

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

@media (max-width: 620px) {
  .brand-logo {
    height: 56px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero {
    padding: 0;
  }

  .hero-inner {
    width: calc(100% - 32px);
  }

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

  .partners-strip {
    padding-inline: 16px;
  }

  .section {
    padding: 58px 0;
  }

  .why h2,
  .products h2,
  .sku-heading h2,
  .standards h2,
  .cases h2,
  .tasting h2,
  .history-head h2,
  .faq h2,
  .process h2 {
    font-size: 38px;
  }

  .catalogue-cta {
    padding-inline: 16px;
  }

  .final-cta-panel {
    padding: 18px;
  }

  .final-cta-media {
    min-height: 240px;
  }

  .product-card {
    min-height: 0;
    padding: 22px 112px 22px 22px;
  }

  .product-card::after {
    right: 18px;
    top: 76px;
    width: 70px;
    height: 186px;
  }

  .timeline-panel,
  .production-card,
  .sustainability-panel,
  .ops-panel {
    padding: 22px;
  }

  .history-head h2 {
    align-items: flex-start;
    gap: 12px;
  }

  .history-head h2 svg {
    width: 28px;
    height: 28px;
    margin-top: 5px;
  }

  .sku-panel__head {
    padding: 22px;
  }

  .sku-table th,
  .sku-table td {
    padding: 15px 18px;
  }
}

/* Degustacion + legal + CTA helpers */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(16, 45, 38, 0.22);
  border-radius: 4px;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(255, 250, 242, 0.8);
}

.degusta-hero {
  padding-top: 48px;
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 148, 78, 0.12), transparent 40%),
    var(--cream);
}

.degusta-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.degusta-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
}

.degusta-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.degusta-steps .products-head {
  width: 100%;
  margin: 0;
}

.degusta-steps .products-head h2 {
  max-width: 16ch;
}

.degusta-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.degusta-steps__grid article {
  padding: 22px;
  border: 1px solid rgba(8, 39, 31, 0.16);
  border-radius: 10px;
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(58, 41, 20, 0.08);
}

.degusta-steps__grid b {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.degusta-steps__grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.degusta-steps__grid p {
  margin: 0;
  color: #3f4842;
  font-size: 14px;
}

.degusta-products-strip {
  display: none;
}

.degusta-categories {
  padding-top: 24px;
  padding-bottom: 40px;
}

.degusta-categories__head {
  margin-bottom: 18px;
}

.degusta-categories__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.degusta-category-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin: 0;
  padding: 16px 12px;
  border: 1px solid rgba(8, 39, 31, 0.12);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 10px 22px rgba(58, 41, 20, 0.06);
}

.degusta-category-card img {
  width: auto;
  max-width: 88px;
  height: 96px;
  object-fit: contain;
}

.degusta-category-card figcaption {
  color: #1b241f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
}

.degusta-booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.85fr);
  gap: 40px;
  align-items: start;
}

.degusta-booking__includes {
  margin-top: 24px;
}

.degusta-booking__includes h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.degusta-booking__includes .check-list {
  color: #2d3731;
}

.degusta-map__head {
  max-width: 720px;
}

.degusta-map__address {
  margin: 14px 0 0;
  color: #3a443e;
  font-size: 16px;
  line-height: 1.55;
}

.degusta-form {
  padding: 28px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 87, 71, 0.55), transparent 70%),
    linear-gradient(180deg, #082d25, #05261f);
}

.degusta-map__frame {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.degusta-map__frame iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  height: 280px;
  border: 0;
}

.degusta-wa {
  padding-top: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 148, 78, 0.12), transparent 42%),
    var(--cream);
}

.degusta-wa__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: var(--shadow);
}

.degusta-wa__inner h2 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 3vw, 36px);
}

.degusta-wa__inner .section-lead {
  margin: 0;
  max-width: 520px;
}

.degusta-wa__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.legal-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.legal-page h1 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 44px);
}

.legal-page h2 {
  margin-top: 28px;
  font-size: 22px;
}

.legal-page p,
.legal-page li {
  max-width: 720px;
  color: #3f4842;
  font-size: 16px;
}

@media (max-width: 1100px) {
  .header-cta--accent,
  .header-cta--secondary {
    display: none;
  }

  .degusta-categories__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .degusta-hero__grid,
  .degusta-booking,
  .degusta-steps__grid,
  .degusta-wa__inner,
  .degusta-categories__grid {
    grid-template-columns: 1fr;
  }

  .degusta-wa__actions {
    justify-content: flex-start;
  }

  .degusta-band__link {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }

  .degusta-band__cta {
    justify-content: center;
    width: 100%;
  }

  .cert-slider .cert-card {
    flex: 0 0 78%;
  }
}
