@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --roble: #16100B;
  --roble-2: #24170F;
  --madera: #A86A3D;
  --madera-suave: #C89A74;
  --acento: #B86B2F;
  --fondo: #F6F2EC;
  --fondo-alt: #EEE7DD;
  --blanco: #FCFAF7;
  --texto: #201813;
  --texto-suave: #6A5646;
  --borde: rgba(168, 106, 61, 0.16);
  --sombra: 0 12px 40px rgba(22, 16, 11, 0.08);
  --sombra-hover: 0 18px 50px rgba(22, 16, 11, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --transicion: all 0.32s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--fondo);
  color: var(--texto);
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  color: var(--roble);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
}

p {
  color: var(--texto-suave);
  font-size: 1rem;
  max-width: 66ch;
}

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

.section {
  padding: 110px 0;
}

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

.section--dark {
  background: linear-gradient(180deg, #120D09 0%, #1B120C 100%);
  color: var(--blanco);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--blanco);
}

.section--dark p {
  color: rgba(252, 250, 247, 0.74);
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.gap-sm {
  gap: 1rem;
}

.gap-md {
  gap: 2rem;
}

.gap-lg {
  gap: 3rem;
}

/* ── Eyebrow label ── */
.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acento);
}

.section--dark .eyebrow {
  color: var(--madera-suave);
}

.ornament {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1.4rem 0 1.8rem;
}

.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--borde);
}

.ornament span {
  color: var(--madera);
  font-size: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transicion);
  white-space: normal;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--acento);
  color: var(--blanco);
  box-shadow: 0 10px 24px rgba(184, 107, 47, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #9F5C27;
  box-shadow: 0 16px 34px rgba(184, 107, 47, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--blanco);
  border-color: rgba(252, 250, 247, 0.28);
}

.btn-outline:hover {
  background: rgba(252, 250, 247, 0.07);
  border-color: rgba(252, 250, 247, 0.55);
}

.btn-outline-dark {
  background: transparent;
  color: var(--roble);
  border-color: rgba(22, 16, 11, 0.18);
}

.btn-outline-dark:hover {
  background: var(--roble);
  color: var(--blanco);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: var(--transicion);
}

.nav.scrolled {
  background: #0D0804;
  padding: 0.8rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blanco);
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav__logo span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--madera);
  font-weight: 400;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(253, 250, 246, 0.8);
  transition: var(--transicion);
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--blanco);
  border-bottom-color: var(--madera);
}

.nav__cta {
  padding: 0.6rem 1.4rem !important;
  font-size: 0.72rem !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blanco);
  transition: var(--transicion);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7.5rem 0 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 7, 5, 0.68) 0%, rgba(10, 7, 5, 0.78) 100%);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: min(92%, 1180px);
}

.hero__content {
  max-width: 760px;
  width: 100%;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: rgba(184, 107, 47, 0.12);
  border: 1px solid rgba(184, 107, 47, 0.22);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D8B394;
  max-width: 100%;
  flex-wrap: wrap;
}

.hero h1 {
  color: var(--blanco);
  margin-bottom: 1rem;
  max-width: 12ch;
}

.hero h1 em {
  color: var(--madera-suave);
  font-style: italic;
}

.hero__sub {
  font-size: 1.08rem;
  color: rgba(252, 250, 247, 0.78);
  margin-bottom: 2rem;
  max-width: 58ch;
}

.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(252, 250, 247, 0.45);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── Intro / servicio ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content {
  min-width: 0;
}

.intro-content h2 {
  max-width: 14ch;
}

.intro-text {
  margin-bottom: 1rem;
}

.intro-actions {
  margin-top: 2rem;
}

.intro-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.intro-photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  background: var(--fondo-alt);
  border: 1px solid var(--borde);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.intro-stat-card {
  background: var(--fondo-alt);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--borde);
}

.intro-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--roble);
  line-height: 1;
}

.intro-stat-label {
  margin-top: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texto-suave);
}

/* ── Highlight strip ── */
.strip {
  background: var(--acento);
  padding: 1.2rem 0;
  overflow: hidden;
}

