:root {
  --bg: #f7f2eb;
  --paper: #fffdf9;
  --ink: #231a12;
  --muted: #6f6256;
  --line: #e8dbc9;
  --brand: #b14f26;
  --brand-2: #2f6b52;
  --radius: 16px;
  --shadow: 0 14px 36px rgba(35, 26, 18, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Noto Sans", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(177, 79, 38, 0.14), transparent 40%),
    radial-gradient(circle at 100% 50%, rgba(47, 107, 82, 0.1), transparent 40%),
    var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  background: rgba(255, 253, 249, 0.92);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.nav-toggle {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 12px;
}

.nav-menu {
  display: none;
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 14px 4%;
}

.nav-menu.open {
  display: grid;
  gap: 10px;
}

.nav-link {
  color: var(--muted);
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand);
}

.dropdown {
  display: grid;
  gap: 8px;
}

.dropdown-button {
  border: 0;
  padding: 0;
  text-align: left;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.dropdown-menu {
  display: grid;
  gap: 8px;
  padding-left: 12px;
  border-left: 2px solid var(--line);
}

.hero {
  padding: 72px 0 40px;
}

.hero-pizzamos {
  padding: 52px 0 18px;
}

.hero-pizzamos .container {
  max-width: 760px;
}

.hero-pizzamos .kicker {
  margin-bottom: 6px;
}

.hero-pizzamos h1 {
  margin-bottom: 10px;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 10px;
  font-size: 1.02rem;
  color: var(--ink);
}

.hero-pizzamos .actions {
  margin-top: 6px;
}

.hero-support {
  margin: 10px 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 12px;
  padding: 10px 14px;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.78);
}

.social-proof-stars {
  color: var(--brand);
  letter-spacing: 0.12em;
  font-size: 0.92rem;
}

.social-proof-rating,
.social-proof-meta {
  margin: 0;
  font-size: 0.95rem;
}

.social-proof-rating {
  font-weight: 700;
}

.social-proof-link {
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
}

.social-proof-link:hover,
.social-proof-link:focus-visible {
  text-decoration: underline;
}

.section-menu-pizzamos {
  padding-top: 12px;
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--brand);
  font-weight: 800;
}

h1 {
  margin: 8px 0 14px;
  line-height: 1.14;
  font-size: clamp(1.9rem, 5vw, 3rem);
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 4vw, 2.1rem);
}

h3 {
  margin: 0 0 10px;
}

p {
  margin: 0 0 14px;
}

.muted {
  color: var(--muted);
}

.section {
  padding: 34px 0;
}

.grid {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.media-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.media-body {
  padding: 16px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  padding: 10px 16px;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
}

.btn.secondary {
  background: var(--paper);
  border-color: var(--line);
}

.btn.alt {
  background: var(--brand-2);
  color: #fff;
}

.btn.whatsapp-cta {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  gap: 8px;
}

.btn.whatsapp-cta:hover,
.btn.whatsapp-cta:focus-visible {
  background: #20ba57;
  border-color: #20ba57;
}

.whatsapp-icon {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  flex-shrink: 0;
}
.menu-stack {
  display: grid;
  gap: 28px;
}

.menu-page {
  display: flex;
  justify-content: center;
}

.menu-page img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.embed-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.embed-wrap iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
}

/* ── Formulario de reservas ─────────────────────────────── */
.reserva-form {
  max-width: 640px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label,
.radio-group legend {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--brand);
}

.radio-group {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-group legend {
  margin-bottom: 4px;
  padding: 0;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--brand);
  width: 17px;
  height: 17px;
  cursor: pointer;
  flex-shrink: 0;
}

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

.form-feedback {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.97rem;
}

.form-feedback.success {
  background: #e6f4ec;
  border: 1px solid #a8d5b8;
  color: #1d6438;
}

.form-feedback.error {
  background: #fdecea;
  border: 1px solid #f5c6c2;
  color: #a12b1e;
}

.form-consent {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--brand);
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
}

.field-error {
  font-size: 0.87rem;
  color: #a12b1e;
  font-weight: 600;
  margin-top: 2px;
}

.reserva-form > .btn {
  width: 100%;
}

.reserva-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  margin-top: 30px;
  background-color: #000;
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-link {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  transition: color 0.15s;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #fff;
}

/* ── Política de datos ───────────────────────────────────── */
.politica-wrap {
  max-width: 800px;
}

.politica-meta {
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.politica-intro {
  margin-bottom: 28px;
}

.politica-intro ul {
  margin: 10px 0 10px 20px;
  padding: 0;
}

.politica-toc {
  margin-bottom: 40px;
  padding: 18px 24px;
}

.politica-toc-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}

.politica-toc ul {
  margin: 0;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.politica-toc a {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.97rem;
}

.politica-toc a:hover {
  text-decoration: underline;
}

.politica-seccion {
  margin-bottom: 60px;
}

.politica-seccion-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 10px;
  margin-bottom: 28px;
}

.politica-seccion-header h2 {
  margin: 0;
}

.politica-tag {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.politica-bloque {
  margin-bottom: 28px;
}

.politica-bloque h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 10px;
}

.politica-bloque h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin: 16px 0 6px;
  color: var(--ink);
}

.politica-bloque ul,
.politica-intro ul {
  padding-left: 20px;
  margin: 6px 0 10px;
}

.politica-bloque li {
  margin-bottom: 4px;
}

.politica-dl dt {
  font-weight: 700;
  margin-top: 10px;
}

.politica-dl dd {
  margin: 2px 0 0 16px;
  color: var(--muted);
}

.politica-firma {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 0.97rem;
}

.politica-pie {
  text-align: center;
  font-size: 0.88rem;
  margin-top: 40px;
  padding-bottom: 10px;
}

.whatsapp-stack {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.whatsapp-btn {
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

.whatsapp-btn.pizzamos {
  background: #25d366;
}

.whatsapp-btn.amasamos {
  background: #c85e2f;
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    position: static;
    border: 0;
    background: transparent;
    padding: 0;
    align-items: center;
    gap: 18px;
  }

  .dropdown {
    position: relative;
    display: block;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 210px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .dropdown.open .dropdown-menu {
    display: grid;
  }

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

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

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