:root {
  --bg: #04100d;
  --bg-soft: #00493b;
  --mint: #00ea9c;
  --seafoam: #d9e8e3;
  --jade: #348471;
  --forest: #12821f;
  --sand: #f5f1ea;
  --ink: #0b1714;
  --font-display: "Fabiola", "Bodoni MT", Georgia, serif;
  --font-editorial: "Bodoni MT", "Times New Roman", serif;
  --font-body: "Gotham", "Montserrat", "Segoe UI", sans-serif;
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--seafoam);
  background:
    radial-gradient(circle at top left, rgba(0, 234, 156, 0.18), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(52, 132, 113, 0.4), transparent 20%),
    linear-gradient(160deg, #020705 0%, #081613 46%, #03100d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.is-demo-guard img {
  -webkit-user-drag: none;
  user-select: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 5px 5px, 5px 5px;
  mix-blend-mode: screen;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.38;
  pointer-events: none;
  animation: ambientDrift 14s ease-in-out infinite;
}

.ambient-one {
  width: 28rem;
  height: 28rem;
  top: -6rem;
  left: -8rem;
  background: rgba(0, 234, 156, 0.16);
}

.ambient-two {
  width: 24rem;
  height: 24rem;
  right: -6rem;
  top: 22rem;
  background: rgba(52, 132, 113, 0.2);
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}

.hero,
.story-grid,
.menu-section,
.demo-strip,
.patterns-band,
.location-section,
.final-cta {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  width: 100%;
  padding: 0.95rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(4, 16, 13, 0.72), rgba(4, 16, 13, 0.26));
  border-bottom: 1px solid rgba(217, 232, 227, 0.06);
}

.site-header-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(0, 234, 156, 0.18);
  border-radius: 999px;
  background: rgba(217, 232, 227, 0.05);
  color: rgba(217, 232, 227, 0.84);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.demo-badge::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(0, 234, 156, 0.45);
  margin-right: 0.55rem;
  flex: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 0.9rem;
  border: 1px solid rgba(217, 232, 227, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.brand-logo,
.cta-logo,
.hero-burger-image {
  pointer-events: none;
}

.brand-name,
.eyebrow,
.section-label,
.site-nav a,
.button,
.hero-stats strong,
.card-index,
.location-meta span,
.ticker span {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-name {
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: rgba(217, 232, 227, 0.82);
  text-decoration: none;
  font-size: 0.78rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 3.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 850ms ease,
    transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--mint);
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(3.7rem, 9vw, 7.5rem);
  letter-spacing: -0.04em;
}

h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  letter-spacing: -0.035em;
}

h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.hero-text,
.story-panel p,
.menu-card p,
.location-card p {
  line-height: 1.6;
}

.hero-text {
  max-width: 58ch;
  margin: 1.2rem 0 0;
  color: var(--seafoam);
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.khaos-word {
  color: var(--mint);
}

.hero-subtext {
  margin: 0.7rem 0 0;
  color: rgba(217, 232, 227, 0.86);
  font-family: var(--font-editorial);
  font-size: 1.55rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 2.3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--mint);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  box-shadow: 0 12px 28px rgba(0, 234, 156, 0.18);
}

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

.button-secondary,
.button-ghost {
  background: transparent;
  color: var(--seafoam);
  border-color: rgba(217, 232, 227, 0.22);
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(217, 232, 227, 0.08);
}

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  padding: 1rem;
  border: 1px solid rgba(217, 232, 227, 0.12);
  border-radius: 1.2rem;
  background: rgba(217, 232, 227, 0.04);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.hero-stats li:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 234, 156, 0.18);
  background: rgba(217, 232, 227, 0.06);
}

.hero-stats strong,
.location-meta span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
  color: var(--mint);
}

