:root {
  --bg: #050505;
  --panel: #0c0c0d;
  --panel-2: #131211;
  --text: #fff7e9;
  --muted: #a69c8f;
  --line: rgba(255, 247, 233, 0.13);
  --red: #ff3c2f;
  --red-deep: #b8242a;
  --green: #5cff5f;
  --cream: #ffd8a4;
  --gold: #d49b34;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 12%, rgba(92, 255, 95, 0.035), transparent 30%),
    radial-gradient(circle at 14% 22%, rgba(255, 60, 47, 0.045), transparent 34%),
    linear-gradient(180deg, #020202 0%, #030303 48%, #050505 100%);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 14px clamp(18px, 5vw, 76px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.58));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
}

.brand__mark::before {
  position: absolute;
  inset: 3px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 64% 28%, rgba(92, 255, 95, 0.46), transparent 44%),
    radial-gradient(circle at 46% 58%, rgba(255, 60, 47, 0.55), transparent 42%);
  filter: blur(12px);
}

.brand__mark img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 9px rgba(92, 255, 95, 0.38))
    drop-shadow(0 0 14px rgba(255, 60, 47, 0.42));
}

.brand__text {
  display: grid;
  gap: 3px;
}

.brand__text strong {
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.brand__text span {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.8vw, 34px);
  color: rgba(255, 247, 233, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a {
  transition: color 160ms ease, text-shadow 160ms ease;
}

.nav a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(92, 255, 95, 0.55);
}

.showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(26px, 4vw, 70px);
  align-items: center;
  min-height: 100vh;
  padding: 124px clamp(18px, 5vw, 76px) 58px;
  overflow: hidden;
}

.showcase::before {
  position: absolute;
  inset: 112px clamp(12px, 4vw, 54px) 38px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 247, 233, 0.045);
  border-radius: 22px;
  background:
    radial-gradient(circle at 35% 50%, rgba(255, 60, 47, 0.055), transparent 26%),
    radial-gradient(circle at 78% 34%, rgba(92, 255, 95, 0.032), transparent 28%),
    linear-gradient(135deg, rgba(255, 247, 233, 0.012), transparent 44%);
}

.showcase__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(62vw, 640px);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  width: min(760px, 100%);
  aspect-ratio: 1 / 1;
  isolation: isolate;
}

.product-media::before {
  position: absolute;
  inset: 10%;
  content: "";
  border-radius: 42%;
  background:
    radial-gradient(ellipse at 50% 64%, rgba(255, 60, 47, 0.13), transparent 34%),
    radial-gradient(circle at 52% 54%, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.55) 42%, transparent 70%);
  filter: blur(24px);
  z-index: 0;
}

.product-media::after {
  position: absolute;
  inset: clamp(10px, 2vw, 24px);
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.42) 67%, #020202 91%),
    linear-gradient(90deg, #020202 0%, transparent 15%, transparent 85%, #020202 100%),
    linear-gradient(180deg, #020202 0%, transparent 12%, transparent 84%, #020202 100%);
}

.product-media img {
  position: relative;
  z-index: 1;
  width: min(680px, 95%);
  max-height: 78vh;
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  filter:
    brightness(0.92)
    contrast(1.06)
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.84))
    drop-shadow(0 0 16px rgba(255, 60, 47, 0.1));
  transition: opacity 260ms ease, transform 260ms ease;
}

.product-media img.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.slider-btn {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 42%;
  color: transparent;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}

.slider-btn:hover {
  background: transparent;
  box-shadow: none;
}

.slider-btn--prev {
  left: 0;
}

.slider-btn--next {
  right: 0;
}

.product-copy {
  max-width: 540px;
}

.eyebrow,
.section-title p {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--red);
}

.section-title p {
  color: var(--red);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 12ch;
  font-family: "DIN Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(72px, 8vw, 132px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(255, 60, 47, 0.22);
}

.ingredient-list {
  display: grid;
  gap: 11px;
  max-width: 470px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 247, 233, 0.82);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.28;
}

.ingredient-list li {
  position: relative;
  padding-left: 22px;
}

.ingredient-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 60, 47, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.button--primary {
  color: var(--text);
  background: var(--red);
  box-shadow: 0 0 26px rgba(255, 60, 47, 0.3);
}

.button--light {
  color: #050505;
  background: var(--text);
  box-shadow: 0 0 22px rgba(255, 247, 233, 0.16);
}

