:root {
  --ink: #17100f;
  --muted: #675d56;
  --cream: #fff4e5;
  --paper: #fffdf8;
  --red: #d62832;
  --red-dark: #8f171f;
  --blue: #123a59;
  --green: #26724f;
  --gold: #edae2c;
  --line: rgba(28, 18, 14, 0.13);
  --shadow: 0 24px 70px rgba(54, 21, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-settle {
  from {
    opacity: 0.82;
    transform: scale(1.045);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

a {
  color: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: white;
  background: var(--red);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 14px clamp(16px, 4vw, 46px);
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  transition: min-height 180ms ease, padding 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 74px;
  padding-block: 10px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 12px 32px rgba(28, 18, 14, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  width: min(132px, 36vw);
  align-items: center;
}

.brand img {
  width: auto;
  max-height: 72px;
  border-radius: 8px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.46));
  transition: max-height 180ms ease, filter 180ms ease, transform 180ms ease;
}

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

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  max-height: 58px;
  filter: none;
}

.nav-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: var(--line);
  background: white;
}

.site-header.is-scrolled .nav-toggle span:not(.sr-only),
.site-header.is-open .nav-toggle span:not(.sr-only) {
  background: var(--ink);
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% - 4px);
  right: clamp(14px, 4vw, 42px);
  left: clamp(14px, 4vw, 42px);
  display: grid;
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-10px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, padding 180ms ease, border-color 180ms ease;
}

.site-nav.is-open {
  display: grid;
  max-height: 460px;
  padding: 12px;
  border-color: var(--line);
  opacity: 1;
  transform: translateY(0);
}

.site-nav a {
  padding: 13px 12px;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

.nav-order {
  color: white !important;
  background: var(--red);
}

.hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #160f0d;
}

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

.hero-photo {
  object-fit: cover;
  object-position: 62% center;
  animation: image-settle 900ms ease both;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(18, 8, 7, 0.84) 0%, rgba(18, 8, 7, 0.62) 42%, rgba(18, 8, 7, 0.12) 100%),
    linear-gradient(0deg, rgba(18, 8, 7, 0.54), rgba(18, 8, 7, 0.04) 46%);
}

.hero-content {
  position: relative;
  width: min(700px, 100%);
  padding: 112px clamp(20px, 6vw, 72px) clamp(56px, 9vw, 92px);
  animation: rise-in 680ms ease 120ms both;
}

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

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

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

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

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(3.45rem, 11vw, 6.9rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5.4vw, 3.9rem);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 560px;
  color: #fff1df;
  font-size: clamp(1.16rem, 3vw, 1.48rem);
}

.hero-actions,
.button-row,
.visit-actions,
.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-details {
  margin-top: 24px;
}

.hero-details span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffe9d6;
  font-size: 0.92rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(54, 21, 12, 0.16);
}

.button.primary {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 36px rgba(189, 24, 39, 0.28);
}

.button.ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.2);
}

.button.light {
  color: white;
  border-color: rgba(255, 255, 255, 0.36);
}

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

.button.outline {
  color: var(--ink);
  border-color: var(--line);
  background: white;
}

.mobile-action-bar {
  position: sticky;
  z-index: 8;
  top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #102f48;
}

.mobile-action-bar a {
  padding: 15px 8px;
  color: white;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease;
}

.mobile-action-bar a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-action-bar a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.intro,
.order-band,
.popular-menu,
.menu-cta,
.full-menu,
.photo-story,
.reviews,
.visit {
  padding: clamp(60px, 8vw, 104px) clamp(20px, 6vw, 76px);
  scroll-margin-top: 84px;
}

.intro {
  display: grid;
  gap: 26px;
  align-items: end;
  background: var(--cream);
}

.intro p,
.order-copy p,
.photo-story p,
.visit p,
.popular-menu p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.full-menu {
  background:
    linear-gradient(180deg, rgba(255, 240, 221, 0.72), rgba(255, 250, 242, 0.96)),
    var(--paper);
}

.menu-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.menu-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.menu-section {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 38px rgba(54, 21, 12, 0.08);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.menu-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(54, 21, 12, 0.12);
}

