:root {
  color-scheme: dark;
  --bg: #080707;
  --panel: #121111;
  --panel-strong: #1d1b1b;
  --text: #fbf7f2;
  --muted: #b9ada2;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e20f18;
  --red-dark: #a70b12;
  --gold: #d7b56d;
  --green: #63c174;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 2%, rgba(226, 15, 24, 0.28), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(215, 181, 109, 0.12), transparent 20rem),
    linear-gradient(180deg, #151111 0%, var(--bg) 38rem);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(8, 7, 7, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
}

.brand span,
.hero h1 span {
  color: var(--red);
}

.brand strong,
.hero h1 strong {
  color: #fff;
}

nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

nav a,
.header-action,
.filters button,
.primary-action,
.secondary-action,
.order-link {
  border: 1px solid var(--line);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--text);
}

nav a {
  color: var(--muted);
}

.header-action,
.primary-action,
.order-link {
  background: var(--red);
  border-color: var(--red);
  font-weight: 800;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.hero {
  min-height: auto;
  display: block;
  padding: clamp(30px, 6vw, 74px) clamp(18px, 4vw, 56px) 30px;
}

.hero-copy {
  max-width: 980px;
}

.hero-logo {
  display: block;
  width: min(188px, 44vw);
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #050505;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 10vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.55;
  max-width: 760px;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 12px;
  margin-top: 24px;
  max-width: 1120px;
}

.hero-details div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.hero-details span,
.search-field span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-details strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.hero-details small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}

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

.item-meta,
.item-desc,
footer p {
  color: var(--muted);
}

.menu-shell {
  padding: 28px clamp(18px, 4vw, 56px) 70px;
}

.section-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
}

.menu-tools {
  margin: 0 0 14px;
}

.search-field {
  display: block;
  max-width: 520px;
}

.search-field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font: inherit;
  outline: none;
}

.search-field input:focus {
  border-color: rgba(215, 181, 109, 0.8);
  box-shadow: 0 0 0 3px rgba(215, 181, 109, 0.16);
}

.filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0 -2px 28px;
  padding: 2px 2px 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filters button {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-weight: 750;
}

.filters button.active {
  background: #fff;
  color: #130f0f;
}

.category-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.category-title h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
}

.category-title span {
  color: var(--gold);
  font-weight: 900;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.menu-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.item-image {
  width: 100%;
  aspect-ratio: 1;
  background: #343434;
  object-fit: contain;
  padding: 12px;
}

.item-image--cover {
  object-fit: cover;
  padding: 0;
}

.item-image-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  padding: 20px;
}

.item-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.item-top h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
}

.price {
  white-space: nowrap;
  color: var(--green);
  font-weight: 900;
}

.item-desc {
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

.item-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}

.order-link {
  margin-top: 4px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
}

footer {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #070606;
}

.footer-brand {
  font-size: 24px;
}

footer p {
  margin: 0;
  flex: 1;
}

footer a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 28px;
  }

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

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  nav a,
  .header-action {
    min-height: 38px;
    padding: 0 10px;
    font-size: 14px;
  }

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

  .hero {
    padding-top: 24px;
  }

  .hero-logo {
    width: 144px;
  }

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

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .item-top {
    flex-direction: column;
    gap: 6px;
  }
}

/* Branded hero: reuse the original EDEN artwork without cropping it. */
.hero--branded {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 90px);
}

.hero--branded .hero-copy {
  min-width: 0;
}

.hero--branded h1 {
  font-size: clamp(3.5rem, 6.8vw, 8.25rem);
  overflow-wrap: anywhere;
}