.button--ghost {
  color: var(--text);
  border: 1px solid rgba(255, 247, 233, 0.2);
  background: rgba(255, 247, 233, 0.05);
}

.slide-counter {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 32px;
  color: rgba(255, 247, 233, 0.46);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.location {
  padding: 86px clamp(18px, 5vw, 76px);
}

.menu-page {
  min-height: 100vh;
  padding: 136px clamp(18px, 5vw, 76px) 86px;
}

.menu-intro {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin-bottom: 52px;
}

.menu-intro h1 {
  max-width: none;
}

.menu-intro__copy {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 247, 233, 0.68);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.accordion-menu {
  display: grid;
  gap: 14px;
}

.accordion-menu > div {
  display: grid;
  gap: 14px;
}

.accordion-section {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 247, 233, 0.055), rgba(255, 247, 233, 0.02));
  border: 1px solid rgba(255, 247, 233, 0.13);
  border-radius: 8px;
}

.accordion-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 22px 26px;
  color: var(--cream);
  cursor: pointer;
  font-family: "DIN Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  list-style: none;
  text-transform: uppercase;
}

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

.accordion-section__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--red);
  border: 1px solid rgba(255, 60, 47, 0.42);
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1;
  transition: transform 180ms ease;
}

.accordion-section[open] .accordion-section__icon {
  transform: rotate(45deg);
}

.menu-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0 1px 1px;
}

.menu-product {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
  min-height: 190px;
  padding: 24px;
  background: rgba(5, 5, 5, 0.62);
}

.menu-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  filter: brightness(0.86) contrast(1.05);
}

.menu-product h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-family: "DIN Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.menu-product ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 247, 233, 0.72);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.22;
}

.simple-menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 1px 1px;
}

.simple-menu-row {
  min-height: 58px;
  padding: 20px 22px;
  color: rgba(255, 247, 233, 0.84);
  background: rgba(5, 5, 5, 0.62);
  font-size: 15px;
  font-weight: 900;
}

.section-title {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
}

.section-title h2 {
  font-family: "DIN Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

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

.menu-section {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 247, 233, 0.06), rgba(255, 247, 233, 0.025));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-section h3 {
  margin-bottom: 20px;
  color: var(--cream);
  font-family: "DIN Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.menu-section__rows {
  display: grid;
  gap: 11px;
}

.menu-row {
  display: grid;
  grid-template-columns: auto minmax(26px, 1fr) auto;
  gap: 10px;
  align-items: baseline;
  color: rgba(255, 247, 233, 0.84);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.12;
}

.menu-row__dots {
  border-bottom: 1px dotted rgba(255, 247, 233, 0.28);
}

.menu-row strong {
  color: #fff;
  font-weight: 950;
}

