:root {
  --burgundy: #6b151b;
  --dark-burgundy: #421014;
  --cream: #f7f0e5;
  --beige: #e9d8be;
  --charcoal: #252525;
  --white: #fffaf2;
  --gold: #d99c3b;
  --green: #44623d;
  --shadow: 0 18px 50px rgba(66, 16, 20, .14);
  --radius: 20px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 20% 10%, rgba(233, 216, 190, .55), transparent 28rem),
    linear-gradient(180deg, var(--cream), #fff8ee 45%, var(--cream));
  font-family: "Inter", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .22;
  background-image:
    linear-gradient(90deg, rgba(107, 21, 27, .06) 1px, transparent 1px),
    linear-gradient(rgba(107, 21, 27, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--dark-burgundy);
  color: var(--cream);
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 240, 229, .93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(107, 21, 27, .14);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--dark-burgundy);
}

.brand img {
  width: 58px;
  height: 58px;
}

.brand span {
  font-size: clamp(.82rem, 1vw, .98rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--dark-burgundy);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(107, 21, 27, .11);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(107, 21, 27, .22);
  border-radius: 999px;
  background: var(--white);
  color: var(--dark-burgundy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(217, 156, 59, .8);
  outline-offset: 3px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(66, 16, 20, .18);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

.btn-light .btn-icon,
.btn-secondary .btn-icon {
  filter: brightness(0) saturate(100%) invert(12%) sepia(34%) saturate(2399%) hue-rotate(325deg) brightness(88%) contrast(100%);
}

.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
}

.btn-secondary {
  background: var(--cream);
  color: var(--dark-burgundy);
  border: 1px solid rgba(107, 21, 27, .2);
}

.btn-light {
  background: var(--white);
  color: var(--burgundy);
}

.section {
  padding: clamp(54px, 8vw, 100px) 0;
}

.section-alt {
  background: rgba(255, 250, 242, .7);
  border-block: 1px solid rgba(107, 21, 27, .09);
}

.section-dark {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(66, 16, 20, .97), rgba(107, 21, 27, .94)),
    var(--dark-burgundy);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", "DM Serif Display", Georgia, serif;
  line-height: 1.02;
  color: var(--dark-burgundy);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--cream);
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  max-width: 720px;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 630px;
  margin-top: 16px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(37, 37, 37, .78);
}

.section-dark .lead,
.section-dark p {
  color: rgba(247, 240, 229, .84);
}

.hero {
  min-height: calc(100dvh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(34px, 6vw, 72px) 0;
  background:
    radial-gradient(circle at 76% 34%, rgba(217, 156, 59, .16), transparent 22rem),
    linear-gradient(90deg, rgba(255, 250, 242, .55), rgba(233, 216, 190, .2));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .92fr);
  align-items: center;
  gap: clamp(30px, 4vw, 56px);
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 132px;
  height: 6px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  border-radius: 999px;
}

.hero-kicker,
.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 13px;
  border: 1px solid rgba(107, 21, 27, .18);
  border-radius: 999px;
  background: rgba(255, 250, 242, .78);
  color: var(--burgundy);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hours-line {
  margin-top: 16px;
  font-weight: 800;
  color: var(--dark-burgundy);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
  max-width: 680px;
}

.hero-meta span {
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(107, 21, 27, .14);
  border-radius: 18px;
  background: rgba(255, 250, 242, .72);
  color: rgba(37, 37, 37, .74);
  font-size: .88rem;
  box-shadow: 0 10px 28px rgba(66, 16, 20, .06);
}

.hero-meta strong {
  display: block;
  color: var(--dark-burgundy);
  font-size: .95rem;
  line-height: 1.2;
}

.hero-photo,
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-photo {
  min-height: clamp(410px, 55vw, 660px);
  border: 12px solid rgba(255, 250, 242, .78);
  background: var(--dark-burgundy);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 1;
  border: 1px solid rgba(247, 240, 229, .28);
  border-radius: 20px;
  pointer-events: none;
}

.hero-photo img {
  position: absolute;
  inset: 0;
}

.hero h1 {
  font-size: clamp(3.25rem, 4.35vw, 4.45rem);
  letter-spacing: 0;
}

.hero h1 .line {
  display: block;
}

.hero-photo img,
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.hero-photo:hover img,
.image-frame:hover img {
  transform: scale(1.035);
}

