@font-face {
  font-family: "Saloon Sans";
  src: url("../assets/fonts/saloon-sans.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Western Slab";
  src: url("../assets/fonts/roboto-slab-700.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "Western Slab";
  src: url("../assets/fonts/roboto-slab-900.woff2") format("woff2");
  font-display: swap;
  font-weight: 900;
}

:root {
  --ink: #050403;
  --ink-soft: #0d0905;
  --paper: #fff9ee;
  --muted: #d3c9ba;
  --gold: #ffae00;
  --gold-light: #ffc84a;
  --ember: #ee6d00;
  --line: rgba(255, 174, 0, 0.34);
  --header-height: 98px;
  --content-width: 1680px;
  --transition-warm: #0b0703;
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Saloon Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 900;
  top: 0;
  bottom: 0;
  width: clamp(18px, 3.2vw, 56px);
  pointer-events: none;
  backdrop-filter: blur(5px);
}

body::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 2, 1, 0.72), rgba(3, 2, 1, 0.18) 58%, transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.74) 55%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.74) 55%, transparent 100%);
}

body::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 2, 1, 0.72), rgba(3, 2, 1, 0.18) 58%, transparent);
  -webkit-mask-image: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0.74) 55%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0.74) 55%, transparent 100%);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--gold);
  color: #160d00;
  font-weight: 700;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 174, 0, 0.12);
  background: rgba(5, 4, 3, 0.82);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 58px), var(--content-width));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.header-brand {
  position: relative;
  z-index: 2;
  width: 158px;
  height: 90px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.header-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.62));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 2.3vw, 48px);
}

.nav-link {
  position: relative;
  padding: 34px 0 30px;
  color: rgba(255, 249, 238, 0.78);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 19px;
  left: 50%;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(255, 174, 0, 0.6);
  transition:
    right 220ms ease,
    left 220ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
  left: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 174, 0, 0.3);
  border-radius: 12px;
  background: rgba(5, 4, 3, 0.68);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--gold-light);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 62px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #160d00;
  font-family: "Saloon Sans", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button img {
  width: 29px;
  height: 29px;
  object-fit: contain;
  opacity: 1;
  transform: scale(1.12);
}

.button-primary img {
  filter: brightness(0) saturate(100%);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-light), #ff8c00 72%);
  box-shadow:
    0 12px 32px rgba(238, 109, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button-primary:hover {
  box-shadow:
    0 16px 42px rgba(238, 109, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button-outline {
  border-color: rgba(255, 174, 0, 0.78);
  background: rgba(6, 4, 2, 0.5);
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(255, 174, 0, 0.08);
  backdrop-filter: blur(10px);
}

.button-outline:hover {
  border-color: var(--gold-light);
  background: rgba(255, 174, 0, 0.08);
}

.button-outline img,
.hero-benefits img {
  filter: brightness(0) saturate(100%) invert(73%) sepia(93%) saturate(1452%) hue-rotate(356deg)
    brightness(103%) contrast(104%) drop-shadow(0 0 8px rgba(255, 174, 0, 0.28));
}

.header-cta {
  min-width: 184px;
  min-height: 58px;
  padding-inline: 28px;
}

/*
 * Contrato global das transições: cada seção usa sua própria camada visual,
 * contínua e sem filtro de cor; somente a máscara alpha muda no encontro.
 */
.section-alpha-layer {
  filter: none;
  mix-blend-mode: normal;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.hero {
  --hero-overlap: clamp(100px, 8vw, 150px);
  --hero-stage-height: clamp(760px, 100svh, 1200px);
  position: relative;
  z-index: 2;
  min-height: var(--hero-stage-height);
  overflow: visible;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 34%, rgba(99, 47, 9, 0.2), transparent 34%),
    radial-gradient(circle at 78% 70%, rgba(69, 29, 6, 0.16), transparent 38%),
    repeating-linear-gradient(96deg, rgba(255, 172, 63, 0.018) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, #0d0804 0%, #080502 58%, var(--transition-warm) 100%);
}

.hero-background {
  position: absolute;
  z-index: -5;
  top: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: calc(100% + var(--hero-overlap));
  max-width: none;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  transform: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 var(--hero-stage-height), transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 var(--hero-stage-height), transparent 100%);
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.hero-ambient {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 2, 1, 0.08) 0%, transparent 44%, rgba(2, 2, 1, 0.22) 58%, rgba(2, 2, 1, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, transparent 23%, rgba(4, 3, 2, 0.36) 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 calc(100% - var(--hero-overlap)), transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 calc(100% - var(--hero-overlap)), transparent 100%);
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 56px), var(--content-width));
  min-height: var(--hero-stage-height);
  margin-inline: auto;
  padding: calc(var(--header-height) + 22px) 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(540px, 0.94fr);
  grid-template-areas:
    "visual intro"
    "visual conversion";
  grid-template-rows: auto auto;
  align-content: center;
  align-items: end;
  column-gap: clamp(28px, 3vw, 60px);
  row-gap: 28px;
}

.hero-visual {
  position: relative;
  grid-area: visual;
  height: clamp(520px, 60svh, 680px);
  align-self: center;
  pointer-events: none;
}

.brand-canvas {
  position: absolute;
  z-index: 6;
  top: clamp(-30px, -2.5svh, -14px);
  left: 50%;
  width: min(102%, 880px);
  max-width: 880px;
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.76));
}

.hero-intro {
  grid-area: intro;
  align-self: end;
  padding-top: 8px;
}

.hero-badge {
  width: fit-content;
  margin: 0 0 27px;
  padding: 14px 23px;
  border: 1px solid rgba(255, 174, 0, 0.72);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(7, 5, 3, 0.4);
  color: var(--gold-light);
  font-size: clamp(0.76rem, 0.82vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.hero-badge span {
  font-size: 1.08rem;
}

.hero-badge b {
  color: var(--ember);
}

.hero-title {
  max-width: 790px;
  margin: 0;
  color: var(--paper);
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(3.05rem, 3.65vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.03;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.82);
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
  text-shadow:
    0 4px 20px rgba(0, 0, 0, 0.82),
    0 0 26px rgba(238, 109, 0, 0.16);
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: #e0d7ca;
  font-size: clamp(1.02rem, 1.08vw, 1.22rem);
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-conversion {
  grid-area: conversion;
  align-self: start;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-actions .button {
  min-width: 218px;
}

.hero-benefits {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.6vw, 30px);
  color: rgba(255, 249, 238, 0.94);
  font-size: 0.96rem;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero-benefits img {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  object-fit: contain;
  opacity: 1;
}

.hero-bottom-fade {
  display: none;
}

.craft-section {
  --craft-wine: #77090a;
  --craft-dark: #1b0905;
  position: relative;
  z-index: 1;
  min-height: clamp(850px, 56.25vw, 1080px);
  padding: clamp(96px, 7vw, 132px) 28px clamp(88px, 6vw, 116px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--craft-wine);
}

.craft-section::before,
.craft-section::after {
  display: none;
}

.craft-section::before {
  content: none;
}

.craft-section::after {
  content: none;
}

.craft-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: 0.78;
  background:
    linear-gradient(90deg, rgba(22, 12, 7, 0.2), transparent 38%, rgba(35, 2, 3, 0.14)),
    repeating-linear-gradient(18deg, rgba(255, 214, 142, 0.019) 0 1px, transparent 1px 8px),
    repeating-radial-gradient(circle at 20% 30%, rgba(255, 204, 125, 0.027) 0 1px, transparent 1px 7px),
    radial-gradient(ellipse at 55% 55%, transparent 18%, rgba(20, 4, 2, 0.54) 100%);
  mix-blend-mode: screen;
}

.craft-facade {
  position: absolute;
  z-index: 1;
  top: 8%;
  left: max(-170px, calc(50% - 1010px));
  width: clamp(500px, 38vw, 720px);
  height: auto;
  opacity: 0.38;
  filter: sepia(0.82) saturate(1.35) brightness(0.58) contrast(1.08) hue-rotate(338deg);
  -webkit-mask-image:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 45%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 15%, #000 82%, transparent 100%);
  mask-image:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 45%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 15%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.craft-shell {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), 1540px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(620px, 0.98fr) minmax(500px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 5vw, 92px);
}

.craft-copy-block {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.craft-kicker-row {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr);
  align-items: center;
  gap: 22px;
}

.craft-kicker-row span {
  height: 2px;
  background: linear-gradient(90deg, transparent, #dfa943);
  box-shadow: 0 0 12px rgba(255, 177, 49, 0.2);
}

.craft-kicker-row span:last-child {
  background: linear-gradient(90deg, #dfa943, transparent);
}

.craft-kicker {
  margin: 0;
  color: #e4bb66;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(0.98rem, 1.2vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
}

.craft-kicker-ornament {
  width: 105px;
  height: auto;
  margin: 12px auto 22px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.48));
}

.craft-title {
  margin: 0;
  color: #f1dcc0;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(4.25rem, 5.15vw, 5.65rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.93;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 5px 0 rgba(52, 10, 6, 0.45),
    0 9px 30px rgba(0, 0, 0, 0.58);
}

.craft-title-divider {
  width: min(280px, 52%);
  height: auto;
  margin: 18px auto 13px;
  object-fit: contain;
}

.craft-description {
  max-width: 680px;
  margin: 0 auto;
  color: #f2e5d3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.06rem, 1.22vw, 1.27rem);
  line-height: 1.47;
  text-align: center;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72);
}

.craft-values {
  margin-top: clamp(30px, 3vw, 46px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.craft-value {
  min-width: 0;
  padding: 0 clamp(14px, 1.35vw, 22px);
  text-align: center;
}

.craft-value + .craft-value {
  border-left: 1px solid rgba(224, 169, 67, 0.44);
}

.craft-value img {
  width: clamp(108px, 8vw, 138px);
  height: auto;
  margin: 0 auto 13px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(18, 0, 0, 0.55));
}

.craft-value h3 {
  min-height: 2.2em;
  margin: 0 0 7px;
  color: #e3ad45;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(0.91rem, 1vw, 1.08rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.craft-value p {
  margin: 0 auto;
  color: rgba(255, 244, 227, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.79rem, 0.82vw, 0.9rem);
  line-height: 1.43;
  text-shadow: 0 2px 11px rgba(0, 0, 0, 0.74);
}

.craft-portrait {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 2 / 3;
  justify-self: end;
  align-self: center;
  display: grid;
  place-items: center;
}

.craft-chef-integrated {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 24px 42px rgba(27, 0, 0, 0.55))
    drop-shadow(0 0 18px rgba(247, 171, 48, 0.12));
}

.structural-section {
  position: relative;
  min-height: 38vh;
  padding: 100px 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 132, 0, 0.07), transparent 40%),
    #0a0703;
}

