:root {
  --bg: #ffffff;
  --paper: #f7fbfd;
  --brand: #1ca0d8;
  --brand-strong: #0f678d;
  --brand-soft: #e8f7ff;
  --ink: #10161b;
  --muted: #60717c;
  --line: #d6e8f1;
  --shadow: 0 24px 70px rgba(15, 103, 141, 0.12);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --warm: #d88a32;
  --warm-soft: #fff1dc;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(28, 160, 216, 0.08), transparent 34%),
    radial-gradient(circle at 100% 12%, rgba(216, 138, 50, 0.06), transparent 20%),
    var(--bg);
  overflow-x: clip;
}

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

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

button {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%230f678d' stroke-width='1'%3E%3Cpath d='M0 12h160M0 56h160M0 101h160M0 145h160' opacity='.22'/%3E%3Cpath d='M16 0v160M64 0v160M112 0v160' opacity='.14'/%3E%3C/g%3E%3C/svg%3E");
}

.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 140;
  height: 4px;
  width: calc(var(--scroll-progress, 0) * 1%);
  background: linear-gradient(90deg, var(--brand), var(--brand-strong));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem clamp(1rem, 2vw, 1.4rem);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214, 232, 241, 0.92);
  transition: transform 0.28s ease;
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mini img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-mini span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-strong);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-chip {
  padding: 0.82rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-strong);
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

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

.nav-chip--solid {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  border-color: transparent;
  color: #fff;
}

main {
  padding-bottom: 8rem;
}

.hero,
.manifesto,
.burger-section,
.extras,
.cta-final,
.site-footer__inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(2.4rem, 5vw, 4.5rem);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
}

.hero__shape--one {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  right: -5rem;
  background: rgba(28, 160, 216, 0.14);
}

.hero__shape--two {
  width: 22rem;
  height: 22rem;
  left: -8rem;
  top: 22%;
  background: rgba(216, 138, 50, 0.08);
}

.hero__shape--three {
  width: 12rem;
  height: 12rem;
  right: 24%;
  bottom: 8%;
  background: rgba(28, 160, 216, 0.1);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.hero__title-copy {
  display: grid;
  gap: 1rem;
}

.hero h1,
.section-heading h2,
.burger-section h2,
.cta-final h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  max-width: 8ch;
}

.hero__logo {
  width: clamp(130px, 18vw, 210px);
  height: auto;
  justify-self: end;
}

.hero__lead,
.section-heading h2,
.burger-section__lead,
.manifesto p,
.extras__card p,
.cta-final p {
  line-height: 1.7;
}

.hero__lead {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.08rem);
}

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

.hero-card {
  padding: 0.85rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(214, 232, 241, 0.92);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(15, 103, 141, 0.16);
}

.hero-card--preview img {
  aspect-ratio: 0.95;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.hero-card--preview div {
  padding: 0.9rem 0.35rem 0.15rem;
}

.hero-card--preview span {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.hero-card--preview small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  line-height: 1.45;
}

.manifesto,
.extras,
.cta-final {
  padding: clamp(2rem, 4vw, 3.4rem) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-strong);
}

.section-heading {
  display: grid;
  gap: 0.75rem;
}

.section-heading h2 {
  max-width: 17ch;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-card,
.manifesto__grid article,
.extras__card,
.cta-final__card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(214, 232, 241, 0.92);
  box-shadow: var(--shadow);
}

.manifesto__grid article {
  border-radius: 28px;
  padding: 1.4rem;
}

.manifesto__grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

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

.burger-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
  min-height: 100svh;
  padding: clamp(2.4rem, 7vw, 5rem) 0;
}

.burger-section--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.burger-section__halo {
  position: absolute;
  inset: auto auto 0 -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 160, 216, 0.12), rgba(28, 160, 216, 0));
  pointer-events: none;
}

.burger-section--reverse .burger-section__halo {
  inset: 0 -7rem auto auto;
}

.burger-section__media,
.burger-section__content {
  position: relative;
  z-index: 2;
}

.burger-section__index {
  position: absolute;
  top: -1.4rem;
  left: -0.2rem;
  z-index: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(5rem, 12vw, 9rem);
  color: rgba(15, 103, 141, 0.08);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.3rem);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.photo-frame--blue {
  background: linear-gradient(145deg, rgba(28, 160, 216, 0.16), rgba(15, 103, 141, 0.06)), white;
  border: 1px solid rgba(28, 160, 216, 0.25);
}