.hero-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 300px;
  padding: 18px 20px;
  border: 1px solid rgba(107, 21, 27, .14);
  border-radius: 20px;
  background: rgba(247, 240, 229, .96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.hero-card strong {
  display: block;
  color: var(--burgundy);
  font-size: 1.8rem;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.feature-grid,
.community-grid,
.future-grid,
.contact-grid,
.delivery-grid,
.pillars-grid {
  display: grid;
  gap: 18px;
}

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

.card,
.feature-card,
.menu-card,
.contact-card,
.hours-card,
.delivery-card,
.pillar-card {
  border: 1px solid rgba(107, 21, 27, .13);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .82);
  box-shadow: 0 12px 34px rgba(66, 16, 20, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature-card,
.pillar-card {
  padding: 24px;
}

.feature-card:hover,
.menu-card:hover,
.contact-card:hover,
.delivery-card:hover,
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(107, 21, 27, .28);
}

.section-dark .feature-card {
  background: rgba(247, 240, 229, .09);
  border-color: rgba(247, 240, 229, .18);
}

.section-dark .feature-card p {
  color: rgba(247, 240, 229, .78);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--burgundy);
  color: var(--cream);
  font-weight: 950;
}

.bestseller {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.price {
  display: inline-flex;
  margin: 20px 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--gold);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
}

.ingredient-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.ingredient-list li,
.community-chip {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(247, 240, 229, .12);
  border: 1px solid rgba(247, 240, 229, .22);
  color: var(--cream);
  font-weight: 800;
}

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

.menu-card {
  padding: 22px;
}

.menu-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(107, 21, 27, .96), rgba(66, 16, 20, .98));
  color: var(--cream);
  border-color: rgba(233, 216, 190, .35);
}

.menu-card.featured h3,
.menu-card.featured .menu-price {
  color: var(--cream);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.menu-price {
  color: var(--burgundy);
  font-size: 1.35rem;
  font-weight: 950;
  white-space: nowrap;
}

.menu-desc {
  margin-top: 8px;
  color: rgba(37, 37, 37, .72);
}

.menu-card.featured .menu-desc {
  color: rgba(247, 240, 229, .82);
}

.menu-card .btn {
  width: 100%;
  margin-top: 18px;
}

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

.community-chip {
  background: rgba(107, 21, 27, .08);
  border-color: rgba(107, 21, 27, .15);
  color: var(--dark-burgundy);
  text-align: center;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 78px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(107, 21, 27, .96), rgba(66, 16, 20, .96)),
    var(--burgundy);
  color: var(--cream);
}

.cta-band h2,
.cta-band h3 {
  color: var(--cream);
}

.cta-band p,
.cta-band .lead {
  color: rgba(247, 240, 229, .88);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(247, 240, 229, .18);
  border-radius: 50%;
}

.page-hero {
  min-height: clamp(330px, 42vw, 520px);
  display: grid;
  align-items: end;
  padding: clamp(70px, 10vw, 118px) 0 clamp(42px, 7vw, 78px);
  background:
    linear-gradient(135deg, rgba(66, 16, 20, .94), rgba(107, 21, 27, .86));
  color: var(--cream);
}

.page-hero .container {
  max-width: 980px;
  margin-inline: auto auto;
  position: relative;
}

.page-hero .container::before {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--beige), var(--gold));
}

.page-hero h1 {
  max-width: 780px;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .38);
}

.page-hero .lead {
  max-width: 560px;
  color: rgba(247, 240, 229, .9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .32);
}

.page-hero-kicker {
  border-color: rgba(247, 240, 229, .24);
  background: rgba(66, 16, 20, .56);
  color: var(--beige);
}

.page-hero-menu {
  background:
    linear-gradient(135deg, rgba(66, 16, 20, .92), rgba(107, 21, 27, .72)),
    url("images/menu-hero-spread.jpg") center / cover;
}

.page-hero-about {
  background:
    linear-gradient(135deg, rgba(66, 16, 20, .90), rgba(107, 21, 27, .64)),
    url("images/about-hero-community.jpg") center / cover;
}

.page-hero-contact {
  background:
    linear-gradient(135deg, rgba(66, 16, 20, .92), rgba(107, 21, 27, .68)),
    url("images/contact-hero-order.jpg") center / cover;
}

.page-hero h1,
.page-hero p {
  color: var(--cream);
}

.menu-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.menu-category {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 250, 242, .88);
  border: 1px solid rgba(107, 21, 27, .13);
}

.menu-category.section-dark {
  background:
    linear-gradient(135deg, rgba(107, 21, 27, .96), rgba(66, 16, 20, .98));
  border-color: rgba(233, 216, 190, .35);
}

.menu-category.section-dark .price,
.menu-category.section-dark .menu-price {
  color: var(--gold);
}

.menu-category h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

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

