:root {
  --gold: #b8893e;
  --gold-dark: #7b5527;
  --coal: #211f1b;
  --ink: #27231e;
  --muted: #71675a;
  --cream: #fff8ec;
  --paper: #f4eadb;
  --line: #ead9bf;
  --white: #ffffff;
  --whatsapp: #25d366;
  --phone: #1e74ba;
  --shadow: 0 18px 44px rgba(53, 36, 18, 0.13);
  --shadow-heavy: 0 28px 80px rgba(22, 17, 11, 0.24);
  --radius: 8px;
  --container: 1160px;
  --header-height: 84px;
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img, svg, iframe { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

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

.section { padding: 76px 0; }
.section--paper { background: linear-gradient(180deg, #fff8ec 0%, #f4eadb 100%); }
.section--dark { color: #fff8ec; background: linear-gradient(135deg, #211f1b 0%, #3a2a1b 100%); }

.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.content-box h2,
.hours-grid h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.16;
}

.section-heading p:last-child,
.hours-grid > div > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-heading--light p:last-child { color: #e8d9c4; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: var(--header-height);
  background: rgba(255, 248, 236, 0.92);
  border-bottom: 1px solid rgba(184, 137, 62, 0.22);
  backdrop-filter: blur(16px);
  transition: min-height 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 236, 0.98);
  box-shadow: 0 12px 34px rgba(40, 30, 18, 0.12);
}

main { padding-top: var(--header-height); }

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo img { width: 218px; height: 74px; object-fit: contain; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: #463b30;
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-dark);
  background: rgba(184, 137, 62, 0.13);
}

.header-cta,
.btn,
.order-link,
.mini-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius);
  font-weight: 800;
}

.header-cta {
  min-height: 42px;
  padding: 10px 15px;
  color: #fff;
  background: var(--coal);
  box-shadow: 0 12px 28px rgba(33, 31, 27, 0.18);
  white-space: nowrap;
}

.header-cta svg,
.btn svg,
.order-link svg { width: 20px; height: 20px; flex: 0 0 auto; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  padding: 62px 0 70px;
  background:
    linear-gradient(120deg, rgba(255, 248, 236, 0.98) 0%, rgba(244, 234, 219, 0.88) 58%, rgba(33, 31, 27, 0.1) 100%),
    url("img/mangal-sis.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 84px;
  background: linear-gradient(180deg, rgba(255, 248, 236, 0), var(--cream));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
  align-items: center;
  gap: 48px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  line-height: 1.02;
}

.hero__text {
  max-width: 630px;
  margin: 18px 0 0;
  color: #574c3f;
  font-size: 1.08rem;
}

.hero__actions,
.cta-strip__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  padding: 12px 17px;
  border: 1px solid transparent;
  line-height: 1.2;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.order-link:hover,
.mini-actions a:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn--primary,
.btn--whatsapp {
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.22);
}

.btn--secondary,
.btn--call {
  color: #fff;
  background: var(--phone);
  box-shadow: 0 14px 30px rgba(30, 116, 186, 0.22);
}

.btn--ghost {
  color: var(--coal);
  border-color: rgba(184, 137, 62, 0.3);
  background: rgba(255, 255, 255, 0.82);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__facts span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(184, 137, 62, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: #4a4036;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero__image,
.about-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 137, 62, 0.24);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-heavy);
}

.hero__image { position: relative; }

.hero__image img,
.about-image img,
.flavor-card img {
  width: 100%;
  object-fit: cover;
}

.hero__image img { aspect-ratio: 4 / 3; }

.hero__image figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(27, 22, 16, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 800;
}

.flavor-grid,
.why-grid,
.gallery-grid,
.contact-grid,
.hours-grid {
  display: grid;
  gap: 22px;
}

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

.flavor-card,
.why-card,
.contact-card,
.hours-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.flavor-card {
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.flavor-card:hover { transform: translateY(-5px); box-shadow: 0 24px 58px rgba(53, 36, 18, 0.16); }
.flavor-card img { aspect-ratio: 4 / 3; }
.flavor-card__body { padding: 20px; }
.flavor-card h3,
.why-card h3,
.contact-card h3 { margin: 0 0 8px; font-size: 1.15rem; line-height: 1.25; }
.flavor-card p,
.why-card p { margin: 0; color: var(--muted); }

.order-link {
  width: 100%;
  min-height: 42px;
  margin-top: 16px;
  padding: 10px 12px;
  color: #fff;
  background: var(--coal);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
}

.about-image img { aspect-ratio: 5 / 4; }
.content-box { color: var(--muted); font-size: 1.02rem; }
.content-box p:first-of-type { margin-top: 18px; }
.content-box h2 { color: var(--ink); }

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

.about-highlights span {
  padding: 11px 12px;
  border: 1px solid rgba(184, 137, 62, 0.18);
  border-radius: var(--radius);
  color: var(--gold-dark);
  background: rgba(184, 137, 62, 0.1);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.why-card {
  padding: 22px;
  color: #f8eddd;
  background: rgba(255, 248, 236, 0.07);
  border-color: rgba(255, 248, 236, 0.14);
  box-shadow: none;
}

.why-card p { color: #dfcdb5; }
.why-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: var(--radius);
  color: #f2c77c;
  background: rgba(184, 137, 62, 0.17);
}
.why-icon svg { width: 26px; height: 26px; }

.cta-strip {
  padding: 70px 0;
  background-position: center;
  background-size: cover;
}

.cta-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 248, 236, 0.1);
  box-shadow: var(--shadow-heavy);
  backdrop-filter: blur(14px);
}

