/* El Horno de Victoria — hand-written styles, no frameworks */
:root {
  --coral: #e8555a;
  --coral-dark: #c93f45;
  --pink: #f4a7b9;
  --pink-soft: #fbdce4;
  --pink-bg: #fff5f7;
  --cream: #fffdfb;
  --ink: #33302e;
  --muted: #8a7f7c;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(232, 85, 90, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 720px; }
.center { text-align: center; }

/* Promo banner */
.promo-banner {
  background: var(--coral);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #f3e4e6;
  backdrop-filter: blur(6px);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-align: center;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--coral); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); }
.mobile-menu { display: none; flex-direction: column; gap: 0.25rem; padding: 0.5rem 1.25rem 1rem; border-top: 1px solid #f3e4e6; }
.mobile-menu a { text-decoration: none; color: var(--ink); font-weight: 500; padding: 0.5rem 0; }
.mobile-menu.open { display: flex; }

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-solid { background: var(--coral); color: var(--white); box-shadow: var(--shadow); }
.btn-solid:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--coral); border-color: var(--coral); }
.btn-outline:hover { background: var(--coral); color: var(--white); }
.btn-order { background: var(--coral); color: var(--white); padding: 0.6rem 1.4rem; white-space: nowrap; }
.btn-order:hover { background: var(--coral-dark); }
button.btn { font-family: inherit; }

/* Section scaffolding */
.section { padding: 4.5rem 0; }
.section-head { text-align: center; margin-bottom: 2.5rem; }

.script-accent {
  font-family: 'Great Vibes', cursive;
  font-size: 1.9rem;
  color: var(--pink);
  display: block;
  margin-bottom: 0.25rem;
}
.script-accent.light { color: #ffd9e2; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--coral);
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Two-column blocks */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-col.reverse .two-col-img { order: 2; }
.two-col-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.two-col-text p { margin-bottom: 1rem; color: #55504d; }
.two-col-text .btn { margin-top: 1rem; }

/* Catering intro */
.catering-intro { padding: 4.5rem 0; background: var(--pink-bg); }

/* Hero */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(60, 20, 25, 0.45); }
.hero-content { position: relative; z-index: 1; padding: 2rem; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: var(--white);
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

/* Forms */
.form-section { background: var(--pink-bg); }
.wa-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.25rem;
  margin-top: 1.5rem;
}
.field { margin-bottom: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field label, fieldset.field legend {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.field-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field input[type="time"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid #ecdfe1;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fffdfd;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(244, 167, 185, 0.25);
}
fieldset.field { border: none; padding: 0; }
.check { display: flex; align-items: center; gap: 0.6rem; font-weight: 400; margin-bottom: 0.5rem; cursor: pointer; }
.check input { width: 1.05rem; height: 1.05rem; accent-color: var(--coral); }
.wa-form .btn { margin-top: 0.5rem; }

/* Story */
.story .two-col-text p { font-size: 1.02rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-bottom: 2.5rem; }
.cards.gallery { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.18s ease;
}
.card:hover { transform: translateY(-4px); }
.card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin: 1rem 1rem 0.25rem; }
.card .price { color: var(--coral); font-weight: 700; font-size: 1.1rem; margin-bottom: 1.25rem; }

/* Steps */
.steps-section { text-align: center; background: var(--pink-bg); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.step { background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem; box-shadow: var(--shadow); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--coral); color: var(--white);
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  margin-bottom: 1rem;
}
.step h3 { font-family: 'Playfair Display', serif; color: var(--coral); margin-bottom: 0.4rem; }

/* Strip */
.strip { background: var(--coral); color: var(--white); text-align: center; padding: 3rem 1.25rem; }
.strip h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 600; }

/* Testimonials */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review {
  background: var(--pink-bg);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.review .stars { color: #f0a13c; font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.review p { font-style: italic; color: #55504d; margin-bottom: 0.75rem; }
.review cite { font-style: normal; font-weight: 600; color: var(--coral); }

/* Instagram */
.instagram .insta-handle {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--coral);
  text-decoration: none;
  margin-top: 0.75rem;
}
.instagram .insta-handle:hover { text-decoration: underline; }

/* Flavors */
.flavors { background: var(--pink-bg); }
.flavor-group {
  font-family: 'Playfair Display', serif;
  color: var(--coral);
  font-size: 1.4rem;
  margin: 1.75rem 0 0.75rem;
  text-align: center;
}
.flavor-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.flavor-list li {
  background: var(--white);
  border: 1px solid #f3d3da;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 500;
}

/* Footer */
.site-footer { background: #2e2a29; color: #f5ecec; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 1.25rem 2rem;
  align-items: start;
}
.footer-brand { font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: 0.1em; font-size: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-contact a { color: #f5ecec; text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: var(--pink); }
.footer-contact p { margin-bottom: 0.4rem; font-size: 0.95rem; }
.footer-copy { text-align: center; padding: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.85rem; color: #cbb; }

/* Responsive */
@media (max-width: 860px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .brand { font-size: 1.05rem; }
  .nav-toggle { display: block; }
  .two-col { grid-template-columns: 1fr; gap: 1.75rem; }
  .two-col.reverse .two-col-img { order: 0; }
  .cards, .cards.gallery, .reviews, .steps { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 3rem; }
  .section-title { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links { align-items: center; }
}

@media (max-width: 560px) {
  .cards, .cards.gallery, .reviews, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .wa-form { padding: 1.5rem; }
  .section { padding: 3rem 0; }
  .hero { min-height: 55vh; }
}