.location {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.location__copy {
  max-width: 760px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-list div {
  display: grid;
  gap: 6px;
}

.contact-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list dd {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
}

.contact-list a {
  border-bottom: 1px solid rgba(92, 255, 95, 0.45);
}

.contact-list .social-icons {
  gap: 10px;
}

.contact-list .social-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--text);
  border: 1px solid rgba(255, 247, 233, 0.14);
  border-radius: 8px;
  background: rgba(255, 247, 233, 0.045);
  transition: color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-list .social-icon:hover {
  color: #fff;
  border-color: rgba(255, 60, 47, 0.58);
  box-shadow: 0 0 18px rgba(255, 60, 47, 0.24);
  transform: translateY(-1px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.social-icon--facebook {
  align-items: end;
  padding-bottom: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 0.9;
}

.map-wrap {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 46%, rgba(92, 255, 95, 0.15), transparent 20%),
    linear-gradient(135deg, #11100f 0%, #0a0a0b 100%);
}

.map-canvas {
  position: absolute;
  inset: 0;
  overflow: hidden;
  contain: strict;
}

.road,
.coastline {
  position: absolute;
  display: block;
  border-radius: 999px;
  transform-origin: center;
}

.road {
  background: rgba(255, 247, 233, 0.12);
  box-shadow: 0 0 18px rgba(255, 247, 233, 0.05);
}

.road--coast {
  width: 88%;
  height: 16px;
  left: 7%;
  top: 52%;
  transform: rotate(-7deg);
  background: rgba(255, 216, 164, 0.22);
}

.road--main {
  width: 72%;
  height: 10px;
  left: 12%;
  top: 38%;
  transform: rotate(20deg);
}

.road--side-one {
  width: 40%;
  height: 8px;
  left: 38%;
  top: 60%;
  transform: rotate(-24deg);
}

.road--side-two {
  width: 42%;
  height: 8px;
  left: 4%;
  top: 26%;
  transform: rotate(-38deg);
}

.coastline {
  width: 44%;
  height: 96px;
  right: 4%;
  bottom: 18px;
  border: 2px solid rgba(92, 255, 95, 0.22);
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-8deg);
}

.map-marker {
  position: absolute;
  left: 58%;
  top: 43%;
  width: 24px;
  height: 24px;
  border: 4px solid #050505;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  box-shadow: 0 0 24px rgba(92, 255, 95, 0.72);
  transform: rotate(-45deg);
}

.map-marker::after {
  position: absolute;
  inset: 5px;
  content: "";
  border-radius: 50%;
  background: #050505;
}

.map-label {
  position: absolute;
  color: rgba(255, 247, 233, 0.86);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-label--brand {
  left: calc(55% + 24px);
  top: 43%;
  color: var(--green);
  text-shadow: 0 0 18px rgba(92, 255, 95, 0.44);
}

.map-label--road {
  left: 10%;
  top: 47%;
  color: var(--cream);
  transform: rotate(-7deg);
}

.map-label--sea {
  right: 10%;
  bottom: 15%;
  color: rgba(92, 255, 95, 0.42);
}

.map-link {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #050505;
  background: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.supply-page {
  min-height: 100vh;
  overflow: hidden;
}

.supply-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  min-height: 100vh;
  padding: 128px clamp(18px, 5vw, 76px) 70px;
}

.supply-hero::before {
  position: absolute;
  inset: 94px clamp(14px, 4vw, 58px) 38px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 247, 233, 0.055);
  background:
    radial-gradient(circle at 26% 34%, rgba(255, 60, 47, 0.08), transparent 27%),
    radial-gradient(circle at 78% 48%, rgba(92, 255, 95, 0.04), transparent 30%),
    linear-gradient(135deg, rgba(255, 247, 233, 0.018), transparent 52%);
}

.supply-hero__copy {
  max-width: 620px;
}

.supply-hero h1 {
  max-width: 11ch;
  font-size: clamp(62px, 7vw, 122px);
}

.supply-lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 247, 233, 0.76);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 800;
  line-height: 1.32;
}

.supply-hero__visual {
  position: relative;
  min-height: min(62vw, 690px);
  isolation: isolate;
}

.supply-hero__visual::before {
  position: absolute;
  inset: 6% 2% 4% 8%;
  z-index: -1;
  content: "";
  background:
    radial-gradient(ellipse at 48% 60%, rgba(255, 60, 47, 0.18), transparent 42%),
    radial-gradient(ellipse at 70% 24%, rgba(92, 255, 95, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 247, 233, 0.05), rgba(255, 247, 233, 0.012));
  filter: blur(6px);
}

.supply-hero__image {
  position: absolute;
  object-fit: contain;
  filter:
    brightness(0.94)
    contrast(1.06)
    drop-shadow(0 32px 46px rgba(0, 0, 0, 0.78));
}

.supply-hero__image--main {
  right: -3%;
  bottom: 5%;
  width: min(680px, 92%);
}

.supply-hero__image--secondary {
  left: 0;
  top: 0;
  width: min(390px, 48%);
  opacity: 0.72;
  filter:
    brightness(0.72)
    contrast(1.05)
    drop-shadow(0 22px 34px rgba(0, 0, 0, 0.72));
}

.supply-badge {
  position: absolute;
  z-index: 2;
  min-height: 38px;
  padding: 12px 15px;
  color: var(--text);
  border: 1px solid rgba(255, 247, 233, 0.14);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.supply-badge--top {
  right: 10%;
  top: 18%;
}

.supply-badge--bottom {
  left: 9%;
  bottom: 16%;
  color: var(--red);
}

.supply-strip,
.supply-products,
.supply-process,
.supply-contact {
  padding: 86px clamp(18px, 5vw, 76px);
}

.supply-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 247, 233, 0.06);
}

.supply-strip div {
  min-height: 190px;
  padding: 28px;
  background: #050505;
}

.supply-strip span,
.supply-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.supply-strip strong,
.supply-steps strong {
  display: block;
  color: var(--text);
  font-family: "DIN Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.supply-strip p,
.supply-steps p {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(255, 247, 233, 0.64);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.supply-products {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 60, 47, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 247, 233, 0.018), transparent);
}

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