.structural-section::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -38px;
  right: 0;
  left: 0;
  height: 78px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(8, 6, 3, 0.52) 54%, transparent);
}

.structural-section .section-inner {
  position: relative;
  z-index: 3;
}

.structural-section:nth-of-type(odd) {
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 132, 0, 0.055), transparent 32%),
    #080603;
}

.product-section {
  --product-overlap-top: clamp(130px, 11vw, 176px);
  --product-overlap-bottom: clamp(100px, 7vw, 145px);
  --product-section-height: clamp(760px, 56.25vw, 1080px);
  min-height: var(--product-section-height);
  position: relative;
  z-index: 6;
  padding: 0;
  display: block;
  isolation: isolate;
  overflow: visible;
  background:
    radial-gradient(circle at 20% 22%, rgba(114, 54, 10, 0.15), transparent 34%),
    radial-gradient(circle at 82% 66%, rgba(80, 34, 7, 0.13), transparent 38%),
    repeating-linear-gradient(96deg, rgba(255, 172, 63, 0.018) 0 1px, transparent 1px 10px),
    linear-gradient(180deg, var(--transition-warm) 0%, #090603 48%, #0c0703 100%);
}

.product-section::before {
  display: none;
}

.product-section::after {
  display: none;
}

.product-background {
  position: absolute;
  z-index: 0;
  top: calc(-1 * var(--product-overlap-top));
  bottom: calc(-1 * var(--product-overlap-bottom));
  left: 0;
  width: 100%;
  height: calc(100% + var(--product-overlap-top) + var(--product-overlap-bottom));
  max-width: none;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  transform: none;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 var(--product-overlap-top),
    #000 calc(100% - var(--product-overlap-bottom)),
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 var(--product-overlap-top),
    #000 calc(100% - var(--product-overlap-bottom)),
    transparent 100%
  );
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.product-shade {
  display: none;
}

.menu-section {
  --menu-red: #77090a;
  --menu-to-differences-transition: clamp(90px, 7vw, 145px);
  position: relative;
  z-index: 5;
  min-height: clamp(820px, 56.25vw, 1080px);
  padding: clamp(112px, 8vw, 154px) 28px clamp(72px, 5vw, 96px);
  overflow: visible;
  isolation: isolate;
  background: transparent;
}

.menu-background {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: calc(-1 * var(--menu-to-differences-transition));
  left: 0;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 17% 22%, rgba(255, 224, 174, 0.018) 0 1px, transparent 1px 7px),
    radial-gradient(circle at 28% 70%, rgba(142, 20, 12, 0.25), transparent 36%),
    repeating-linear-gradient(24deg, rgba(255, 215, 150, 0.018) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, #5d0808 0%, var(--menu-red) 42%, #650707 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - var(--menu-to-differences-transition)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - var(--menu-to-differences-transition)),
    transparent 100%
  );
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.menu-section::before {
  display: none;
}

.menu-corner,
.menu-vapor {
  position: absolute;
  z-index: 1;
  height: auto;
  pointer-events: none;
}

.menu-corner {
  top: 30px;
  width: clamp(150px, 16vw, 250px);
  opacity: 0.5;
}

.menu-corner-left {
  left: 0;
}

.menu-corner-right {
  right: 0;
}

.menu-vapor {
  top: 7%;
  right: 4%;
  width: clamp(260px, 28vw, 470px);
  opacity: 0.34;
}

.menu-shell {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 32px), 1600px);
  min-height: 720px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(500px, 560px) minmax(700px, 900px);
  align-items: center;
  gap: clamp(44px, 4vw, 76px);
}

.menu-copy-block {
  position: relative;
  z-index: 5;
  min-width: 0;
  align-self: center;
}

.menu-heading-mark {
  width: min(100%, 520px);
  margin-bottom: 18px;
}

.menu-kicker-row {
  width: 100%;
  margin-bottom: 4px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 19px;
}

.menu-kicker-row span {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 208, 82, 0.84));
}

.menu-kicker-row span:last-child {
  background: linear-gradient(90deg, rgba(255, 208, 82, 0.84), transparent);
}

.menu-kicker {
  margin: 0;
  color: #ffd278;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(1rem, 1.05vw, 1.22rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-kicker-ornament {
  display: block;
  width: clamp(148px, 10vw, 174px);
  height: clamp(48px, 3.3vw, 58px);
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

.menu-title {
  max-width: 660px;
  margin: 0;
  color: #fff3df;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(4.05rem, 4.55vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 5px 22px rgba(35, 0, 0, 0.7);
}

.menu-title span {
  display: block;
  white-space: nowrap;
}

.menu-copy {
  max-width: 630px;
  margin: 26px 0 0;
  color: rgba(255, 246, 231, 0.94);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.12vw, 1.24rem);
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(38, 0, 0, 0.64);
}

.menu-cta {
  position: relative;
  width: min(100%, 530px);
  height: 92px;
  margin-top: 24px;
  display: grid;
  place-items: center;
  color: #fff0c8;
  text-decoration: none;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.menu-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: drop-shadow(0 10px 18px rgba(39, 0, 0, 0.45));
}

.menu-cta:hover {
  filter: brightness(1.07) drop-shadow(0 0 12px rgba(255, 185, 60, 0.16));
  transform: translateY(-2px) scale(1.012);
}

.menu-benefits {
  width: min(100%, 600px);
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-benefit {
  min-width: 0;
  padding: 0 14px;
  text-align: center;
}

.menu-benefit + .menu-benefit {
  border-left: 1px solid rgba(232, 169, 57, 0.35);
}

.menu-benefit img {
  width: clamp(92px, 7vw, 118px);
  height: auto;
  margin: 0 auto 10px;
  object-fit: contain;
  filter: drop-shadow(0 9px 16px rgba(33, 0, 0, 0.48));
}

.menu-benefit h3 {
  margin: 0;
  color: #efba4e;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(0.72rem, 0.75vw, 0.92rem);
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(39, 0, 0, 0.62);
}

.menu-visual {
  position: relative;
  z-index: 3;
  left: clamp(32px, 2.7vw, 54px);
  min-width: 0;
  width: 100%;
  display: grid;
  place-items: center;
  align-self: center;
}

.menu-products-composite {
  display: block;
  width: min(100%, 900px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(39, 0, 0, 0.5));
}

.differences-section {
  --differences-to-delivery-transition: clamp(90px, 7vw, 145px);
  position: relative;
  z-index: 4;
  min-height: clamp(860px, 57vw, 1080px);
  padding: clamp(190px, 12vw, 232px) 32px clamp(86px, 6vw, 116px);
  overflow: visible;
  isolation: isolate;
  background: transparent;
}

.differences-section::before {
  display: none;
}

.differences-background {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: calc(-1 * var(--differences-to-delivery-transition));
  left: 0;
  width: 100%;
  height: calc(100% + var(--differences-to-delivery-transition));
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - var(--differences-to-delivery-transition)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - var(--differences-to-delivery-transition)),
    transparent 100%
  );
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.differences-shell {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 32px), 1600px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(600px, 790px) minmax(0, 1fr);
  grid-template-areas:
    "intro ."
    "cards .";
  column-gap: clamp(36px, 4vw, 72px);
  row-gap: 30px;
  align-items: center;
}