.menu-section.accent {
  border-color: rgba(237, 174, 44, 0.38);
  background: #fff6df;
}

.menu-section-title {
  display: grid;
  gap: 5px;
  margin: -24px -24px 18px;
  padding: 18px clamp(18px, 4vw, 32px);
  border-radius: 8px 8px 0 0;
  color: white;
}

.menu-section-title.red {
  background: var(--red);
}

.menu-section-title.blue {
  background: var(--blue);
}

.menu-section-title.green {
  background: var(--green);
}

.menu-section-title.gold {
  color: var(--ink);
  background: var(--gold);
}

.menu-section-title h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 2.55rem);
}

.menu-section-title p {
  margin: 0;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 950;
  text-transform: uppercase;
}

.menu-list {
  display: grid;
  gap: 0;
}

.menu-list.two-col {
  gap: 0 24px;
}

.menu-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item h4 {
  margin: 0 0 5px;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  line-height: 1.08;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
}

.special-strip {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 8px;
  color: white;
  background: var(--blue);
}

.special-strip span {
  font-weight: 850;
}

.special-strip strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  line-height: 1;
}

.split-menu {
  display: grid;
  gap: 18px;
}

.price-list {
  display: grid;
}

.price-list p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.price-list strong {
  color: var(--red);
  font-size: 1.06rem;
}

.build-menu .menu-section-title {
  margin-bottom: 20px;
}

.topping-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topping-cloud span {
  padding: 8px 11px;
  border: 1px solid rgba(18, 58, 89, 0.18);
  border-radius: 999px;
  color: var(--blue);
  background: white;
  font-weight: 850;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.topping-cloud span:hover {
  border-color: rgba(214, 40, 50, 0.32);
  color: var(--red);
  transform: translateY(-1px);
}

.intro > p {
  max-width: 620px;
}

.order-band {
  display: grid;
  gap: 30px;
  align-items: center;
  color: white;
  background:
    linear-gradient(145deg, rgba(198, 31, 44, 0.96), rgba(105, 20, 24, 0.98)),
    var(--red-dark);
}

.order-band img {
  width: 100%;
  min-height: 320px;
  max-height: 620px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.order-band:hover img,
.photo-story:hover img,
.menu-page-hero:hover img {
  transform: scale(1.012);
  box-shadow: 0 28px 76px rgba(54, 21, 12, 0.22);
}

.order-copy p {
  max-width: 620px;
  color: #ffe9d6;
}

.popular-menu {
  background: var(--paper);
}

.menu-cta {
  display: grid;
  gap: 24px;
  align-items: center;
  background: var(--cream);
}

.menu-cta p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.menu-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-grid {
  display: grid;
  gap: 14px;
}

.menu-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  background: #130d0c;
  box-shadow: 0 10px 28px rgba(54, 21, 12, 0.1);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.menu-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.menu-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.1) 56%);
}

.menu-card span {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  left: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.menu-card:hover img {
  transform: scale(1.035);
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(54, 21, 12, 0.16);
}

.photo-story {
  display: grid;
  gap: 30px;
  align-items: center;
  background: white;
}

.photo-story img {
  width: 100%;
  min-height: 360px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.text-link {
  color: var(--red);
  font-weight: 950;
}

.reviews {
  color: var(--ink);
  background: #fff7ea;
}

.section-kicker {
  max-width: 760px;
  margin-bottom: 28px;
}

.review-row {
  display: grid;
  gap: 12px;
  background: transparent;
}

.review-row figure {
  margin: 0;
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 14px 42px rgba(54, 21, 12, 0.09);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.review-row figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(54, 21, 12, 0.13);
}

blockquote {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2.5vw, 1.72rem);
  line-height: 1.18;
}

figcaption {
  color: var(--red);
  font-weight: 900;
}

.visit {
  display: grid;
  gap: 28px;
  align-items: center;
  background: var(--cream);
}

.site-footer {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 32px clamp(18px, 6vw, 72px);
  background: var(--paper);
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: var(--ink);
  font-weight: 900;
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: clamp(118px, 13vw, 152px) clamp(20px, 6vw, 76px) clamp(38px, 6vw, 66px);
  background: var(--cream);
}

.legal-hero h1 {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.legal-hero p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 14px;
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(38px, 6vw, 68px) 0;
}

.legal-content h2 {
  margin: 24px 0 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.legal-content a {
  color: var(--red-dark);
  font-weight: 900;
}

.menu-page {
  background: var(--paper);
}

.menu-page-hero {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: clamp(118px, 13vw, 152px) clamp(20px, 6vw, 76px) clamp(46px, 7vw, 78px);
  background: var(--cream);
}

.menu-page-hero h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(3.05rem, 9vw, 5.8rem);
}

.menu-page-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.24rem);
}

