:root {
  --bg: #120d0c;
  --bg-soft: #1d1512;
  --surface: rgba(35, 26, 22, 0.74);
  --surface-strong: #281c17;
  --surface-premium: rgba(53, 34, 27, 0.82);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 214, 160, 0.18);
  --text: #f8f1e7;
  --muted: #c8b7a6;
  --gold: #e7c27a;
  --accent: #ffaf5e;
  --accent-strong: #ff7448;
  --success: #6fd5aa;
  --danger: #ff8b7c;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.24);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 175, 94, 0.24), transparent 22%),
    radial-gradient(circle at 90% 10%, rgba(255, 116, 72, 0.18), transparent 20%),
    radial-gradient(circle at 55% 40%, rgba(231, 194, 122, 0.08), transparent 30%),
    linear-gradient(180deg, #18110f 0%, #0f0a08 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 92%);
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 7rem;
}

.section {
  padding-top: 5rem;
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(45, 28, 22, 0.86), rgba(19, 13, 11, 0.72));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 172px;
  max-width: 42vw;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-copy small,
.hero-text,
.section-heading p,
.info-strip p,
.contact-items span,
.contact-form label,
.menu-card p,
.chatbot-header p,
.form-status,
.message--bot {
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  font-weight: 600;
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffe1b6;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  margin: 0.22rem auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
  min-height: calc(100vh - 7rem);
  isolation: isolate;
}

.eyebrow,
.chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 175, 94, 0.12);
  color: #ffd9ba;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.hero-card h2,
.section-heading h2,
.info-strip h3,
.contact-card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 0.98;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(3.2rem, 6vw, 6rem);
  max-width: 11ch;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  display: inline-block;
  margin: 1rem 0 0;
  padding: 0.55rem 0.9rem;
  max-width: 24ch;
  font-family: "Fraunces", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  line-height: 1.35;
  color: #f8d9ab;
  border: 1px solid rgba(231, 194, 122, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-shadow: 0 8px 28px rgba(255, 116, 72, 0.14);
}

.hero-text {
  max-width: 60ch;
  margin: 1.15rem 0 0;
  line-height: 1.8;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.7;
  animation: drift 9s ease-in-out infinite;
}

.hero-orb--one {
  top: 8%;
  right: 36%;
  width: 150px;
  height: 150px;
  background: rgba(231, 194, 122, 0.13);
}

.hero-orb--two {
  right: 3%;
  bottom: 14%;
  width: 120px;
  height: 120px;
  background: rgba(255, 116, 72, 0.12);
  animation-delay: -4s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1b120d;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.22), transparent 80%);
  transform: translateX(-130%);
  transition: transform 420ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(130%);
}