.differences-intro {
  grid-area: intro;
  min-width: 0;
  align-self: end;
}

.differences-kicker-row {
  max-width: 720px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.differences-kicker-row span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(232, 169, 57, 0.82), transparent);
}

.differences-kicker {
  margin: 0;
  color: #e6aa3a;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(1rem, 1vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.differences-title {
  max-width: 790px;
  margin: 0;
  color: #f5e8d2;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(3.75rem, 4.45vw, 5.1rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.72);
}

.differences-title span,
.differences-title strong {
  display: block;
}

.differences-title strong {
  font-weight: 900;
  white-space: nowrap;
}

.differences-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(241, 220, 184, 0.9);
  font-size: clamp(1.02rem, 1.12vw, 1.2rem);
  line-height: 1.55;
}

.differences-grid {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  align-self: start;
}

.difference-card {
  min-width: 0;
  min-height: 180px;
  padding: 22px 22px;
  border: 1px solid rgba(220, 153, 40, 0.72);
  border-radius: 12px;
  display: grid;
  grid-template-columns: clamp(82px, 6.2vw, 102px) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  background: rgba(7, 5, 2, 0.76);
}

.difference-card > div {
  min-width: 0;
}

.difference-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.difference-card h3 {
  margin: 0;
  color: #f2e3ca;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(1.08rem, 1.12vw, 1.3rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-transform: uppercase;
}

.difference-card p {
  margin: 10px 0 0;
  color: rgba(242, 218, 180, 0.86);
  font-size: clamp(0.86rem, 0.82vw, 0.96rem);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.delivery-section {
  --delivery-red: #77090a;
  --delivery-to-local-transition: clamp(90px, 7vw, 145px);
  position: relative;
  z-index: 3;
  min-height: clamp(720px, 52vw, 900px);
  padding: clamp(132px, 8vw, 158px) 28px clamp(64px, 4.5vw, 82px);
  overflow: visible;
  isolation: isolate;
  background: transparent;
}

.delivery-background {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: calc(-1 * var(--delivery-to-local-transition));
  left: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 25%, rgba(255, 219, 162, 0.008) 0 1px, transparent 1px 8px),
    radial-gradient(ellipse at 76% 48%, rgba(49, 6, 4, 0.34), transparent 46%),
    radial-gradient(ellipse at 18% 34%, rgba(54, 4, 3, 0.2), transparent 58%),
    repeating-linear-gradient(24deg, rgba(255, 215, 150, 0.015) 0 1px, transparent 1px 9px),
    linear-gradient(135deg, #5c0808 0%, var(--delivery-red) 45%, #5f0707 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - var(--delivery-to-local-transition)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - var(--delivery-to-local-transition)),
    transparent 100%
  );
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.delivery-section::before {
  display: none;
}

.delivery-shell {
  position: relative;
  z-index: 2;
  width: min(94%, 1680px);
  min-height: 0;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  grid-template-areas: "copy visual";
  align-items: center;
  gap: clamp(10px, 1.15vw, 22px);
}

.delivery-copy-block {
  grid-area: copy;
  min-width: 0;
  align-self: center;
}

.delivery-heading-mark {
  margin-bottom: 18px;
}

.delivery-title {
  max-width: 650px;
  margin: 0;
  color: #f7e9d1;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(3rem, 3.55vw, 4.35rem);
  font-weight: 900;
  letter-spacing: -0.036em;
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 5px 22px rgba(35, 0, 0, 0.72);
}

.delivery-title span {
  display: block;
  white-space: nowrap;
}

.delivery-rule {
  width: min(100%, 580px);
  margin: 22px 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: #e7a937;
  font-size: 0.8rem;
}

.delivery-rule::before,
.delivery-rule::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 169, 57, 0.72));
}

.delivery-rule::after {
  background: linear-gradient(90deg, rgba(230, 169, 57, 0.72), transparent);
}

.delivery-copy {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 234, 201, 0.92);
  font-size: clamp(1.02rem, 1.08vw, 1.18rem);
  line-height: 1.52;
}

.delivery-cta {
  width: min(100%, 480px);
  aspect-ratio: 1003 / 270;
  height: auto;
  margin-top: 20px;
  display: block;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.delivery-cta img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.delivery-cta:hover,
.delivery-cta:focus-visible {
  filter: brightness(1.06) drop-shadow(0 9px 16px rgba(39, 0, 0, 0.38));
  transform: translateY(-2px) scale(1.015);
}

.delivery-benefits {
  width: min(100%, 560px);
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.delivery-benefit {
  min-width: 0;
  padding: 0 13px;
  text-align: center;
}

.delivery-benefit + .delivery-benefit {
  border-left: 1px solid rgba(232, 169, 57, 0.34);
}

.delivery-benefit-icon {
  width: clamp(86px, 6vw, 96px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 9px;
  display: grid;
  place-items: center;
}

.delivery-benefit-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.delivery-benefit:nth-child(2) .delivery-benefit-icon img {
  transform: scale(1.17);
  transform-origin: center;
}

.delivery-benefit h3 {
  margin: 0;
  color: #f0bd60;
  font-size: clamp(0.88rem, 0.9vw, 1rem);
  font-weight: 700;
  line-height: 1.25;
}

.delivery-visual {
  grid-area: visual;
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: visible;
}

.delivery-composition {
  display: block;
  width: clamp(680px, 48vw, 900px);
  max-width: 900px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(46, 0, 0, 0.42));
  transform: translateX(clamp(-28px, -1.35vw, -12px));
}

.local-section {
  --local-to-faq-transition: clamp(90px, 7vw, 145px);
  position: relative;
  z-index: 2;
  min-height: clamp(540px, 45vw, 760px);
  padding: clamp(118px, 8vw, 152px) 28px clamp(64px, 4.5vw, 88px);
  display: grid;
  align-items: stretch;
  overflow: visible;
  isolation: isolate;
  background: #080503;
}

.local-background {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: calc(-1 * var(--local-to-faq-transition));
  left: 0;
  width: 100%;
  height: calc(100% + var(--local-to-faq-transition));
  object-fit: cover;
  object-position: center 36%;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - var(--local-to-faq-transition)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - var(--local-to-faq-transition)),
    transparent 100%
  );
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.local-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1600px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  align-items: center;
}

.local-copy-block {
  min-width: 0;
  max-width: 720px;
}

.local-heading-mark {
  width: min(100%, 560px);
  margin-bottom: 18px;
}

.local-kicker-row {
  margin-bottom: 6px;
}

.local-kicker-star {
  display: block;
  color: #dda22f;
  font-size: 0.68rem;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 14px rgba(255, 166, 29, 0.26);
}

.local-title {
  max-width: 720px;
  margin: 0;
  color: #f5e7cf;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(3.25rem, 4.25vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.82);
}

.local-title span,
.local-title strong {
  display: block;
  white-space: nowrap;
}

.local-title strong {
  margin-top: 10px;
  color: #cc7a06;
  font-weight: 900;
}

.local-rule {
  width: min(100%, 500px);
  margin: 26px 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  color: #dda22f;
  font-size: 0.7rem;
  transform-origin: left center;
}

.local-rule::before,
.local-rule::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 160, 44, 0.82));
}

.local-rule::after {
  background: linear-gradient(90deg, rgba(225, 160, 44, 0.82), transparent);
}

.local-copy {
  max-width: 610px;
  margin: 0;
  color: rgba(248, 231, 202, 0.92);
  font-size: clamp(1.05rem, 1.12vw, 1.24rem);
  line-height: 1.55;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.92);
}

.faq-section {
  --faq-to-closing-transition: clamp(90px, 7vw, 150px);
  position: relative;
  z-index: 1;
  min-height: clamp(940px, 62vw, 1180px);
  padding: clamp(178px, 11vw, 220px) 28px clamp(92px, 6vw, 120px);
  overflow: visible;
  isolation: isolate;
  background: #650808;
}