.menu-page-hero img {
  width: 100%;
  min-height: 280px;
  max-height: 520px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.menu-page-list {
  padding-top: clamp(34px, 5vw, 58px);
}

.seo-hero,
.seo-copy,
.internal-links,
.faq-list,
.location-details {
  padding: clamp(60px, 8vw, 104px) clamp(20px, 6vw, 76px);
}

.seo-hero {
  display: grid;
  gap: 26px;
  padding-top: clamp(118px, 13vw, 152px);
  background: var(--cream);
}

.seo-hero h1 {
  max-width: 12ch;
  color: var(--ink);
  font-size: clamp(3.05rem, 9vw, 5.8rem);
}

.seo-hero p:not(.eyebrow),
.seo-copy p,
.faq-list p,
.location-details p,
.internal-links p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.16rem);
}

.seo-hero img {
  width: 100%;
  min-height: 280px;
  max-height: 520px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.seo-copy,
.faq-list {
  background: var(--paper);
}

.seo-copy {
  display: grid;
  gap: 12px;
}

.seo-copy h2,
.internal-links h2,
.location-details h2,
.faq-list h2 {
  font-size: clamp(1.55rem, 3.6vw, 2.55rem);
}

.seo-copy a,
.faq-list a,
.location-details a {
  color: var(--red-dark);
  font-weight: 900;
}

.internal-links {
  background: #fff7ea;
}

.link-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.link-grid a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.link-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(54, 21, 12, 0.1);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article,
.location-details > div {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 42px rgba(54, 21, 12, 0.08);
}

.faq-list h2,
.location-details h2 {
  margin-bottom: 10px;
}

.location-details {
  display: grid;
  gap: 14px;
  background: var(--paper);
}

.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (min-width: 760px) {
  .nav-toggle,
  .mobile-action-bar {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    opacity: 1;
    transform: none;
    color: inherit;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px 12px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.38);
  }

  .site-header.is-scrolled .site-nav a {
    text-shadow: none;
  }

  .nav-call {
    border: 1px solid rgba(255, 255, 255, 0.32);
  }

  .site-header.is-scrolled .nav-call {
    border-color: var(--line);
    background: white;
  }

  .nav-order,
  .nav-call {
    border-radius: 8px;
  }

  .intro,
  .order-band,
  .photo-story,
  .visit,
  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

  .hero-content {
    padding-top: 150px;
  }

  h1 {
    max-width: 12ch;
  }

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

  .menu-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-page-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  }

  .seo-hero-split,
  .location-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-hero-split {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  }

  .seo-hero-split > div:first-child {
    align-self: center;
  }

  .review-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .menu-section {
    padding: 32px;
  }

  .menu-section-title {
    margin: -32px -32px 18px;
  }

  .special-strip {
    grid-template-columns: auto minmax(160px, 1fr) auto;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .button {
    width: 100%;
  }

  .hero-content {
    padding-top: 96px;
  }

  .brand {
    width: 112px;
  }

  .brand img {
    max-height: 62px;
  }

  .site-header {
    min-height: 76px;
  }

  .hero-photo {
    object-position: 68% center;
  }

  .hero-details span {
    width: 100%;
    text-align: center;
  }

  .menu-section {
    padding: 18px;
  }

  .menu-section-title {
    margin: -18px -18px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