.hero-banner {
  width: 100%;
  max-width: 620px;
  min-width: 0;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(215, 181, 109, 0.3);
  border-radius: 16px;
  background: #090909;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 50px rgba(226, 15, 24, 0.1);
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-banner figcaption {
  padding: 20px;
  border-top: 1px solid var(--line);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .hero--branded {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .hero--branded h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
  }

  .hero-banner {
    display: flex;
    align-items: center;
    max-width: none;
  }

  .hero-banner img {
    width: clamp(120px, 30vw, 220px);
    flex: 0 0 auto;
  }

  .hero-banner figcaption {
    flex: 1;
    min-width: 0;
    padding: 16px;
    border-top: 0;
    border-left: 1px solid var(--line);
    font-size: 0.875rem;
    letter-spacing: 0.06em;
  }
}

/* EDEN giveaway announcement and rules. */
nav .giveaway-nav {
  color: #f8d58e;
  border-color: rgba(215, 181, 109, 0.6);
}
.giveaway-announcement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(110deg, #a70b12, #630c13 70%, #300b10);
  border-bottom: 1px solid rgba(215, 181, 109, 0.5);
}
.giveaway-announcement-copy { display: grid; gap: 5px; }
.giveaway-announcement small {
  color: #ffe3aa;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.giveaway-announcement strong { font-size: clamp(1.125rem, 2vw, 1.5rem); }
.giveaway-announcement-action { color: #ffe3aa; font-weight: 800; white-space: nowrap; }
.giveaway-announcement:hover { background: #920f18; }
.giveaway-announcement:focus-visible, .giveaway a:focus-visible, .giveaway-nav:focus-visible {
  outline: 3px solid #ffe3aa;
  outline-offset: 4px;
}
.giveaway {
  scroll-margin-top: 180px;
  margin: 26px clamp(18px, 4vw, 56px) 42px;
  padding: clamp(22px, 4vw, 54px);
  border: 1px solid rgba(215, 181, 109, 0.45);
  border-radius: 24px;
  background: radial-gradient(ellipse at top right, rgba(167, 11, 18, 0.2), transparent 65%), #121010;
}
.giveaway p { margin: 0; font-size: 1rem; line-height: 1.65; }
.giveaway-topline { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.giveaway .eyebrow { margin: 0; font-size: 0.875rem; letter-spacing: 0.14em; }
.giveaway-duration { color: #f8d58e; border: 1px solid rgba(215, 181, 109, 0.4); padding: 7px 14px; border-radius: 100px; font-size: 0.875rem; font-weight: 700; }
.giveaway-heading { display: grid; grid-template-columns: 1.4fr 1fr; align-items: end; gap: 26px; margin-bottom: 30px; }
.giveaway h2 { margin: 0; font-size: clamp(2.125rem, 4.6vw, 4.5rem); line-height: 1.04; letter-spacing: -0.035em; text-wrap: balance; }
.giveaway h2 span { color: #f8d58e; }
.giveaway-heading p { color: var(--muted); max-width: 430px; font-size: 1.125rem; }
.giveaway-prizes { display: grid; grid-template-columns: 1.55fr 1fr; gap: 16px; }
.giveaway-prize { min-width: 0; border-radius: 16px; overflow: hidden; }
.giveaway-first {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.85fr);
  align-items: center;
  gap: 16px;
  padding: clamp(22px, 3vw, 40px);
  color: #211715;
  background: #f5f5f7;
}
.giveaway-place { display: inline-flex; align-items: center; padding: 7px 12px; border-radius: 6px; background: rgba(215, 181, 109, 0.12); color: #f8d58e; font-size: 0.875rem; font-weight: 800; }
.giveaway-first .giveaway-place { background: #a70b12; color: #fff; }
.giveaway-first h3 { margin: 24px 0 12px; font-size: clamp(2rem, 3.5vw, 3.75rem); line-height: 1.05; letter-spacing: -0.045em; overflow-wrap: anywhere; }
.giveaway-first h3 span { display: block; }
.giveaway-first p { color: #5b514e; }
.giveaway-prize-number { align-self: center; justify-self: end; color: #a70b12; opacity: 0.14; font-size: clamp(7rem, 12vw, 12rem); font-weight: 900; line-height: 0.9; letter-spacing: -0.12em; padding-right: 0.08em; }
.giveaway-certificates { display: grid; gap: 16px; }
.giveaway-certificate { padding: 24px 28px; border: 1px solid rgba(215, 181, 109, 0.3); background: linear-gradient(120deg, #2d2418, #191512); }
.giveaway-certificate:last-child { background: #191615; }
.giveaway-certificate h3 { margin: 16px 0 0; font-size: 1rem; font-weight: 500; color: #dacbb9; }
.giveaway-certificate h3 strong { display: block; margin-top: 4px; font-size: clamp(2.4rem, 4vw, 3.8rem); line-height: 1.1; letter-spacing: -0.04em; color: #ffe0a0; }
.giveaway-rules { margin-top: 36px; }
.giveaway h3.giveaway-section-title { margin: 0 0 18px; font-size: clamp(1.4rem, 2vw, 1.8rem); }
.giveaway-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; counter-reset: giveaway-step; }
.giveaway-steps li { counter-increment: giveaway-step; min-width: 0; border-top: 1px solid var(--line); padding-top: 18px; }
.giveaway-steps li::before { content: "0" counter(giveaway-step); color: #f8d58e; font-size: 0.875rem; font-weight: 800; }
.giveaway-steps h4 { margin: 12px 0 8px; font-size: 1.125rem; line-height: 1.4; }
.giveaway-steps p, .giveaway-unlimited, .giveaway-order p { color: #cfc1b6; }
.giveaway-examples { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 26px 0 14px; }
.giveaway-example { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 10px; padding: 17px 12px; border: 1px dashed rgba(215, 181, 109, 0.48); border-radius: 8px; background: rgba(215, 181, 109, 0.045); font-size: 1rem; }
.giveaway-example strong { color: #ffe0a0; font-size: 1.375rem; }
.giveaway-unlimited strong { color: #fff; }
.giveaway-reminder { display: flex; align-items: center; gap: 18px; margin-top: 26px; padding: 20px 24px; background: #f2d39c; border-radius: 12px; color: #261708; }
.giveaway-reminder strong { display: block; margin-bottom: 4px; font-size: 1.125rem; }
.giveaway-bottom { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.giveaway-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.giveaway-actions a { min-height: 48px; padding: 10px 18px; text-align: center; }
.giveaway-live { padding: 24px; border-radius: 12px; background: #201718; border: 1px solid rgba(226, 15, 24, 0.25); }
.giveaway-live-label { display: flex; gap: 9px; align-items: center; color: #ffb0ac; font-size: 0.875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.giveaway-live-label::before { content: ""; flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; background: #ff746a; }
.giveaway-live h3 { font-size: 1.25rem; line-height: 1.4; margin: 0 0 12px; }
.giveaway-live p { color: #cfc1b6; }
@media (max-width: 1000px) {
  .giveaway-heading { grid-template-columns: 1fr; gap: 18px; }
  .giveaway-heading p { max-width: 650px; }
  .giveaway-prizes { grid-template-columns: 1fr; }
  .giveaway-certificates { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .giveaway-first h3 { font-size: clamp(2.5rem, 6vw, 4rem); }
  .giveaway-steps { gap: 18px; }
  .giveaway-bottom { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 620px) {
  .giveaway-announcement { align-items: flex-start; flex-direction: column; gap: 10px; }
  .giveaway-announcement-action { font-size: 0.875rem; }
  .giveaway { margin-top: 18px; padding: 20px; border-radius: 16px; scroll-margin-top: 18px; }
  .giveaway-prizes { gap: 12px; }
  .giveaway-first { grid-template-columns: minmax(0, 1fr) minmax(100px, 0.75fr); gap: 8px; padding: 20px 16px; }
  .giveaway-first h3 { font-size: clamp(1.65rem, 6.7vw, 2.5rem); margin-top: 20px; }
  .giveaway-first p { font-size: 0.875rem; }
  .giveaway-prize-number { font-size: clamp(5rem, 22vw, 8rem); }
  .giveaway-certificates { gap: 10px; }
  .giveaway-certificate { padding: 16px 12px; }
  .giveaway-place { padding: 6px 8px; }
  .giveaway-certificate h3 strong { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .giveaway-steps { grid-template-columns: 1fr; gap: 20px; }
  .giveaway-steps h4 { margin-top: 8px; }
  .giveaway-examples { grid-template-columns: 1fr; gap: 8px; }
  .giveaway-example { padding: 13px 10px; }
  .giveaway-reminder { padding: 18px; }
  .giveaway-live { padding: 20px; }
  .giveaway-actions a { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}


.giveaway-live a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 10px;
  color: #f8d58e;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.giveaway-steps a,
.giveaway-order p a {
  color: #ffe0a0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
