:root {
  color-scheme: dark;
  --bg: #080a09;
  --bg-soft: #111512;
  --bg-panel: #181d18;
  --paper: #f8f2e8;
  --paper-soft: #efe5d5;
  --text: #fff7e8;
  --muted: #c7bba8;
  --dark-text: #1d1a16;
  --gold: #d7a22a;
  --red: #d64a38;
  --red-dark: #a83226;
  --olive: #6d7536;
  --line: rgba(255, 247, 232, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--paper);
  color: var(--dark-text);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem max(1rem, calc((100vw - 1180px) / 2));
  background: rgba(8, 10, 9, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 0.92;
  min-width: 8rem;
}

.brand span {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
}

.brand small {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
}

.site-nav a,
.footer-grid a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.footer-grid a:hover {
  color: var(--text);
}

.header-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.15;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 30px rgba(214, 74, 56, 0.25);
}

.button-primary:hover {
  background: #ec5b45;
}

.button-secondary {
  background: var(--gold);
  color: #15100a;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 247, 232, 0.28);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 580px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 5rem max(1rem, calc((100vw - 1180px) / 2));
}

.hero-sub {
  min-height: 560px;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.98) 0%, rgba(8, 10, 9, 0.82) 42%, rgba(8, 10, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 10, 9, 0.2), rgba(8, 10, 9, 0.78));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: var(--serif);
}

h1 {
  max-width: 720px;
  font-size: clamp(2.9rem, 5.8vw, 5.45rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  color: inherit;
}

h3 {
  font-size: 1.16rem;
}

.hero-text {
  max-width: 650px;
  margin: 1.2rem 0 1.6rem;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  max-width: 720px;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero-bullets li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 0.45rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem max(1rem, calc((100vw - 1180px) / 2));
  background: #11120f;
  border-block: 1px solid var(--line);
}

.quick-answer {
  padding: 1.35rem max(1rem, calc((100vw - 1180px) / 2));
  background: #0d0f0c;
  border-bottom: 1px solid var(--line);
}

.quick-answer-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 1.5rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(215, 162, 42, 0.34);
  border-radius: 8px;
  padding: 1.15rem;
  background: linear-gradient(135deg, rgba(215, 162, 42, 0.11), rgba(255, 255, 255, 0.03));
}

.quick-answer-lead {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.quick-answer-lead > i {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  color: var(--gold);
  border: 2px solid rgba(215, 162, 42, 0.6);
  font-size: 2rem;
}

.quick-answer h2 {
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.3;
}

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

.quick-answer-grid article {
  border-left: 1px solid var(--line);
  padding-left: 1rem;
}

.quick-answer-grid h3 {
  font-size: 0.95rem;
}

.quick-answer-grid p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-bar span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  color: var(--text);
  font-weight: 700;
}

.trust-bar i,
.feature-grid i {
  color: var(--gold);
  font-size: 1.35rem;
}

.section {
  padding: 5.5rem max(1rem, calc((100vw - 1180px) / 2));
  background: var(--bg);
}

.section[id] {
  scroll-margin-top: 5.5rem;
}

.section-dark {
  background: linear-gradient(180deg, #121611, #090b09);
}

.section-light {
  background: var(--paper);
  color: var(--dark-text);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-lede {
  max-width: 720px;
  color: var(--muted);
  margin: 1rem 0 2rem;
}

.section-light .section-lede,
.section-light p {
  color: #5d564b;
}

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

.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.menu-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 2.45;
  object-fit: cover;
}

.menu-card-body {
  position: relative;
  padding: 1.35rem;
}

.price-pill {
  position: absolute;
  right: 1rem;
  top: -2.4rem;
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: #fff;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  font-size: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.menu-card h3 {
  font-family: var(--serif);
  font-size: 2.1rem;
}

.menu-card p,
.menu-card li {
  color: var(--muted);
}

.menu-card ul {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 1rem 0 1.3rem;
  list-style: none;
}

.menu-card li {
  display: flex;
  gap: 0.5rem;
}

.menu-card li i {
  color: var(--gold);
  margin-top: 0.2rem;
}

.occasion-grid,
.feature-grid,
.text-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.occasion-grid a,
.link-grid a,
.feature-grid article,
.text-grid article,
.answer-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 1.25rem;
}

.feature-grid p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.occasion-grid a,
.link-grid a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 800;
}

.section-light .answer-box,
.section-light .text-grid article {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(62, 48, 31, 0.14);
}

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

.steps article {
  padding: 1.2rem;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--olive);
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.answer-box {
  background: linear-gradient(135deg, rgba(215, 162, 42, 0.12), rgba(214, 74, 56, 0.08));
}

.answer-box.wide {
  margin-bottom: 2rem;
}

.delivery-facts {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(62, 48, 31, 0.16);
}

.delivery-facts ul {
  display: grid;
  gap: 0.35rem;
  margin: 0.85rem 0 1rem;
  padding-left: 1.15rem;
}

.centered-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(62, 48, 31, 0.14);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  margin-bottom: 0;
}

.price-table {
  border: 1px solid rgba(62, 48, 31, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.price-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(62, 48, 31, 0.12);
}

.price-table > div:first-child {
  background: #241d16;
  color: var(--text);
}

.price-table > div:last-child {
  border-bottom: 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.5rem max(1rem, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--red-dark), #16120e 70%);
}

.final-cta p {
  margin: 0.75rem 0 0;
  color: var(--paper-soft);
}

.site-footer {
  padding: 3rem max(1rem, calc((100vw - 1180px) / 2)) 5.5rem;
  background: #060706;
  border-top: 1px solid var(--line);
}

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

.footer-grid h2 {
  font-family: var(--sans);
  font-size: 1rem;
}

.footer-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 6px;
    padding: 0.65rem 0.8rem;
    font-weight: 800;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0.2rem;
    padding-top: 0.75rem;
  }

  .site-nav.is-open a {
    padding: 0.75rem 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding-top: 2.4rem;
    padding-bottom: 2.1rem;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(8, 10, 9, 0.98), rgba(8, 10, 9, 0.8)),
      linear-gradient(180deg, rgba(8, 10, 9, 0.08), rgba(8, 10, 9, 0.82));
  }

  .hero-bullets,
  .trust-bar,
  .quick-answer-inner,
  .quick-answer-grid,
  .menu-grid,
  .occasion-grid,
  .feature-grid,
  .text-grid,
  .steps,
  .two-column,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-bullets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 0.65rem;
    font-size: 0.86rem;
  }

  .quick-answer-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 0.75rem 0 0;
  }

  .final-cta {
    display: grid;
  }

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    padding: 0.65rem;
    background: rgba(8, 10, 9, 0.95);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-sticky a {
    display: grid;
    place-items: center;
    min-height: 2.75rem;
    border-radius: 6px;
    background: var(--red);
    color: white;
    text-decoration: none;
    font-weight: 800;
    padding: 0 1rem;
  }

  .mobile-sticky a:last-child {
    background: transparent;
    border: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-text {
    font-size: 1rem;
    margin: 0.95rem 0 1.2rem;
  }

  .section {
    padding-block: 4rem;
    scroll-margin-top: 5rem;
  }

  main {
    padding-bottom: 4.5rem;
  }

  .button-row {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .price-table > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .menu-card-body {
    padding: 1rem;
  }
}