.faq-background {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: calc(-1 * var(--faq-to-closing-transition));
  left: 0;
  width: 100%;
  height: calc(100% + var(--faq-to-closing-transition));
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - var(--faq-to-closing-transition)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 calc(100% - var(--faq-to-closing-transition)),
    transparent 100%
  );
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.faq-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1050px);
  margin-inline: auto;
}

.faq-heading {
  text-align: center;
}

.faq-kicker-row {
  width: min(100%, 760px);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: minmax(48px, 1fr) auto minmax(48px, 1fr);
  align-items: center;
  gap: 24px;
}

.faq-kicker-row > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 166, 53, 0.88));
  transform-origin: center;
}

.faq-kicker-row > span:last-child {
  background: linear-gradient(90deg, rgba(228, 166, 53, 0.88), transparent);
}

.faq-kicker {
  margin: 0;
  color: #e1a334;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(0.98rem, 1vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(238, 163, 39, 0.18);
}

.faq-title {
  margin: 0;
  color: #f5e6cd;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(3.35rem, 4.45vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 5px 24px rgba(33, 0, 0, 0.66);
}

.faq-title span,
.faq-title strong {
  display: block;
}

.faq-title strong {
  font-weight: 900;
}

.faq-lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: rgba(250, 224, 183, 0.92);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.5;
}

.faq-list {
  margin-top: clamp(30px, 2.8vw, 44px);
  display: grid;
  gap: 12px;
}

.faq-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(222, 157, 42, 0.72);
  background: rgba(13, 6, 3, 0.9);
  clip-path: polygon(
    0 12px,
    12px 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
  transition:
    border-color 260ms ease,
    background-color 260ms ease,
    filter 260ms ease;
}

.faq-item.is-open {
  border-color: rgba(255, 188, 61, 0.98);
  background: rgba(14, 7, 3, 0.94);
  filter: drop-shadow(0 0 10px rgba(255, 168, 26, 0.18));
}

.faq-item.is-opening::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  left: -42%;
  width: 38%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 128, 0.95), transparent);
  box-shadow: 0 0 12px rgba(255, 176, 38, 0.72);
  animation: faq-border-sheen 680ms ease-out both;
}

.faq-question {
  width: 100%;
  min-height: 78px;
  margin: 0;
  padding: 20px 28px 20px 34px;
  border: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #f4e3c7;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 2px solid #f2b84a;
  outline-offset: -5px;
}

.faq-question-number,
.faq-question-text {
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(1.18rem, 1.38vw, 1.5rem);
  font-weight: 900;
  line-height: 1.22;
}

.faq-question-number {
  color: #e7c88f;
}

.faq-toggle {
  position: relative;
  width: 38px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(228, 165, 51, 0.9);
  border-radius: 50%;
  justify-self: end;
  color: #e8ad42;
  box-shadow: 0 0 12px rgba(255, 169, 28, 0.12);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle {
  border-color: #ffc158;
  box-shadow: 0 0 14px rgba(255, 169, 28, 0.3);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer-content {
  padding: 0 84px 30px 62px;
}

.faq-answer-divider {
  margin: 0 0 15px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: #d9a13d;
  font-size: 0.62rem;
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: center;
  transition:
    opacity 280ms ease 80ms,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1) 60ms;
}

.faq-answer-divider::before,
.faq-answer-divider::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(222, 158, 43, 0.72));
}

.faq-answer-divider::after {
  background: linear-gradient(90deg, rgba(222, 158, 43, 0.72), transparent);
}

.faq-answer-divider i {
  font-style: normal;
}

.faq-answer-content p,
.faq-answer-content address {
  margin: 0;
  color: rgba(246, 221, 182, 0.9);
  font-size: clamp(0.98rem, 1.04vw, 1.12rem);
  font-style: normal;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(9px);
  transition:
    opacity 280ms ease 110ms,
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1) 90ms;
}

.faq-item.is-open .faq-answer-divider,
.faq-item.is-open .faq-answer-content p,
.faq-item.is-open .faq-answer-content address {
  opacity: 1;
  transform: none;
}

.faq-answer-content a {
  color: #f0b84d;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.faq-answer-content a:hover,
.faq-answer-content a:focus-visible {
  color: #ffd486;
}

@keyframes faq-border-sheen {
  from {
    transform: translateX(0);
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  to {
    transform: translateX(380%);
    opacity: 0;
  }
}

.product-content {
  position: relative;
  z-index: 4;
  width: min(calc(100% - 96px), var(--content-width));
  min-height: var(--product-section-height);
  margin-inline: auto;
  padding: clamp(100px, 6.2vw, 118px) 0 clamp(56px, 4vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(72px, 5.8vw, 110px);
}

.product-intro {
  width: min(52%, 820px);
}

.product-kicker {
  width: fit-content;
  min-width: 320px;
  margin: 0 0 32px;
  padding: 12px 40px;
  border-top: 1px solid rgba(255, 174, 0, 0.66);
  border-bottom: 1px solid rgba(255, 174, 0, 0.66);
  position: relative;
  color: var(--gold-light);
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(1rem, 1vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 145, 0, 0.28);
}

.product-kicker::before,
.product-kicker::after {
  content: "★";
  position: absolute;
  top: 50%;
  color: var(--gold);
  font-size: 0.72rem;
  transform: translateY(-50%);
}

.product-kicker::before {
  left: 12px;
}

.product-kicker::after {
  right: 12px;
}

.product-title {
  margin: 0;
  color: var(--paper);
  font-family: "Western Slab", Georgia, serif;
  max-width: 820px;
  font-size: clamp(4.25rem, 5vw, 5.75rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.82);
}

.product-title span,
.product-title strong {
  display: block;
}

.product-title strong {
  margin-top: 12px;
  color: #d89412;
  font-weight: 900;
  white-space: nowrap;
  text-shadow:
    0 5px 24px rgba(0, 0, 0, 0.82),
    0 0 26px rgba(238, 109, 0, 0.12);
}

.product-rule {
  width: min(100%, 650px);
  height: 2px;
  margin: 32px 0 27px;
  display: block;
  background: linear-gradient(90deg, rgba(255, 174, 0, 0.16), var(--gold), rgba(255, 174, 0, 0.16));
  box-shadow: 0 0 18px rgba(255, 174, 0, 0.18);
}

.product-copy {
  max-width: 680px;
  margin: 0;
  color: #e7ddce;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.15vw, 1.32rem);
  line-height: 1.5;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
}

.product-copy strong {
  color: var(--gold-light);
  font-weight: 700;
}

.product-differences {
  width: min(54%, 860px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(12px, 1.15vw, 22px);
}

.product-difference {
  min-width: 0;
  padding: 0 5px 14px;
  border-bottom: 1px solid transparent;
  text-align: center;
  transition:
    transform 200ms ease,
    border-color 200ms ease;
}

.product-difference img {
  width: clamp(120px, 9vw, 168px);
  height: auto;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: drop-shadow(0 9px 17px rgba(0, 0, 0, 0.58));
  transition: filter 200ms ease;
}

.product-difference h3 {
  min-height: 1.2em;
  margin: 0 0 8px;
  color: #e0a529;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(0.9rem, 0.9vw, 1.08rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.88);
}

.product-difference p {
  margin: 0;
  color: rgba(255, 249, 238, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.8rem, 0.78vw, 0.94rem);
  line-height: 1.46;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.92);
}

@media (hover: hover) and (pointer: fine) {
  .product-difference:hover {
    border-color: rgba(255, 174, 0, 0.28);
    transform: translateY(-3px);
  }

  .product-difference:hover img {
    filter:
      brightness(1.07)
      drop-shadow(0 11px 20px rgba(0, 0, 0, 0.62))
      drop-shadow(0 0 10px rgba(255, 151, 19, 0.17));
  }
}

.section-inner {
  width: min(100%, 1180px);
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-inner h2 {
  margin: 0;
  color: var(--paper);
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
}

.section-rule {
  width: 82px;
  height: 2px;
  margin: 30px auto 0;
  display: block;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 20px rgba(255, 174, 0, 0.28);
}

.closing-section {
  position: relative;
  z-index: 0;
  min-height: clamp(920px, 56.25vw, 1080px);
  padding: clamp(170px, 10vw, 210px) 28px 28px;
  overflow: hidden;
  isolation: isolate;
  background: #080502;
}

.closing-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.closing-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1540px);
  margin-inline: auto;
}

.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.closing-ornament {
  width: clamp(340px, 38vw, 650px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.78));
}

.closing-title {
  margin: clamp(8px, 0.8vw, 14px) 0 0;
  color: #e9a926;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(4.4rem, 6.3vw, 7.15rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 rgba(86, 42, 4, 0.78),
    0 9px 24px rgba(0, 0, 0, 0.9);
}

.closing-lead {
  margin: clamp(22px, 1.8vw, 30px) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 22px);
  color: #f7e9d1;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(1.04rem, 1.34vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.88);
}

