:root {
  --black: #111111;
  --black-2: #1A1A1A;
  --yellow: #D9A229;
  --yellow-2: #F2C94C;
  --white: #FFFFFF;
  --light: #F8F5EE;
  --muted: #7a756c;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(17, 17, 17, 0.12);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--light);
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body::selection {
  background: var(--yellow);
  color: var(--black);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--yellow-2);
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.96);
  border-bottom: 1px solid rgba(242, 201, 76, 0.22);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1240px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--yellow);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: var(--black);
  border-radius: var(--radius);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-name {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-slogan {
  color: var(--yellow-2);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.84);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
}

.nav-menu .nav-cta {
  margin-left: 10px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 14px 30px rgba(217, 162, 41, 0.28);
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  background: var(--yellow-2);
  color: var(--black);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--yellow-2);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--light);
  color: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 54px;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(217, 162, 41, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(217, 162, 41, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(242, 201, 76, 0.2), transparent 34%),
    linear-gradient(135deg, #111111, #171717 52%, #0b0b0b);
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--yellow);
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  max-width: 780px;
}

.hero-slogan {
  margin: 8px 0 0;
  color: var(--yellow-2);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.hero-actions,
.order-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 16px 34px rgba(217, 162, 41, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--yellow-2);
}

.btn-secondary,
.btn-outline {
  border-color: rgba(242, 201, 76, 0.52);
  color: var(--yellow-2);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: #242424;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-dark:hover,
.btn-dark:focus-visible,
.btn-outline:hover,
.btn-outline:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--yellow-2);
  background: rgba(242, 201, 76, 0.12);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-chips span {
  border: 1px solid rgba(242, 201, 76, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  max-width: 640px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--yellow-2);
  font-size: 1.32rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  min-height: 560px;
  padding: 18px;
  border: 1px solid rgba(242, 201, 76, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.image-slot,
.image-placeholder {
  width: 100%;
  height: 100%;
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 162, 41, 0.28), rgba(17, 17, 17, 0.1)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 10px, transparent 10px 20px),
    #222;
  color: var(--yellow-2);
  text-align: center;
  font-weight: 900;
  min-height: 220px;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(242, 201, 76, 0.42);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.image-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 240px;
  padding: 12px 14px;
  background: rgba(17, 17, 17, 0.72);
  border-radius: var(--radius);
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  min-height: 524px;
}

.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid rgba(242, 201, 76, 0.28);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.floating-badge.top {
  top: 42px;
  left: -18px;
  padding: 12px 14px;
  font-weight: 900;
}

.floating-badge.bottom {
  right: -12px;
  bottom: 42px;
  display: grid;
  gap: 1px;
  padding: 14px 16px;
}

.floating-badge.bottom span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow-2);
  box-shadow: 0 0 0 6px rgba(242, 201, 76, 0.16);
}

.highlights {
  position: relative;
  z-index: 2;
  margin-top: -24px;
  padding-bottom: 64px;
}

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

.highlight-card {
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1);
  border: 1px solid rgba(217, 162, 41, 0.18);
}

.highlight-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow-2);
  font-weight: 900;
  font-size: 0.82rem;
}

.highlight-card h3 {
  margin-top: 18px;
  font-size: 1.12rem;
}

