:root {
  --ink: #090806;
  --ink-soft: #17130f;
  --cream: #f4eddf;
  --paper: #fcf8ef;
  --gold: #c79a45;
  --gold-light: #e4c47c;
  --ember: #c5451f;
  --ember-deep: #7e1f13;
  --line: rgba(199, 154, 69, 0.28);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 0.7rem 1rem;
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement-bar {
  min-height: 38px;
  padding: 0.5rem clamp(1rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  background: #0f0d0a;
  border-bottom: 1px solid var(--line);
  color: #d4cab8;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-bar a:hover,
.announcement-bar a:focus-visible {
  color: var(--gold-light);
}

.announcement-divider {
  width: 1px;
  height: 12px;
  background: var(--line);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 78px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 282px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: rgba(9, 8, 6, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-link {
  width: 270px;
  height: 68px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand-symbol {
  display: none;
  background-image: url("./logo-symbol.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.brand-wordmark {
  width: 270px;
  height: 64px;
  flex: 0 0 270px;
  background-image: url("./logo-wide.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.5vw, 1.55rem);
}

.desktop-nav a {
  color: #d8cebd;
  font-size: clamp(0.68rem, 0.86vw, 0.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--gold-light);
}

.button {
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, #d9ad58, #a8742d);
  color: #110d08;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(199, 154, 69, 0.2);
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.button-ghost {
  background: rgba(9, 8, 6, 0.45);
  color: var(--cream);
}

.button-dark {
  background: var(--ink);
  color: var(--cream);
}

.mobile-nav {
  display: none;
  justify-self: end;
}

.mobile-nav summary {
  min-width: 74px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: fixed;
  inset: 117px 0 auto;
  padding: 1.5rem;
  display: grid;
  background: rgba(9, 8, 6, 0.985);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.mobile-nav nav a {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(199, 154, 69, 0.15);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("./blaze-hero.webp");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, #090806 0%, #090806 40%, rgba(9, 8, 6, 0.93) 48%, rgba(9, 8, 6, 0.22) 78%, rgba(9, 8, 6, 0.16)),
    linear-gradient(0deg, rgba(9, 8, 6, 0.8), transparent 35%);
}

.hero-content {
  width: min(960px, 92vw);
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 8vw, 7rem) clamp(1.25rem, 7vw, 7rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3.6rem, 7.5vw, 7.5rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 1.8rem;
  color: #ded3c1;
  font-size: clamp(1rem, 1.45vw, 1.24rem);
}

.button-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-note {
  margin: 1.35rem 0 0;
  color: #b9ad99;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.hero-note span {
  margin: 0 0.35rem;
  color: var(--gold);
}

.section {
  padding: clamp(4.75rem, 9vw, 9rem) clamp(1.25rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(197, 69, 31, 0.095), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(199, 154, 69, 0.055), transparent 34%),
    linear-gradient(145deg, #100c09, var(--ink) 58%, #0a0807);
}

.section-tight {
  padding-top: clamp(3.25rem, 6vw, 5.75rem);
  padding-bottom: clamp(3.25rem, 6vw, 5.75rem);
}

.section-cream {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 2.4rem;
}

.section-heading > p:not(.eyebrow) {
  max-width: 700px;
  color: #b5aa98;
}

.section-cream .section-heading > p:not(.eyebrow) {
  color: #635d53;
}

.split-heading {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 3rem;
  align-items: end;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.platform-card {
  min-height: 170px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent);
  transition: background 180ms ease;
}

.platform-card:not(.platform-disabled):hover,
.platform-card:not(.platform-disabled):focus-visible {
  background: rgba(199, 154, 69, 0.08);
}

.platform-card span {
  color: var(--gold);
  font-size: 0.69rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.platform-card strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  font-weight: 400;
}

.platform-disabled {
  color: #746c60;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(9, 8, 6, 0.16);
  border-left: 1px solid rgba(9, 8, 6, 0.16);
}

.category-card {
  min-height: 340px;
  padding: 1.4rem;
  overflow: hidden;
  border-right: 1px solid rgba(9, 8, 6, 0.16);
  border-bottom: 1px solid rgba(9, 8, 6, 0.16);
}

.category-card span,
.feature-card > span {
  color: var(--ember);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.category-card h3 {
  margin-top: 1.25rem;
}

.category-image {
  height: 205px;
  margin: -1.4rem -1.4rem 1rem;
  background-image: url("./menu-categories.png");
  background-repeat: no-repeat;
  background-size: 400% auto;
  border-bottom: 1px solid rgba(199, 154, 69, 0.22);
}

.category-image-1 {
  background-position: 0% 20%;
}

.category-image-2 {
  background-position: 33.333% 20%;
}

.category-image-3 {
  background-position: 66.666% 20%;
}

.category-image-4 {
  background-position: 100% 20%;
}

.category-image-5 {
  background-position: 0% 80%;
}

.category-image-6 {
  background-position: 33.333% 80%;
}

.category-image-7 {
  background-position: 66.666% 80%;
}

.category-image-8 {
  background-position: 100% 80%;
}

.menu-category-card {
  min-height: 400px;
  overflow: hidden;
}

.menu-category-card .category-image {
  height: 235px;
  margin-bottom: 1.3rem;
}

.centered-action {
  margin-top: 2.25rem;
  text-align: center;
}

.bundles-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(197, 69, 31, 0.12), transparent 28%),
    var(--ink-soft);
}

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

.bundle-card {
  min-height: 260px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  background: rgba(9, 8, 6, 0.42);
  overflow: hidden;
}

.bundle-card p,
.feature-card p {
  color: #aea390;
  font-size: 0.9rem;
}

.bundle-image {
  height: 118px;
  margin: -1.7rem -1.7rem 1.6rem;
  background-image: url("./menu-categories.png");
  background-repeat: no-repeat;
  background-size: 400% auto;
  border-bottom: 1px solid var(--line);
}

.story-band {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: var(--paper);
  color: var(--ink);
}

.story-art {
  min-height: 520px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(9, 8, 6, 0.08), rgba(9, 8, 6, 0.22)),
    url("./story-delivery.png");
  background-position: center;
  background-size: cover;
}

.story-copy {
  padding: clamp(3.5rem, 6vw, 6rem);
  align-self: center;
}

.story-copy p:not(.eyebrow) {
  color: #5f594f;
}

.text-link {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  border-bottom: 1px solid var(--gold);
  color: inherit;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 260px;
  padding: 1.7rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card h3 {
  margin-top: 4.1rem;
}

.catering-teaser {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.96), rgba(9, 8, 6, 0.72)),
    radial-gradient(circle at 85% 20%, var(--ember), transparent 40%),
    #24130d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catering-teaser > div {
  max-width: 780px;
}

.catering-teaser p:not(.eyebrow) {
  color: #bfb29d;
}

.yorkville-teaser {
  min-height: 640px;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7rem);
  display: flex;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.35), rgba(9, 8, 6, 0.92)),
    linear-gradient(145deg, #2b1a0e, #090806 65%);
}

.yorkville-copy {
  max-width: 710px;
  margin-left: auto;
}

.yorkville-copy p:not(.eyebrow) {
  color: #c9beac;
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 7vw, 8rem);
  background: var(--paper);
  color: var(--ink);
}

.signup-section .section-heading > p:not(.eyebrow) {
  color: #5d564c;
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: #4c453c;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(9, 8, 6, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-field textarea {
  resize: vertical;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-help {
  grid-column: 1 / -1;
  margin: 0;
  color: #6b6358;
  font-size: 0.76rem;
}

.signup-form .button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.page-hero {
  min-height: 460px;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 7rem);
  display: flex;
  align-items: end;
  background:
    radial-gradient(circle at 80% 20%, rgba(197, 69, 31, 0.28), transparent 30%),
    linear-gradient(140deg, #1a100b, #080706 60%);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  width: min(900px, 100%);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #c6baa7;
  font-size: 1.05rem;
}

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

.content-card {
  min-height: 230px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

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

.menu-hero-tagline {
  margin: 0 0 1rem;
  color: var(--gold-light) !important;
  font-size: 0.76rem !important;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.menu-category-section {
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.menu-category-card {
  color: var(--cream);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.menu-category-card:hover,
.menu-category-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(215, 167, 80, 0.72);
  background: #17110c;
  outline: none;
}

.menu-category-card p:last-child {
  color: #a99d89;
}

.menu-catalog {
  background: #090806;
}

.menu-section {
  scroll-margin-top: 118px;
  padding: clamp(4.75rem, 8vw, 8rem) clamp(1.25rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  background:
    radial-gradient(circle at 88% 15%, rgba(197, 69, 31, 0.08), transparent 28%),
    linear-gradient(145deg, #0f0c09, #090806 60%);
  border-top: 1px solid var(--line);
}

.menu-section:nth-child(even) {
  background:
    radial-gradient(circle at 10% 82%, rgba(199, 154, 69, 0.065), transparent 28%),
    linear-gradient(145deg, #090806, #120d09 70%);
}

.menu-section-featured,
.menu-section-premium,
.menu-section-social {
  background:
    radial-gradient(circle at 85% 12%, rgba(197, 69, 31, 0.16), transparent 32%),
    radial-gradient(circle at 12% 90%, rgba(199, 154, 69, 0.1), transparent 30%),
    linear-gradient(140deg, #1b100b, #090806 62%);
}

.menu-section-heading {
  align-self: start;
}

.menu-section-heading h2 {
  margin-bottom: 1rem;
}

.menu-section-heading > p:not(.eyebrow) {
  max-width: 480px;
  color: #b8ad9a;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
  align-content: start;
}

.menu-entry {
  min-width: 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(199, 154, 69, 0.22);
}

.menu-entry-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
}

.menu-entry-title h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  line-height: 1.22;
}

.menu-entry-title span {
  flex: 0 0 auto;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.menu-entry > p {
  margin: 0.7rem 0 0;
  color: #a99e8b;
  font-size: 0.9rem;
}

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

.menu-subsection {
  grid-column: 2;
  margin-top: 0.5rem;
  padding-top: 2rem;
}

.menu-subsection > h3 {
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}

.menu-tags {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
}

.menu-tags li {
  padding: 0.68rem 0.82rem;
  border: 1px solid rgba(199, 154, 69, 0.3);
  background: rgba(255, 255, 255, 0.025);
  color: #c9beac;
  font-size: 0.78rem;
}

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

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

.social-card {
  padding: 1.6rem;
  border: 1px solid rgba(199, 154, 69, 0.28);
  background: rgba(9, 8, 6, 0.5);
}

.social-card ul {
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.48rem;
  color: #b8ad9a;
  font-size: 0.88rem;
  list-style: none;
}

.social-card li::before {
  content: "—";
  margin-right: 0.5rem;
  color: var(--gold);
}

.section-cream .content-card {
  color: var(--cream);
}

.content-card p,
.content-copy p,
.notice-card p {
  color: #b3a792;
}

.content-copy {
  width: min(800px, 100%);
}

.content-copy + .content-copy {
  margin-top: 3rem;
}

.list-clean {
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.list-clean li {
  padding: 0.9rem 1rem;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
}

.notice-card {
  margin-top: 2.5rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(197, 69, 31, 0.1), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-item {
  min-height: 220px;
  padding: 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-item > span {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item address {
  margin-top: 3.2rem;
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.25rem);
  font-style: normal;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.policy-nav {
  margin-bottom: 3rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.policy-nav a {
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-section {
  width: min(850px, 100%);
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.policy-section p,
.policy-section li {
  color: #b6ab98;
}

.site-footer {
  padding: 4rem clamp(1.25rem, 7vw, 7rem) 6rem;
  background: #060504;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 0.6rem;
}

.footer-grid p {
  max-width: 330px;
  color: #8e8475;
  font-size: 0.85rem;
}

.footer-grid a {
  color: #b8ad9a;
  font-size: 0.82rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold-light);
}

.footer-title {
  margin-bottom: 0.7rem !important;
  color: var(--cream) !important;
  font-weight: 700;
  font-size: 0.68rem !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(199, 154, 69, 0.17);
  color: #6f675c;
  font-size: 0.74rem;
}

.mobile-order-bar {
  display: none;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 270px 1fr auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .header-order {
    justify-self: end;
  }

  .platform-grid,
  .category-grid,
  .bundle-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  body {
    padding-bottom: 62px;
  }

  .announcement-bar {
    justify-content: flex-start;
    font-size: 0.64rem;
  }

  .announcement-bar a:last-child,
  .announcement-divider:last-of-type {
    display: none;
  }

  .site-header {
    min-height: 72px;
    grid-template-columns: 62px 1fr auto;
  }

  .brand-link {
    width: 58px;
    height: 64px;
  }

  .brand-wordmark {
    display: none;
  }

  .brand-symbol {
    display: block;
    width: 56px;
    height: 62px;
    flex-basis: 56px;
  }

  .header-order {
    display: none;
  }

  .mobile-nav nav {
    inset-block-start: 110px;
  }

  .hero {
    min-height: 780px;
    align-items: end;
    background-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, #090806 0%, rgba(9, 8, 6, 0.95) 38%, rgba(9, 8, 6, 0.34) 82%),
      linear-gradient(90deg, rgba(9, 8, 6, 0.85), rgba(9, 8, 6, 0.08));
  }

  .hero-content {
    width: 100%;
    padding: 7rem 1.25rem 3rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .split-heading,
  .signup-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-band {
    grid-template-columns: 1fr;
  }

  .story-art {
    min-height: 320px;
  }

  .story-copy {
    padding: 3.25rem 1.25rem;
  }

  .catering-teaser {
    align-items: flex-start;
    flex-direction: column;
  }

  .yorkville-teaser {
    min-height: 520px;
  }

  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .menu-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .menu-subsection {
    grid-column: 1;
  }

  .menu-hero {
    min-height: 520px;
  }

  .mobile-order-bar {
    position: fixed;
    z-index: 250;
    inset: auto 0 0;
    min-height: 62px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #d7a750, #9e6825);
    color: #110d08;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
  }
}

@media (max-width: 580px) {
  .announcement-bar {
    gap: 0.55rem;
    letter-spacing: 0.08em;
  }

  .announcement-bar a:first-of-type,
  .announcement-divider:first-of-type {
    display: none;
  }

  .site-header {
    padding: 0 1rem;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5.3rem);
  }

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

  .button-row .button {
    width: 100%;
  }

  .platform-grid,
  .category-grid,
  .bundle-grid,
  .feature-grid,
  .footer-grid,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .menu-list,
  .menu-list-pricing,
  .menu-list-enhancements,
  .social-table-grid {
    grid-template-columns: 1fr;
  }

  .menu-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .platform-card {
    min-height: 135px;
  }

  .bundle-card,
  .feature-card {
    min-height: 220px;
  }

  .form-field-wide,
  .signup-form .button,
  .form-help {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
