:root {
  --black: #080808;
  --black-soft: #10100f;
  --panel: #151412;
  --bronze: #b8834c;
  --bronze-light: #d3a46d;
  --cream: #f4eee5;
  --muted: #b7afa4;
  --line: rgba(211, 164, 109, 0.34);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(42px) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(.2,.7,.2,1) var(--delay, 0ms),
    transform 760ms cubic-bezier(.2,.7,.2,1) var(--delay, 0ms),
    filter 760ms ease var(--delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal-left { transform: translateX(-54px) scale(0.985); }
.reveal-right { transform: translateX(54px) scale(0.985); }
.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0) scale(1);
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(211, 164, 109, 0.14), var(--shadow); }
  50% { box-shadow: 0 0 0 9px rgba(211, 164, 109, 0), var(--shadow); }
}
@keyframes liveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.72); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 5vw;
  background: rgba(8, 8, 8, 0.78);
  border-bottom: 1px solid rgba(211, 164, 109, 0.16);
  backdrop-filter: blur(16px);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(8, 8, 8, 0.94);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo-wrap {
  width: 48px;
  height: 48px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(211, 164, 109, 0.45);
  border-radius: 50%;
  background: #0d0d0d;
  box-shadow: 0 0 0 4px rgba(211, 164, 109, 0.08);
}
.brand-logo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.brand-text small {
  margin-top: 5px;
  color: var(--bronze-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.header-actions { display: flex; align-items: center; gap: 26px; }
.hours-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(211,164,109,.24);
  border-radius: 999px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.hours-badge:hover {
  transform: translateY(-1px);
  background: rgba(184,131,76,.08);
  border-color: var(--bronze-light);
}
.hours-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #69d485;
  box-shadow: 0 0 0 5px rgba(105,212,133,.10);
  animation: liveDot 1.8s ease-in-out infinite;
}
.hours-copy { display: flex; flex-direction: column; line-height: 1.05; }
.hours-copy small { color: var(--muted); font-size: .58rem; font-weight: 800; letter-spacing: .1em; }
.hours-copy strong { margin-top: 4px; font-size: .82rem; letter-spacing: .04em; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a {
  position: relative;
  color: #ded7ce;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--bronze-light);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.main-nav a:hover { color: var(--bronze-light); }
.main-nav a:hover::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--cream); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: 6vw;
  min-height: 100vh;
  padding: 130px 8vw 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(8,8,8,.98) 0%, rgba(8,8,8,.9) 45%, rgba(8,8,8,.68) 100%),
    url("assets/background-sign.jpg") center/cover no-repeat;
  content: "";
  filter: saturate(.65);
}
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, transparent 68%, var(--black) 100%);
  content: "";
}
.hero-glow {
  position: absolute;
  top: 16%;
  right: 9%;
  z-index: -1;
  width: 420px;
  height: 420px;
  background: rgba(184,131,76,.18);
  border-radius: 50%;
  filter: blur(100px);
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--bronze-light);
  font-family: "Oswald", sans-serif;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.story-copy h2,