.highlight-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.about,
.menu-section,
.map-section {
  padding: 86px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image {
  min-height: 510px;
  background-color: #1d1d1d;
}

.about-note {
  position: absolute;
  right: -20px;
  bottom: 26px;
  width: min(300px, calc(100% - 32px));
  padding: 18px;
  background: var(--black);
  color: var(--white);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-note strong,
.about-note span {
  display: block;
}

.about-note span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.section-copy h2,
.section-heading h2,
.order-section h2,
.map-heading h2 {
  margin-top: 12px;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.section-copy p,
.section-heading p,
.trust-text {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-copy p {
  margin-top: 22px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 4px var(--black);
}

.social-links a {
  padding: 11px 14px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--yellow-2);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  background: var(--black-2);
  outline: none;
}

.featured {
  padding: 88px 0;
  background:
    linear-gradient(180deg, rgba(217, 162, 41, 0.1), transparent),
    var(--black);
}

.section-heading-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}

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

.featured-card,
.menu-card {
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.featured-card {
  background: #1f1f1f;
  border: 1px solid rgba(242, 201, 76, 0.18);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.featured-card:hover,
.menu-card:hover {
  transform: translateY(-5px);
}

.featured-image {
  height: 250px;
  min-height: 250px;
}

.menu-image img {
  object-fit: contain;
}

.featured-card-body {
  position: relative;
  padding: 24px;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
}

.featured-card-body .price-badge {
  position: absolute;
  top: -22px;
  right: 18px;
}

.featured-card h3 {
  margin-top: 8px;
  font-size: 1.38rem;
}

.featured-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

@media (hover: hover) and (pointer: fine) {
  .featured-card-body {
    padding: 0 24px;
    transition: padding 220ms ease;
  }

  .featured-card h3 {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 220ms ease, margin-top 220ms ease;
  }

  .featured-card:hover .featured-card-body,
  .featured-card:focus-within .featured-card-body {
    padding: 24px;
  }

  .featured-card:hover h3,
  .featured-card:focus-within h3 {
    max-height: 80px;
    margin-top: 8px;
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.menu-top .section-heading {
  max-width: 680px;
}

.menu-count {
  flex: 0 0 auto;
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--black);
  color: var(--yellow-2);
  font-weight: 900;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(217, 162, 41, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.06);
}

.category-pill {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  background: var(--light);
  color: var(--black);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.category-pill:hover,
.category-pill:focus-visible {
  transform: translateY(-1px);
  border-color: var(--yellow);
  outline: none;
}

.category-pill.is-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--yellow-2);
}

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

.menu-card {
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.08);
}

.menu-image {
  height: 250px;
  min-height: 200px;
  background-color: #202020;
}

.menu-card-body {
  padding: 18px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.card-meta span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-meta strong {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
  font-size: 0.92rem;
}

.menu-card h3 {
  font-size: 1.2rem;
}

.menu-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (hover: hover) and (pointer: fine) {
  .menu-card-body {
    padding: 0 18px;
    transition: padding 220ms ease;
  }

  .menu-card h3 {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 220ms ease;
  }

  .menu-card:hover .menu-card-body,
  .menu-card:focus-within .menu-card-body {
    padding: 18px;
  }

  .menu-card:hover h3,
  .menu-card:focus-within h3 {
    max-height: 80px;
    opacity: 1;
    transform: translateY(0);
  }

  .menu-card p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 220ms ease;
  }

  .menu-card:hover p,
  .menu-card:focus-within p {
    max-height: 90px;
    opacity: 1;
    transform: translateY(0);
  }
}

.order-section {
  padding: 84px 0;
  background:
    linear-gradient(90deg, rgba(217, 162, 41, 0.14), transparent 46%),
    var(--black);
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.order-section .trust-text {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
}

.phone-link {
  display: inline-flex;
  color: var(--yellow-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
}

.order-panel {
  padding: 26px;
  border: 1px solid rgba(242, 201, 76, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.order-actions .btn {
  flex: 1 1 160px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-details div {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details span {
  display: block;
  color: var(--yellow-2);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-details strong {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
}

.map-section {
  background: #f1eadc;
}

.map-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.map-heading p {
  max-width: 420px;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.map-frame {
  height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: var(--black);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  min-height: 430px;
}

.site-footer {
  background: #0c0c0c;
  color: rgba(255, 255, 255, 0.72);
  padding: 54px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 1fr;
  gap: 34px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1rem;
}

.site-footer p {
  margin: 8px 0;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--yellow-2);
  outline: none;
}

.footer-bottom {
  margin-top: 38px;
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
    border: 1px solid rgba(242, 201, 76, 0.22);
    border-radius: var(--radius);
    background: var(--black-2);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-grid,
  .about-grid,
  .order-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-card,
  .hero-image {
    min-height: 430px;
  }

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

  .about-note {
    right: 18px;
  }

  .menu-top,
  .map-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-heading p {
    text-align: left;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .navbar {
    width: min(100% - 24px, 1240px);
    min-height: 74px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .brand-slogan {
    font-size: 0.68rem;
  }

  .nav-menu {
    top: 74px;
    left: 12px;
    right: 12px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-stats,
  .highlight-grid,
  .featured-grid,
  .menu-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding: 15px;
  }

  .hero-card,
  .hero-image,
  .about-image {
    min-height: 360px;
  }

  .floating-badge.top {
    left: 12px;
  }

  .floating-badge.bottom {
    right: 12px;
  }

  .about,
  .featured,
  .menu-section,
  .order-section,
  .map-section {
    padding: 62px 0;
  }

  .about-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .section-copy h2,
  .section-heading h2,
  .order-section h2,
  .map-heading h2 {
    font-size: 2.25rem;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 16px;
  }

  .category-pill {
    flex: 0 0 auto;
  }

  .phone-link {
    font-size: 2.15rem;
  }

  .map-frame,
  .map-placeholder {
    height: 340px;
    min-height: 340px;
  }
}
