:root {
  --bg: #dcc6a3;
  --text: #201b17;
  --muted: #4f473f;
  --surface: #f4ecdd;
  --surface-strong: #e7dcc4;
  --brand-red: #992f12;
  --brand-red-dark: #6f210f;
  --brand-gold: #d8b84f;
  --brand-olive: #bea23e;
  --brand-green: #3f628f;
  --brand-night: #342d26;
  --border: #b8a67f;
  --success: #2f6c4f;
  --danger: #9f2f1e;
  --shadow: 0 10px 24px rgba(53, 35, 16, 0.14);
  --font-display: "Ewert", serif;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Quicksand", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 14%, rgba(216, 184, 79, 0.16), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(63, 98, 143, 0.11), transparent 30%),
    linear-gradient(140deg, #e4d2b1 0%, var(--bg) 52%, #d2be96 100%);
  color: var(--text);
  line-height: 1.58;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-red-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(63, 98, 143, 0.58);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  letter-spacing: 0.015em;
  line-height: 1.12;
  font-weight: 700;
}

p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-weight: 400;
}

.container {
  width: min(1120px, calc(100vw - 2rem));
  margin-inline: auto;
}

.section {
  padding: 3.6rem 0;
}

.section-accent {
  background:
    linear-gradient(120deg, rgba(194, 191, 206, 0.45), rgba(216, 184, 79, 0.24)),
    var(--surface-strong);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  margin-bottom: 1.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 0.65rem;
}

.page-banner {
  padding: 4.1rem 0 2rem;
}

.page-banner h1 {
  font-size: clamp(2.2rem, 5.6vw, 4rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(244, 236, 224, 0.95);
  border-bottom: 1px solid rgba(184, 166, 127, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  line-height: 1;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(63, 98, 143, 0.55);
  box-shadow: 0 6px 14px rgba(37, 30, 24, 0.24);
}

.brand-top {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--brand-red-dark);
}

.brand-bottom {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-green);
  font-weight: 700;
}

.mobile-nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font-weight: 700;
  min-height: 44px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-night);
}

.site-nav a.active {
  color: var(--brand-red-dark);
  border-bottom: 2px solid var(--brand-red);
}

.admin-link {
  color: var(--brand-green) !important;
}

.inline-form {
  margin: 0;
}

.link-button {
  border: none;
  background: none;
  color: var(--brand-red-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  border: 1px solid rgba(54, 40, 32, 0.18);
  background: linear-gradient(130deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.72rem 1.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
  min-height: 44px;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  text-decoration: none;
}

.button-sm {
  padding: 0.58rem 0.95rem;
  font-size: 0.85rem;
}

.button-outline {
  background: rgba(242, 233, 217, 0.75);
  border: 2px solid var(--brand-green);
  color: var(--brand-green);
}

.order-now {
  background: linear-gradient(130deg, var(--brand-gold), var(--brand-olive));
  color: #342b1a;
  border: 1px solid rgba(71, 56, 26, 0.24);
}

.button-danger {
  background: linear-gradient(130deg, var(--danger), #7e1e12);
}

.hero-section {
  position: relative;
  padding: 3.2rem 0 3.8rem;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(216, 184, 79, 0.28), transparent 42%),
    radial-gradient(circle at 85% 22%, rgba(63, 98, 143, 0.18), transparent 46%),
    radial-gradient(circle at 70% 88%, rgba(153, 47, 18, 0.14), transparent 42%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 5.8vw, 4rem);
  color: var(--brand-night);
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  line-height: 1.08;
}

.hero-tagline {
  font-size: clamp(1.03rem, 2.2vw, 1.3rem);
  color: var(--brand-red);
  margin-bottom: 0.65rem;
  max-width: 36ch;
  font-family: var(--font-body);
  font-weight: 700;
}

.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.8rem;
  padding: 0.42rem 0.6rem 0.42rem 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(63, 98, 143, 0.35);
  background: rgba(250, 244, 234, 0.88);
}

.hero-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(63, 98, 143, 0.52);
}

.hero-brand-note {
  margin: 0;
  color: var(--brand-night);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.home-page .hero-content {
  max-width: 58ch;
}

.home-page .hero-content h1 {
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}

.home-page .hero-card h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin-bottom: 0.35rem;
}

.home-page .hero-card p {
  font-size: 0.95rem;
}

