:root {
  --ink: #101114;
  --ink-soft: #30343b;
  --paper: #fbfaf7;
  --white: #ffffff;
  --red: #ee2028;
  --cyan: #00b7d8;
  --lime: #a7df2a;
  --mango: #f6b323;
  --pink: #ff4f9a;
  --line: rgba(16, 17, 20, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled {
  background: rgba(251, 250, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: block;
  width: 58px;
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: #050505;
}

.site-header.scrolled .brand-mark {
  border-color: rgba(16, 17, 20, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}

.brand small {
  margin-top: 4px;
  font-size: 0.72rem;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a:focus-visible {
  background: rgba(16, 17, 20, 0.08);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--red);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: currentColor;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.site-header:not(.scrolled) .nav-toggle span {
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.12) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0) 36%);
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding: clamp(132px, 18vh, 184px) 0 156px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.hero-logo {
  width: min(370px, 72vw);
  margin: 0 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2.2vw, 1.34rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 900;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.hero-stats {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 24px;
  left: clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.hero-stats article {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.hero-stats span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 15px 18px;
  animation: ticker 26s linear infinite;
}

.ticker span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 64px);
}

.section-inner,
.feature-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.two-column,
.order-layout,
.rewards-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.intro-band {
  background: var(--paper);
}

.lead-stack p,
.section-heading p,
.order-layout p,
.visit-grid p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.72;
}

.lead-stack p:last-child,
.section-heading p:last-child,
.order-layout p:last-child {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: var(--line);
}

.feature {
  min-height: 360px;
  background: var(--white);
}

.photo-feature {
  display: grid;
  grid-template-rows: 220px 1fr;
}

.photo-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-feature div {
  padding: clamp(22px, 3vw, 34px);
}

.feature-icon {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.feature p,
.drink-card p,
.vibe-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.menu-section {
  background: #f1f3ef;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.menu-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.menu-tab {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.menu-tab.active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  min-height: 280px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.category-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-hero div {
  align-self: center;
  padding: clamp(24px, 5vw, 54px);
}

.category-hero span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.category-hero h3 {
  max-width: 680px;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1;
}

.category-hero p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.drink-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(160deg, rgba(0, 183, 216, 0.18), rgba(255, 255, 255, 0) 42%),
    var(--white);
  box-shadow: 0 16px 40px rgba(16, 17, 20, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.drink-card:nth-child(2n) {
  background:
    linear-gradient(160deg, rgba(255, 79, 154, 0.18), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.drink-card:nth-child(3n) {
  background:
    linear-gradient(160deg, rgba(246, 179, 35, 0.2), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.drink-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.drink-card.hidden {
  display: none;
}

.drink-tag {
  align-self: flex-start;
  margin-bottom: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
}

.drink-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.drink-meta span {
  font-size: 1.05rem;
  font-weight: 950;
}

.drink-meta button,
.order-panel-head button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.dark-band {
  background: #111317;
  color: var(--white);
}

.dark-band .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.vibe-layout {
  display: grid;
  gap: 22px;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.vibe-grid article {
  min-height: 230px;
  padding: 28px;
  background: #171a20;
}

.vibe-grid strong {
  display: block;
  margin-bottom: 52px;
  color: var(--red);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.9;
}

.vibe-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.rewards-band {
  background: var(--paper);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border-left: 4px solid var(--red);
  padding: 14px 0 14px 18px;
  color: var(--ink-soft);
  font-weight: 800;
}

.order-section {
  background: #f7f4ee;
}

.order-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(16, 17, 20, 0.08);
}

.order-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.order-panel-head h3 {
  margin: 0;
}

.order-panel-head button {
  background: rgba(16, 17, 20, 0.08);
  color: var(--ink);
}

.tray-list {
  display: grid;
  gap: 10px;
  min-height: 120px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.tray-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink-soft);
  font-weight: 800;
}

.tray-list li.empty {
  justify-content: center;
  min-height: 112px;
  border-style: dashed;
  color: rgba(16, 17, 20, 0.5);
}

.tray-list button {
  border: 0;
  border-radius: 8px;
  padding: 7px 9px;
  background: rgba(238, 32, 40, 0.1);
  color: var(--red);
  cursor: pointer;
  font-weight: 950;
}

.order-actions {
  display: grid;
  gap: 10px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 800;
}

.visit-section {
  background: var(--paper);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.visit-grid article {
  min-height: 250px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
}

.visit-grid article:first-child {
  background: var(--ink);
  color: var(--white);
}

.visit-grid article:first-child p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.visit-card p {
  margin-bottom: 6px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 950;
  letter-spacing: 0.05em;
}

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

  .ticker div {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .drink-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 8px;
    background: rgba(16, 17, 20, 0.96);
    color: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .two-column,
  .order-layout,
  .rewards-layout,
  .category-hero {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .vibe-grid {
    grid-template-columns: 1fr;
  }

  .photo-feature {
    grid-template-rows: 260px 1fr;
  }

  .category-hero img {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 122px;
    padding-bottom: 206px;
  }

  h1 {
    font-size: clamp(3.8rem, 20vw, 5.5rem);
  }

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

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

  .hero-stats article {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 11px 14px;
  }

  .hero-stats article:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .drink-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .drink-card,
  .visit-grid article,
  .vibe-grid article {
    min-height: auto;
  }

  .category-hero img,
  .photo-feature {
    height: auto;
  }

  .photo-feature {
    grid-template-rows: 230px 1fr;
  }
}
