:root {
  --primary: #b71c1c;
  --primary-dark: #7a1414;
  --gold: #cda15f;
  --gold-soft: #efd8b0;
  --cream: #fff7ea;
  --ink: #241814;
  --muted: #6d5b4a;
  --card: rgba(255, 251, 244, 0.88);
  --shadow: 0 18px 55px rgba(33, 18, 7, 0.16);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(205, 161, 95, 0.18), transparent 25%),
    linear-gradient(180deg, #fff8ef 0%, #fffdf9 55%, #fff8ef 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.page-shell { overflow: hidden; }
.section { padding: 88px 22px; }
.section-heading { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.eyebrow {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
  font-size: .83rem;
  margin-bottom: 10px;
}
h1, h2, h3 { font-family: 'Cinzel', serif; margin: 0 0 16px; }
h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
h3 { font-size: 1.25rem; }
p { line-height: 1.72; margin: 0; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 243, 0.82);
  border-bottom: 1px solid rgba(122, 20, 20, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(205, 161, 95, 0.6);
  box-shadow: 0 10px 24px rgba(122,20,20,.18);
}
.brand span {
  display: block;
  font-weight: 800;
  font-size: 1rem;
}
.brand small {
  color: var(--muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  font-weight: 600;
  color: var(--muted);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: .3s ease;
}
.nav a:hover::after { width: 100%; }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 999px;
}
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: grid;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 110px;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  background: linear-gradient(105deg, rgba(25,15,10,.85) 20%, rgba(25,15,10,.45) 48%, rgba(25,15,10,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: clamp(0px, 5vw, 80px);
  color: #fff8ef;
}
.hero-text { font-size: 1.06rem; max-width: 650px; }
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #db3232); color: white; }
.btn-secondary { background: linear-gradient(135deg, var(--gold), #f0c987); color: #2b190f; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 26px 0 0;
}
.hero-badges li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.about-grid,
.specialties-grid,
.social-grid,
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.about-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card,
.menu-card,
.social-card,
.contact-card,
.contact-form {
  background: var(--card);
  border: 1px solid rgba(205, 161, 95, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card, .contact-card, .contact-form { padding: 28px; }
.specialties-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.menu-card {
  overflow: hidden;
}
.menu-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.menu-card div { padding: 22px; }
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.social-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.social-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px;
}
.social-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white;
}
.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(205, 161, 95, 0.22);
}
.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.contact-grid { grid-template-columns: 1fr 1.2fr; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.contact-list a { color: var(--primary-dark); font-weight: 700; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
label { display: grid; gap: 8px; }
label span { font-weight: 700; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(109, 91, 74, 0.25);
  background: white;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
}
textarea { resize: vertical; }
.full { grid-column: 1 / -1; }
.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: .95rem;
}
.footer {
  padding: 28px 22px 42px;
  text-align: center;
  color: var(--muted);
}
.footer p + p { margin-top: 10px; }
.footer a { color: var(--primary-dark); font-weight: 700; }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1bbb5d, #0d8e45);
  color: white;
  z-index: 25;
  box-shadow: 0 20px 35px rgba(6, 71, 27, 0.28);
}
.floating-whatsapp svg { width: 32px; fill: currentColor; }
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(15, 10, 8, 0.88);
  z-index: 40;
  padding: 24px;
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 78vh;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.lightbox p {
  color: white;
  margin-top: 16px;
  text-align: center;
  font-weight: 700;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2.5rem;
  color: white;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 980px) {
  .about-grid,
  .specialties-grid,
  .gallery-grid,
  .contact-grid,
  .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-content { margin-left: 0; }
}
@media (max-width: 760px) {
  .section { padding: 72px 18px; }
  .topbar { flex-wrap: wrap; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
  }
  .nav.open { display: flex; }
  .about-grid,
  .specialties-grid,
  .gallery-grid,
  .contact-grid,
  .social-grid,
  .form-grid { grid-template-columns: 1fr; }
  .brand img { width: 56px; height: 56px; }
  .brand span { font-size: .95rem; }
  .hero { min-height: auto; }
  .hero-content { max-width: 100%; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
}
