:root {
  --red: #c0392b;
  --red-dark: #a93226;
  --orange: #e67e22;
  --cream: #fff8ef;
  --cream-dark: #f7ead8;
  --ink: #3a2a1f;
  --muted: #7a6a5c;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.3rem;
}

.brand-logo {
  font-size: 1.6rem;
}

.brand-name span {
  color: var(--red);
}

.main-nav {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.main-nav a {
  color: var(--muted);
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--red);
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
  font-size: 0.95rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(192, 57, 43, 0.35);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}

.btn-ghost:hover {
  background: var(--red);
  color: var(--white);
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(230, 126, 34, 0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(192, 57, 43, 0.16), transparent 45%),
    var(--cream);
  padding: 70px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Sections */
.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--cream-dark);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.about-card h3 {
  padding: 18px 20px 4px;
  color: var(--red);
}

.about-card p {
  padding: 0 20px 22px;
  color: var(--muted);
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 26px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
}

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

.product-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-body h3 {
  font-size: 1.15rem;
}

.product-body p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.product-price {
  font-weight: 800;
  color: var(--red);
  font-size: 1.1rem;
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card p {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Sedes */
.sedes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

.sede-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.sede-icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.sede-card h3 {
  margin-bottom: 6px;
  color: var(--red);
}

.sede-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

/* Pedido */
.order-box {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  text-align: center;
}

.order-box h2 {
  margin-bottom: 10px;
}

.order-box p {
  max-width: 60ch;
  margin: 0 auto 24px;
  opacity: 0.95;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.order-form input,
.order-form select {
  padding: 13px 16px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  width: 100%;
}

.order-form .btn {
  grid-column: 1 / -1;
  justify-self: center;
  background: var(--white);
  color: var(--red);
}

.order-form .btn:hover {
  background: var(--cream);
}

.form-msg {
  grid-column: 1 / -1;
  font-weight: 700;
}

/* Contacto */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  color: var(--red);
  margin-bottom: 14px;
}

.contact-card p {
  margin-bottom: 8px;
  color: var(--muted);
}

.contact-card a {
  color: var(--red);
  font-weight: 600;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social {
  background: var(--cream);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.2s;
}

.social:hover {
  background: var(--cream-dark);
}

/* Footer */
.site-footer {
  background: #2b1e16;
  color: #e9d9c9;
  padding: 40px 0;
  text-align: center;
}

.site-footer strong {
  color: var(--orange);
}

.footer-meta {
  margin-top: 8px;
  color: #b7a494;
  font-size: 0.9rem;
}

.footer-copy {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #8f7d6d;
}

/* Responsive */
@media (max-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    height: 300px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
}