.menu-note {
  margin-top: 28px;
  padding: 18px;
  border-left: 5px solid var(--burgundy);
  background: rgba(255, 250, 242, .75);
  border-radius: 0 16px 16px 0;
  font-weight: 700;
}

.story-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.story-panel {
  padding: 28px;
  border-radius: 24px;
  background: var(--dark-burgundy);
  color: var(--cream);
  position: sticky;
  top: 100px;
}

.story-panel h2 {
  color: var(--cream);
}

.story-panel p,
.story-panel .lead {
  color: rgba(247, 240, 229, .86);
}

.section-dark a:not(.btn),
.cta-band a:not(.btn),
.story-panel a:not(.btn),
.map-card a:not(.btn),
.site-footer a {
  color: var(--cream);
}

.story-text {
  display: grid;
  gap: 18px;
}

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

.vision-mission {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
}

.mission-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.mission-list li {
  margin-bottom: 10px;
}

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

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

.contact-card,
.hours-card,
.delivery-card {
  padding: 24px;
}

.contact-card strong {
  display: block;
  margin: 10px 0 14px;
  font-size: 1.28rem;
  color: var(--dark-burgundy);
}

.hours-list {
  display: grid;
  gap: 9px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(107, 21, 27, .12);
}

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

.split .delivery-grid {
  grid-template-columns: repeat(2, 1fr);
}

.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.payment-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(107, 21, 27, .09);
  font-weight: 850;
}

.order-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: start;
}

.order-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 250, 242, .88);
  border: 1px solid rgba(107, 21, 27, .13);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--dark-burgundy);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(107, 21, 27, .22);
  border-radius: 14px;
  background: #fffdfa;
  color: var(--charcoal);
  padding: 13px 14px;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--burgundy);
  font-weight: 800;
}

.map-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: var(--dark-burgundy);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.map-visual {
  position: relative;
  flex: 1;              /* fills all remaining height of .map-card */
  min-height: 420px;    /* floor, in case the row is short */
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: sepia(.5) saturate(1.4) hue-rotate(300deg) brightness(.9) contrast(1.05);
}

.map-pin {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 280px;
  padding: 18px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.map-pin address {
  font-style: normal;
  color: var(--charcoal);
  line-height: 1.4;
}

.map-pin .inline-actions {
  margin-top: 12px;
}

.btn-sm {
  min-height: 38px;
  padding: 9px 14px;
  font-size: .85rem;
}

/* color-matching wash on top of the filtered tiles, without blocking Google's controls */
.map-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(107, 21, 27, .38), rgba(66, 16, 20, .18) 55%, transparent);
  mix-blend-mode: multiply;
}

.map-pin {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 280px;
  text-align: left;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.site-footer {
  padding: 54px 0 28px;
  background: var(--dark-burgundy);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr .9fr;
  gap: 30px;
}

.footer-brand img {
  width: 84px;
  height: 84px;
  margin-bottom: 12px;
}

.footer-brand strong,
.footer-title {
  display: block;
  margin-bottom: 10px;
  color: var(--cream);
  font-weight: 950;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--beige);
}

.copyright {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 240, 229, .16);
  color: rgba(247, 240, 229, .72);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.copyright a {
  color: var(--cream);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  box-shadow: 0 16px 34px rgba(66, 16, 20, .25);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .bestseller,
  .story-grid,
  .vision-mission,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .menu-preview,
  .pillars-grid,
  .future-grid,
  .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .community-grid,
  .footer-grid,
  .menu-section-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.7rem);
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9vw, 2.4rem);
    line-height: 1.08;
  }

  .page-hero .lead {
    font-size: 1rem;
  }

  .hero h1 .line {
    white-space: normal;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .page-hero {
    overflow: hidden;
    min-height: 300px;
    padding-top: 56px;
  }

  .nav {
    min-height: 70px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand span {
    max-width: 130px;
    line-height: 1.15;
  }

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

  .nav-links {
    position: fixed;
    inset: 70px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid rgba(107, 21, 27, .14);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    min-height: 46px;
  }

  .nav-actions > .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-photo {
    min-height: 340px;
    border-width: 7px;
    border-radius: 22px;
  }

  .hero-card {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .feature-grid,
  .menu-preview,
  .community-grid,
  .footer-grid,
  .menu-section-grid,
  .contact-grid,
  .pillars-grid,
  .future-grid,
  .delivery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .menu-card.featured {
    grid-column: auto;
  }

  .cta-band {
    padding: 34px 22px;
    border-radius: 22px;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    bottom: 14px;
    width: calc(100% - 32px);
  }

  .floating-whatsapp .btn {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
