/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --rust:    #A63218;
  --rust-lt: #C44B2B;
  --gold:    #C8880E;
  --gold-lt: #E0A020;
  --teal:    #1E3D38;
  --teal-lt: #2A5248;
  --cream:   #F5EDD8;
  --cream-dk:#EDE0C4;
  --ink:     #1C1006;
  --ink-lt:  #2C1C0E;
  --mid:     #7A6040;
  --line:    rgba(28,16,6,.1);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.sr {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.sr.in { opacity: 1; transform: none; }
.sr-l { transform: translateX(-24px); }
.sr-r { transform: translateX(24px); }
.sr-l.in, .sr-r.in { transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ─── SHARED TYPE ────────────────────────────────────────────── */
.eyebrow {
  font-size: .65rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase;
}
.display {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1; font-weight: 300;
}
.display em { font-style: italic; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block; text-decoration: none;
  font-size: .72rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; padding: .85rem 1.8rem;
  transition: all .2s; cursor: pointer; border: none;
}
.btn-rust  { background: var(--rust); color: var(--cream); }
.btn-rust:hover { background: var(--rust-lt); }
.btn-teal  { background: var(--teal); color: var(--cream); }
.btn-teal:hover { background: var(--teal-lt); }
.btn-gold  { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-lt); }
.btn-ink   { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--ink-lt); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: var(--cream-dk); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(245,237,216,.3); }
.btn-ghost:hover { border-color: var(--cream); }
.btn-ghost-dk { background: transparent; color: var(--ink); border: 1px solid rgba(28,16,6,.2); }
.btn-ghost-dk:hover { background: var(--ink); color: var(--cream); }

/* ─── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  height: 58px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: var(--ink);
  border-bottom: 1px solid rgba(245,237,216,.06);
  transition: background .3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700; letter-spacing: .02em;
  color: var(--cream); text-decoration: none;
}
.nav-logo span { color: var(--rust-lt); }
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: .68rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(245,237,216,.45);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-order {
  background: var(--rust) !important;
  color: var(--cream) !important;
  padding: .42rem 1.3rem !important;
}
.nav-order:hover { background: var(--rust-lt) !important; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 58px;
  background: var(--ink);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
}

/* Left text panel */
.hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 5rem 3rem 4rem;
  border-right: 1px solid rgba(245,237,216,.05);
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .65rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2.5rem;
  animation: fadeUp .8s ease both;
}
.hero-tag::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--gold); opacity: .5;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 300; line-height: .9;
  color: var(--cream);
  animation: fadeUp .8s .1s ease both;
}
.hero h1 em {
  font-style: italic; color: var(--rust-lt);
  display: block;
}
.hero-sub {
  font-size: .92rem; line-height: 1.75;
  color: rgba(245,237,216,.45);
  max-width: 380px;
  margin: 1.8rem 0 2.5rem;
  animation: fadeUp .8s .2s ease both;
}
.hero-actions {
  display: flex; gap: .65rem; flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}

/* Right image panel */
.hero-right {
  display: grid; grid-template-rows: 1fr 1fr;
  position: relative;
  animation: fadeIn 1s .2s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-photo {
  position: relative; overflow: hidden;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.hero-photo:first-child { border-bottom: 1px solid rgba(245,237,216,.05); }
.hero-photo-placeholder {
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,237,216,.15); text-align: center;
}
/* Hover zoom for photos */
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.hero-photo:hover img { transform: scale(1.03); }

/* Address strip at bottom of hero */
.hero-addr {
  grid-column: 1 / -1;
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(28,16,6,.7);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(245,237,216,.06);
  padding: 1rem 2.5rem;
  display: flex; align-items: center; gap: 3rem;
  font-size: .68rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(245,237,216,.4);
  animation: fadeUp .8s .5s ease both;
}
.hero-addr strong { color: rgba(245,237,216,.8); font-weight: 500; }
.hero-addr a { color: var(--rust-lt); text-decoration: none; }
.addr-sep { opacity: .2; }

/* ─── INFO STRIP ─────────────────────────────────────────────── */
.info-strip {
  background: var(--rust);
  padding: .9rem 2.5rem;
  display: flex; align-items: center; gap: 2rem;
  overflow: hidden;
}
.info-strip-track {
  display: flex; align-items: center; gap: 2rem;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.info-strip-track span {
  font-size: .68rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(245,237,216,.85);
}
.info-strip-track .dot { opacity: .35; }

/* ─── SPECIALS BANNER ────────────────────────────────────────── */
.specials-banner {
  background: var(--gold);
  padding: 1.8rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  border-bottom: 3px solid rgba(28,16,6,.15);
}
.specials-banner-left {
  display: flex; align-items: center; gap: 1.5rem;
}
.specials-icon {
  font-size: 1.8rem; line-height: 1;
}
.specials-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: white;
  line-height: 1;
}
.specials-banner p {
  font-size: .78rem; color: rgba(255,255,255,.75);
  margin-top: .2rem; letter-spacing: .02em;
}
.specials-banner .btn-ink {
  white-space: nowrap; flex-shrink: 0;
}

/* ─── SECTION WRAPPER ────────────────────────────────────────── */
.section { padding: 6rem 2.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

/* ─── SERVICES: TRUCK + CATERING ─────────────────────────────── */
.services {
  display: grid; grid-template-columns: 1fr 1fr;
}
.svc-card {
  padding: 5rem 3.5rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 540px;
}
.svc-card-truck    { background: var(--teal); }
.svc-card-catering { background: var(--gold); }

.svc-card::before {
  content: attr(data-num);
  position: absolute; top: 1.5rem; right: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem; font-weight: 700; font-style: italic;
  color: rgba(255,255,255,.06);
  line-height: 1; pointer-events: none;
}
.svc-label {
  font-size: .65rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .9rem;
}
.svc-label::before { content: ''; display: block; width: 16px; height: 1px; background: currentColor; }
.svc-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 700; line-height: 1.05; color: white;
  margin-bottom: 1.2rem;
}
.svc-card h2 em { font-style: italic; font-weight: 300; }
.svc-card > div > p {
  font-size: .88rem; line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 320px; margin-bottom: 2rem;
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 2.5rem;
}
.svc-tag {
  font-size: .62rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.7);
  padding: .28rem .7rem;
}
.svc-btns { display: flex; gap: .65rem; flex-wrap: wrap; }