.home-page .section-head h2 {
  font-size: clamp(1.9rem, 3.1vw, 2.35rem);
}

.home-page .card h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 48ch;
  color: #474039;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.hero-card {
  align-self: start;
  background: rgba(249, 243, 233, 0.92);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow);
}

.hero-side-stack {
  display: grid;
  gap: 0.9rem;
}

.hero-gallery-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.7rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(216, 184, 79, 0.2), rgba(249, 243, 233, 0.92));
  box-shadow: var(--shadow);
}

.hero-gallery-main,
.hero-gallery-side {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(53, 43, 34, 0.2);
}

.hero-gallery-main {
  grid-row: 1 / 3;
}

.hero-gallery-caption {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-style: italic;
  color: var(--brand-red-dark);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stack {
  display: grid;
  gap: 0.9rem;
}

.stack-lg {
  display: grid;
  gap: 1.6rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.95rem;
  box-shadow: var(--shadow);
}

.card h2,
.card h3 {
  color: var(--brand-night);
}

.card .price,
.price {
  color: var(--brand-red-dark);
  font-weight: 700;
}

.card-media {
  width: calc(100% + 2rem);
  max-width: calc(100% + 2rem);
  margin: -1rem -1rem 0.8rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid var(--border);
}

.menu-item-image {
  width: calc(100% + 2rem);
  max-width: calc(100% + 2rem);
  margin: -1rem -1rem 0.8rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid var(--border);
}

.menu-item-body {
  display: grid;
  gap: 0.25rem;
}

.menu-page .page-banner h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.menu-page .menu-category h2 {
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  margin-bottom: 0.6rem;
}

.menu-page .menu-item-body h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  margin-bottom: 0.2rem;
}

.menu-page .menu-item-body p {
  font-size: 0.95rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(63, 98, 143, 0.4);
  color: var(--brand-green);
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  font-size: 0.76rem;
  margin-bottom: 0.35rem;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
  font-size: 0.88rem;
}

.review-summary-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #faf4e8;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.review-summary-text {
  margin: 0;
  color: var(--brand-night);
  font-size: 1rem;
  font-weight: 700;
}

.review-quote {
  margin: 0;
  color: var(--brand-night);
  font-style: italic;
  line-height: 1.5;
}

.trust-card h3 {
  margin-bottom: 0.4rem;
}

.faq-item {
  padding: 0.9rem 1rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item h2 {
  font-size: clamp(1.3rem, 3.4vw, 1.8rem);
  margin: 0;
}

.faq-item p {
  margin-top: 0.8rem;
}

.media-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.instagram-widget-wrap {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.instagram-widget-wrap iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}

.media-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.media-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  font-size: 1.2rem;
  color: var(--brand-red-dark);
  background:
    linear-gradient(160deg, rgba(216, 184, 79, 0.42), rgba(194, 191, 206, 0.4)),
    var(--surface-strong);
}

.media-content {
  padding: 0.9rem;
}

.cta-strip {
  padding-top: 2.2rem;
}

.cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.cta-inline-actions {
  margin-top: 0.8rem;
}

.site-footer {
  margin-top: 1.6rem;
  background: var(--brand-night);
  color: #f7e8cf;
  padding: 2rem 0 1.4rem;
}

.site-footer h3 {
  color: #ffd680;
}

.site-footer p,
.site-footer a,
.site-footer small {
  color: #f7e8cf;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-bottom {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(247, 232, 207, 0.2);
  padding-top: 1rem;
}

.menu-category {
  border-top: 2px solid var(--border);
  padding-top: 1rem;
}