.delivery-panel-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  line-height: .98;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.hero h1 { max-width: 800px; font-size: clamp(4rem, 8.6vw, 8rem); }
.hero h1 span { color: var(--bronze-light); }
.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: #d4ccc1;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}
.hero-motto,
.card-motto { color: var(--bronze-light); letter-spacing: .12em; font-weight: 700; }
.hero-motto { margin: 16px 0 0; font-size: .95rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--black); background: var(--bronze-light); }
.button-primary:hover { background: #e0b580; }
.button-ghost { border-color: rgba(244,238,229,.4); background: rgba(8,8,8,.34); }
.button-ghost:hover { border-color: var(--bronze-light); }
.hero-info-row {
  display: grid;
  grid-template-columns: 220px minmax(240px, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.mini-info-card,
.delivery-card {
  padding: 17px 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(211,164,109,.22);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.mini-info-card:hover,
.delivery-card:hover {
  transform: translateY(-3px);
  background: rgba(184,131,76,.08);
  border-color: var(--bronze-light);
}
.mini-info-card span,
.delivery-card span {
  display: block;
  color: var(--bronze-light);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mini-info-card strong,
.delivery-card strong { display: block; margin-top: 5px; font-size: 1.05rem; }
.mini-info-card small,
.delivery-card small { color: var(--muted); font-size: .76rem; }
.hero-media-card {
  width: min(360px, 100%);
  margin-inline: auto;
  justify-self: center;
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  animation: floatSoft 5s ease-in-out infinite;
}
.hero-media-card img {
  width: 100%;
  aspect-ratio: 704 / 1160;
  object-fit: cover;
  object-position: center 42%;
}

.section-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.services { padding: 95px 0 120px; }
.section-heading { max-width: 820px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.story-copy h2,
.delivery-panel-copy h2,
.contact-copy h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.section-heading > p:last-child,
.contact-intro,
.showcase-copy p,
.story-copy p:not(.eyebrow):not(.motto),
.delivery-panel-copy > p:last-of-type { color: var(--muted); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 52px;
}
.service-card {
  position: relative;
  min-height: 190px;
  padding: 25px;
  overflow: hidden;
  background: linear-gradient(145deg, #181715, #0f0f0e);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 220ms ease, border-color 220ms ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--bronze-light); }
.service-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  background: rgba(184,131,76,.12);
  border-radius: 50%;
  content: "";
}
.service-card span { color: var(--bronze-light); font-size: .78rem; font-weight: 700; }
.service-card h3 {
  position: absolute;
  bottom: 22px;
  left: 25px;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.showcase { padding: 20px 0 110px; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 46px;
}
.showcase-card {
  overflow: hidden;
  background: linear-gradient(145deg, #181715, #0f0f0e);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease;
}
.showcase-card:hover { transform: translateY(-6px); border-color: var(--bronze-light); }
.showcase-card-wide { grid-column: 1 / -1; }
.showcase-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.showcase-card-wide img { aspect-ratio: 16 / 7; }
.showcase-copy { padding: 20px 22px 24px; }
.showcase-copy span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--bronze-light);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.showcase-copy h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.showcase-copy p { margin: 12px 0 0; }
.story {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(0,1fr);
  align-items: center;
  gap: 7vw;
  padding: 40px 0 130px;
}
.story-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.story-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.story-copy p:not(.eyebrow):not(.motto) { margin-top: 27px; font-size: 1.05rem; }
.motto { margin: 34px 0 0; color: var(--bronze-light); font-size: clamp(1rem,2vw,1.25rem); }
.menu-section { padding: 95px 0 125px; }
.menu-image {
  display: block;
  width: min(780px,100%);
  margin: 50px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  transition: transform 200ms ease, border-color 200ms ease;
}
.menu-image:hover { border-color: var(--bronze-light); transform: translateY(-5px); }

.delivery-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(211,164,109,.18), transparent 32%),
    linear-gradient(180deg, #0a0a09, #11100f);
  border-top: 1px solid rgba(211,164,109,.12);
  border-bottom: 1px solid rgba(211,164,109,.12);
}
.delivery-panel {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(360px,.9fr);
  gap: 60px;
  align-items: center;
  padding: clamp(28px,5vw,58px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(30,27,23,.96), rgba(10,10,10,.98));
  border: 1px solid rgba(211,164,109,.28);
  border-radius: 32px;
  box-shadow: var(--shadow);
  animation: pulseRing 4s ease-in-out infinite;
}
.delivery-panel-copy > p:last-of-type { max-width: 680px; margin: 24px 0 0; }
.delivery-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 32px; }
.efood-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 18px 8px 10px;
  color: var(--cream);
  background: linear-gradient(145deg, rgba(28,24,20,.98), rgba(10,10,10,.98));
  border: 1px solid rgba(211,164,109,.42);
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.efood-button:hover {
  transform: translateY(-3px);
  border-color: var(--bronze-light);
  background: linear-gradient(145deg, rgba(39,31,24,.98), rgba(13,13,12,.98));
}
.efood-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--black);
  background: var(--bronze-light);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 900;
}
.efood-button strong,
.efood-button small { display: block; line-height: 1.1; }
.efood-button strong { font-size: 1rem; }
.efood-button small { margin-top: 4px; font-size: .68rem; font-weight: 700; }
.delivery-details { display: grid; gap: 14px; }
.delivery-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(211,164,109,.2);
  border-radius: 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.delivery-detail-card:hover {
  transform: translateX(5px);
  background: rgba(184,131,76,.07);
  border-color: var(--bronze-light);
}
.detail-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--bronze-light);
  background: rgba(211,164,109,.1);
  border-radius: 14px;
}
.detail-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.delivery-detail-card small { color: var(--bronze-light); font-size: .67rem; font-weight: 800; letter-spacing: .12em; }
.delivery-detail-card strong { display: block; margin-top: 4px; font-size: 1.1rem; }
.delivery-detail-card p { margin: 3px 0 0; color: var(--muted); font-size: .84rem; }

.contact-section {
  padding: 110px 0;
  background: radial-gradient(circle at 15% 25%, rgba(184,131,76,.12), transparent 33%), var(--black-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(380px,1.08fr);
  align-items: start;
  gap: 70px;
}
.social-spotlight { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-top: 30px; }
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(211,164,109,.23);
  border-radius: 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.social-card:hover { transform: translateY(-3px); border-color: var(--bronze-light); background: rgba(184,131,76,.08); }
.social-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(211,164,109,.12);
  color: var(--bronze-light);
  font-size: 1.3rem;
  font-weight: 800;
}
.social-card strong,
.social-card small { display: block; }
.social-card small { color: var(--muted); }
.business-card {
  margin-top: 22px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(17,17,17,.98), rgba(26,22,18,.98));
  border: 1px solid rgba(211,164,109,.28);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.business-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.mini-logo-wrap {
  width: 70px;
  height: 70px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(211,164,109,.42);
  border-radius: 50%;
  background: #0d0d0d;
}
.mini-logo-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.business-card-header h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  letter-spacing: .12em;
}
.business-card-header p { margin: 2px 0 0; color: var(--bronze-light); font-size: .88rem; letter-spacing: .22em; }
.contact-list { display: grid; gap: 12px; }
.business-card-links a,
.hours-row {
  padding: 18px 20px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(211,164,109,.23);
  border-radius: 14px;
  transition: border-color 180ms ease, background 180ms ease;
}
.business-card-links a:hover { background: rgba(184,131,76,.08); border-color: var(--bronze-light); }
.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--bronze-light);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.card-motto { margin-top: 20px; text-align: center; font-size: .92rem; }
.map-wrap {
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 650px; }

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.floating-action {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px 0 13px;
  color: var(--cream);
  background: linear-gradient(145deg, rgba(27,23,19,.96), rgba(9,9,9,.96));
  border: 1px solid rgba(211,164,109,.38);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.floating-action:hover {
  transform: translateX(-5px);
  border-color: var(--bronze-light);
  background: linear-gradient(145deg, rgba(39,31,24,.98), rgba(13,13,12,.98));
}
.floating-action svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--bronze-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-action .fill-dot { fill: var(--bronze-light); stroke: none; }
.floating-action span { font-size: .76rem; font-weight: 800; letter-spacing: .04em; }
.floating-call,
.floating-instagram,
.floating-efood {
  color: var(--cream);
  background: linear-gradient(145deg, rgba(27,23,19,.96), rgba(9,9,9,.96));
}
.floating-efood-mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--black);
  background: var(--bronze-light);
  border-radius: 50%;
  font-size: 1rem !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 6vw;
  color: var(--muted);
  background: #050505;
  border-top: 1px solid rgba(211,164,109,.16);
  font-size: .78rem;
}
.site-footer div { display: flex; align-items: baseline; gap: 10px; }
.site-footer strong { color: var(--cream); font-family: "Oswald", sans-serif; font-size: 1.2rem; letter-spacing: .1em; }
.site-footer span { color: var(--bronze-light); letter-spacing: .09em; }