/* ─── HISTORY SECTION ────────────────────────────────────────── */
.history {
  background: var(--cream);
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.history-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem;
  align-items: center;
}
.history-visual {
  position: relative;
}
.history-photo {
  width: 100%; aspect-ratio: 3/4;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.history-photo-placeholder {
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,237,216,.2); text-align: center; padding: 2rem;
}
/* Offset accent box */
.history-accent {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 160px; height: 160px;
  background: var(--rust);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.history-accent .yr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: white; line-height: 1;
}
.history-accent .lbl {
  font-size: .6rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.7);
  margin-top: .3rem;
}

.history-text {}
.history-eyebrow {
  color: var(--rust); margin-bottom: 1rem;
}
.history-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--ink); margin-bottom: 1.5rem;
}
.history-rule {
  width: 48px; height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.history-body {
  font-size: .92rem; line-height: 1.85; color: var(--mid);
}
.history-body p + p { margin-top: 1.2rem; }
.history-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300; font-style: italic;
  color: var(--ink); line-height: 1.4;
  border-left: 3px solid var(--rust);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* ─── MENU CTA ───────────────────────────────────────────────── */
.menu-cta {
  background: var(--ink);
  padding: 5rem 2.5rem;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 4rem;
}
.menu-cta-left {}
.menu-cta-left .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.menu-cta-left h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--cream);
}
.menu-cta-left h2 em { color: var(--rust-lt); }
.menu-cta-left p {
  font-size: .88rem; color: rgba(245,237,216,.4);
  margin-top: .9rem; max-width: 420px; line-height: 1.7;
}
.menu-cta-right {
  display: flex; flex-direction: column; gap: .7rem;
  align-items: flex-start; flex-shrink: 0;
}

/* ─── WEEKDAY SPECIALS TEASER ────────────────────────────────── */
.specials-teaser {
  background: var(--cream-dk);
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--line);
}
.specials-teaser-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.specials-teaser-text .eyebrow { color: var(--rust); margin-bottom: 1rem; }
.specials-teaser-text h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--ink);
}
.specials-teaser-text h2 em { color: var(--rust); }
.specials-teaser-text p {
  font-size: .9rem; color: var(--mid); line-height: 1.75;
  margin-top: 1rem; margin-bottom: 2rem; max-width: 400px;
}
.specials-days {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.special-day {
  background: var(--cream);
  padding: 1.4rem 1.6rem;
  transition: background .2s;
}
.special-day:hover { background: white; }
.special-day-name {
  font-size: .62rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--rust);
  margin-bottom: .3rem;
}
.special-day-dish {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--ink);
}
.special-day-desc {
  font-size: .75rem; color: var(--mid); margin-top: .2rem; line-height: 1.45;
}