.hero-metrics,
.menu-grid,
.info-strip,
.contact-layout {
  display: grid;
  gap: 1rem;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.hero-metrics article,
.hero-card__content,
.info-strip article,
.menu-card,
.contact-card,
.contact-form,
.chatbot-panel,
.map-card,
.site-footer {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-metrics article {
  padding: 1rem 1.15rem;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.hero-metrics strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  min-height: 540px;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-card::before {
  inset: auto 0 2rem auto;
  width: 170px;
  height: 170px;
  background: rgba(255, 175, 94, 0.2);
}

.hero-card::after {
  inset: 1rem auto auto 1rem;
  width: 120px;
  height: 120px;
  background: rgba(255, 116, 72, 0.18);
}

.hero-card__content {
  position: absolute;
  inset: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(16, 10, 8, 0.12), rgba(16, 10, 8, 0.82)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.hero-card h2 {
  margin-top: 1rem;
  font-size: 2.7rem;
  max-width: 11ch;
}

.hero-card p,
.feature-list {
  line-height: 1.75;
}

.feature-list {
  padding-left: 1rem;
  margin: 1rem 0 0;
}

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

.info-strip article,
.menu-card,
.contact-card,
.contact-form {
  padding: 1.4rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.info-strip span {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.info-strip h3,
.contact-card h3 {
  margin-top: 0.9rem;
  font-size: 2rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading::after {
  content: "";
  display: block;
  width: 88px;
  height: 1px;
  margin-top: 1.15rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.section-heading p:last-child {
  margin-top: 1rem;
  line-height: 1.8;
}

.menu-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.menu-filter {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(231, 194, 122, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.menu-filter:hover,
.menu-filter.is-active {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(141, 31, 51, 0.9), rgba(191, 76, 67, 0.72));
  border-color: rgba(231, 194, 122, 0.28);
}

.menu-cart {
  min-width: 140px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(231, 194, 122, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-align: right;
}

.menu-cart strong,
.menu-cart span,
.menu-cart small {
  display: block;
}

.menu-cart span,
.menu-cart small {
  color: var(--muted);
}

.menu-status {
  margin-bottom: 1rem;
  color: var(--muted);
}

.menu-status--success {
  color: var(--gold);
}

.menu-status--error {
  color: var(--danger);
}

.menu-container {
  display: grid;
  gap: 2rem;
}

.menu-category {
  display: grid;
  gap: 1rem;
}

.menu-category__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(231, 194, 122, 0.16);
}

.menu-category__title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

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

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

.menu-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  background:
    radial-gradient(circle at top right, rgba(231, 194, 122, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    var(--surface);
}

.menu-card__image-wrap {
  position: relative;
  overflow: hidden;
  margin: -1.4rem -1.4rem 1rem;
  border-radius: 24px 24px 16px 16px;
  height: 190px;
}

.menu-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.26));
}

.menu-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.menu-card__type {
  color: #ffd9ba;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.45rem;
}

.menu-card strong {
  font-size: 1.1rem;
  color: #ffe5cf;
}

.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
}

.menu-card__button {
  min-height: 2.9rem;
  padding-inline: 1rem;
}

.contact-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-items p {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.contact-items p:last-child {
  border-bottom: 0;
}

.contact-items a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 175, 94, 0.55);
  text-underline-offset: 0.18rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.map-card {
  padding: 1.4rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.map-card__header p {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
}

.map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.chatbot-input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.chatbot-input:focus {
  border-color: rgba(255, 175, 94, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 175, 94, 0.12);
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.chatbot {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 30;
}

.floating-contact {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 29;
  display: grid;
  gap: 0.7rem;
}

.floating-contact__button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.7rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--text);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-contact__button:hover,
.floating-contact__button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-contact__button--call {
  background: linear-gradient(135deg, #8d1f33, #bf4c43);
}

.floating-contact__button--whatsapp {
  background: linear-gradient(135deg, #1f7a4f, #29a86d);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding: 1.25rem 1.4rem;
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__links a {
  color: var(--muted);
  font-weight: 600;
}

.chatbot-toggle,
.chatbot-close,
.chatbot-form button,
.chatbot-suggestion {
  border: 0;
  cursor: pointer;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 4.75rem;
  min-height: 4.75rem;
  padding: 1rem 1.2rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1b120d;
  box-shadow: 0 18px 44px rgba(255, 116, 72, 0.34);
  font-weight: 800;
  animation: pulseGlow 3.4s ease-in-out infinite;
}

.chatbot-toggle__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(27, 18, 13, 0.12);
  font-size: 1rem;
}

.chatbot-toggle__label {
  white-space: nowrap;
}

.chatbot-panel {
  width: min(370px, calc(100vw - 1.5rem));
  margin-bottom: 0.8rem;
  padding: 1rem;
  border-radius: 30px;
  animation: chatbot-pop 220ms ease;
}

.chatbot-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.chatbot-close {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.2rem;
}

.chatbot-messages {
  display: grid;
  gap: 0.75rem;
  max-height: 300px;
  margin: 1rem 0;
  padding-right: 0.25rem;
  overflow-y: auto;
}

.message {
  max-width: 85%;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  line-height: 1.6;
  animation: messageRise 240ms ease;
}

.message--bot {
  background: rgba(255, 255, 255, 0.06);
}

.message--user {
  justify-self: end;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1b120d;
  font-weight: 700;
}

.message--error {
  background: rgba(255, 139, 124, 0.14);
  color: #ffd6ce;
}

.message__meta {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.chatbot-suggestions {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  overflow-x: auto;
}

.chatbot-suggestion {
  flex: 0 0 auto;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  white-space: nowrap;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

.chatbot-form button {
  min-width: 5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1b120d;
  font-weight: 800;
}

.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.typing-indicator span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  animation: typing-bounce 900ms infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 120ms;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 240ms;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

.hero-metrics article:hover,
.info-strip article:hover,
.menu-card:hover,
.contact-card:hover,
.contact-form:hover,
.map-card:hover,
.site-footer:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 194, 122, 0.22);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.menu-card:hover .menu-card__image {
  transform: scale(1.06);
}

.menu-empty-state {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.menu-loading-spinner {
  width: 56px;
  height: 56px;
  margin: 2rem auto;
  border: 3px solid rgba(231, 194, 122, 0.14);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

@keyframes typing-bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  40% {
    transform: translateY(-0.22rem);
    opacity: 1;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -12px, 0) scale(1.06);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 18px 44px rgba(255, 116, 72, 0.28);
  }

  50% {
    box-shadow: 0 22px 54px rgba(255, 175, 94, 0.44);
  }
}

@keyframes messageRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes chatbot-pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

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

@media (max-width: 980px) {
  .hero,
  .info-strip,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .menu-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-cart {
    text-align: left;
  }

  .menu-category__header {
    flex-direction: column;
    align-items: start;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    min-height: 420px;
  }

  .site-footer {
    display: grid;
    justify-content: stretch;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-wrap: wrap;
    align-items: start;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 0.5rem;
  }

  .topbar.menu-open .nav-links {
    display: flex;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 10vw, 4.3rem);
  }

  .hero-tagline {
    max-width: none;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: 136px;
    max-width: 48vw;
  }

  .hero-metrics,
  .menu-category__grid {
    grid-template-columns: 1fr;
  }

  .chatbot {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-contact {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .chatbot-toggle {
    min-width: auto;
    padding-inline: 1rem;
  }
}