.closing-lead span {
  flex: 0 0 auto;
  color: #e7a72a;
  font-size: 0.7em;
}

.closing-cta-link {
  width: min(100%, 690px);
  margin-top: clamp(24px, 2.2vw, 38px);
  display: block;
  border-radius: 12px;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.closing-cta-link img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.5));
}

.closing-cta-link:hover {
  transform: translateY(-2px) scale(1.025);
  filter: brightness(1.06);
}

.closing-cta-link:focus-visible {
  outline: 2px solid #ffc04a;
  outline-offset: 7px;
}

.site-footer {
  position: relative;
  margin-top: clamp(48px, 4.5vw, 78px);
  background: transparent;
}

.footer-frame {
  position: relative;
  min-height: 330px;
  padding: clamp(52px, 4.2vw, 70px) clamp(30px, 3.4vw, 54px) clamp(38px, 3vw, 50px);
  border: 1px solid rgba(226, 160, 37, 0.72);
  background: rgba(8, 5, 2, 0.66);
  box-shadow:
    inset 0 0 0 3px rgba(116, 67, 13, 0.16),
    0 22px 46px rgba(0, 0, 0, 0.28);
}

.footer-corner {
  position: absolute;
  z-index: 3;
  width: clamp(72px, 6.7vw, 112px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.58));
}

.footer-corner--tl {
  top: -7px;
  left: -7px;
}

.footer-corner--tr {
  top: -7px;
  right: -7px;
  transform: scaleX(-1);
}

.footer-corner--bl {
  bottom: -7px;
  left: -7px;
  transform: scaleY(-1);
}

.footer-corner--br {
  right: -7px;
  bottom: -7px;
  transform: scale(-1);
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(190px, 1.3fr) minmax(184px, 1.2fr) repeat(4, minmax(122px, 1fr));
  align-items: stretch;
}

.footer-brand,
.footer-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-brand {
  padding: 0 clamp(12px, 1.8vw, 28px);
}

.final-footer-logo {
  width: min(100%, 245px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.52));
}

.footer-info {
  padding: 4px clamp(12px, 1.4vw, 24px);
  border-left: 1px solid rgba(224, 157, 37, 0.45);
  color: #f4e3c8;
}

.footer-info-icon {
  width: clamp(50px, 4vw, 68px);
  height: clamp(50px, 4vw, 68px);
  margin-bottom: 14px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.52));
}

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