.hero-stats span {
  color: rgba(217, 232, 227, 0.8);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-art {
  position: relative;
  min-height: 38rem;
}

.hero-pattern {
  position: absolute;
  inset: 0 auto 0 0;
  width: 55%;
  color: transparent;
  font-family: var(--font-body);
  font-size: clamp(6rem, 11vw, 9rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.05em;
  -webkit-text-stroke: 2px rgba(0, 234, 156, 0.38);
  opacity: 0.9;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: scale(-1);
  overflow: hidden;
  pointer-events: none;
  animation: patternPulse 7s ease-in-out infinite;
}

.burger-stage {
  position: absolute;
  inset: 3% 7% auto auto;
  width: min(31rem, 92%);
  aspect-ratio: 0.88;
  display: grid;
  align-items: end;
  justify-items: center;
  border-radius: 2rem;
  border: 1px solid rgba(217, 232, 227, 0.16);
  background:
    radial-gradient(circle at 50% 24%, rgba(0, 234, 156, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(0, 73, 59, 0.94), rgba(4, 16, 13, 0.94));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.burger-stage::before,
.burger-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5rem);
}

.burger-stage::before {
  width: 18rem;
  height: 18rem;
  background: rgba(0, 234, 156, 0.18);
  top: -6rem;
}

.burger-stage::after {
  width: 12rem;
  height: 12rem;
  background: rgba(217, 232, 227, 0.08);
  bottom: -4rem;
  right: -3rem;
}

.burger-photo-stage {
  padding: 1.5rem 1.5rem 2.2rem;
  transition: transform 240ms ease;
}

.burger-photo-stage::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 0.75rem;
  height: 7rem;
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(217, 232, 227, 0.05), rgba(217, 232, 227, 0.01)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.08));
  border: 1px solid rgba(217, 232, 227, 0.08);
  z-index: 0;
}

.burger-photo-stage::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 2.4rem;
  height: 5.4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 234, 156, 0.22) 0%, rgba(0, 234, 156, 0.08) 38%, transparent 72%);
  filter: blur(18px);
  z-index: 0;
}

.hero-burger-image {
  position: relative;
  z-index: 2;
  width: min(92%, 28rem);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28))
    drop-shadow(0 34px 36px rgba(0, 0, 0, 0.26))
    drop-shadow(0 10px 18px rgba(255, 174, 56, 0.1));
  transform: translateY(0.2rem) scale(1.04);
  animation: burgerFloat 5s ease-in-out infinite;
}

.burger-caption {
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  z-index: 3;
  display: grid;
  gap: 0.2rem;
}