.strip__track {
  display: flex;
  gap: 3rem;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.strip__item {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blanco);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.strip__item::after {
  content: '◆';
  font-size: 0.5rem;
  opacity: 0.6;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Cards ── */
.card {
  background: var(--blanco);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: var(--transicion);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(62, 42, 31, 0.2);
}

.card__body {
  padding: 1.8rem;
}

/* ── Feature icons ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--borde);
  border-radius: 6px;
  background: var(--blanco);
  transition: var(--transicion);
}

.feature:hover {
  border-color: var(--madera);
  transform: translateY(-4px);
  box-shadow: var(--sombra);
}

.feature__icon {
  font-size: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fondo-alt);
  border-radius: 50%;
}

.feature h3 {
  font-size: 1.1rem;
}

.feature p {
  font-size: 0.9rem;
}

/* ── Pizza menu cards ── */
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.pizza-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(164, 113, 72, 0.2);
  border-radius: 6px;
  padding: 1.6rem;
  transition: var(--transicion);
}

.pizza-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--madera);
  transform: translateY(-4px);
}

.pizza-card h4 {
  color: var(--madera);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.pizza-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pizza-card ul li {
  font-size: 0.82rem;
  color: rgba(253, 250, 246, 0.65);
  padding-left: 1rem;
  position: relative;
}

.pizza-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--acento);
  font-size: 0.65rem;
}

/* ── Steps / How it works ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  counter-increment: step;
  position: relative;
}

.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--acento);
  opacity: 0.25;
  line-height: 1;
}

.step h3 {
  font-size: 1rem;
  margin-top: -0.5rem;
}

.step p {
  font-size: 0.88rem;
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--blanco);
  border-radius: 6px;
  padding: 2rem;
  border-left: 3px solid var(--acento);
  box-shadow: var(--sombra);
}

.testimonial__stars {
  color: #f0a500;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.testimonial__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--texto);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.testimonial__author {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--madera);
}

/* ── Price badge ── */
.price-box {
  background: #0D0804;
  color: var(--blanco);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid rgba(200, 96, 26, 0.25);
}

.price-box__price {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--madera);
  line-height: 1;
  margin: 0.5rem 0;
}

.price-box__unit {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.5);
  margin-bottom: 1.5rem;
}

.price-box ul {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.price-box ul li {
  font-size: 0.88rem;
  color: rgba(253, 250, 246, 0.75);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price-box ul li::before {
  content: '✓';
  color: var(--acento);
  font-weight: 700;
}

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, #0D0804 0%, #1A1008 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 96, 26, 0.12) 0%, transparent 70%);
}

.cta-band .container {
  position: relative;
}

.cta-band h2 {
  color: var(--blanco);
}

.cta-band p {
  color: rgba(253, 250, 246, 0.7);
  margin: 1rem auto 2rem;
}

/* ── Gallery grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  background: var(--fondo-alt);
  cursor: pointer;
  position: relative;
}

.gallery-item:nth-child(3n+2) {
  aspect-ratio: 1 / 1.3;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--fondo-alt), var(--fondo));
  color: var(--texto-suave);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transicion);
  border: 1px dashed var(--borde);
}

.gallery-placeholder span {
  font-size: 2.5rem;
}

.gallery-item:hover .gallery-placeholder {
  background: linear-gradient(135deg, var(--roble), #5a3a28);
  color: rgba(253, 250, 246, 0.7);
}

/* ── About page ── */
.about-hero {
  background: #0D0804;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200, 96, 26, 0.15) 0%, transparent 65%);
}

.about-hero .container {
  position: relative;
}

.about-hero h1 {
  color: var(--blanco);
}

.about-hero .eyebrow {
  color: var(--madera);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--borde);
  border-radius: 6px;
  background: var(--blanco);
}

.value-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.value-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.82rem;
}

/* ── Footer ── */
.footer {
  background: #050300;
  padding: 60px 0 30px;
  color: rgba(253, 250, 246, 0.6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blanco);
  margin-bottom: 0.4rem;
}

.footer__brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--madera);
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 36ch;
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--madera);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer ul li a {
  font-size: 0.85rem;
  color: rgba(253, 250, 246, 0.55);
  transition: var(--transicion);
}

.footer ul li a:hover {
  color: var(--madera);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(253, 250, 246, 0.55);
  margin-bottom: 0.6rem;
}

.footer__bottom {
  border-top: 1px solid rgba(164, 113, 72, 0.15);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
}

/* ── Page header (inner pages) ── */
.page-header {
  background: #0D0804;
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 96, 26, 0.12) 0%, transparent 70%);
}

.page-header .container {
  position: relative;
}

.page-header h1 {
  color: var(--blanco);
}

.page-header p {
  color: rgba(253, 250, 246, 0.65);
  margin: 1rem auto 0;
}

/* ── Lightbox ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--blanco);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}

.lightbox-content {
  max-width: 80vw;
  max-height: 80vh;
  text-align: center;
  color: rgba(253, 250, 246, 0.5);
  font-size: 0.9rem;
}

/* ── Generic image slot ── */
.img-slot {
  position: relative;
  background: var(--fondo-alt);
  border: 1px dashed var(--borde);
}

