:root {
  --yellow: #fcca09;
  --yellow-soft: #fae27f;
  --black: #020300;
  --gold-shadow: #ad8c05;
  --off-white: #f9f6ea;
  --white: #ffffff;
  --warm: #fffdf4;
  --graphite: #201f19;
  --muted: #645d47;
  --line: rgba(2, 3, 0, 0.14);
  --yellow-line: rgba(252, 202, 9, 0.46);
  --shadow: 0 24px 64px rgba(2, 3, 0, 0.11);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, Montserrat, Poppins, Avenir, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background:
    radial-gradient(circle at 88% 8%, rgba(252, 202, 9, 0.18), transparent 30rem),
    linear-gradient(180deg, var(--warm), var(--off-white));
  font-family: var(--sans);
  line-height: 1.58;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: 16px; top: -80px; z-index: 1000; background: var(--yellow); color: var(--black); padding: 10px 14px; border-radius: 10px; font-weight: 900; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 246, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: 126px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  width: 108px;
  height: 108px;
  margin-block: 8px -22px;
  border-radius: 50%;
  display: inline-flex;
  filter: drop-shadow(0 12px 20px rgba(2,3,0,.16));
  transition: transform .2s ease;
}
.brand:hover { transform: translateY(-2px); }
.brand img { border-radius: 50%; object-fit: contain; }
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--black);
  font-family: var(--serif);
  font-size: 1.04rem;
}
.nav-link { position: relative; padding: 12px 0; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--black); display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn svg { width: 22px; height: 22px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(2,3,0,.16); }
.btn-yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); box-shadow: 0 12px 24px rgba(252,202,9,.18); }
.btn-light { background: var(--white); color: var(--black); border-color: var(--line); }
.btn-dark { background: var(--black); color: var(--yellow); border-color: var(--black); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }

.section { padding: clamp(72px, 9vw, 112px) 0; }
h1, h2, h3 { line-height: 1.04; margin: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.045em; font-weight: 650; }
h1 { font-size: clamp(3.05rem, 6.7vw, 6.3rem); max-width: 760px; }
h2 { font-size: clamp(2.3rem, 4.8vw, 4.5rem); }
h3 { font-size: 1.06rem; text-transform: uppercase; letter-spacing: .04em; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 12px;
  color: var(--black);
  background: rgba(252,202,9,.20);
  border: 1px solid var(--yellow-line);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .72rem;
}

.hero {
  position: relative;
  padding: 78px 0 0;
  background:
    linear-gradient(90deg, transparent 0 68%, rgba(252,202,9,.16) 68% 100%),
    linear-gradient(180deg, var(--warm), var(--off-white));
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}
.hero-copy { padding: 28px 0 42px; }
.hero-text { color: var(--graphite); font-size: clamp(1.08rem, 1.75vw, 1.32rem); max-width: 590px; margin: 24px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--black);
  border: 1px solid var(--line);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 58%, rgba(2,3,0,.22));
  pointer-events: none;
}
.hero-media img { width: 100%; height: 560px; object-fit: cover; }
.hero-stamp {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  z-index: 2;
  filter: drop-shadow(0 14px 24px rgba(2,3,0,.30));
}
.hero-stamp img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.trust-strip div { padding: 24px 26px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { display: block; font-size: 1.04rem; }
.trust-strip span { color: var(--muted); }

.section-title { max-width: 780px; margin-inline: auto; text-align: center; margin-bottom: 42px; }
.section-title p:not(.section-kicker) { color: var(--muted); max-width: 640px; margin: 16px auto 0; font-size: 1.06rem; }
.menu-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(252,202,9,.13), transparent 24rem),
    var(--off-white);
}
.menu-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 22px;
  align-items: stretch;
}