@media (max-width: 1120px) {
  .hours-badge { display: none; }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
    min-height: auto;
    padding-top: 150px;
  }
  .hero-content { text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-info-row { grid-template-columns: 1fr; width: min(580px,100%); margin-inline: auto; }
  .hero-media-card { width: min(350px,84vw); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .service-card:last-child { grid-column: 1 / -1; }
  .showcase-grid,
  .story,
  .delivery-panel,
  .contact-grid { grid-template-columns: 1fr; }
  .story-image,
  .map-wrap { width: min(620px,100%); margin-inline: auto; }
  .story-copy { text-align: center; }
  .map-wrap,
  .map-wrap iframe { min-height: 480px; height: 480px; }
}

@media (max-width: 760px) {
  .site-header { min-height: 70px; padding-inline: 20px; }
  .brand-logo-wrap { width: 42px; height: 42px; }
  .brand-text strong { font-size: 1.08rem; }
  .brand-text small { font-size: .58rem; }
  .header-actions { gap: 10px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: #10100f;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 15px; }
  .main-nav a::after { display: none; }
  .hero { padding-inline: 20px; }
  .hero h1 { font-size: clamp(3.25rem,17vw,5rem); }
  .services,
  .menu-section,
  .delivery-section,
  .contact-section { padding-block: 80px; }
  .showcase { padding-bottom: 80px; }
  .story { padding-bottom: 90px; }
  .service-grid,
  .social-spotlight { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .delivery-panel { gap: 38px; border-radius: 24px; }
  .delivery-actions { flex-direction: column; align-items: stretch; }
  .efood-button { justify-content: center; }
  .contact-grid { gap: 44px; }
  .floating-actions { right: 12px; bottom: 12px; gap: 8px; }
  .floating-action { min-width: 48px; min-height: 48px; padding: 0; justify-content: center; }
  .floating-action > span:not(.floating-efood-mark) { display: none; }
  .floating-efood-mark { display: grid !important; }
  .site-footer { flex-direction: column; align-items: flex-start; padding-bottom: 82px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-media-card { width: min(300px,88vw); }
  .business-card { padding: 20px; }
  .business-card-header { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* v8: cleaner hierarchy and mobile-first refinements */
.hero-content {
  max-width: 760px;
}

.delivery-panel {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 44px;
  animation: none;
}

.delivery-panel-copy > p:last-of-type {
  max-width: 600px;
  margin-top: 18px;
}

.delivery-actions {
  margin-top: 26px;
}

.delivery-compact {
  display: grid;
  gap: 12px;
}

.delivery-compact-item {
  padding: 18px 20px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(211, 164, 109, .2);
  border-radius: 16px;
}

.delivery-compact-item span,
.delivery-compact-item strong,
.delivery-compact-item small {
  display: block;
}

.delivery-compact-item span {
  color: var(--bronze-light);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.delivery-compact-item strong {
  margin-top: 5px;
  font-size: 1.05rem;
}

.delivery-compact-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .78rem;
}

@media (max-width: 980px) {
  .delivery-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 82px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 118px 20px 62px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, .75) 0%, rgba(8, 8, 8, .84) 55%, rgba(8, 8, 8, .98) 100%),
      url("assets/background-sign.jpg") 50% 27% / cover no-repeat;
    filter: saturate(.62);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.55rem);
    line-height: .92;
  }

  .hero-copy {
    max-width: 410px;
    margin-top: 20px;
    font-size: .98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button {
    min-height: 50px;
    padding-inline: 12px;
    font-size: .75rem;
  }

  .hero-media-card {
    display: none;
  }

  .delivery-section {
    padding-block: 72px;
  }

  .delivery-panel {
    gap: 24px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .delivery-panel-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .delivery-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .delivery-actions .button,
  .efood-button {
    width: 100%;
    min-height: 52px;
  }

  .delivery-compact {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .delivery-compact-item {
    padding: 15px;
  }

  .floating-actions {
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    background: rgba(8, 8, 8, .9);
    border: 1px solid rgba(211, 164, 109, .24);
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .42);
    backdrop-filter: blur(14px);
  }

  .floating-action {
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    min-height: 56px;
    padding: 7px 4px;
    border-radius: 13px;
    box-shadow: none;
  }

  .floating-action:hover {
    transform: translateY(-2px);
  }

  .floating-action > span:not(.floating-efood-mark) {
    display: block;
    font-size: .63rem;
  }

  .floating-action svg {
    width: 20px;
    height: 20px;
  }

  .floating-efood-mark {
    width: 22px;
    height: 22px;
    font-size: .8rem !important;
  }

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

  .reveal,
  .reveal-left,
  .reveal-right {
    filter: none;
    transform: translateY(18px) scale(.99);
    transition-duration: 520ms;
  }

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

@media (max-width: 390px) {
  .brand-text small {
    display: none;
  }

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

  .delivery-compact {
    grid-template-columns: 1fr;
  }
}


/* v11: compact services section on mobile */
@media (max-width: 760px) {
  .services {
    padding-block: 58px 66px;
  }

  .services .section-heading {
    max-width: 360px;
  }

  .services .section-heading .eyebrow {
    margin-bottom: 10px;
    font-size: .72rem;
    letter-spacing: .22em;
  }

  .services .section-heading h2 {
    font-size: clamp(2rem, 9.6vw, 2.75rem);
    line-height: 1.02;
  }

  .service-grid {
    gap: 10px;
    margin-top: 30px;
  }

  .service-card {
    min-height: 128px;
    padding: 18px;
    border-radius: 16px;
  }

  .service-card span {
    font-size: .7rem;
  }

  .service-card h3 {
    bottom: 16px;
    left: 18px;
    font-size: 1.22rem;
  }

  .service-card::after {
    right: -54px;
    bottom: -66px;
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 390px) {
  .services .section-heading h2 {
    font-size: 1.95rem;
  }

  .service-card {
    min-height: 116px;
  }
}


/* v12: mobile horizontal overflow stability */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body {
  position: relative;
}

main,
.site-header,
.site-footer,
section {
  max-width: 100%;
}

.reveal,
.reveal-left,
.reveal-right,
.hero-content,
.hero-media-card,
.service-card,
.showcase-card,
.story-image,
.story-copy,
.delivery-panel,
.contact-copy,
.map-wrap {
  min-width: 0;
}

@media (max-width: 760px) {
  .site-header {
    width: 100%;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    transform: translateY(14px) scale(.995);
  }

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

  .floating-actions {
    width: auto;
    max-width: calc(100% - 24px);
  }
}