.photo-frame--white {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(214, 232, 241, 0.95);
}

.photo-frame--featured::before {
  inset: 16px;
  border: 1px dashed rgba(28, 160, 216, 0.3);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
  border-radius: 26px;
}

.section-ribbon {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 160, 216, 0.2);
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.section-ribbon--accent {
  background: var(--warm-soft);
  color: #975b18;
  border-color: rgba(216, 138, 50, 0.26);
}

.section-ribbon--thin {
  margin-bottom: 1rem;
}

.burger-section h2 {
  margin-top: 0.9rem;
  font-size: clamp(3rem, 8vw, 6rem);
}

.burger-section__lead {
  max-width: 56ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.08rem);
}

.ingredient-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.ingredient-pills span {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(15, 103, 141, 0.05);
  color: var(--brand-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.price-widget {
  max-width: 28rem;
  margin-top: 1.7rem;
  padding: 1.25rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(214, 232, 241, 0.96);
  box-shadow: var(--shadow);
}

.price-widget__switch {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.price-widget__switch button {
  border: 0;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: transparent;
  color: var(--brand-strong);
  font-weight: 800;
  cursor: pointer;
}

.price-widget__switch button.is-active {
  background: var(--brand-strong);
  color: #fff;
}

.price-widget__value {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 1.2rem;
}

.price-widget__variant {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-widget__price {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.3rem, 6vw, 3.8rem);
  line-height: 0.9;
  color: var(--brand-strong);
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.35rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 18px 36px rgba(15, 103, 141, 0.18);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  color: var(--brand-strong);
}

.extras__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.extras__card {
  padding: 1.45rem;
  border-radius: 28px;
}

.extras__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.extras__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed rgba(15, 103, 141, 0.2);
}

.extras__list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.extras__list strong {
  color: var(--brand-strong);
}

.extras__card--quote {
  display: grid;
  align-content: center;
  background: linear-gradient(180deg, rgba(28, 160, 216, 0.06), rgba(255, 255, 255, 0.96));
}

.extras__card--quote p {
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
}

.cta-final__card {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(28, 160, 216, 0.08));
}

.cta-final h2 {
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.floating-order {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 135;
  transform: translateX(-50%);
  width: min(calc(100% - 1rem), 24rem);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(16, 22, 27, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.floating-order img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.floating-order .button {
  flex: 1;
  min-height: 48px;
  padding: 0.85rem 1rem;
  box-shadow: none;
}

.site-footer {
  border-top: 1px solid rgba(214, 232, 241, 0.92);
  padding: 1.5rem 0 7rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.site-footer__inner span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--brand-strong);
}

.site-footer__inner img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1100px) {
  .hero__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .burger-section,
  .burger-section--reverse,
  .extras__layout,
  .manifesto__grid {
    grid-template-columns: 1fr;
  }

  .burger-section {
    min-height: auto;
  }

  .burger-section__index {
    top: -2rem;
  }

  .hero {
    min-height: auto;
  }
}

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

  .brand-mini span {
    display: none;
  }

  .hero,
  .manifesto,
  .burger-section,
  .extras,
  .cta-final,
  .site-footer__inner {
    width: min(calc(100% - 1rem), var(--max));
  }

  .hero__title-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero__logo {
    justify-self: start;
    width: 128px;
  }

  .hero__cards {
    display: none;
  }

  .price-widget__value {
    align-items: center;
  }

  .floating-order {
    width: calc(100% - 1rem);
  }

  .site-footer {
    padding-bottom: 7.4rem;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 520px) {
  .top-nav {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .button,
  .price-widget .button {
    width: 100%;
  }

  .price-widget__switch {
    width: 100%;
    justify-content: center;
  }

  .price-widget__switch button {
    flex: 1;
  }

  .price-widget__value {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-order {
    padding: 0.4rem;
    gap: 0.5rem;
  }

  .floating-order img {
    width: 40px;
    height: 40px;
  }

  .site-footer__inner span {
    text-align: center;
  }
}

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

  .reveal,
  .button,
  .nav-chip,
  .hero-card,
  .parallax,
  .site-header {
    transition: none !important;
    transform: none !important;
  }
}