/* ─── REVIEWS ────────────────────────────────────────────────── */
.reviews {
  background: var(--teal);
  padding: 6rem 2.5rem;
}
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap;
}
.reviews-header-left .eyebrow { color: rgba(245,237,216,.45); margin-bottom: 1rem; }
.reviews-header-left h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
}
.reviews-header-left h2 em { color: var(--gold-lt); }
.reviews-header-right {
  display: flex; align-items: center; gap: 1rem;
}
.reviews-rating {
  text-align: center;
}
.reviews-rating .stars {
  font-size: 1.4rem; color: var(--gold-lt); letter-spacing: .1em;
}
.reviews-rating .score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: var(--cream); line-height: 1;
}
.reviews-rating .count {
  font-size: .7rem; color: rgba(245,237,216,.4); letter-spacing: .08em;
}

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: rgba(245,237,216,.05);
  border: 1.5px solid rgba(245,237,216,.05);
}
.review-card {
  background: var(--teal);
  padding: 2.2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background .25s;
}
.review-card:hover { background: var(--teal-lt); }
.review-stars { color: var(--gold-lt); font-size: .9rem; letter-spacing: .08em; }
.review-text {
  font-size: .88rem; line-height: 1.7;
  color: rgba(245,237,216,.7);
  font-style: italic;
  flex: 1;
}
.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }
.review-author {
  display: flex; align-items: center; gap: .75rem;
  padding-top: 1rem; border-top: 1px solid rgba(245,237,216,.08);
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--rust); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700; color: white;
  flex-shrink: 0;
}
.review-name { font-size: .8rem; font-weight: 500; color: var(--cream); }
.review-date { font-size: .68rem; color: rgba(245,237,216,.35); margin-top: .1rem; }

.reviews-google-cta {
  text-align: center; margin-top: 2.5rem;
}
.reviews-google-cta a {
  font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-lt); text-decoration: none;
  border-bottom: 1px solid rgba(224,160,32,.4); padding-bottom: 2px;
  transition: border-color .2s;
}
.reviews-google-cta a:hover { border-color: var(--gold-lt); }

/* ─── MAP + CONTACT ──────────────────────────────────────────── */
.location {
  display: grid; grid-template-columns: 1.2fr 1fr;
}
.location-map {
  background: var(--ink-lt);
  min-height: 480px;
  position: relative; overflow: hidden;
}
.location-map iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(30%) contrast(1.1);
}
.location-map-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  color: rgba(245,237,216,.2);
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
}
.location-map-placeholder svg { opacity: .15; }

.location-info {
  background: var(--ink);
  padding: 5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.location-info .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.location-info h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 3rem;
}
.location-info h2 em { color: var(--rust-lt); }

.info-blocks { display: flex; flex-direction: column; gap: 0; }
.info-block {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(245,237,216,.07);
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1rem; align-items: start;
}
.info-block:first-child { border-top: 1px solid rgba(245,237,216,.07); }
.info-block-label {
  font-size: .6rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(245,237,216,.3);
  padding-top: .15rem;
}
.info-block-value {
  font-size: .92rem; color: rgba(245,237,216,.85); line-height: 1.5;
}
.info-block-value a {
  color: rgba(245,237,216,.85); text-decoration: none;
}
.info-block-value a:hover { color: var(--rust-lt); }

/* Hours table inside location */
.hours-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(245,237,216,.07);
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: .7rem 0; border-bottom: 1px solid rgba(245,237,216,.07);
  font-size: .82rem;
}
.hours-day { color: rgba(245,237,216,.6); }
.hours-time { color: rgba(245,237,216,.35); font-size: .78rem; }
.hours-row:nth-child(even) { padding-left: 1.5rem; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(245,237,216,.06);
  padding: 3.5rem 2.5rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,237,216,.07);
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--cream); text-decoration: none;
  display: block; margin-bottom: .6rem;
}
.footer-brand .footer-logo span { color: var(--rust-lt); }
.footer-brand p {
  font-size: .82rem; color: rgba(245,237,216,.35);
  line-height: 1.6; max-width: 220px;
}
.footer-col h4 {
  font-size: .62rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(245,237,216,.3);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a {
  font-size: .82rem; color: rgba(245,237,216,.5);
  text-decoration: none; transition: color .2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; padding-top: 2rem;
}
.footer-copy {
  font-size: .65rem; color: rgba(245,237,216,.2);
  letter-spacing: .06em;
}
.footer-copy a { color: rgba(245,237,216,.25); text-decoration: none; }
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a {
  font-size: .65rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(245,237,216,.3);
  text-decoration: none; transition: color .2s;
}
.footer-social a:hover { color: var(--cream); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 1.2rem; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 1.5rem 3rem; border-right: none; }
  .hero-right { grid-template-rows: 280px; grid-template-columns: 1fr 1fr; }
  .hero-photo:first-child { border-bottom: none; border-right: 1px solid rgba(245,237,216,.05); }
  .hero-addr { position: static; grid-column: auto; flex-wrap: wrap; gap: 1rem; }

  .services { grid-template-columns: 1fr; }
  .svc-card { min-height: auto; padding: 4rem 2rem; }

  .history-inner { grid-template-columns: 1fr; gap: 3rem; }
  .history-accent { display: none; }
  .history-photo { aspect-ratio: 16/9; }

  .menu-cta { grid-template-columns: 1fr; gap: 2rem; }
  .menu-cta-right { flex-direction: row; flex-wrap: wrap; }

  .specials-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }

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

  .location { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .section { padding: 4rem 1.5rem; }
  .history, .reviews, .specials-teaser { padding: 4rem 1.5rem; }
  .menu-cta { padding: 4rem 1.5rem; }
  .location-info { padding: 3.5rem 1.5rem; }
}