.caption-kicker {
  color: var(--mint);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.burger-caption strong {
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.burger-base-label {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.15rem;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 1rem;
  background: rgba(4, 16, 13, 0.52);
  border: 1px solid rgba(217, 232, 227, 0.1);
  backdrop-filter: blur(14px);
}

.burger-base-label span {
  color: rgba(217, 232, 227, 0.8);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-card {
  position: absolute;
  max-width: 17rem;
  padding: 1rem 1.1rem;
  border-radius: 1.25rem;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  background-clip: padding-box;
}

.floating-card p {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.floating-card span {
  color: rgba(217, 232, 227, 0.82);
  line-height: 1.35;
  font-family: var(--font-editorial);
  font-size: 1rem;
  text-transform: uppercase;
}

.card-primary {
  left: 0;
  bottom: 4rem;
  background: rgba(217, 232, 227, 0.09);
  border: 1px solid rgba(217, 232, 227, 0.12);
}

.card-secondary {
  right: 0;
  top: 5rem;
  background: rgba(0, 234, 156, 0.14);
  border: 1px solid rgba(0, 234, 156, 0.24);
}

.glass-float {
  animation: glassFloat 6s ease-in-out infinite;
}

.glass-float[data-float="fast"] {
  animation-duration: 4.6s;
}

.hero-chip {
  position: absolute;
  z-index: 2;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(217, 232, 227, 0.18);
  border-radius: 999px;
  background: rgba(217, 232, 227, 0.07);
  backdrop-filter: blur(18px);
  color: var(--seafoam);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.hero-chip:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(0, 234, 156, 0.28);
  background: rgba(217, 232, 227, 0.1);
}

.chip-one {
  left: 5%;
  top: 11%;
}

.chip-two {
  right: 6%;
  bottom: 12%;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(217, 232, 227, 0.12);
  background: rgba(217, 232, 227, 0.03);
}

.ticker-track {
  display: flex;
  gap: 2.8rem;
  white-space: nowrap;
  padding: 1rem 0;
  min-width: max-content;
  animation: marquee 18s linear infinite;
}

.ticker span {
  font-size: 0.8rem;
  color: rgba(217, 232, 227, 0.76);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  padding: 5rem 0 1rem;
}

.story-panel,
.menu-card,
.location-card,
.map-frame {
  border-radius: 1.7rem;
  border: 1px solid rgba(217, 232, 227, 0.12);
}

.story-panel {
  padding: 2rem;
  background: rgba(217, 232, 227, 0.04);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.intro-panel p:last-child {
  max-width: 54ch;
  margin-top: 1rem;
  color: rgba(217, 232, 227, 0.82);
}

.quote-panel {
  display: grid;
  align-content: center;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(0, 73, 59, 0.9), rgba(18, 130, 31, 0.65)),
    rgba(217, 232, 227, 0.03);
}

.quote-text {
  margin: 0;
  max-width: 26ch;
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.quote-caption {
  margin: 1rem 0 0;
  font-family: var(--font-editorial);
  font-size: 1.15rem;
  color: rgba(217, 232, 227, 0.82);
  text-transform: uppercase;
}

.quote-seal {
  display: grid;
  gap: 0.3rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(217, 232, 227, 0.12);
}

.quote-seal span:first-child {
  color: var(--mint);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-seal span:last-child {
  color: rgba(217, 232, 227, 0.72);
  font-size: 0.94rem;
  line-height: 1.4;
}

.menu-section {
  padding: 4rem 0 1rem;
}

.product-showcase {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  padding: 3rem 0 2rem;
}

.product-copy {
  padding: 2rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(217, 232, 227, 0.12);
  background: rgba(217, 232, 227, 0.04);
}

.product-copy p:last-child {
  margin-top: 1rem;
  max-width: 54ch;
  color: rgba(217, 232, 227, 0.82);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.demo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 0 3rem;
}

.demo-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(217, 232, 227, 0.12);
  background: rgba(217, 232, 227, 0.04);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.demo-card h3 {
  margin-top: 0.25rem;
}

.demo-card p:last-child {
  margin: 0.8rem 0 0;
  color: rgba(217, 232, 227, 0.8);
  line-height: 1.55;
}

.menu-card h3,
.product-copy h2,
.location-card h2,
.quote-text,
.intro-panel h2,
.hero h1 {
  text-wrap: balance;
}

.product-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-tile {
  min-height: 16rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(217, 232, 227, 0.12);
  display: grid;
  align-items: end;
  padding: 1.2rem;
  overflow: hidden;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.product-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.92;
}

.product-tile span {
  position: relative;
  z-index: 1;
  font-family: var(--font-editorial);
  font-size: 1.9rem;
  color: var(--sand);
}

.tile-cheese::before {
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 212, 87, 0.85), transparent 32%),
    linear-gradient(180deg, rgba(255, 195, 63, 0.65), rgba(77, 43, 10, 0.4));
}

.tile-grill::before {
  background:
    repeating-linear-gradient(135deg, rgba(255, 146, 91, 0.22) 0 9px, transparent 9px 18px),
    linear-gradient(180deg, rgba(72, 33, 21, 0.88), rgba(18, 8, 6, 0.88));
}

.tile-honey::before {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 204, 98, 0.78), transparent 28%),
    linear-gradient(180deg, rgba(218, 126, 32, 0.8), rgba(90, 44, 12, 0.56));
}

.patterns-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding: 1rem 0 3rem;
}

.pattern-card {
  min-height: 14rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(217, 232, 227, 0.12);
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.pattern-title {
  position: absolute;
  inset: 1rem auto auto 1rem;
  color: rgba(217, 232, 227, 0.22);
  font-family: var(--font-body);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  text-transform: none;
}

.pattern-dark {
  background:
    radial-gradient(circle at 50% 120%, rgba(0, 234, 156, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(0, 73, 59, 0.96), rgba(0, 73, 59, 0.96));
}

.pattern-dark::after {
  content: "RK RK RK RK RK RK RK RK RK RK RK RK";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(3, 18, 14, 0.42);
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.8rem;
  line-height: 2.1;
}

.pattern-bright {
  background: linear-gradient(180deg, rgba(0, 234, 156, 0.95), rgba(0, 234, 156, 0.95));
}

.pattern-bright::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(0, 73, 59, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 58%, rgba(0, 73, 59, 0.22) 0 1px, transparent 1px);
  background-size: 68px 68px, 68px 68px;
}

.pattern-row {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  color: rgba(0, 73, 59, 0.72);
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

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

.menu-card {
  padding: 1.4rem;
  min-height: 18rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.menu-card:hover,
.product-tile:hover,
.demo-card:hover {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  border-color: rgba(0, 234, 156, 0.22);
}

.menu-card p {
  margin: 0.8rem 0 0;
  color: rgba(217, 232, 227, 0.82);
}

.card-index {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  color: var(--mint);
}

.accent-dark {
  background: linear-gradient(180deg, rgba(0, 73, 59, 0.42), rgba(4, 16, 13, 0.5));
}

.accent-bright {
  background: linear-gradient(180deg, rgba(0, 234, 156, 0.14), rgba(4, 16, 13, 0.5));
}

.accent-soft {
  background: linear-gradient(180deg, rgba(217, 232, 227, 0.12), rgba(4, 16, 13, 0.44));
}

.accent-green {
  background: linear-gradient(180deg, rgba(18, 130, 31, 0.22), rgba(4, 16, 13, 0.44));
}

.location-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 1rem;
  padding: 0 0 4rem;
}

.location-card {
  padding: 2rem;
  background: rgba(217, 232, 227, 0.04);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.location-card p:nth-of-type(2) {
  margin: 1rem 0 1.5rem;
  max-width: 50ch;
  color: rgba(217, 232, 227, 0.82);
}

.location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
}

.location-visual {
  display: grid;
}

.map-frame {
  display: grid;
  place-content: center;
  min-height: 100%;
  min-height: 24rem;
  background:
    linear-gradient(135deg, rgba(0, 73, 59, 0.85), rgba(0, 234, 156, 0.16)),
    repeating-linear-gradient(
      90deg,
      rgba(217, 232, 227, 0.07) 0,
      rgba(217, 232, 227, 0.07) 1px,
      transparent 1px,
      transparent 56px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(217, 232, 227, 0.07) 0,
      rgba(217, 232, 227, 0.07) 1px,
      transparent 1px,
      transparent 56px
    );
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.map-frame span {
  font-family: var(--font-editorial);
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.12em;
}

.final-cta {
  padding: 0 0 5rem;
}

.final-cta-card {
  position: relative;
  overflow: hidden;
  padding: 2.4rem;
  border-radius: 2rem;
  border: 1px solid rgba(217, 232, 227, 0.14);
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 234, 156, 0.16), transparent 30%),
    radial-gradient(circle at 85% 85%, rgba(52, 132, 113, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(0, 73, 59, 0.55), rgba(4, 16, 13, 0.88));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.cta-logo {
  width: 4.6rem;
  height: 4.6rem;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(217, 232, 227, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  margin-bottom: 1.1rem;
}

.final-cta-card::before {
  content: "KHAOS";
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  color: rgba(217, 232, 227, 0.06);
  font-family: var(--font-body);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 2.4rem;
}

.site-footer p {
  margin: 0;
  color: rgba(217, 232, 227, 0.56);
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-footer-note {
  margin-top: 0.4rem;
  color: rgba(217, 232, 227, 0.38);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

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

@keyframes burgerFloat {
  0%,
  100% {
    transform: translateY(0.2rem) scale(1.04);
  }
  50% {
    transform: translateY(-0.28rem) scale(1.055);
  }
}

@keyframes glassFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ambientDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes patternPulse {
  0%,
  100% {
    opacity: 0.78;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero,
  .story-grid,
  .product-showcase,
  .demo-strip,
  .patterns-band,
  .location-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .site-header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand-mark {
    width: 100%;
    justify-content: center;
  }

  .demo-badge {
    order: 4;
  }

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

  .hero {
    padding-top: 1.6rem;
    gap: 1.4rem;
  }

  .hero-art {
    min-height: 34rem;
  }

  .hero-pattern {
    width: 45%;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(0, 234, 156, 0.12), transparent 30%),
      linear-gradient(180deg, #03100d 0%, #071714 100%);
  }

  .ambient-two,
  .hero-pattern,
  .hero-chip {
    display: none;
  }

  .site-header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem 1rem;
  }

  .site-header-inner .button-ghost {
    width: 100%;
    max-width: 16rem;
  }

  .hero,
  .story-grid,
  .product-showcase,
  .demo-strip,
  .patterns-band,
  .location-section,
  .menu-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

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

  .hero-copy .eyebrow,
  .hero-copy .hero-text,
  .hero-copy .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    margin-bottom: 1.4rem;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .burger-stage {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 24rem;
  }

  .hero-burger-image {
    width: min(92%, 20rem);
    transform: translateY(0.1rem) scale(1.01);
  }

  .burger-caption {
    left: 1rem;
    top: 1rem;
  }

  .burger-caption strong {
    font-size: 1.1rem;
  }

  .burger-base-label {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    padding: 0.65rem 0.75rem;
  }

  .floating-card {
    position: relative;
    max-width: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 0.8rem;
  }

  .card-primary,
  .card-secondary {
    inset: auto;
  }

  .hero-art {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 0.8rem;
  }

  .final-cta-card {
    padding: 2rem 1.3rem;
  }

  .section-heading {
    gap: 0.9rem;
    margin-bottom: 1.1rem;
  }

  .story-panel,
  .product-copy,
  .menu-card,
  .demo-card,
  .location-card,
  .pattern-card,
  .map-frame,
  .final-cta-card {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .map-frame {
    min-height: 18rem;
  }

  .map-frame span {
    font-size: 1rem;
  }

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

  h1 {
    max-width: none;
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  h3 {
    font-size: 1.35rem;
  }
}