.footer-info h3,
.footer-info-copy > strong {
  margin: 0;
  display: block;
  color: #e7ad3e;
  font-family: "Western Slab", Georgia, serif;
  font-size: clamp(0.78rem, 0.83vw, 0.94rem);
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-info p,
.footer-info address,
.footer-info-copy > span {
  margin: 12px 0 0;
  display: block;
  color: rgba(248, 233, 211, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.78rem, 0.78vw, 0.91rem);
  font-style: normal;
  line-height: 1.48;
}

.footer-info-link {
  text-decoration: none;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.footer-info-link:hover {
  background: rgba(222, 156, 38, 0.055);
  transform: translateY(-2px);
}

.footer-info-link:focus-visible {
  outline: 2px solid #e5aa3d;
  outline-offset: -3px;
}

.footer-copyright {
  margin: clamp(18px, 1.7vw, 28px) 0 0;
  color: rgba(230, 179, 79, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.82rem, 0.92vw, 1rem);
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.78);
}

.footer-copyright a {
  color: inherit;
  text-decoration: none;
}

.footer-copyright a:hover,
.footer-copyright a:focus-visible {
  color: #f0bd58;
}

.js .gsap-reveal {
  opacity: 0;
  visibility: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 1921px) {
  .product-difference h3 {
    white-space: nowrap;
  }
}

@media (max-width: 1260px) {
  :root {
    --header-height: 86px;
  }

  .header-inner {
    width: min(calc(100% - 36px), var(--content-width));
  }

  .header-brand {
    width: 132px;
    height: 78px;
  }

  .main-nav {
    gap: 22px;
  }

  .nav-link {
    font-size: 0.98rem;
  }

  .header-cta {
    min-width: 168px;
    min-height: 52px;
    padding-inline: 22px;
  }

  .hero-shell {
    width: min(calc(100% - 36px), var(--content-width));
    grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
    column-gap: 28px;
  }

  .hero-visual {
    height: clamp(500px, 62svh, 610px);
  }

  .brand-canvas {
    width: min(100%, 740px);
    max-width: 740px;
  }

  .hero-title {
    font-size: clamp(2.72rem, 3.8vw, 3.72rem);
  }

  .hero-benefits {
    align-items: flex-start;
    gap: 13px;
    font-size: 0.84rem;
  }

  .hero-benefits li {
    white-space: normal;
  }

  .craft-section {
    min-height: 820px;
    padding-inline: 18px;
  }

  .craft-shell {
    width: min(calc(100% - 28px), 1160px);
    grid-template-columns: minmax(530px, 1.02fr) minmax(410px, 0.88fr);
    gap: 26px;
  }

  .craft-title {
    font-size: clamp(3.65rem, 5.5vw, 4.7rem);
  }

  .craft-description {
    max-width: 590px;
    font-size: clamp(1rem, 1.4vw, 1.12rem);
  }

  .craft-value {
    padding-inline: 10px;
  }

  .craft-value img {
    width: clamp(100px, 9vw, 122px);
  }

  .craft-value h3 {
    font-size: clamp(0.8rem, 1.18vw, 0.93rem);
  }

  .craft-value p {
    font-size: clamp(0.73rem, 1vw, 0.84rem);
  }

  .craft-portrait {
    max-width: 500px;
  }

  .product-content {
    width: min(calc(100% - 36px), var(--content-width));
    padding-top: clamp(90px, 8vw, 105px);
    padding-bottom: clamp(52px, 5vw, 66px);
  }

  .product-intro {
    width: min(56%, 700px);
  }

  .product-kicker {
    min-width: 300px;
    margin-bottom: 25px;
    padding-block: 10px;
  }

  .product-title {
    max-width: 700px;
    font-size: clamp(3.6rem, 5.2vw, 4.45rem);
  }

  .product-rule {
    margin-top: 25px;
    margin-bottom: 22px;
  }

  .product-copy {
    max-width: 630px;
    font-size: clamp(1rem, 1.45vw, 1.16rem);
  }

  .product-differences {
    width: min(60%, 720px);
    gap: 9px;
  }

  .product-difference img {
    width: clamp(110px, 10.2vw, 145px);
  }

  .product-difference h3 {
    min-height: 2.25em;
    font-size: clamp(0.78rem, 1.12vw, 0.94rem);
  }

  .product-difference p {
    font-size: clamp(0.75rem, 1vw, 0.86rem);
  }

  .menu-section {
    padding-inline: 18px;
  }

  .menu-shell {
    width: min(calc(100% - 20px), 1180px);
    grid-template-columns: minmax(420px, 470px) minmax(660px, 690px);
    gap: 28px;
  }

  .menu-title {
    font-size: clamp(3.25rem, 4.6vw, 4.05rem);
  }

  .menu-copy {
    max-width: 540px;
    font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  }

  .menu-cta {
    max-width: 470px;
  }

  .menu-products-composite {
    width: min(100%, 690px);
  }

  .differences-section {
    padding-inline: 24px;
  }

  .differences-shell {
    width: min(calc(100% - 12px), 1180px);
    grid-template-columns: minmax(590px, 650px) minmax(0, 1fr);
    column-gap: 30px;
  }

  .differences-title {
    font-size: clamp(3.25rem, 4.7vw, 4.15rem);
  }

  .difference-card {
    min-height: 168px;
    padding: 18px 16px;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 13px;
  }

  .delivery-section {
    padding: clamp(132px, 10vw, 150px) 18px clamp(60px, 5vw, 76px);
  }

  .delivery-shell {
    width: min(calc(100% - 4px), 1210px);
    min-height: 560px;
    grid-template-columns: minmax(440px, 0.44fr) minmax(0, 0.56fr);
    gap: 8px;
  }

  .delivery-title {
    font-size: clamp(3.05rem, 4.3vw, 3.75rem);
  }

  .delivery-copy {
    font-size: 1rem;
  }

  .delivery-cta {
    max-width: 430px;
  }

  .delivery-benefit {
    padding-inline: 8px;
  }

  .delivery-composition {
    width: clamp(640px, 55vw, 760px);
    max-width: 760px;
    transform: translateX(-22px);
  }
}

@media (min-width: 1261px) and (max-width: 1399px) {
  .menu-shell {
    width: min(calc(100% - 24px), 1180px);
    grid-template-columns: minmax(420px, 470px) minmax(660px, 690px);
    gap: 28px;
  }

  .menu-title {
    font-size: clamp(3.25rem, 4.9vw, 4.05rem);
  }

  .menu-products-composite {
    width: min(100%, 690px);
  }

  .menu-visual {
    left: clamp(22px, 2.2vw, 30px);
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .menu-section {
    padding-inline: 12px;
  }

  .menu-shell {
    width: min(calc(100% - 16px), 1080px);
    grid-template-columns: minmax(390px, 420px) minmax(610px, 640px);
    gap: 20px;
  }

  .menu-title {
    font-size: clamp(3rem, 4.75vw, 3.55rem);
  }

  .menu-copy {
    font-size: 0.98rem;
  }

  .menu-cta {
    max-width: 420px;
  }

  .menu-benefit {
    padding-inline: 8px;
  }

  .menu-benefit img {
    width: 88px;
  }

  .menu-benefit h3 {
    font-size: 0.7rem;
  }

  .menu-products-composite {
    width: min(100%, 640px);
  }

  .menu-visual {
    left: clamp(12px, 1.6vw, 18px);
  }

  .delivery-section {
    min-height: auto;
    padding: 170px 24px 96px;
  }

  .delivery-shell {
    width: min(100%, 760px);
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual";
    gap: 42px;
  }

  .delivery-copy-block {
    text-align: center;
  }

  .delivery-heading-mark,
  .delivery-kicker-row,
  .delivery-title,
  .delivery-rule,
  .delivery-copy,
  .delivery-cta,
  .delivery-benefits {
    margin-inline: auto;
  }

  .delivery-composition {
    width: min(100%, 720px);
    max-width: 720px;
    transform: none;
  }
}

@media (min-width: 2200px) and (min-height: 1200px) {
  .hero-visual {
    height: 680px;
  }

  .brand-canvas {
    width: min(102%, 880px);
    max-width: 880px;
  }
}

@media (max-width: 1199px) {
  :root {
    --header-height: 72px;
  }

  .site-header,
  .site-header.is-scrolled {
    background: rgba(5, 4, 3, 0.88);
    backdrop-filter: blur(18px);
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .header-brand {
    width: 98px;
    height: 62px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 1;
    inset: var(--header-height) 0 auto;
    max-height: calc(100svh - var(--header-height));
    padding: 24px 22px 30px;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(255, 174, 0, 0.13);
    border-bottom: 1px solid rgba(255, 174, 0, 0.18);
    background: rgba(5, 4, 3, 0.97);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.52);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    padding: 17px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1.05rem;
  }

  .nav-link::after {
    display: none;
  }

  .header-cta {
    margin-top: 18px;
  }

  .hero {
    --hero-overlap: 100px;
    min-height: auto;
  }

  .hero-background {
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: calc(100% + var(--hero-overlap));
    opacity: 1;
    object-position: 30% center;
    transform: none;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 calc(100% - var(--hero-overlap)), transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 calc(100% - var(--hero-overlap)), transparent 100%);
  }

  .hero-ambient {
    background:
      radial-gradient(circle at 50% 38%, rgba(109, 50, 8, 0.11), transparent 32%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, transparent 35%, rgba(11, 7, 3, 0.28) 52%, rgba(11, 7, 3, 0.74) 72%, transparent 91%),
      linear-gradient(90deg, rgba(2, 2, 1, 0.08), rgba(2, 2, 1, 0.24));
  }

  .hero-shell {
    width: min(calc(100% - 36px), 760px);
    min-height: auto;
    padding: calc(var(--header-height) + 38px) 0 112px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "benefits";
    grid-template-areas:
      "visual"
      "intro"
      "conversion";
    grid-template-rows: auto auto auto;
    align-items: stretch;
    row-gap: 24px;
  }

  .hero-intro {
    padding-top: 0;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto 20px;
  }

  .hero-title {
    max-width: 720px;
    margin-inline: auto;
    font-size: clamp(2.55rem, 7vw, 4.4rem);
    line-height: 1.02;
  }

  .hero-line {
    display: inline;
    white-space: normal;
  }

  .hero-copy {
    max-width: 660px;
    margin: 20px auto 0;
    font-size: 1.04rem;
  }

  .hero-visual {
    height: clamp(500px, 74vw, 600px);
  }

  .brand-canvas {
    top: 0;
    left: 50%;
    width: min(82vw, 680px);
    max-width: 680px;
    transform: translateX(-50%);
  }

  .hero-conversion {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-benefits {
    justify-content: center;
    gap: 24px;
    font-size: 0.9rem;
  }

  .hero-benefits li {
    align-items: center;
  }

  .craft-section {
    min-height: auto;
    padding: 118px 24px 110px;
    background: var(--craft-wine);
  }

  .craft-shell {
    width: min(100%, 740px);
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .craft-copy-block {
    max-width: none;
  }

  .craft-facade {
    top: 14%;
    left: -145px;
    width: 520px;
    opacity: 0.22;
  }

  .craft-kicker-row {
    max-width: 500px;
  }

  .craft-title {
    font-size: clamp(3.6rem, 9vw, 5rem);
  }

  .craft-description {
    max-width: 650px;
    font-size: 1.08rem;
  }

  .craft-values {
    max-width: 690px;
    margin-inline: auto;
  }

  .craft-value {
    padding-inline: 16px;
  }

  .craft-value img {
    width: clamp(112px, 17vw, 138px);
  }

  .craft-value h3 {
    font-size: clamp(0.88rem, 2.1vw, 1rem);
  }

  .craft-value p {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  }

  .craft-portrait {
    width: min(88%, 560px);
    justify-self: center;
  }

  .product-section {
    --product-overlap-top: 96px;
    --product-overlap-bottom: 96px;
    --product-section-height: auto;
    min-height: auto;
    padding: 0;
    display: grid;
    grid-template-rows: auto auto;
    background:
      radial-gradient(circle at 25% 20%, rgba(109, 49, 8, 0.14), transparent 35%),
      radial-gradient(circle at 76% 72%, rgba(72, 29, 5, 0.13), transparent 38%),
      repeating-linear-gradient(96deg, rgba(255, 172, 63, 0.018) 0 1px, transparent 1px 10px),
      linear-gradient(180deg, var(--transition-warm), #090603 52%, #0c0703 100%);
  }

  .product-background {
    position: absolute;
    z-index: 0;
    grid-row: auto;
    top: calc(-1 * var(--product-overlap-top));
    right: auto;
    bottom: calc(-1 * var(--product-overlap-bottom));
    left: 0;
    width: 100%;
    height: calc(100% + var(--product-overlap-top) + var(--product-overlap-bottom));
    max-width: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
    transform: none;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0,
      #000 var(--product-overlap-top),
      #000 calc(100% - var(--product-overlap-bottom)),
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0,
      #000 var(--product-overlap-top),
      #000 calc(100% - var(--product-overlap-bottom)),
      transparent 100%
    );
  }

  .product-shade {
    display: none;
  }

  .product-content {
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    display: contents;
  }

  .product-intro {
    position: relative;
    z-index: 4;
    grid-row: 1;
    width: 100%;
    padding: 118px max(28px, calc((100% - 720px) / 2)) 58px;
    background:
      radial-gradient(circle at 25% 100%, rgba(255, 132, 0, 0.08), transparent 42%),
      linear-gradient(180deg, rgba(8, 5, 2, 0.78), rgba(8, 5, 2, 0.58) 70%, rgba(8, 5, 2, 0.34));
    text-align: center;
  }

  .product-kicker {
    margin-inline: auto;
  }

  .product-title {
    font-size: clamp(3.7rem, 9vw, 5.4rem);
    line-height: 0.94;
  }

  .product-title strong {
    white-space: normal;
  }

  .product-rule {
    margin-inline: auto;
  }

  .product-copy {
    max-width: 650px;
    margin-inline: auto;
    font-size: 1.08rem;
  }

  .product-differences {
    position: relative;
    z-index: 4;
    grid-row: 2;
    width: min(calc(100% - 56px), 720px);
    margin-inline: auto;
    padding: 54px 0 96px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 34px;
    background: linear-gradient(180deg, rgba(7, 5, 2, 0.12), rgba(7, 5, 2, 0.66));
  }

  .menu-section {
    --menu-to-differences-transition: 96px;
  }

  .differences-section {
    --differences-to-delivery-transition: 96px;
  }

  .delivery-section {
    --delivery-to-local-transition: 96px;
  }

  .local-section {
    --local-to-faq-transition: 96px;
  }

  .faq-section {
    --faq-to-closing-transition: 96px;
  }

  .product-difference {
    padding-inline: 14px;
  }

  .product-difference img {
    width: clamp(128px, 24vw, 168px);
  }

  .product-difference h3 {
    min-height: 0;
    font-size: 1rem;
  }

  .product-difference p {
    max-width: 250px;
    margin-inline: auto;
    font-size: 0.9rem;
  }

  .menu-section {
    min-height: auto;
    padding: 120px 24px 100px;
  }

  .differences-section {
    min-height: auto;
    padding: 180px 24px 100px;
  }

  .differences-shell {
    width: min(100%, 760px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "cards";
    gap: 42px;
  }

  .differences-intro {
    text-align: center;
  }

  .differences-kicker-row {
    max-width: 560px;
    margin-inline: auto;
  }

  .differences-title {
    max-width: 760px;
    margin-inline: auto;
    font-size: clamp(3.55rem, 8vw, 5rem);
  }

  .differences-copy {
    max-width: 650px;
    margin-inline: auto;
    font-size: 1.08rem;
  }

  .differences-background {
    object-position: 70% center;
  }

  .differences-grid {
    gap: 18px;
  }

  .difference-card {
    min-height: 164px;
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .delivery-section {
    min-height: auto;
    padding: 180px 24px 100px;
  }

  .delivery-shell {
    width: min(100%, 760px);
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual";
    gap: 44px;
  }

  .delivery-copy-block {
    text-align: center;
  }

  .delivery-heading-mark,
  .delivery-kicker-row,
  .delivery-rule,
  .delivery-copy,
  .delivery-cta,
  .delivery-benefits {
    margin-inline: auto;
  }

  .delivery-title {
    max-width: 720px;
    margin-inline: auto;
    font-size: clamp(3.65rem, 8.6vw, 5.15rem);
  }

  .delivery-copy {
    max-width: 650px;
    font-size: 1.08rem;
  }

  .delivery-cta {
    width: min(100%, 500px);
  }

  .delivery-composition {
    width: min(100%, 720px);
    max-width: 720px;
    transform: none;
  }

  .delivery-benefits {
    margin-top: 26px;
  }

  .menu-shell {
    width: min(100%, 760px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .menu-copy-block {
    text-align: center;
  }

  .menu-kicker-row {
    max-width: 500px;
    margin-inline: auto;
  }

  .menu-heading-mark {
    max-width: 500px;
    margin-inline: auto;
  }

  .menu-kicker-ornament {
    margin-inline: auto;
  }

  .menu-title {
    max-width: 720px;
    margin-inline: auto;
    font-size: clamp(3.8rem, 9vw, 5.2rem);
  }

  .menu-copy {
    max-width: 650px;
    margin-inline: auto;
    font-size: 1.08rem;
  }

  .menu-cta {
    margin-inline: auto;
  }

  .menu-benefits {
    max-width: 660px;
    margin-inline: auto;
  }

  .menu-benefit img {
    width: clamp(100px, 17vw, 128px);
  }

  .menu-benefit h3 {
    font-size: clamp(0.78rem, 1.9vw, 0.96rem);
  }

  .menu-products-composite {
    width: min(100%, 720px);
  }

  .menu-visual {
    left: 0;
  }

  .footer-inner {
    grid-template-columns: 150px 1fr auto;
    gap: 30px;
  }

  .footer-logo {
    width: 150px;
    height: 112px;
  }
}

@media (min-width: 621px) and (max-width: 980px) {
  .hero-visual {
    height: clamp(520px, 75vw, 610px);
  }

  .brand-canvas {
    top: -1%;
    left: 50%;
    width: min(80vw, 680px);
    max-width: 680px;
    transform: translateX(-50%);
  }
}

@media (max-width: 620px) {
  body::before,
  body::after {
    width: 22px;
    backdrop-filter: blur(3px);
  }

  .hero {
    --hero-overlap: 72px;
  }

  .hero-background {
    height: calc(100% + var(--hero-overlap));
    object-position: 31% center;
  }

  .hero-shell {
    width: min(calc(100% - 28px), 540px);
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 102px;
    row-gap: 18px;
  }

  .hero-badge {
    max-width: 100%;
    padding: 11px 15px;
    gap: 7px;
    font-size: 0.69rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10.1vw, 3.3rem);
    letter-spacing: -0.05em;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .hero-visual {
    height: clamp(400px, 108vw, 460px);
    margin-inline: -8px;
  }

  .brand-canvas {
    top: -2%;
    left: 50%;
    width: min(98%, 470px);
    max-width: 470px;
    transform: translateX(-50%);
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 56px;
    padding-inline: 17px;
    flex: 1 1 0;
    font-size: 0.94rem;
  }

  .hero-benefits {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    color: rgba(255, 249, 238, 0.92);
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .hero-benefits li {
    flex-direction: column;
    gap: 6px;
  }

  .hero-benefits img {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .structural-section {
    min-height: 31vh;
    padding: 76px 22px;
  }

  .craft-section {
    padding: 100px 18px 102px;
    background: var(--craft-wine);
  }

  .craft-shell {
    gap: 38px;
  }

  .craft-facade {
    top: 18%;
    left: -112px;
    width: 360px;
    opacity: 0.18;
  }

  .craft-kicker-row {
    grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
    gap: 12px;
  }

  .craft-kicker {
    font-size: clamp(0.78rem, 3.6vw, 0.95rem);
    letter-spacing: 0.09em;
  }

  .craft-kicker-ornament {
    width: 82px;
    margin-top: 8px;
    margin-bottom: 16px;
  }

  .craft-title {
    font-size: clamp(3rem, 14.5vw, 4.35rem);
    line-height: 0.94;
  }

  .craft-title-divider {
    width: min(240px, 65%);
    margin-top: 14px;
  }

  .craft-description {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .craft-values {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .craft-value {
    padding: 0 12px 28px;
  }

  .craft-value + .craft-value {
    border-left: 0;
  }

  .craft-value:not(:last-child) {
    border-bottom: 1px solid rgba(224, 169, 67, 0.32);
  }

  .craft-value img {
    width: 126px;
  }

  .craft-value h3 {
    min-height: 0;
    font-size: 0.96rem;
  }

  .craft-value p {
    max-width: 310px;
    font-size: 0.87rem;
  }

  .craft-portrait {
    width: min(94%, 430px);
  }

  .product-section {
    --product-overlap-top: 72px;
    --product-overlap-bottom: 72px;
    min-height: auto;
    padding: 0;
  }

  .product-intro {
    padding: 102px 20px 46px;
  }

  .product-kicker {
    min-width: min(270px, 88vw);
    margin-bottom: 24px;
    padding: 9px 30px;
    font-size: 0.88rem;
  }

  .product-title {
    font-size: clamp(3rem, 14.4vw, 4.4rem);
    line-height: 0.94;
  }

  .product-title strong {
    margin-top: 8px;
  }

  .product-rule {
    width: min(100%, 420px);
    margin-top: 24px;
    margin-bottom: 19px;
  }

  .product-copy {
    max-width: 510px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .product-background {
    height: calc(100% + var(--product-overlap-top) + var(--product-overlap-bottom));
    aspect-ratio: auto;
    object-position: 68% center;
  }

  .menu-section {
    --menu-to-differences-transition: 72px;
    padding: 94px 0 82px;
  }

  .differences-section {
    --differences-to-delivery-transition: 72px;
    padding: 132px 18px 78px;
  }

  .differences-shell {
    gap: 30px;
  }

  .differences-kicker-row {
    margin-bottom: 18px;
    gap: 13px;
  }

  .differences-kicker {
    font-size: 0.9rem;
  }

  .differences-title {
    font-size: clamp(2.65rem, 13vw, 3.65rem);
    line-height: 0.96;
  }

  .differences-title strong {
    white-space: normal;
  }

  .differences-copy {
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .differences-background {
    object-position: 67% center;
    opacity: 0.54;
  }

  .differences-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .difference-card {
    min-height: 0;
    padding: 18px 16px;
    grid-template-columns: 86px minmax(0, 1fr);
    border-radius: 10px;
  }

  .difference-card h3 {
    font-size: 1.12rem;
  }

  .difference-card p {
    font-size: 0.9rem;
  }

  .delivery-section {
    padding: 132px 18px 78px;
  }

  .delivery-shell {
    gap: 30px;
  }

  .delivery-title {
    font-size: clamp(2.65rem, 13.2vw, 3.65rem);
    line-height: 0.96;
  }

  .delivery-title span {
    white-space: normal;
  }

  .delivery-rule {
    margin-top: 18px;
    margin-bottom: 16px;
  }

  .delivery-copy {
    font-size: 0.98rem;
  }

  .delivery-cta {
    margin-top: 20px;
  }

  .delivery-composition {
    width: calc(100% + 18px);
    max-width: 520px;
    transform: none;
  }

  .delivery-benefits {
    gap: 0;
  }

  .delivery-benefit {
    padding-inline: 6px;
  }

  .delivery-benefit h3 {
    font-size: 0.78rem;
  }

  .menu-corner {
    top: 18px;
    width: 118px;
    opacity: 0.36;
  }

  .menu-vapor {
    top: 31%;
    right: -24%;
    width: 310px;
    opacity: 0.25;
  }

  .menu-shell {
    width: 100%;
    gap: 34px;
  }

  .menu-copy-block {
    padding-inline: 18px;
  }

  .menu-kicker-row {
    grid-template-columns: minmax(32px, 1fr) auto minmax(32px, 1fr);
    gap: 12px;
  }

  .menu-kicker {
    font-size: 0.92rem;
  }

  .menu-kicker-ornament {
    width: 132px;
    height: 44px;
  }

  .menu-title {
    font-size: clamp(2.9rem, 13.8vw, 4.25rem);
    line-height: 0.96;
  }

  .menu-title span {
    white-space: normal;
  }

  .menu-copy {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .menu-cta {
    width: min(100%, 430px);
    height: 78px;
    margin-top: 20px;
  }

  .menu-benefits {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .menu-benefit {
    width: min(100%, 310px);
    margin-inline: auto;
    padding: 0 12px 22px;
  }

  .menu-benefit + .menu-benefit {
    border-left: 0;
    border-top: 1px solid rgba(232, 169, 57, 0.35);
    padding-top: 22px;
  }

  .menu-benefit img {
    width: 112px;
    margin-bottom: 7px;
  }

  .menu-benefit h3 {
    font-size: 0.9rem;
  }

  .menu-products-composite {
    width: min(100%, 620px);
  }

  .product-differences {
    width: calc(100% - 32px);
    padding: 48px 0 86px;
    gap: 38px 12px;
  }

  .product-difference {
    padding-inline: 5px;
  }

  .product-difference img {
    width: clamp(106px, 31vw, 138px);
    margin-bottom: 11px;
  }

  .product-difference h3 {
    margin-bottom: 7px;
    font-size: clamp(0.78rem, 3.7vw, 0.94rem);
  }

  .product-difference p {
    max-width: 180px;
    font-size: clamp(0.72rem, 3.25vw, 0.84rem);
    line-height: 1.42;
  }

  .final-cta {
    padding: 90px 22px;
  }

  .footer-inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }
}

@media (max-width: 980px) {
  .local-section {
    min-height: clamp(660px, 88vw, 780px);
    padding: clamp(118px, 16vw, 150px) 24px 72px;
  }

  .local-section::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(5, 3, 1, 0.74) 0%,
      rgba(5, 3, 1, 0.5) 46%,
      rgba(5, 3, 1, 0.12) 78%,
      transparent 100%
    );
  }

  .local-background {
    object-position: 64% 36%;
  }

  .local-shell {
    width: min(calc(100% - 24px), 1040px);
    grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr);
  }

  .local-title {
    font-size: clamp(3rem, 5.6vw, 4rem);
  }

  .local-title span,
  .local-title strong {
    white-space: normal;
  }

  .faq-section {
    min-height: auto;
    padding: clamp(160px, 18vw, 190px) 24px 100px;
  }

  .faq-shell {
    width: min(calc(100% - 24px), 920px);
  }

  .faq-title {
    font-size: clamp(3.1rem, 7.4vw, 4.75rem);
  }

  .faq-list {
    margin-top: 34px;
  }
}

@media (max-width: 620px) {
  .delivery-section {
    --delivery-to-local-transition: 72px;
  }

  .local-section {
    --local-to-faq-transition: 72px;
    min-height: auto;
    padding: clamp(210px, 58vw, 250px) 18px 72px;
  }

  .local-section::before {
    background:
      linear-gradient(
        180deg,
        transparent 0%,
        rgba(5, 3, 1, 0.12) 30%,
        rgba(5, 3, 1, 0.72) 56%,
        rgba(5, 3, 1, 0.94) 100%
      ),
      linear-gradient(90deg, rgba(5, 3, 1, 0.48), transparent 85%);
  }

  .local-background {
    object-position: 66% 34%;
  }

  .local-shell {
    width: 100%;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .local-copy-block {
    max-width: none;
  }

  .local-heading-mark {
    width: 100%;
    margin-inline: auto;
  }

  .local-kicker-row {
    grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
    gap: 12px;
  }

  .local-kicker {
    font-size: 0.86rem;
  }

  .local-title {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  .local-rule {
    margin: 22px 0 20px;
  }

  .local-copy {
    font-size: 1rem;
    line-height: 1.5;
  }

  .faq-section {
    padding: 132px 16px 78px;
  }

  .faq-background {
    object-position: 68% center;
  }

  .faq-shell {
    width: 100%;
  }

  .faq-kicker-row {
    margin-bottom: 18px;
    grid-template-columns: minmax(28px, 1fr) auto minmax(28px, 1fr);
    gap: 14px;
  }

  .faq-kicker {
    font-size: 0.84rem;
    letter-spacing: 0.16em;
  }

  .faq-title {
    font-size: clamp(2.5rem, 12.4vw, 3.5rem);
    line-height: 0.98;
  }

  .faq-lead {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .faq-list {
    margin-top: 28px;
    gap: 10px;
  }

  .faq-question {
    min-height: 72px;
    padding: 18px 16px 18px 18px;
    grid-template-columns: auto minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .faq-question-number,
  .faq-question-text {
    font-size: 1.05rem;
    line-height: 1.26;
  }

  .faq-toggle {
    width: 34px;
  }

  .faq-answer-content {
    padding: 0 20px 24px 42px;
  }

  .faq-answer-content p,
  .faq-answer-content address {
    font-size: 0.94rem;
    line-height: 1.5;
  }
}

@media (max-width: 390px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (max-height: 760px) and (min-width: 981px) {
  .hero-shell {
    padding-top: calc(var(--header-height) + 14px);
    padding-bottom: 36px;
    row-gap: 18px;
  }

  .hero-visual {
    height: min(60svh, 560px);
  }

  .hero-title {
    font-size: clamp(2.5rem, 3.45vw, 3.55rem);
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-badge {
    margin-bottom: 16px;
  }

  .hero-benefits {
    margin-top: 18px;
  }

  .button {
    min-height: 52px;
  }
}

@media (max-width: 1100px) {
  .closing-section {
    min-height: auto;
    padding: clamp(150px, 16vw, 190px) 22px 26px;
  }

  .closing-shell {
    width: min(calc(100% - 24px), 980px);
  }

  .footer-frame {
    padding: 58px 30px 40px;
  }

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

  .footer-brand,
  .footer-info {
    min-height: 176px;
  }

  .footer-info:nth-child(n + 4) {
    border-top: 1px solid rgba(224, 157, 37, 0.34);
  }

  .footer-info:nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .faq-section {
    --faq-to-closing-transition: 72px;
  }

  .closing-section {
    padding: clamp(118px, 24vw, 160px) 16px 22px;
  }

  .closing-background {
    object-position: 61% center;
  }

  .closing-shell {
    width: 100%;
  }

  .closing-ornament {
    width: min(92%, 460px);
  }

  .closing-title {
    font-size: clamp(3.15rem, 15vw, 4.6rem);
  }

  .closing-lead {
    max-width: 470px;
    margin-top: 20px;
    gap: 9px;
    font-size: clamp(0.9rem, 4.4vw, 1.08rem);
    line-height: 1.45;
  }

  .closing-cta-link {
    width: min(100%, 580px);
    margin-top: 24px;
  }

  .site-footer {
    margin-top: 44px;
  }

  .footer-frame {
    padding: 58px 22px 34px;
  }

  .footer-corner {
    width: 72px;
  }

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

  .footer-brand {
    min-height: 0;
    padding: 0 12px 32px;
  }

  .final-footer-logo {
    width: min(82%, 240px);
  }

  .footer-info {
    width: 100%;
    min-height: 0;
    padding: 26px 12px;
    border-top: 1px solid rgba(224, 157, 37, 0.34);
    border-left: 0;
  }

  .footer-info-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 13px;
  }

  .footer-info h3,
  .footer-info-copy > strong {
    font-size: 0.91rem;
  }

  .footer-info p,
  .footer-info address,
  .footer-info-copy > span {
    font-size: 0.92rem;
  }

  .footer-copyright {
    max-width: 320px;
    margin: 20px auto 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}