.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.img-slot:hover img {
  transform: scale(1.03);
}

.img-slot__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 16, 8, 0.55);
  color: rgba(253, 250, 246, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.img-slot:hover .img-slot__label {
  opacity: 1;
}

.img-slot--empty img {
  display: none;
}

.img-slot--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 220px;
}

.img-slot--empty::before {
  content: '📷';
  font-size: 2rem;
}

.img-slot--empty::after {
  content: 'Sube tu foto aquí';
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texto-suave);
}

/* ── Video wrapper ── */
.video-wrapper {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 96, 26, 0.2);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(253, 250, 246, 0.35);
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(200, 96, 26, 0.4);
  background: rgba(200, 96, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--acento);
}

.video-placeholder p {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.4);
  max-width: none;
}

.video-placeholder small {
  font-size: 0.72rem;
  color: rgba(253, 250, 246, 0.2);
  text-align: center;
  max-width: 36ch;
  line-height: 1.5;
}

/* ── Pizza card image ── */
.pizza-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(200, 96, 26, 0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pizza-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pizza-card:hover .pizza-card__img img {
  transform: scale(1.06);
}

.pizza-card__img-label {
  position: absolute;
  font-size: 2rem;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.pizza-card__img img + .pizza-card__img-label {
  display: none;
}

.pizza-card__img--empty img {
  display: none !important;
}

.pizza-card__img--empty .pizza-card__img-label {
  opacity: 0.5;
}

/* ── Carousel ── */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2.5rem;
}

.carousel__track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--sombra);
  background: #1a120d;
}

.carousel__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
  background: #1a120d;
  height: clamp(280px, 55vw, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.carousel__slide:hover img {
  transform: scale(1.01);
}

.carousel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(to top, rgba(13, 8, 4, 0.88) 0%, rgba(13, 8, 4, 0.15) 70%, transparent 100%);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.92);
}

.carousel__btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--borde);
  background: var(--blanco);
  color: var(--roble);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transicion);
  box-shadow: 0 4px 16px rgba(26, 16, 8, 0.1);
}

.carousel__btn:hover {
  background: var(--acento);
  border-color: var(--acento);
  color: var(--blanco);
  transform: scale(1.08);
}

.carousel__dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--borde);
  border: none;
  cursor: pointer;
  transition: var(--transicion);
  padding: 0;
}

.carousel__dot.active {
  background: var(--acento);
  transform: scale(1.35);
}

/* ── Reveal ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    padding: 7rem 0 3.5rem;
    min-height: auto;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero__sub {
    font-size: 1rem;
    max-width: 48ch;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-content h2 {
    max-width: 100%;
  }

  .intro-side {
    width: 100%;
  }

  .carousel__slide {
    height: clamp(240px, 60vw, 500px);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav__links {
    display: none;
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--roble);
    padding: 6rem 2rem 2rem;
    z-index: 99;
  }

  .nav__links.open li {
    width: 100%;
  }

  .nav__links.open a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(164, 113, 72, 0.2);
  }

  .hamburger {
    display: flex;
    z-index: 100;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .gallery-item:nth-child(5) {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .hero {
    align-items: flex-start;
    padding: 8rem 0 3rem;
    min-height: auto;
  }

  .hero__tag {
    font-size: 0.65rem;
    letter-spacing: 0.09em;
    padding: 0.5rem 0.8rem;
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
    line-height: 1.02;
    margin-bottom: 0.9rem;
    max-width: 100%;
  }

  .hero__sub {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .hero__btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero__btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__scroll {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .intro-stats {
    grid-template-columns: 1fr;
  }

  .intro-stat-card {
    padding: 1.25rem;
  }

  .intro-stat-number {
    font-size: 1.8rem;
  }

  .price-box {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .carousel {
    gap: 0.5rem;
  }

  .carousel__btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .carousel__slide {
    height: clamp(220px, 75vw, 380px);
  }

  .carousel__caption {
    font-size: 0.7rem;
    padding: 0.9rem 1rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 7.2rem 0 2.4rem;
  }

  .hero__tag {
    font-size: 0.6rem;
    letter-spacing: 0.07em;
    padding: 0.45rem 0.7rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero__sub {
    font-size: 0.94rem;
  }

  .intro-grid {
    gap: 1.5rem;
  }

  .intro-photo {
    aspect-ratio: 1 / 1;
  }

  .intro-stat-card {
    padding: 1rem;
  }

  .intro-stat-number {
    font-size: 1.6rem;
  }

  .intro-stat-label {
    font-size: 0.7rem;
  }
}