.cta-strip .section-kicker { color: #f0c982; }
.cta-strip h2 { margin: 0; color: #fff; font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.15; }
.cta-strip p:last-child { max-width: 650px; margin: 12px 0 0; color: #f4e8d6; }
.cta-strip__actions { justify-content: flex-end; margin-top: 0; }

.gallery-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--coal);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item--wide { grid-column: auto; }
.gallery-item img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.3s ease, filter 0.3s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(18, 14, 10, 0.82)); }
.gallery-item span { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1; color: #fff; text-align: left; font-weight: 800; }
.gallery-item:hover img { transform: scale(1.04); filter: saturate(1.05) contrast(1.04); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(14, 11, 8, 0.86);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 82vh; border-radius: 12px; box-shadow: var(--shadow-heavy); }
.lightbox p { margin: 14px 0 0; color: #fff; font-weight: 800; text-align: center; }
.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.hours-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
}

.hours-card { padding: 26px; }
.hours-card span { color: var(--muted); font-weight: 800; }
.hours-card strong { display: block; margin: 6px 0 18px; font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1; }
.mini-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.mini-actions a { min-height: 38px; padding: 8px 11px; color: var(--gold-dark); background: rgba(184, 137, 62, 0.12); transition: transform 0.2s ease, filter 0.2s ease; }

.contact-grid {
  grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.contact-card { padding: 26px; }
.contact-list {
  display: grid;
  gap: 16px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  color: var(--muted);
}

.contact-list strong,
.contact-list a,
.contact-list span { display: block; }
.contact-list strong { color: var(--ink); }
.contact-list a { overflow-wrap: anywhere; color: var(--gold-dark); font-weight: 800; }

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.contact-icon svg { width: 28px; height: 28px; }
.contact-actions .btn { flex: 1 1 150px; }

.map-wrapper {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.map-wrapper iframe { width: 100%; height: 100%; min-height: 390px; display: block; border: 0; }

.floating-actions {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 16px 34px rgba(25, 21, 17, 0.24);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.floating-btn:hover { transform: translateY(-3px); filter: brightness(1.06); }
.floating-btn svg { width: 27px; height: 27px; }
.floating-btn--whatsapp { background: var(--whatsapp); }
.floating-btn--phone { background: var(--phone); }

.site-footer {
  padding: 46px 0 22px;
  color: #fff;
  background: #211f1b;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(170px, 0.7fr) minmax(240px, 0.9fr);
  gap: 30px;
  align-items: start;
}
.footer-brand p, .footer-column ul, .footer-bottom p { margin: 0; }
.footer-logo { display: inline-flex; margin-bottom: 14px; }
.footer-logo span { display: inline-flex; padding: 8px; border-radius: 10px; background: var(--cream); }
.footer-logo img { width: 220px; height: 96px; object-fit: contain; }
.footer-brand p { max-width: 420px; color: #e7d9c6; }
.footer-column h3 { margin: 0 0 13px; font-size: 1rem; }
.footer-column ul { display: grid; gap: 8px; padding: 0; list-style: none; color: #e7d9c6; }
.footer-column a { color: #e7d9c6; transition: color 0.2s ease; }
.footer-column a:hover { color: #f0c982; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #e7d9c6;
}
.digital-signature { font-size: 0.94rem; }
.digital-signature a { color: #fff; font-weight: 800; }

@media (max-width: 1060px) {
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: calc(var(--header-height) + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - var(--header-height) - 24px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 248, 236, 0.98);
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; }
  .hero__grid, .about-grid, .cta-strip__inner, .contact-grid, .hours-grid { grid-template-columns: 1fr; }
  .cta-strip__actions { justify-content: flex-start; }
  .flavor-grid, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --header-height: 74px; }
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 54px 0; }
  .navbar { gap: 10px; }
  .logo img { width: 158px; height: 58px; }
  .hero { padding: 38px 0 52px; }
  .hero__grid { gap: 26px; }
  .hero h1 { font-size: clamp(2rem, 12vw, 2.65rem); }
  .hero__text { font-size: 0.98rem; }
  .hero__actions, .cta-strip__actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; min-height: 48px; padding-inline: 14px; }
  .hero__image figcaption { left: 12px; right: 12px; bottom: 12px; font-size: 0.82rem; }
  .flavor-grid, .why-grid, .footer__grid, .about-highlights { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .flavor-card__body, .why-card, .contact-card, .hours-card { padding: 21px; }
  .gallery-item, .gallery-item--wide { grid-column: auto; min-height: 0; }
  .cta-strip { padding: 54px 0; }
  .cta-strip__inner { padding: 23px; }
  .contact-list li { grid-template-columns: 38px minmax(0, 1fr); }
  .contact-icon { width: 38px; height: 38px; }
  .map-wrapper, .map-wrapper iframe { min-height: 310px; }
  .floating-actions {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 8px;
  }
  .floating-btn { width: 46px; height: 46px; }
  .floating-btn svg { width: 23px; height: 23px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 360px) {
  .container { width: min(100% - 20px, var(--container)); }
  .logo img { width: 142px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero h1 { font-size: 1.95rem; }
  .btn, .order-link { font-size: 0.92rem; }
}