.weekly-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.week-card {
  min-height: 230px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-top: 7px solid var(--yellow);
  box-shadow: 0 14px 36px rgba(2,3,0,.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.week-card-featured {
  background:
    linear-gradient(180deg, rgba(252,202,9,.18), rgba(255,255,255,.88)),
    var(--white);
  border-color: var(--yellow-line);
  box-shadow: 0 20px 46px rgba(2,3,0,.10);
}
.week-card h3 {
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: -.025em;
  font-size: clamp(1.35rem, 2vw, 1.78rem);
}
.week-card p {
  margin: 0;
  color: var(--graphite);
  font-size: 1.02rem;
}
.menu-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.menu-options-grid .menu-card { min-height: auto; }
.daily-special,
.menu-card,
.price-card,
.contact-card,
.map-card,
.service-card {
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(2,3,0,.06);
}
.daily-special {
  padding: clamp(30px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(252,202,9,.16), rgba(255,255,255,.88)),
    var(--white);
  border-left: 8px solid var(--yellow);
}
.daily-special h3 {
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: -.03em;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  margin: 16px 0;
}
.daily-special p { font-size: 1.18rem; margin: 0; color: var(--graphite); }
.text-link { display: inline-flex; margin-top: 24px; font-weight: 900; color: var(--black); border-bottom: 3px solid var(--yellow); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.menu-card { padding: 26px; min-height: 270px; }
.menu-label {
  display: inline-flex;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 950;
  margin-bottom: 18px;
}
.menu-card ul { margin: 0; padding-left: 18px; color: var(--graphite); }
.menu-card li + li { margin-top: 8px; }
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 20px;
  margin-top: 22px;
}
.price-card { padding: 28px; }
.price-card h3 { margin-bottom: 14px; }
.price-card p { display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px dashed var(--line); margin: 0; padding: 11px 0; color: var(--graphite); }
.price-card p:last-child { border-bottom: 0; }
.price-card strong, .addons strong { color: var(--black); }
.wide-card { background: var(--black); color: var(--off-white); }
.wide-card h3 { color: var(--yellow); }
.addons { display: flex; gap: 22px; flex-wrap: wrap; }
.addons span { background: rgba(252,202,9,.10); border: 1px solid rgba(252,202,9,.22); padding: 10px 14px; border-radius: 999px; }
.wide-card .addons strong { color: var(--yellow); }
.menu-footer-cta {
  margin-top: 26px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.business-section {
  background: linear-gradient(180deg, var(--warm), var(--off-white));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.business-grid-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.business-copy p:not(.section-kicker) { color: var(--graphite); font-size: 1.12rem; max-width: 600px; margin: 22px 0 30px; }
.business-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { padding: 28px; border-top: 6px solid var(--yellow); }
.service-card strong { display: block; margin-bottom: 8px; font-size: 1.06rem; }
.service-card span { color: var(--muted); }
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.about-photo { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 430px; object-fit: cover; }
.about-copy h2 { margin-bottom: 22px; }
.about-copy p:not(.section-kicker) { color: var(--graphite); font-size: 1.08rem; }
.contact-section {
  background:
    linear-gradient(120deg, rgba(252,202,9,.12), transparent 40%),
    var(--off-white);
}
.contact-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 28px; }
.contact-card, .map-card { padding: 36px; }
.contact-card p:not(.section-kicker) { color: var(--graphite); }
.contact-list { display: grid; gap: 12px; margin-top: 28px; }
.contact-list a { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list span { font-weight: 900; color: var(--gold-shadow); }
.contact-list strong { font-size: 1.02rem; }
.map-card { text-align: center; display: grid; place-items: center; gap: 12px; background: var(--black); color: var(--off-white); }
.map-card img { width: 172px; border-radius: 50%; filter: drop-shadow(0 12px 22px rgba(0,0,0,.28)); }
.map-card h3 { color: var(--yellow); }
.map-card p { margin: 0 0 8px; color: rgba(249,246,234,.78); }
.map-card .btn-light { background: var(--yellow); border-color: var(--yellow); }
.site-footer { padding: 26px 0; background: var(--black); color: var(--off-white); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-grid p { margin: 4px 0 0; color: rgba(249,246,234,.72); }
.footer-grid a { color: var(--yellow); font-weight: 850; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: inline-flex; align-items: center; gap: 10px; min-height: 56px; padding: 14px 18px; border-radius: 999px; color: var(--off-white); background: #1f8f4d; box-shadow: 0 18px 38px rgba(2,3,0,.24); font-weight: 900; }
.floating-whatsapp svg { width: 24px; height: 24px; fill: currentColor; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .header-grid { grid-template-columns: auto auto; min-height: 86px; }
  .brand { width: 88px; height: 88px; margin: 6px 0; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .main-nav { grid-column: 1 / -1; display: none; width: 100%; padding: 12px 0 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .main-nav.is-open { display: flex; }
  .header-cta { display: none; }
  .hero-grid, .business-grid-wrap, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; background: linear-gradient(180deg, var(--warm), var(--off-white)); }
  .hero-media img { height: 420px; }
  .menu-layout, .price-grid { grid-template-columns: 1fr; }
  .menu-grid, .business-cards, .weekly-menu-grid, .menu-options-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero-actions, .menu-footer-cta, .footer-grid { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .trust-strip, .menu-grid, .business-cards, .weekly-menu-grid, .menu-options-grid { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip div:last-child { border-bottom: 0; }
  .contact-list a { grid-template-columns: 1fr; gap: 4px; }
  .contact-card, .map-card { padding: 26px; }
  .floating-whatsapp { left: 14px; right: 14px; justify-content: center; }
}
