:root {
  --ink: #211015;
  --plum: #5f1336;
  --berry: #b21f54;
  --hot: #f15b38;
  --aqua: #00a5a8;
  --mint: #bdf3e7;
  --cream: #fff3dc;
  --paper: #fffaf2;
  --white: #ffffff;
  --gold: #f4c95d;
  --muted: #80696c;
  --line: rgba(33, 16, 21, 0.14);
  --shadow: 0 28px 90px rgba(95, 19, 54, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 165, 168, 0.2), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(241, 91, 56, 0.22), transparent 24%),
    linear-gradient(135deg, #fffaf2 0%, #fff1dc 50%, #e8fbf6 100%);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(33, 16, 21, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 16, 21, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  pointer-events: none;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(33, 16, 21, 0.86);
  color: var(--white);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--mint);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--berry), var(--hot));
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 900;
}

nav a:hover {
  color: var(--mint);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  white-space: nowrap;
}

.header-action {
  min-width: 112px;
  background: var(--mint);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 75px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  overflow: hidden;
  padding: clamp(54px, 7vw, 98px) clamp(20px, 5vw, 70px) 86px;
  color: var(--white);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  opacity: 0.42;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(33, 16, 21, 0.9) 0%, rgba(33, 16, 21, 0.7) 44%, rgba(33, 16, 21, 0.35) 100%),
    linear-gradient(0deg, rgba(33, 16, 21, 0.86), transparent 42%);
  content: "";
}

.hero-content {
  max-width: 780px;
}

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

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

h1,
h2 {
  line-height: 0.93;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: clamp(4rem, 10vw, 8.6rem);
}

h2 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5.8vw, 5.6rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 1.8vw, 1.34rem);
}

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

.button {
  min-width: 158px;
  padding: 0 22px;
}

.button.primary {
  background: linear-gradient(135deg, var(--berry), var(--hot));
  color: var(--white);
  box-shadow: 0 14px 36px rgba(178, 31, 84, 0.32);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero-stack {
  position: relative;
  min-height: 620px;
}

.feature-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.feature-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(33, 16, 21, 0.78);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
}

.feature-photo.large {
  inset: 34px 54px 58px 64px;
}

.feature-photo.small {
  width: 44%;
  height: 34%;
}

.feature-photo.top {
  top: 0;
  right: 0;
  transform: rotate(5deg);
}

.feature-photo.bottom {
  bottom: 0;
  left: 0;
  transform: rotate(-5deg);
}

.ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(33, 16, 21, 0.68);
}

.ticker span {
  flex: 1 0 auto;
  min-width: 190px;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

section:not(.hero):not(.flavor-wall) {
  padding: clamp(64px, 10vw, 124px) clamp(20px, 5vw, 70px);
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  margin-bottom: 26px;
}

.drop .eyebrow,
.party .eyebrow,
.table .eyebrow,
.order .eyebrow {
  color: var(--berry);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  cursor: pointer;
  font-weight: 950;
}

.filter-button.active {
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
}

.drop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.drop-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(95, 19, 54, 0.09);
}

.drop-card[hidden] {
  display: none;
}

.drop-card.tall {
  grid-row: span 2;
}

.drop-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.drop-card.tall img {
  height: 100%;
  min-height: 430px;
}

.drop-card div {
  padding: 22px;
}

.drop-card span,
.party-board span {
  display: block;
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.drop-card p,
.party-copy p,
.party-board p,
.table-copy p,
.order-card p {
  color: var(--muted);
}

.flavor-wall {
  overflow: hidden;
  border-block: 1px solid rgba(33, 16, 21, 0.12);
  background: var(--ink);
  color: var(--cream);
}

.flavor-track {
  display: flex;
  width: max-content;
  animation: slideFlavors 32s linear infinite;
}

.flavor-track span {
  padding: 20px 26px;
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  white-space: nowrap;
}

.party {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.party-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.party-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.party-stats strong {
  display: block;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.party-stats span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.party-board {
  display: grid;
  gap: 14px;
}

.party-board article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(189, 243, 231, 0.52), transparent 42%),
    rgba(255, 255, 255, 0.76);
}

.party-board p {
  margin-bottom: 0;
}

.table {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  background: linear-gradient(135deg, rgba(95, 19, 54, 0.08), rgba(0, 165, 168, 0.08));
}

.table-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 14px;
}

.table-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 42px rgba(33, 16, 21, 0.12);
}

.table-gallery .wide {
  grid-column: 1 / -1;
}

.order {
  color: var(--white);
}

.order-card {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 84px);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(178, 31, 84, 0.92), rgba(33, 16, 21, 0.94)),
    var(--ink);
  box-shadow: var(--shadow);
}

.order-card .eyebrow,
.order-card p {
  color: rgba(255, 255, 255, 0.78);
}

.order-card h2 {
  max-width: 900px;
}

.order-card p {
  max-width: 710px;
  font-size: 1.08rem;
}

.order-card .button {
  margin-top: 12px;
  background: var(--mint);
  color: var(--ink);
  box-shadow: none;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes slideFlavors {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  .flavor-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  nav {
    display: none;
  }

  .hero,
  .party,
  .table,
  .section-kicker {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    min-height: 540px;
  }

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

  .drop-card.tall {
    grid-row: auto;
  }

  .drop-card.tall img {
    height: 270px;
    min-height: 0;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-width: 92px;
  }

  .hero {
    min-height: auto;
    padding: 42px 16px 70px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .hero-stack {
    min-height: 430px;
  }

  .feature-photo.large {
    inset: 40px 0 48px 42px;
  }

  .feature-photo.small {
    width: 48%;
    height: 32%;
  }

  .ticker {
    display: none;
  }

  section:not(.hero):not(.flavor-wall) {
    padding-right: 16px;
    padding-left: 16px;
  }

  .drop-grid,
  .table-gallery,
  .party-stats {
    grid-template-columns: 1fr;
  }

  .table-gallery {
    grid-auto-rows: 230px;
  }

  .order-card {
    border-radius: 18px;
  }
}