.supply-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(255, 247, 233, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 247, 233, 0.06), rgba(255, 247, 233, 0.018)),
    #050505;
}

.supply-card--red {
  border-color: rgba(255, 60, 47, 0.34);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 60, 47, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 247, 233, 0.07), rgba(255, 247, 233, 0.018)),
    #050505;
}

.supply-card__kicker {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.supply-card h3 {
  font-family: "DIN Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(44px, 4vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
}

.supply-card p {
  margin: 0;
  color: rgba(255, 247, 233, 0.74);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.36;
}

.supply-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  color: rgba(255, 247, 233, 0.72);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.28;
  list-style: none;
}

.supply-card li {
  position: relative;
  padding-left: 18px;
}

.supply-card li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--red);
}

.supply-process {
  border-top: 1px solid var(--line);
}

.supply-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 247, 233, 0.08);
}

.supply-steps li {
  min-height: 260px;
  padding: 26px;
  background: #050505;
}

.supply-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 48%, rgba(255, 60, 47, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 247, 233, 0.025), transparent);
}

.supply-contact h2 {
  max-width: 760px;
  font-family: "DIN Condensed", Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(52px, 6vw, 90px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.supply-contact p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 247, 233, 0.68);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.36;
}

.supply-contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 1020px) {
  .showcase {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 112px;
  }

  .showcase__stage {
    min-height: 54vh;
  }

  .product-copy {
    max-width: 680px;
  }

  h1 {
    max-width: 12ch;
  }

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

  .menu-product-grid {
    grid-template-columns: 1fr;
  }

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

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

  .supply-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 116px;
  }

  .supply-hero__copy {
    max-width: 760px;
  }

  .supply-hero h1 {
    max-width: 12ch;
  }

  .supply-hero__visual {
    min-height: 560px;
  }

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

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

  .supply-contact__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .topbar {
    min-height: 74px;
    padding: 10px 14px;
  }

  .brand__mark {
    width: 52px;
    height: 52px;
  }

  .brand__text strong {
    font-size: 15px;
  }

  .nav {
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .nav a:nth-child(2) {
    display: none;
  }

  .showcase {
    min-height: auto;
    padding: 96px 14px 44px;
  }

  .showcase::before {
    inset: 84px 8px 20px;
    border-radius: 16px;
  }

  .showcase__stage {
    min-height: 370px;
  }

  .product-media {
    width: min(420px, 100%);
  }

  .slider-btn {
    width: 42%;
    height: auto;
    font-size: 0;
  }

  h1 {
    font-size: clamp(56px, 18vw, 76px);
  }

  .ingredient-list {
    font-size: 16px;
  }

  .slide-counter {
    right: 18px;
    bottom: 18px;
  }

  .menu-page,
  .location {
    padding: 56px 14px;
  }

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

  .menu-page {
    padding-top: 104px;
  }

  .accordion-section summary {
    min-height: 66px;
    padding: 18px 16px;
  }

  .menu-product {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    min-height: 150px;
    padding: 16px;
  }

  .menu-product h3 {
    font-size: 28px;
  }

  .menu-product ul {
    font-size: 12px;
  }

  .simple-menu-list {
    grid-template-columns: 1fr;
  }

  .supply-hero,
  .supply-strip,
  .supply-products,
  .supply-process,
  .supply-contact {
    padding: 56px 14px;
  }

  .supply-hero {
    padding-top: 104px;
  }

  .supply-hero::before {
    inset: 82px 8px 18px;
  }

  .supply-hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .supply-lead {
    font-size: 17px;
  }

  .supply-hero__visual {
    min-height: 420px;
  }

  .supply-hero__image--main {
    right: -18%;
    bottom: 6%;
    width: 112%;
  }

  .supply-hero__image--secondary {
    width: 54%;
  }

  .supply-badge {
    padding: 10px 12px;
    font-size: 10px;
  }

  .supply-badge--top {
    right: 2%;
  }

  .supply-badge--bottom {
    left: 0;
  }

  .supply-strip,
  .supply-grid,
  .supply-steps {
    grid-template-columns: 1fr;
  }

  .supply-strip div,
  .supply-card,
  .supply-steps li {
    min-height: auto;
    padding: 22px;
  }

  .supply-card h3 {
    font-size: 44px;
  }

  .supply-contact h2 {
    font-size: clamp(44px, 14vw, 64px);
  }

}