.event-card {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

.event-meta {
  min-width: 220px;
}

.error-screen {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.error-card {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  width: min(560px, 100%);
}

.error-status {
  margin: 0;
  color: var(--brand-red);
  font-weight: 700;
}

.alert {
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}

.alert-success {
  background: #e5f7ec;
  border-color: #b4e4c7;
  color: #145e34;
}

.alert-error {
  background: #fde9e5;
  border-color: #f8c0b8;
  color: #7f1f14;
}

.subtle {
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: transform 380ms ease, opacity 380ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.admin-auth-body {
  background: radial-gradient(circle at 20% 15%, rgba(216, 184, 79, 0.25), transparent 40%),
    radial-gradient(circle at 75% 10%, rgba(63, 98, 143, 0.16), transparent 35%),
    var(--surface-strong);
}

.admin-auth-shell {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.admin-auth-card {
  width: min(560px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.stacked-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.admin-body {
  background: linear-gradient(180deg, #e6d4b5 0%, #d8c39e 100%);
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(240, 232, 217, 0.92);
  backdrop-filter: blur(8px);
}

.admin-topbar-inner {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.admin-topbar-actions {
  display: flex;
  gap: 0.7rem;
}

.admin-main {
  padding: 1.2rem 0 2.2rem;
  display: grid;
  gap: 1.2rem;
}

.admin-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.admin-grid {
  display: grid;
  gap: 0.85rem;
}

.admin-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-grid .full-width {
  grid-column: 1 / -1;
}

.section-divider {
  border-top: 1px dashed var(--border);
  margin-top: 0.35rem;
  padding-top: 0.85rem;
}

.section-divider h3 {
  margin: 0 0 0.2rem;
}

.section-divider p {
  margin: 0;
}

.field-note {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.upload-widget {
  display: grid;
  gap: 0.55rem;
}

.upload-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.upload-dropzone {
  border: 2px dashed #d2b27e;
  border-radius: 12px;
  padding: 0.85rem;
  background: #fffdf7;
  display: grid;
  gap: 0.4rem;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.upload-dropzone.is-dragover {
  border-color: var(--brand-red);
  background: #fff4e6;
}

.upload-dropzone input[type="file"] {
  width: 100%;
  min-height: 44px;
}

.drop-title {
  margin: 0;
  color: var(--brand-night);
  font-size: 0.92rem;
  font-weight: 600;
}

.upload-preview {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.6rem;
  background: #fff;
}

.upload-preview-canvas {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
  background: #f8f3e8;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.checkbox-row input {
  width: auto;
  margin: 0;
}

.image-preview-wrap {
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 0.55rem;
  background: #fffdf7;
}

.menu-admin-preview {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  font: inherit;
  border: 1px solid #d7bf96;
  border-radius: 10px;
  padding: 0.58rem 0.65rem;
  background: #fff;
  color: var(--text);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(197, 67, 30, 0.32);
  outline-offset: 0;
  border-color: rgba(197, 67, 30, 0.52);
}

.admin-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.admin-item,
.admin-item-block {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.admin-item {
  padding: 0.55rem;
}

.admin-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.admin-item summary::-webkit-details-marker {
  display: none;
}

.admin-item summary span {
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-item[open] summary {
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 0.7rem;
}

.admin-form-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.admin-delete-form {
  margin-top: 0.7rem;
}

.admin-item-block {
  padding: 0.8rem;
}

.admin-item-block h3 {
  margin-bottom: 0.65rem;
}

.catering-details-grid p {
  margin: 0;
}

@media (max-width: 1024px) {
  .three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .instagram-widget-wrap iframe {
    min-height: 520px;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-gallery-card {
    grid-template-columns: 1fr 1fr;
  }

  .hero-gallery-main,
  .hero-gallery-side {
    min-height: 128px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, calc(100vw - 1.1rem));
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 6px);
    right: 0.6rem;
    left: 0.6rem;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .link-button {
    padding: 0.35rem 0;
    font-size: 1rem;
  }

  .section {
    padding: 2.8rem 0;
  }

  .two-col,
  .three-col,
  .media-grid,
  .footer-grid,
  .admin-grid.two-col {
    grid-template-columns: 1fr;
  }

  .instagram-widget-wrap iframe {
    min-height: 460px;
  }

  .event-card {
    flex-direction: column;
  }

  .event-meta {
    min-width: 0;
  }

  .admin-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 0;
  }

  .admin-topbar-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .button,
  .button-outline {
    width: auto;
  }

  input,
  textarea,
  select,
  button {
    font-size: 16px;
  }

  .hero-brandline {
    width: 100%;
    border-radius: 14px;
  }

  .hero-gallery-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0.5rem;
  }

  .hero-gallery-main {
    grid-row: auto;
    min-height: 168px;
  }

  .hero-gallery-side {
    display: none;
  }

  .hero-content h1 {
    font-size: clamp(1.95rem, 10.5vw, 2.7rem);
  }

  .home-page .section-head h2,
  .menu-page .menu-category h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .menu-page .menu-item-body h3 {
    font-size: 1.25rem;
  }

  .hero-brand-note {
    font-size: 0.8rem;
  }
}
