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

* { box-sizing: border-box; }
:root {
  --bg: #0d130f;
  --bg-2: #15231a;
  --cream: #f6efe2;
  --muted: #c9bfae;
  --gold: #caa647;
  --gold-2: #e5c76a;
  --line: rgba(202,166,71,.28);
  --card: rgba(255,255,255,.07);
  --shadow: 0 28px 80px rgba(0,0,0,.34);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto 0;
  height: 82px;
  padding: 14px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(to bottom, rgba(5,8,6,.82), rgba(5,8,6,.35), transparent);
  backdrop-filter: blur(8px);
}

.site-header.solid {
  position: sticky;
  background: rgba(7, 10, 8, .96);
  border-bottom: 1px solid var(--line);
}

.logo {
  width: 220px;
  height: auto;
}

.logo-link { flex: 0 0 auto; }

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}

.top-nav a {
  text-decoration: none;
  color: rgba(246,239,226,.86);
}

.top-nav a:hover { color: var(--gold-2); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 22px;
}

.hero,
.menu-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(202,166,71,.18), transparent 34%),
    linear-gradient(90deg, rgba(5,7,5,.94), rgba(5,7,5,.54) 44%, rgba(5,7,5,.22)),
    linear-gradient(0deg, rgba(13,19,15,1), rgba(13,19,15,0) 22%);
}

.hero-content,
.menu-hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 82px;
}

.menu-hero {
  min-height: 58vh;
}

.hero-content h1,
.menu-hero-content h1 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(52px, 8vw, 104px);
  line-height: .95;
  letter-spacing: -.05em;
  max-width: 880px;
  margin: 0;
}

.menu-hero-content h1 {
  font-size: clamp(44px, 7vw, 82px);
}

.lead,
.menu-hero-content p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(246,239,226,.86);
  font-size: clamp(18px, 2vw, 24px);
  margin: 24px 0 0;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  margin: 0 0 12px;
}

.hero-actions,
.inline-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
}

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

.btn-primary {
  color: #161006;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: transparent;
}

.btn-ghost,
.btn-outline {
  color: var(--cream);
  background: rgba(255,255,255,.07);
}

.btn-outline {
  color: var(--gold-2);
  background: transparent;
}

.hero-notes {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: min(1040px, calc(100% - 36px));
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-notes span {
  padding: 10px 14px;
  background: rgba(5,7,5,.58);
  border: 1px solid var(--line);
  color: rgba(246,239,226,.82);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.section h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin: 0 0 18px;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.food-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.food-cards img,
.gallery img,
.experience-image img {
  border-radius: 26px;
  min-height: 260px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
}

.food-cards img:first-child {
  grid-column: span 2;
  max-height: 360px;
}

.feature-dark {
  width: min(1240px, calc(100% - 24px));
  padding: 62px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(202,166,71,.12), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.gallery {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery img:nth-child(2) {
  grid-row: span 2;
}

.experience {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 42px;
  align-items: center;
}

.experience-copy {
  padding: 32px;
}

.info-panels {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  padding-top: 40px;
}

.panel {
  border-radius: 30px;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(202,166,71,.17), rgba(255,255,255,.06)),
    var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel-light {
  background: rgba(246,239,226,.96);
  color: #1b1711;
}

.panel-light p {
  color: #514737;
}

.panel h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.panel h3 {
  margin: 18px 0 6px;
  font-size: 18px;
}

.work {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: start;
  padding-top: 40px;
}

.work-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.06);
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--cream);
  font-weight: 800;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.26);
  color: var(--cream);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(202,166,71,.46);
  border-color: var(--gold);
}

.mail-link {
  color: var(--gold-2);
  font-weight: 800;
}

.footer {
  border-top: 1px solid var(--line);
  background: #070a08;
  padding: 48px clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 34px;
  color: var(--muted);
}

.footer-logo {
  width: 120px;
  margin-bottom: 16px;
}

.footer h3 {
  color: var(--cream);
  margin: 0 0 10px;
}

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

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.compact {
  display: block;
  text-align: center;
}

.pdf-wrap {
  padding-top: 44px;
}

.pdf-viewer {
  width: 100%;
  min-height: 82vh;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 76px;
    align-items: flex-start;
  }

  .logo { width: 185px; }

  .nav-toggle { display: block; }

  .top-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(7,10,8,.97);
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-open .top-nav { display: flex; }

  .hero-content h1 { font-size: clamp(46px, 14vw, 72px); }

  .intro-grid,
  .experience,
  .info-panels,
  .work,
  .footer {
    grid-template-columns: 1fr;
  }

  .feature-dark {
    padding: 30px 18px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .food-cards {
    grid-template-columns: 1fr;
  }

  .food-cards img:first-child {
    grid-column: auto;
  }

  .section {
    padding: 72px 0;
  }

  .hero-notes {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: -96px auto 30px;
  }
}


/* Celebraciones */
.celebration-band {
  padding-top: 30px;
  padding-bottom: 30px;
}

.celebration-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(202,166,71,.20), transparent 36%),
    rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}

.celebration-copy {
  padding: 18px;
}

.celebration-copy h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin: 0 0 18px;
}

.celebration-photo img {
  width: 100%;
  min-height: 340px;
  max-height: 460px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow);
}

.cele-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.event-intro {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 34px;
  align-items: end;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}

.price-card.featured {
  background:
    linear-gradient(135deg, rgba(202,166,71,.20), rgba(255,255,255,.06)),
    rgba(255,255,255,.06);
}

.price-card span {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
}

.price-card h3,
.extras-grid h3,
.banquet-groups h3 {
  margin: 8px 0 8px;
  font-size: 24px;
  color: var(--cream);
}

.price {
  font-family: Cinzel, Georgia, serif;
  color: var(--gold-2) !important;
  font-size: 34px;
  margin: 8px 0 12px;
}

.event-split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 38px;
  align-items: center;
}

.event-photo img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.09);
}

.simple-table {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.simple-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}

.simple-table span {
  color: var(--muted);
  text-align: right;
}

.small-note {
  font-size: 14px;
  color: rgba(246,239,226,.72) !important;
}

.banquet {
  width: min(1240px, calc(100% - 24px));
  padding: 62px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(202,166,71,.12), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.banquet-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

.banquet-groups article {
  padding: 24px;
  border-radius: 24px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: rgba(0,0,0,.22);
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  text-align: left;
}

th {
  color: var(--gold-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.extras-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.06);
}

.extras-grid p {
  color: var(--gold-2);
  font-weight: 900;
  font-size: 20px;
  margin: 0;
}

.quote-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 900px) {
  .celebration-card,
  .event-intro,
  .event-split,
  .quote-section,
  .banquet-groups {
    grid-template-columns: 1fr;
  }

  .price-grid,
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .banquet {
    padding: 30px 18px;
  }

  .simple-table div {
    flex-direction: column;
  }

  .simple-table span {
    text-align: left;
  }
}


/* Quiénes somos */
.about-founder {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 46px;
  align-items: center;
}

.founder-collage {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 210px 210px 210px;
  gap: 14px;
}

.founder-collage figure {
  margin: 0;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(202,166,71,.32);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.05);
}

.founder-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-main {
  grid-row: 1 / span 3;
}

.founder-collage figure:nth-child(4) {
  grid-column: 2 / span 2;
}

.founder-copy {
  padding: 18px 0;
}

.founder-copy h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin: 0 0 20px;
}

.founder-copy p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .about-founder {
    grid-template-columns: 1fr;
  }

  .founder-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 180px 180px 180px;
  }

  .founder-main {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .founder-collage figure:nth-child(4) {
    grid-column: 1 / span 2;
  }
}


/* Ajustes Celebraciones: menús detallados y parrilladas */
.price-grid.detailed {
  grid-template-columns: repeat(3, 1fr);
}

.price-grid.detailed .price-card {
  min-height: 420px;
}

.price-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(246,239,226,.88);
}

.price-card li {
  margin: 0 0 10px;
}

.price-card li strong {
  color: var(--gold-2);
}

.parrilla-photo img {
  min-height: 520px;
  object-position: center;
}

.parrilla-copy .eyebrow {
  font-size: 14px;
  letter-spacing: .24em;
}

.parrilla-copy h2 {
  color: var(--cream);
  text-shadow: 0 10px 40px rgba(202,166,71,.16);
}

.parrilla-copy h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .price-grid.detailed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .price-grid.detailed {
    grid-template-columns: 1fr;
  }

  .price-grid.detailed .price-card {
    min-height: auto;
  }

  .parrilla-photo img {
    min-height: 360px;
  }
}




/* Contacto destacado en inicio */
.hero-contact-card {
  margin-top: 26px;
  width: min(520px, 100%);
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(202,166,71,.46);
  background: rgba(5,7,5,.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-contact-card span {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  margin-bottom: 6px;
}

.hero-phone {
  display: inline-block;
  color: var(--cream);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.03em;
}

.hero-phone:hover {
  color: var(--gold-2);
}

.hero-contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Carrusel de reseñas */
.reviews-section {
  width: min(1240px, calc(100% - 24px));
  padding: 70px 0;
}

.reviews-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 14px;
  align-items: center;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 390px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  scrollbar-width: thin;
}

.review-card {
  scroll-snap-align: center;
  min-height: 360px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(202,166,71,.18), transparent 40%),
    rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold-2);
  letter-spacing: .12em;
  font-size: 20px;
  margin-bottom: 18px;
}

.review-card p {
  color: rgba(246,239,226,.88);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.review-card strong {
  color: var(--cream);
}

.review-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  color: var(--gold-2);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.review-arrow:hover {
  background: rgba(202,166,71,.18);
}

.reviews-actions {
  text-align: center;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .hero-contact-card {
    padding: 16px;
  }

  .amenities-highlight,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .reviews-carousel {
    grid-template-columns: 1fr;
  }

  .review-arrow {
    display: none;
  }

  .reviews-track {
    grid-auto-columns: minmax(84%, 1fr);
  }

  .review-card {
    min-height: 390px;
  }
}


/* Hero con collage real */
.hero-real-casona {
  background-position: center;
}

.hero-real-casona .hero-overlay {
  background:
    radial-gradient(circle at 78% 18%, rgba(202,166,71,.20), transparent 34%),
    linear-gradient(90deg, rgba(5,7,5,.96), rgba(5,7,5,.72) 40%, rgba(5,7,5,.32)),
    linear-gradient(0deg, rgba(13,19,15,1), rgba(13,19,15,0) 24%);
}

/* Bloque familiar real */
.family-feature {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}

.family-copy {
  padding-right: 12px;
}

.family-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.family-cards {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.family-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(202,166,71,.18), transparent 40%),
    rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}

.family-card.with-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.family-card div,
.family-card.pet-card {
  padding: 24px;
}

.family-card span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(202,166,71,.16);
  border: 1px solid var(--line);
  font-size: 26px;
  margin-bottom: 14px;
}

.family-card h3 {
  color: var(--cream);
  font-size: 24px;
  margin: 0 0 10px;
}

.family-card.pet-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

/* Collage real de la casona */
.real-casona-section {
  width: min(1240px, calc(100% - 24px));
}

.real-casona-collage {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 280px 280px;
  gap: 18px;
  margin-top: 34px;
}

.real-casona-collage figure {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(202,166,71,.28);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.05);
}

.real-casona-collage picture,
.real-casona-collage img {
  display: block;
  width: 100%;
  height: 100%;
}

.real-casona-collage img {
  object-fit: cover;
  transition: transform .4s ease;
}

.real-casona-collage figure:hover img {
  transform: scale(1.035);
}

.real-casona-collage .real-main {
  grid-row: span 2;
}

@media (max-width: 900px) {
  .family-feature,
  .family-cards,
  .real-casona-collage {
    grid-template-columns: 1fr;
  }

  .family-card.with-photo img {
    height: 260px;
  }

  .real-casona-collage {
    grid-template-rows: auto;
  }

  .real-casona-collage .real-main {
    grid-row: auto;
  }

  .real-casona-collage figure {
    height: 300px;
  }
}



/* ===== Casona Gourmet - Plantilla lujo home ===== */
:root {
  --lux-black: #070605;
  --lux-ink: #2e2014;
  --lux-cream: #fbf4e8;
  --lux-cream-2: #f3e6d1;
  --lux-gold: #c79a3d;
  --lux-gold-2: #e1bd68;
  --lux-green: #2da34a;
  --lux-soft: rgba(255,255,255,.72);
  --lux-line: rgba(188,139,56,.28);
}

.lux-body {
  background: var(--lux-cream);
  color: var(--lux-ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
}

.lux-body h1,
.lux-body h2 {
  font-family: Cinzel, Georgia, serif;
}

.lux-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  height: 82px;
  padding: 10px clamp(18px, 5vw, 86px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7,6,5,.88);
  border-bottom: 1px solid rgba(199,154,61,.72);
  backdrop-filter: blur(12px);
}

.lux-logo {
  width: 222px;
  height: auto;
}

.lux-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.lux-nav a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
  position: relative;
}

.lux-nav a:hover,
.lux-nav a:first-child {
  color: var(--lux-gold-2);
}

.lux-toggle {
  display: none;
}

.lux-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  padding-top: 82px;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  border-bottom: 1px solid var(--lux-gold);
}

.lux-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.88) 28%, rgba(5,5,5,.35) 54%, rgba(5,5,5,.06) 100%),
    linear-gradient(0deg, rgba(5,5,5,.25), transparent 30%);
}

.lux-hero-content {
  position: relative;
  z-index: 2;
  width: min(1260px, calc(100% - 42px));
  margin: 0 auto;
  color: #fff;
}

.lux-eyebrow {
  margin: 0 0 12px;
  color: var(--lux-gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}

.lux-hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.07;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

.lux-hero h1::first-line {
  color: #fff;
}

.lux-lead {
  max-width: 560px;
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 1.6vw, 20px);
  margin: 20px 0 24px;
}

.lux-contact {
  width: min(520px, 100%);
  padding-top: 18px;
  border-top: 1px solid rgba(199,154,61,.52);
}

.lux-contact span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.lux-phone {
  display: block;
  color: #fff;
  text-decoration: none;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.lux-actions,
.lux-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lux-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 13px 22px;
  border: 1px solid var(--lux-gold);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.lux-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.lux-btn-gold {
  color: #21170d;
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-2));
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(199,154,61,.30);
}

.lux-btn-green {
  color: #fff;
  background: linear-gradient(135deg, #1f8d3a, #35b858);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(45,163,74,.28);
}

.lux-btn-outline {
  color: var(--lux-gold);
  background: rgba(255,255,255,.70);
}

.lux-benefits {
  width: min(1260px, calc(100% - 42px));
  margin: -1px auto 0;
  padding: 22px 0 10px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.lux-benefits article {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(188,139,56,.20);
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  box-shadow: 0 18px 50px rgba(68,43,19,.08);
}

.lux-benefits span {
  display: inline-flex;
  font-size: 30px;
  margin-bottom: 8px;
}

.lux-benefits h3 {
  font-family: Cinzel, Georgia, serif;
  font-size: 15px;
  line-height: 1.15;
  color: var(--lux-ink);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.lux-benefits p {
  color: #5d5144;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.lux-section {
  width: min(1160px, calc(100% - 42px));
  margin: 0 auto;
  padding: 82px 0;
}

.lux-section h2,
.lux-section-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  color: var(--lux-ink);
}

.lux-section p {
  color: #66594b;
  font-size: 17px;
}

.lux-intro,
.lux-family,
.lux-founder,
.lux-panels,
.lux-work {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.lux-photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lux-photo-stack picture:first-child {
  transform: translateY(28px);
}

.lux-photo-stack img,
.family-image-card img,
.lux-casona-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(68,43,19,.18);
}

.lux-photo-stack picture {
  height: 440px;
}

.lux-reviews {
  padding: 70px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(199,154,61,.12), transparent 36%),
    linear-gradient(180deg, #fff9ef, #f8ecda);
  border-top: 1px solid rgba(188,139,56,.16);
  border-bottom: 1px solid rgba(188,139,56,.16);
}

.lux-section-heading {
  width: min(960px, calc(100% - 42px));
  margin: 0 auto 28px;
  text-align: center;
}

.big-stars {
  color: var(--lux-gold);
  font-size: 28px;
  letter-spacing: .16em;
}

.review-shell {
  width: min(1320px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 12px;
  align-items: center;
}

.reviews-track-lux {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 300px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 0 22px;
}

.review-card-lux {
  scroll-snap-align: start;
  min-height: 260px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(188,139,56,.20);
  background: #fff;
  box-shadow: 0 18px 50px rgba(68,43,19,.12);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--lux-gold), #75522a);
  font-weight: 900;
}

.review-top strong {
  display: block;
  color: #2b2118;
  font-size: 13px;
}

.review-stars {
  color: #f6b300;
  font-size: 13px;
}

.review-stars span {
  color: #4285f4;
  font-weight: 900;
  margin-left: 6px;
}

.review-card-lux p {
  color: #473b31;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.review-arrow-lux {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(188,139,56,.22);
  background: #fff;
  color: var(--lux-gold);
  font-size: 32px;
  box-shadow: 0 12px 30px rgba(68,43,19,.14);
  cursor: pointer;
}

.reviews-actions {
  margin-top: 8px;
  text-align: center;
}

.family-panel {
  padding: 34px;
  border-radius: 26px;
  border: 1px solid rgba(188,139,56,.22);
  background: rgba(255,255,255,.66);
  box-shadow: 0 26px 70px rgba(68,43,19,.10);
}

.family-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(68,43,19,.18);
}

.family-image-card picture {
  display: block;
  height: 430px;
}

.family-image-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(7,6,5,.72);
  color: #fff;
  backdrop-filter: blur(8px);
}

.family-image-card strong {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: 22px;
}

.family-image-card span {
  color: rgba(255,255,255,.82);
}

.lux-casona-collage {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 250px 250px;
  gap: 14px;
}

.lux-casona-collage picture {
  overflow: hidden;
  border-radius: 24px;
}

.lux-casona-collage .collage-main {
  grid-row: span 2;
}

.lux-panels {
  align-items: stretch;
}

.lux-panels article {
  border-radius: 26px;
  padding: 34px;
  border: 1px solid rgba(188,139,56,.22);
  background: #fff7ea;
  box-shadow: 0 26px 70px rgba(68,43,19,.10);
}

.lux-panels article.light {
  background: #2f261d;
  color: #fff;
}

.lux-panels article.light p,
.lux-panels article.light h3 {
  color: rgba(255,255,255,.82);
}

.lux-form {
  background: #fff8ec;
  color: var(--lux-ink);
  border-color: rgba(188,139,56,.22);
}

.lux-form label {
  color: var(--lux-ink);
}

.lux-form input,
.lux-form textarea {
  background: #fff;
  color: var(--lux-ink);
  border-color: rgba(188,139,56,.26);
}

.lux-footer {
  padding: 48px clamp(18px, 5vw, 86px);
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 34px;
  background: #070605;
  color: rgba(255,255,255,.70);
  border-top: 1px solid var(--lux-gold);
}

.lux-footer a {
  color: rgba(255,255,255,.78);
}

.lux-footer h3 {
  color: #fff;
}

@media (max-width: 980px) {
  .lux-header {
    height: auto;
    min-height: 78px;
    align-items: flex-start;
  }

  .lux-logo {
    width: 180px;
  }

  .lux-toggle {
    display: block;
    color: #fff;
    border: 1px solid rgba(199,154,61,.5);
    background: rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 8px 10px;
    font-size: 22px;
  }

  .lux-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(7,6,5,.98);
    border: 1px solid rgba(199,154,61,.42);
    border-radius: 18px;
  }

  .menu-open .lux-nav {
    display: flex;
  }

  .lux-hero {
    min-height: 680px;
    background-position: center;
  }

  .lux-hero-shade {
    background:
      linear-gradient(90deg, rgba(5,5,5,.96), rgba(5,5,5,.70)),
      linear-gradient(0deg, rgba(5,5,5,.25), transparent 30%);
  }

  .lux-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .lux-intro,
  .lux-family,
  .lux-founder,
  .lux-panels,
  .lux-work,
  .lux-footer {
    grid-template-columns: 1fr;
  }

  .lux-photo-stack {
    grid-template-columns: 1fr;
  }

  .lux-photo-stack picture:first-child {
    transform: none;
  }

  .lux-photo-stack picture,
  .family-image-card picture {
    height: 300px;
  }

  .review-shell {
    grid-template-columns: 1fr;
  }

  .review-arrow-lux {
    display: none;
  }

  .reviews-track-lux {
    grid-auto-columns: minmax(82%, 1fr);
  }

  .lux-casona-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .lux-casona-collage picture {
    height: 300px;
  }

  .lux-casona-collage .collage-main {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .lux-benefits {
    grid-template-columns: 1fr;
  }

  .lux-phone {
    font-size: 34px;
  }

  .lux-btn {
    width: 100%;
  }
}


/* ===== Refinamiento v6: más cercano a la maqueta fina ===== */
.lux-body {
  background:
    radial-gradient(circle at top left, rgba(199,154,61,.08), transparent 30%),
    linear-gradient(180deg, #fff8ed 0%, #f7ead8 100%);
}

.lux-header {
  background: rgba(6,5,4,.92);
  border-bottom: 1px solid rgba(224,188,104,.78);
}

.lux-hero {
  min-height: 660px;
  border-bottom: 3px solid rgba(199,154,61,.58);
}

.lux-hero-shade {
  background:
    linear-gradient(90deg, rgba(4,4,4,.98) 0%, rgba(4,4,4,.90) 29%, rgba(4,4,4,.45) 56%, rgba(4,4,4,.12) 100%),
    radial-gradient(circle at 18% 58%, rgba(199,154,61,.18), transparent 32%);
}

.lux-hero h1 {
  max-width: 690px;
  font-size: clamp(36px, 4.3vw, 64px);
  line-height: 1.03;
  text-shadow: 0 14px 40px rgba(0,0,0,.35);
}

.lux-lead {
  max-width: 600px;
  font-size: clamp(17px, 1.7vw, 21px);
}

.lux-contact {
  margin-top: 10px;
  border-top: 1px solid rgba(224,188,104,.62);
  position: relative;
}

.lux-contact::before,
.lux-contact::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
}

.lux-contact::before { left: 0; }
.lux-contact::after { left: 92px; }

.lux-phone {
  font-size: clamp(38px, 5.2vw, 60px);
}

.lux-btn {
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(55,35,16,.18);
}

.lux-btn-gold {
  background: linear-gradient(135deg, #d8a13e, #efd18a);
}

.lux-benefits.refined-benefits {
  margin-top: -42px;
  position: relative;
  z-index: 3;
  padding: 0 0 34px;
}

.lux-benefits.refined-benefits article {
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,250,241,.82));
  border: 1px solid rgba(201,154,61,.22);
  box-shadow:
    0 18px 48px rgba(71,45,18,.10),
    inset 0 1px 0 rgba(255,255,255,.75);
}

.lux-benefits.refined-benefits span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(224,188,104,.22), rgba(224,188,104,.05));
  border: 1px solid rgba(201,154,61,.18);
  margin-bottom: 10px;
}

.lux-reviews {
  background:
    radial-gradient(circle at top left, rgba(201,154,61,.14), transparent 32%),
    radial-gradient(circle at bottom right, rgba(201,154,61,.10), transparent 38%),
    linear-gradient(180deg, #fffaf2, #f5e6d1);
}

.review-card-lux {
  border-radius: 20px;
  border: 1px solid rgba(201,154,61,.20);
  box-shadow:
    0 18px 48px rgba(71,45,18,.12),
    inset 0 1px 0 rgba(255,255,255,.70);
}

.family-refined {
  display: block;
  width: min(1220px, calc(100% - 42px));
}

.family-refined-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.family-refined-heading h2 {
  margin-bottom: 16px;
}

.family-refined-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.feature-photo-card {
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(201,154,61,.25);
  box-shadow: 0 30px 80px rgba(71,45,18,.16);
  background: #fffaf2;
}

.feature-photo-card picture,
.feature-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-photo-card img {
  object-fit: cover;
  transition: transform .45s ease;
}

.feature-photo-card:hover img {
  transform: scale(1.025);
}

.feature-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8,6,4,.78), rgba(8,6,4,.26) 46%, rgba(8,6,4,.06)),
    radial-gradient(circle at top left, rgba(224,188,104,.15), transparent 36%);
}

.feature-photo-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,248,236,.92);
  border: 1px solid rgba(201,154,61,.22);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

.feature-photo-copy span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(201,154,61,.16);
  border: 1px solid rgba(201,154,61,.24);
  font-size: 26px;
  margin-bottom: 12px;
}

.feature-photo-copy h3 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.02;
  margin: 0 0 10px;
  color: #2e2014;
}

.feature-photo-copy p {
  color: #675646;
  font-size: 16px;
  margin: 0;
}

.pet-feature-card .feature-photo-copy {
  background: rgba(255,250,242,.94);
}

.lux-intro,
.lux-founder,
.lux-panels,
.lux-work {
  position: relative;
}

.lux-section h2,
.lux-section-heading h2 {
  letter-spacing: -.035em;
}

.lux-photo-stack img,
.lux-casona-collage img,
.family-image-card img {
  border: 1px solid rgba(201,154,61,.18);
}

@media (max-width: 980px) {
  .lux-benefits.refined-benefits {
    margin-top: 0;
    padding-top: 18px;
  }

  .family-refined-grid {
    grid-template-columns: 1fr;
  }

  .feature-photo-card {
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .feature-photo-card {
    min-height: 420px;
  }

  .feature-photo-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }
}


/* ===== V7: más suave, vivo y cercano a la maqueta ===== */
.lux-body {
  background:
    url("../assets/img/fondo-suave-casona.jpg") center top / cover fixed,
    linear-gradient(180deg, #fff7ea, #f4e2c9);
  color: #332316;
}

.lux-header {
  height: 92px;
  padding: 12px clamp(28px, 5vw, 92px);
  background:
    linear-gradient(180deg, rgba(8,7,6,.92), rgba(8,7,6,.78));
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.lux-logo {
  width: 238px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.lux-nav {
  gap: clamp(18px, 2.2vw, 32px);
}

.lux-nav a {
  font-size: 12px;
  letter-spacing: .06em;
}

.lux-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #d9a64d, transparent);
  transition: left .2s ease, right .2s ease;
}

.lux-nav a:hover::after,
.lux-nav a:first-child::after {
  left: 0;
  right: 0;
}

.lux-hero {
  min-height: 690px;
  padding-top: 92px;
  background-position: center;
  border-bottom: 1px solid rgba(217,166,77,.72);
}

.lux-hero-shade {
  background:
    linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.88) 30%, rgba(5,5,5,.42) 57%, rgba(5,5,5,.12) 100%),
    radial-gradient(circle at 14% 50%, rgba(217,166,77,.20), transparent 34%),
    linear-gradient(0deg, rgba(8,7,6,.20), transparent 40%);
}

.lux-hero-content {
  width: min(1280px, calc(100% - 56px));
}

.lux-eyebrow {
  color: #e7bf69;
  letter-spacing: .20em;
  font-size: 11px;
}

.lux-hero h1 {
  max-width: 700px;
  font-size: clamp(36px, 4.7vw, 68px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.lux-hero h1::first-line {
  color: #ffffff;
}

.lux-hero h1 {
  color: #fff;
}

.lux-hero h1 {
  text-shadow: 0 18px 42px rgba(0,0,0,.40);
}

.lux-lead {
  max-width: 580px;
  color: rgba(255,255,255,.90);
  font-size: 19px;
}

.lux-ornament {
  width: min(390px, 100%);
  height: 20px;
  margin: 22px 0 12px;
  display: flex;
  align-items: center;
}

.lux-ornament span {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229,191,104,.75), transparent);
  position: relative;
}

.lux-ornament span::after {
  content: "◆";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #d9a64d;
  font-size: 11px;
  background: rgba(5,5,5,.72);
  padding: 0 12px;
}

.lux-contact {
  width: min(560px, 100%);
  padding-top: 18px;
  border-top: none;
}

.lux-contact::before,
.lux-contact::after {
  display: none;
}

.lux-contact span {
  color: rgba(255,255,255,.76);
}

.lux-phone {
  font-size: clamp(38px, 5.3vw, 62px);
  letter-spacing: .01em;
}

.lux-actions {
  gap: 18px;
}

.lux-btn {
  border-radius: 17px;
  min-height: 58px;
  padding: 15px 28px;
  text-transform: none;
}

.lux-btn-gold {
  background: linear-gradient(135deg, #cf9635, #f1cd7a);
  box-shadow:
    0 18px 34px rgba(191,135,45,.30),
    inset 0 1px 0 rgba(255,255,255,.42);
}

.lux-btn-green {
  background: linear-gradient(135deg, #239140, #39bd5a);
  box-shadow:
    0 18px 34px rgba(28,137,58,.26),
    inset 0 1px 0 rgba(255,255,255,.32);
}

.lux-benefits.refined-benefits {
  width: min(1280px, calc(100% - 56px));
  margin-top: -34px;
  padding-bottom: 42px;
  gap: 14px;
}

.lux-benefits.refined-benefits article {
  min-height: 138px;
  padding: 20px 20px 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,249,239,.88));
  border: 1px solid rgba(204,156,70,.24);
  box-shadow:
    0 22px 60px rgba(72,45,18,.11),
    inset 0 1px 0 rgba(255,255,255,.80);
  backdrop-filter: blur(6px);
}

.lux-benefits.refined-benefits span {
  width: 58px;
  height: 58px;
  font-size: 30px;
  margin-bottom: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.lux-benefits.refined-benefits article:nth-child(1) span { background: #f3e4c5; }
.lux-benefits.refined-benefits article:nth-child(2) span { background: #fff0d7; }
.lux-benefits.refined-benefits article:nth-child(3) span { background: #ffe7e7; }
.lux-benefits.refined-benefits article:nth-child(4) span { background: #e9f4df; }
.lux-benefits.refined-benefits article:nth-child(5) span { background: #f7e7cf; }
.lux-benefits.refined-benefits article:nth-child(6) span { background: #eee2d1; }

.lux-benefits h3 {
  font-size: 15px;
  color: #3a2a1b;
}

.lux-benefits p {
  color: #6d5c49;
}

.lux-section {
  padding: 88px 0;
}

.lux-section h2,
.lux-section-heading h2 {
  color: #342315;
  letter-spacing: -.045em;
}

.lux-intro {
  gap: 60px;
}

.lux-intro > div:first-child {
  padding: 10px 0;
}

.lux-photo-stack {
  position: relative;
}

.lux-photo-stack::before {
  content: "";
  position: absolute;
  inset: 24px -20px -24px 40px;
  border-radius: 34px;
  background: rgba(217,166,77,.16);
  filter: blur(18px);
}

.lux-photo-stack picture {
  position: relative;
  z-index: 1;
  height: 450px;
}

.lux-photo-stack img {
  border-radius: 24px;
  border: 1px solid rgba(204,156,70,.22);
  box-shadow: 0 28px 72px rgba(72,45,18,.18);
}

.lux-reviews {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    url("../assets/img/fondo-suave-casona.jpg") center / cover,
    linear-gradient(180deg, #fffaf2, #f5e6d1);
}

.lux-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 7% 16%, rgba(217,166,77,.14), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(217,166,77,.10), transparent 30%);
  pointer-events: none;
}

.lux-section-heading,
.review-shell,
.reviews-actions {
  position: relative;
  z-index: 1;
}

.lux-section-heading h2 {
  font-size: clamp(36px, 5vw, 62px);
}

.big-stars {
  color: #c68e32;
  text-shadow: 0 8px 20px rgba(198,142,50,.20);
}

.review-card-lux {
  min-height: 280px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,251,245,.94));
  border: 1px solid rgba(204,156,70,.20);
  box-shadow:
    0 20px 50px rgba(72,45,18,.12),
    inset 0 1px 0 rgba(255,255,255,.80);
}

.review-avatar {
  background: linear-gradient(135deg, #c68e32, #8a5c24);
}

.review-arrow-lux {
  background: rgba(255,255,255,.92);
  border-color: rgba(204,156,70,.24);
  box-shadow: 0 18px 42px rgba(72,45,18,.14);
}

.family-refined {
  padding-top: 92px;
  padding-bottom: 92px;
}

.family-refined-heading {
  margin-bottom: 40px;
}

.family-refined-heading p {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.family-refined-grid {
  gap: 28px;
}

.feature-photo-card {
  border-radius: 34px;
  border: 1px solid rgba(204,156,70,.24);
  box-shadow:
    0 30px 90px rgba(72,45,18,.16),
    inset 0 1px 0 rgba(255,255,255,.52);
}

.feature-photo-copy {
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,250,242,.96), rgba(255,244,226,.92));
  border: 1px solid rgba(204,156,70,.24);
}

.feature-photo-copy span {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.kids-card .feature-photo-copy span { background: #ffe5e7; }
.pet-feature-card .feature-photo-copy span { background: #e8f3dd; }

.lux-casona-collage picture {
  box-shadow: 0 24px 70px rgba(72,45,18,.16);
  border: 1px solid rgba(204,156,70,.20);
}

.lux-panels article,
.family-panel,
.lux-form {
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,247,234,.78));
  border: 1px solid rgba(204,156,70,.24);
  box-shadow: 0 26px 70px rgba(72,45,18,.12);
}

@media (max-width: 980px) {
  .lux-header {
    height: auto;
    min-height: 82px;
  }

  .lux-hero {
    min-height: 720px;
  }

  .lux-benefits.refined-benefits {
    margin-top: 18px;
  }

  .lux-photo-stack::before {
    display: none;
  }
}

@media (max-width: 620px) {
  .lux-hero-content {
    width: min(100% - 34px, 1280px);
  }

  .lux-hero h1 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .lux-benefits.refined-benefits {
    width: min(100% - 34px, 1280px);
  }
}


/* ===== V7.1: corregir botones hero visibles ===== */
.lux-hero {
  min-height: 760px;
  padding-bottom: 90px;
}

.lux-contact {
  position: relative;
  z-index: 5;
  margin-bottom: 34px;
}

.lux-actions {
  position: relative;
  z-index: 6;
}

.lux-benefits.refined-benefits {
  margin-top: -18px;
  position: relative;
  z-index: 4;
}

@media (max-width: 980px) {
  .lux-hero {
    min-height: 780px;
    padding-bottom: 120px;
  }

  .lux-benefits.refined-benefits {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .lux-hero {
    min-height: 820px;
    padding-bottom: 130px;
  }

  .lux-contact {
    margin-bottom: 46px;
  }
}


/* ===== V7.2: Quienes somos completo y suave ===== */
.lux-about-complete {
  width: min(1220px, calc(100% - 42px));
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 54px;
  align-items: center;
  padding-top: 94px;
  padding-bottom: 94px;
  color: #332316;
}

.lux-about-complete .founder-collage {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 210px 210px 210px;
  gap: 16px;
}

.lux-about-complete .founder-collage figure {
  margin: 0;
  min-height: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(204,156,70,.24);
  box-shadow:
    0 24px 70px rgba(72,45,18,.16),
    inset 0 1px 0 rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
}

.lux-about-complete .founder-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.lux-about-complete .founder-collage figure:hover img {
  transform: scale(1.035);
}

.lux-about-complete .founder-main {
  grid-row: 1 / span 3;
}

.lux-about-complete .founder-collage figure:nth-child(4) {
  grid-column: 2 / span 2;
}

.lux-about-complete .founder-copy {
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,248,236,.68));
  border: 1px solid rgba(204,156,70,.22);
  box-shadow:
    0 30px 80px rgba(72,45,18,.12),
    inset 0 1px 0 rgba(255,255,255,.75);
}

.lux-about-complete .founder-copy h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: #342315;
  margin: 0 0 22px;
}

.lux-about-complete .founder-copy p {
  color: #675646;
  font-size: 17px;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .lux-about-complete {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lux-about-complete .founder-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 180px 180px 180px;
  }

  .lux-about-complete .founder-main {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .lux-about-complete .founder-collage figure:nth-child(4) {
    grid-column: 1 / span 2;
  }

  .lux-about-complete .founder-copy {
    padding: 24px;
  }
}


/* ===== V7.5: Reseñas reales con fotos auténticas + carrusel automático ===== */
.reviews-track-real {
  grid-auto-columns: minmax(290px, 360px);
  gap: 22px;
  padding: 14px 4px 30px;
  scroll-behavior: smooth;
}

.review-card-real {
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,242,.94));
  border: 1px solid rgba(204,156,70,.22);
  box-shadow:
    0 22px 56px rgba(72,45,18,.14),
    inset 0 1px 0 rgba(255,255,255,.80);
}

.review-card-real picture,
.review-card-real img {
  display: block;
  width: 100%;
}

.review-card-real img {
  height: 188px;
  object-fit: cover;
  border-bottom: 1px solid rgba(204,156,70,.18);
}

.review-real-content {
  padding: 18px;
}

.review-card-real .review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}

.review-card-real .review-avatar {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #c68e32, #8a5c24);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(72,45,18,.16);
}

.review-card-real strong {
  display: block;
  color: #2f2116;
  font-size: 14px;
  line-height: 1.2;
}

.review-card-real .review-stars {
  color: #f5b400;
  font-size: 13px;
  letter-spacing: .02em;
}

.review-card-real .review-stars span {
  color: #4285f4;
  font-weight: 900;
  margin-left: 6px;
}

.review-card-real p {
  color: #4b3d31;
  font-size: 14px;
  line-height: 1.58;
  margin: 0;
}

.reviews-track-real:hover .review-card-real {
  transition: transform .22s ease, box-shadow .22s ease;
}

.review-card-real:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 66px rgba(72,45,18,.18),
    inset 0 1px 0 rgba(255,255,255,.80);
}

@media (max-width: 980px) {
  .reviews-track-real {
    grid-auto-columns: minmax(84%, 1fr);
  }

  .review-card-real img {
    height: 210px;
  }
}


/* ===== V7.6: Header unificado + contacto fijo ===== */
.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  flex: 0 0 auto;
}

.header-phone {
  color: #f6efe2;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 14px;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--lux-gold-2, #e5c76a);
}

.header-call,
.header-whatsapp {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-call {
  color: #21170d;
  background: linear-gradient(135deg, #d8a13e, #efd18a);
  box-shadow: 0 8px 18px rgba(191,135,45,.22);
}

.header-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #239140, #39bd5a);
  box-shadow: 0 8px 18px rgba(28,137,58,.20);
}

.lux-header {
  gap: 16px;
}

.lux-nav {
  margin-left: auto;
  gap: clamp(12px, 1.55vw, 24px);
}

.lux-nav a {
  font-size: 11px;
}

.site-header,
.site-header.solid {
  gap: 16px;
}

.site-header .top-nav {
  margin-left: auto;
  gap: clamp(10px, 1.35vw, 20px);
}

.site-header .top-nav a {
  font-size: 12px;
}

@media (max-width: 1320px) {
  .header-phone {
    display: none;
  }

  .lux-nav,
  .site-header .top-nav {
    gap: 12px;
  }
}

@media (max-width: 980px) {
  .lux-header,
  .site-header {
    align-items: center;
  }

  .header-contact {
    margin-left: auto;
    gap: 6px;
  }

  .header-call {
    display: none;
  }

  .header-whatsapp {
    min-height: 36px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .lux-toggle,
  .nav-toggle {
    flex: 0 0 auto;
    margin-left: 8px;
  }

  .lux-nav,
  .top-nav {
    z-index: 60;
  }
}

@media (max-width: 520px) {
  .header-whatsapp {
    font-size: 0;
    width: 42px;
    padding: 0;
  }

  .header-whatsapp::before {
    content: "W";
    font-size: 13px;
    font-weight: 900;
  }

  .lux-logo,
  .logo {
    max-width: 170px;
  }
}


/* ===== V7.7: PDF descargable de celebraciones ===== */
.event-pdf-download {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  padding: 44px 34px;
  border: 1px solid rgba(202,166,71,.34);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(202,166,71,.18), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}

.event-pdf-download h2 {
  margin-bottom: 14px;
}

.pdf-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  align-items: center;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(202,166,71,.24);
  background: rgba(0,0,0,.18);
}

.pdf-card-actions .small-note {
  flex: 1 0 100%;
  margin: 4px 0 0;
}

@media (max-width: 900px) {
  .event-pdf-download {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .pdf-card-actions {
    padding: 20px;
  }
}


/* ===== V7.8: Header con íconos teléfono/WhatsApp + PDF eventos ===== */
.header-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 16px;
  flex: 0 0 auto;
}

.header-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}

.header-icon-link:hover {
  transform: translateY(-1px) scale(1.04);
  filter: brightness(1.05);
}

.header-contact-icon {
  width: 38px;
  height: 38px;
  display: block;
}

.header-phone {
  color: #f6efe2 !important;
  text-decoration: none !important;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 15px;
  white-space: nowrap;
  line-height: 1;
  border-bottom: none !important;
}

.header-phone:hover {
  color: var(--lux-gold-2, #e5c76a) !important;
  text-decoration: none !important;
}

.header-call,
.header-whatsapp {
  display: none !important;
}

/* descarga PDF eventos */
.event-pdf-download {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.pdf-download-card {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(202,166,71,.18), transparent 40%),
    rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}

.pdf-download-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  color: #161006;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 900;
  letter-spacing: .08em;
}

.pdf-download-card h3 {
  color: var(--cream);
  font-size: 28px;
  margin: 18px 0 8px;
}

.pdf-download-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 1320px) {
  .header-phone {
    display: inline-flex;
    font-size: 13px;
  }
}

@media (max-width: 1120px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 980px) {
  .header-contact {
    margin-left: auto;
    gap: 7px;
  }

  .header-icon-link,
  .header-contact-icon {
    width: 36px;
    height: 36px;
  }

  .event-pdf-download {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .header-icon-link,
  .header-contact-icon {
    width: 34px;
    height: 34px;
  }
}


/* ===== V7.9: Header idéntico en todas las vistas ===== */
.unified-site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto 0;
  height: 92px;
  padding: 12px clamp(28px, 5vw, 92px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(8,7,6,.94), rgba(8,7,6,.82));
  border-bottom: 1px solid rgba(224,188,104,.78);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}

.unified-site-header .lux-logo {
  width: 238px;
  max-width: 238px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.unified-site-header .lux-logo-link {
  flex: 0 0 auto;
}

.unified-site-header .lux-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.45vw, 22px);
  margin-left: auto;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.unified-site-header .lux-nav a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.unified-site-header .lux-nav a:hover,
.unified-site-header .lux-nav a:first-child {
  color: var(--lux-gold-2, #e5c76a);
}

.unified-site-header .lux-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #d9a64d, transparent);
  transition: left .2s ease, right .2s ease;
}

.unified-site-header .lux-nav a:hover::after,
.unified-site-header .lux-nav a:first-child::after {
  left: 0;
  right: 0;
}

.unified-site-header .header-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 14px;
  flex: 0 0 auto;
}

.unified-site-header .header-phone {
  color: #f6efe2 !important;
  text-decoration: none !important;
  border-bottom: none !important;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: 14px;
  white-space: nowrap;
  line-height: 1;
}

.unified-site-header .header-icon-link,
.unified-site-header .header-contact-icon {
  width: 38px;
  height: 38px;
}

.unified-site-header .header-icon-link {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Como todas las páginas usan header fijo de 92px, compensamos páginas interiores */
body:not(.lux-body) main {
  padding-top: 0;
}

body:not(.lux-body) .menu-hero,
body:not(.lux-body) .cele-hero {
  margin-top: 0;
  padding-top: 92px;
}

/* Quitamos diferencias heredadas de site-header en páginas interiores */
.site-header,
.site-header.solid {
  display: none;
}

@media (max-width: 1320px) {
  .unified-site-header .header-phone {
    display: none;
  }

  .unified-site-header .lux-nav {
    gap: 11px;
  }
}

@media (max-width: 1080px) {
  .unified-site-header .lux-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 18px;
    right: 18px;
    padding: 18px;
    border: 1px solid rgba(199,154,61,.42);
    border-radius: 18px;
    background: rgba(7,6,5,.98);
    flex-direction: column;
    align-items: flex-start;
    z-index: 90;
  }

  .menu-open .unified-site-header .lux-nav {
    display: flex;
  }

  .unified-site-header {
    height: 82px;
    min-height: 82px;
    padding: 10px 18px;
  }

  .unified-site-header .lux-logo {
    width: 180px;
    max-width: 180px;
  }

  .unified-site-header .lux-toggle {
    display: block;
    color: #fff;
    border: 1px solid rgba(199,154,61,.5);
    background: rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 8px 10px;
    font-size: 22px;
    flex: 0 0 auto;
    order: 3;
  }

  .unified-site-header .header-contact {
    margin-left: auto;
    gap: 7px;
    order: 2;
  }

  .unified-site-header .header-icon-link,
  .unified-site-header .header-contact-icon {
    width: 36px;
    height: 36px;
  }

  body:not(.lux-body) .menu-hero,
  body:not(.lux-body) .cele-hero {
    padding-top: 82px;
  }
}

@media (max-width: 520px) {
  .unified-site-header .lux-logo {
    width: 160px;
    max-width: 160px;
  }

  .unified-site-header .header-icon-link,
  .unified-site-header .header-contact-icon {
    width: 34px;
    height: 34px;
  }
}


/* ===== V7.10: Etiquetas interiores más pequeñas + Pet friendly listo para foto real ===== */
.feature-photo-card {
  min-height: 500px;
}

.feature-photo-card::after {
  background:
    linear-gradient(0deg, rgba(8,6,4,.54), rgba(8,6,4,.16) 44%, rgba(8,6,4,.02)),
    radial-gradient(circle at top left, rgba(224,188,104,.08), transparent 34%);
}

.feature-photo-copy {
  left: 28px;
  right: 28px;
  bottom: 24px;
  padding: 16px 18px;
  max-width: 76%;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,250,242,.88), rgba(255,244,226,.78));
  backdrop-filter: blur(6px);
}

.feature-photo-copy span {
  width: 42px;
  height: 42px;
  font-size: 20px;
  margin-bottom: 8px;
}

.feature-photo-copy h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.02;
  margin-bottom: 6px;
}

.feature-photo-copy p {
  font-size: 14px;
  line-height: 1.45;
}

.pet-feature-card .feature-photo-copy {
  max-width: 70%;
}

@media (max-width: 980px) {
  .feature-photo-copy,
  .pet-feature-card .feature-photo-copy {
    max-width: calc(100% - 28px);
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .feature-photo-card {
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .feature-photo-copy {
    padding: 14px 16px;
  }

  .feature-photo-copy h3 {
    font-size: 24px;
  }
}


/* ===== V7.12 FINAL: un solo encabezado + etiquetas pequeñas ===== */

/* Ocultar cualquier header/elemento antiguo si quedara heredado */
.lux-header:not(.cg-header),
.site-header,
.site-header.solid,
.header-call,
.header-whatsapp,
.header-phone,
.header-contact,
.lux-toggle,
.nav-toggle {
  display: none !important;
}

/* Header único Casona Gourmet */
.cg-header {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto 0;
  height: 86px;
  padding: 9px clamp(22px, 4vw, 74px);
  display: flex;
  align-items: center;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(8,7,6,.96), rgba(8,7,6,.88));
  border-bottom: 1px solid rgba(224,188,104,.72);
  box-shadow: 0 12px 38px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}

.cg-logo-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.cg-logo {
  width: 214px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.32));
}

.cg-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.35vw, 20px);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .045em;
}

.cg-nav a {
  color: rgba(255,255,255,.90);
  text-decoration: none !important;
  border: none !important;
  white-space: nowrap;
  position: relative;
}

.cg-nav a:hover,
.cg-nav a:first-child {
  color: #e5c76a;
}

.cg-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -17px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #d9a64d, transparent);
  transition: left .2s ease, right .2s ease;
}

.cg-nav a:hover::after,
.cg-nav a:first-child::after {
  left: 0;
  right: 0;
}

.cg-contact {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.cg-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  border: none !important;
  transition: transform .2s ease, filter .2s ease;
}

.cg-contact-icon:hover {
  transform: translateY(-1px) scale(1.05);
  filter: brightness(1.06);
}

.cg-contact-icon img {
  width: 34px;
  height: 34px;
  display: block;
}

.cg-phone-text {
  color: #f6efe2;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none !important;
  border: none !important;
  cursor: default;
}

.cg-menu-toggle {
  display: none;
  color: #fff;
  border: 1px solid rgba(199,154,61,.5);
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Ajustar hero/interiores al header único */
.lux-hero {
  padding-top: 86px;
}

body:not(.lux-body) .menu-hero,
body:not(.lux-body) .cele-hero {
  padding-top: 86px !important;
}

/* Etiquetas interiores más pequeñas para ver mejor las fotos */
.feature-photo-card {
  min-height: 500px;
}

.feature-photo-card::after {
  background:
    linear-gradient(0deg, rgba(8,6,4,.46), rgba(8,6,4,.13) 42%, rgba(8,6,4,.02)),
    radial-gradient(circle at top left, rgba(224,188,104,.06), transparent 34%) !important;
}

.feature-photo-copy {
  left: 22px !important;
  right: auto !important;
  bottom: 20px !important;
  width: min(410px, calc(100% - 44px)) !important;
  max-width: 410px !important;
  padding: 13px 15px !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255,250,242,.84), rgba(255,244,226,.72)) !important;
  backdrop-filter: blur(5px);
}

.feature-photo-copy span {
  width: 34px !important;
  height: 34px !important;
  font-size: 17px !important;
  margin-bottom: 6px !important;
}

.feature-photo-copy h3 {
  font-size: clamp(18px, 1.65vw, 24px) !important;
  line-height: 1.02 !important;
  margin: 0 0 4px !important;
}

.feature-photo-copy p {
  font-size: 12.5px !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}

.pet-feature-card .feature-photo-copy {
  width: min(360px, calc(100% - 44px)) !important;
  max-width: 360px !important;
}

/* Responsive */
@media (max-width: 1340px) {
  .cg-phone-text {
    display: none;
  }

  .cg-nav {
    gap: 11px;
  }

  .cg-logo {
    width: 195px;
  }
}

@media (max-width: 1080px) {
  .cg-header {
    height: 78px;
    padding: 9px 16px;
  }

  .cg-logo {
    width: 170px;
  }

  .cg-menu-toggle {
    display: block;
    order: 3;
    flex: 0 0 auto;
  }

  .cg-contact {
    margin-left: auto;
    order: 2;
  }

  .cg-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    padding: 18px;
    border: 1px solid rgba(199,154,61,.42);
    border-radius: 18px;
    background: rgba(7,6,5,.98);
    flex-direction: column;
    align-items: flex-start;
    z-index: 1000;
  }

  .menu-open .cg-nav {
    display: flex;
  }

  .lux-hero {
    padding-top: 78px;
  }

  body:not(.lux-body) .menu-hero,
  body:not(.lux-body) .cele-hero {
    padding-top: 78px !important;
  }

  .feature-photo-copy,
  .pet-feature-card .feature-photo-copy {
    left: 14px !important;
    bottom: 14px !important;
    width: min(360px, calc(100% - 28px)) !important;
    max-width: calc(100% - 28px) !important;
  }
}

@media (max-width: 520px) {
  .cg-logo {
    width: 145px;
  }

  .cg-contact-icon,
  .cg-contact-icon img {
    width: 32px;
    height: 32px;
  }

  .cg-contact {
    gap: 6px;
  }

  .feature-photo-copy {
    padding: 12px 13px !important;
  }

  .feature-photo-copy h3 {
    font-size: 20px !important;
  }
}


/* ===== V7.13: Hero móvil más legible + Abierto todos los días ===== */
.hero-open-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 16px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #21170d;
  background: linear-gradient(135deg, #d8a13e, #efd18a);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 14px 34px rgba(191,135,45,.24);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
}

@media (max-width: 620px) {
  .lux-hero h1 {
    font-size: clamp(28px, 9.4vw, 42px) !important;
    line-height: 1.08 !important;
    max-width: 96%;
    letter-spacing: -.035em;
  }

  .lux-lead {
    font-size: 16px !important;
    line-height: 1.55;
    max-width: 94%;
  }

  .lux-phone {
    font-size: clamp(30px, 9.2vw, 38px) !important;
  }

  .hero-open-badge {
    font-size: 11px;
    letter-spacing: .10em;
    padding: 8px 13px;
    margin-top: 6px;
    margin-bottom: 14px;
  }
}

@media (max-width: 420px) {
  .lux-hero h1 {
    font-size: clamp(26px, 8.8vw, 36px) !important;
  }

  .lux-lead {
    font-size: 15px !important;
  }
}


/* ===== V7.15 EMERGENCIA: Header único sin SVG gigantes ===== */

/* Apagar cualquier header viejo o ícono heredado */
.lux-header:not(.cg-header),
.site-header,
.site-header.solid,
.header-contact,
.header-contact-icon,
.header-icon-link,
.header-call,
.header-whatsapp,
.header-phone,
.lux-toggle,
.nav-toggle {
  display: none !important;
}

/* Header único */
.cg-header {
  position: fixed !important;
  z-index: 9999 !important;
  inset: 0 0 auto 0 !important;
  height: 86px !important;
  padding: 9px clamp(22px, 4vw, 74px) !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  background: linear-gradient(180deg, rgba(8,7,6,.96), rgba(8,7,6,.88)) !important;
  border-bottom: 1px solid rgba(224,188,104,.72) !important;
  box-shadow: 0 12px 38px rgba(0,0,0,.22) !important;
  backdrop-filter: blur(12px) !important;
}

.cg-logo-link {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
}

.cg-logo {
  width: 214px !important;
  max-width: 214px !important;
  height: auto !important;
  display: block !important;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.32)) !important;
}

.cg-nav {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: clamp(10px, 1.35vw, 20px) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .045em !important;
}

.cg-nav a {
  color: rgba(255,255,255,.90) !important;
  text-decoration: none !important;
  border: none !important;
  white-space: nowrap !important;
  position: relative !important;
}

.cg-nav a:hover,
.cg-nav a:first-child {
  color: #e5c76a !important;
}

.cg-contact {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-left: 8px !important;
}

/* Botones creados con CSS, sin imágenes externas */
.cg-action-icon {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  border: none !important;
  overflow: hidden !important;
  line-height: 1 !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-weight: 900 !important;
  font-size: 15px !important;
  color: #fff !important;
}

.cg-action-phone {
  background: linear-gradient(135deg, #3ed65f, #23a848) !important;
}

.cg-action-whatsapp {
  background: linear-gradient(135deg, #25d366, #159447) !important;
}

.cg-action-icon span {
  display: inline-block !important;
  transform: translateY(-.5px) !important;
}

.cg-phone-text {
  color: #f6efe2 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  border: none !important;
  cursor: default !important;
}

.cg-menu-toggle {
  display: none !important;
  color: #fff !important;
  border: 1px solid rgba(199,154,61,.5) !important;
  background: rgba(255,255,255,.08) !important;
  border-radius: 12px !important;
  padding: 8px 10px !important;
  font-size: 22px !important;
  cursor: pointer !important;
}

/* compensación por header fijo */
.lux-hero {
  padding-top: 86px !important;
}

body:not(.lux-body) .menu-hero,
body:not(.lux-body) .cele-hero {
  padding-top: 86px !important;
}

/* Etiquetas chicas se mantienen */
.feature-photo-copy {
  left: 22px !important;
  right: auto !important;
  bottom: 20px !important;
  width: min(410px, calc(100% - 44px)) !important;
  max-width: 410px !important;
  padding: 13px 15px !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(255,250,242,.84), rgba(255,244,226,.72)) !important;
  backdrop-filter: blur(5px) !important;
}

.feature-photo-copy span {
  width: 34px !important;
  height: 34px !important;
  font-size: 17px !important;
  margin-bottom: 6px !important;
}

.feature-photo-copy h3 {
  font-size: clamp(18px, 1.65vw, 24px) !important;
  line-height: 1.02 !important;
  margin: 0 0 4px !important;
}

.feature-photo-copy p {
  font-size: 12.5px !important;
  line-height: 1.35 !important;
  margin: 0 !important;
}

@media (max-width: 1340px) {
  .cg-phone-text {
    display: none !important;
  }

  .cg-logo {
    width: 195px !important;
    max-width: 195px !important;
  }
}

@media (max-width: 1080px) {
  .cg-header {
    height: 78px !important;
    padding: 9px 16px !important;
  }

  .cg-logo {
    width: 170px !important;
    max-width: 170px !important;
  }

  .cg-menu-toggle {
    display: block !important;
    order: 3 !important;
    flex: 0 0 auto !important;
  }

  .cg-contact {
    margin-left: auto !important;
    order: 2 !important;
  }

  .cg-nav {
    display: none !important;
    position: absolute !important;
    top: 78px !important;
    left: 16px !important;
    right: 16px !important;
    padding: 18px !important;
    border: 1px solid rgba(199,154,61,.42) !important;
    border-radius: 18px !important;
    background: rgba(7,6,5,.98) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    z-index: 10000 !important;
  }

  .menu-open .cg-nav {
    display: flex !important;
  }

  .lux-hero {
    padding-top: 78px !important;
  }

  body:not(.lux-body) .menu-hero,
  body:not(.lux-body) .cele-hero {
    padding-top: 78px !important;
  }

  .cg-action-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 520px) {
  .cg-logo {
    width: 145px !important;
    max-width: 145px !important;
  }

  .cg-action-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    font-size: 13px !important;
  }

  .cg-contact {
    gap: 6px !important;
  }
}


/* ===== V7.16 KILL SWITCH: iconos gigantes eliminados/controlados ===== */

/* Si por caché queda algún SVG viejo en HTML, lo achicamos sí o sí */
img[src*="icon-phone.svg"],
img[src*="icon-whatsapp.svg"],
svg[src*="icon-phone.svg"],
svg[src*="icon-whatsapp.svg"],
.header-contact img,
.header-icon-link img,
.header-contact-icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  min-height: 28px !important;
  max-height: 28px !important;
  display: inline-block !important;
  object-fit: contain !important;
}

/* El header antiguo no debe mostrarse */
.lux-header:not(.cg-header),
.site-header,
.site-header.solid,
.header-contact,
.header-icon-link,
.header-call,
.header-whatsapp,
.header-phone,
.lux-toggle,
.nav-toggle {
  display: none !important;
}

/* Header único sin imágenes SVG */
.cg-header {
  position: fixed !important;
  z-index: 9999 !important;
  inset: 0 0 auto 0 !important;
  height: 82px !important;
  padding: 9px clamp(18px, 4vw, 64px) !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  background: linear-gradient(180deg, rgba(8,7,6,.96), rgba(8,7,6,.88)) !important;
  border-bottom: 1px solid rgba(224,188,104,.72) !important;
  box-shadow: 0 12px 38px rgba(0,0,0,.22) !important;
  backdrop-filter: blur(12px) !important;
}

.cg-logo-link {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
}

.cg-logo {
  width: 198px !important;
  max-width: 198px !important;
  height: auto !important;
  display: block !important;
}

.cg-nav {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: clamp(10px, 1.25vw, 18px) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .045em !important;
}

.cg-nav a {
  color: rgba(255,255,255,.90) !important;
  text-decoration: none !important;
  border: none !important;
  white-space: nowrap !important;
}

.cg-contact {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-left: 8px !important;
}

.cg-action-icon {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  max-width: 30px !important;
  min-height: 30px !important;
  max-height: 30px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  overflow: hidden !important;
  line-height: 1 !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.cg-action-phone {
  background: linear-gradient(135deg, #3ed65f, #23a848) !important;
}

.cg-action-whatsapp {
  background: linear-gradient(135deg, #25d366, #159447) !important;
}

.cg-phone-text {
  color: #f6efe2 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  border: none !important;
}

.cg-menu-toggle {
  display: none !important;
}

.lux-hero {
  padding-top: 82px !important;
}

body:not(.lux-body) .menu-hero,
body:not(.lux-body) .cele-hero {
  padding-top: 82px !important;
}

@media (max-width: 1340px) {
  .cg-phone-text {
    display: none !important;
  }

  .cg-logo {
    width: 180px !important;
    max-width: 180px !important;
  }
}

@media (max-width: 1080px) {
  .cg-header {
    height: 76px !important;
    padding: 8px 16px !important;
  }

  .cg-logo {
    width: 160px !important;
    max-width: 160px !important;
  }

  .cg-menu-toggle {
    display: block !important;
    order: 3 !important;
    color: #fff !important;
    border: 1px solid rgba(199,154,61,.5) !important;
    background: rgba(255,255,255,.08) !important;
    border-radius: 12px !important;
    padding: 8px 10px !important;
    font-size: 22px !important;
  }

  .cg-contact {
    margin-left: auto !important;
    order: 2 !important;
  }

  .cg-nav {
    display: none !important;
    position: absolute !important;
    top: 76px !important;
    left: 16px !important;
    right: 16px !important;
    padding: 18px !important;
    border: 1px solid rgba(199,154,61,.42) !important;
    border-radius: 18px !important;
    background: rgba(7,6,5,.98) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    z-index: 10000 !important;
  }

  .menu-open .cg-nav {
    display: flex !important;
  }

  .lux-hero,
  body:not(.lux-body) .menu-hero,
  body:not(.lux-body) .cele-hero {
    padding-top: 76px !important;
  }
}

@media (max-width: 520px) {
  .cg-logo {
    width: 140px !important;
    max-width: 140px !important;
  }

  .cg-action-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
    font-size: 12px !important;
  }
}

/* V7.18 redundancia header único */

  
    /* Header único forzado en TODAS las páginas */
    .site-header,.site-header.solid,.lux-header:not(.cg-header),.header-contact,.header-icon-link,.header-contact-icon,.header-call,.header-whatsapp,.header-phone,.lux-toggle,.nav-toggle{display:none!important}
    .cg-header{position:fixed!important;z-index:99999!important;inset:0 0 auto 0!important;height:82px!important;padding:8px clamp(18px,4vw,64px)!important;display:flex!important;align-items:center!important;gap:16px!important;background:linear-gradient(180deg,rgba(8,7,6,.96),rgba(8,7,6,.88))!important;border-bottom:1px solid rgba(224,188,104,.72)!important;box-shadow:0 12px 38px rgba(0,0,0,.22)!important;box-sizing:border-box!important}
    .cg-logo-link{display:inline-flex!important;align-items:center!important;flex:0 0 auto!important;text-decoration:none!important;border:0!important}
    .cg-logo{width:190px!important;max-width:190px!important;height:auto!important;display:block!important}
    .cg-nav{margin-left:auto!important;display:flex!important;align-items:center!important;gap:clamp(10px,1.25vw,18px)!important;font-size:11px!important;font-weight:900!important;text-transform:uppercase!important;letter-spacing:.045em!important}
    .cg-nav a{color:rgba(255,255,255,.90)!important;text-decoration:none!important;border:0!important;white-space:nowrap!important;font-family:Inter,system-ui,sans-serif!important}
    .cg-nav a:hover,.cg-nav a:first-child{color:#e5c76a!important}
    .cg-contact{display:flex!important;align-items:center!important;gap:8px!important;margin-left:8px!important;flex:0 0 auto!important}
    .cg-action-icon{width:30px!important;height:30px!important;min-width:30px!important;max-width:30px!important;min-height:30px!important;max-height:30px!important;padding:0!important;margin:0!important;border-radius:999px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;text-decoration:none!important;overflow:hidden!important;line-height:1!important;color:#fff!important;font-size:13px!important;font-weight:900!important;font-family:Inter,system-ui,sans-serif!important;border:0!important}
    .cg-action-phone{background:linear-gradient(135deg,#3ed65f,#23a848)!important}
    .cg-action-whatsapp{background:linear-gradient(135deg,#25d366,#159447)!important}
    .cg-phone-text{color:#f6efe2!important;font-size:14px!important;font-weight:900!important;line-height:1!important;white-space:nowrap!important;text-decoration:none!important;border:0!important;font-family:Inter,system-ui,sans-serif!important}
    .cg-menu-toggle{display:none!important;color:#fff!important;border:1px solid rgba(199,154,61,.5)!important;background:rgba(255,255,255,.08)!important;border-radius:12px!important;padding:8px 10px!important;font-size:22px!important;cursor:pointer!important}
    .lux-hero{padding-top:82px!important}
    .menu-hero,.cele-hero{padding-top:82px!important}
    body{padding-top:0!important}
    @media(max-width:1340px){.cg-phone-text{display:none!important}.cg-logo{width:176px!important;max-width:176px!important}}
    @media(max-width:1080px){
      .cg-header{height:76px!important;padding:8px 16px!important}
      .cg-logo{width:156px!important;max-width:156px!important}
      .cg-menu-toggle{display:block!important;order:3!important;flex:0 0 auto!important}
      .cg-contact{margin-left:auto!important;order:2!important}
      .cg-nav{display:none!important;position:absolute!important;top:76px!important;left:16px!important;right:16px!important;padding:18px!important;border:1px solid rgba(199,154,61,.42)!important;border-radius:18px!important;background:rgba(7,6,5,.98)!important;flex-direction:column!important;align-items:flex-start!important;z-index:100000!important}
      .menu-open .cg-nav{display:flex!important}
      .lux-hero,.menu-hero,.cele-hero{padding-top:76px!important}
    }
    @media(max-width:520px){
      .cg-logo{width:138px!important;max-width:138px!important}
      .cg-action-icon{width:28px!important;height:28px!important;min-width:28px!important;max-width:28px!important;min-height:28px!important;max-height:28px!important;font-size:12px!important}
      .cg-contact{gap:6px!important}
    }
  


/* ===== V7.19: Destacados + tarjetas clicables ===== */
.clickable-benefits{grid-template-columns:repeat(8,minmax(0,1fr))}
.benefit-link-card{min-height:138px;padding:20px 20px 18px;border-radius:20px;background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,249,239,.88));border:1px solid rgba(204,156,70,.24);box-shadow:0 22px 60px rgba(72,45,18,.11),inset 0 1px 0 rgba(255,255,255,.80);backdrop-filter:blur(6px);text-decoration:none!important;color:inherit;display:block;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.benefit-link-card:hover{transform:translateY(-4px);border-color:rgba(204,156,70,.42);box-shadow:0 28px 70px rgba(72,45,18,.15),inset 0 1px 0 rgba(255,255,255,.85)}
.benefit-link-card span{width:58px;height:58px;display:grid;place-items:center;border-radius:999px;background:radial-gradient(circle,rgba(224,188,104,.22),rgba(224,188,104,.05));border:1px solid rgba(201,154,61,.18);font-size:30px;margin-bottom:12px}
.benefit-link-card h3{font-family:Cinzel,Georgia,serif;font-size:15px;line-height:1.15;color:#3a2a1b;margin:0 0 8px;text-transform:uppercase}
.benefit-link-card p{color:#6d5c49;margin:0;font-size:13px;line-height:1.45}
.benefit-featured{background:radial-gradient(circle at top left,rgba(224,188,104,.28),transparent 42%),linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,244,225,.90))}
.featured-hero{position:relative;min-height:72vh;display:grid;align-items:center;padding-top:92px;background-image:url("../assets/img/hero-casona-suave-real.jpg");background-size:cover;background-position:center;overflow:hidden}
.featured-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,5,5,.94),rgba(5,5,5,.68) 42%,rgba(5,5,5,.18)),radial-gradient(circle at 70% 18%,rgba(217,166,77,.18),transparent 34%)}
.featured-hero-content{position:relative;z-index:2;width:min(1080px,calc(100% - 42px));margin:0 auto;color:#fff}
.featured-hero h1{font-family:Cinzel,Georgia,serif;max-width:860px;font-size:clamp(42px,6vw,84px);line-height:.98;letter-spacing:-.05em;margin:0 0 20px}
.featured-hero p{max-width:720px;color:rgba(255,255,255,.88);font-size:clamp(18px,2vw,24px);line-height:1.55}
.patrimonio-story{display:grid;grid-template-columns:.88fr 1.12fr;gap:44px;align-items:center}
.patrimonio-copy{padding:34px;border-radius:34px;background:linear-gradient(180deg,rgba(255,255,255,.82),rgba(255,248,236,.68));border:1px solid rgba(204,156,70,.22);box-shadow:0 30px 80px rgba(72,45,18,.12),inset 0 1px 0 rgba(255,255,255,.75)}
.patrimonio-copy h2{font-family:Cinzel,Georgia,serif;font-size:clamp(34px,4.8vw,62px);line-height:1.02;letter-spacing:-.045em;color:#342315;margin:0 0 22px}
.patrimonio-gallery{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.patrimonio-gallery picture{min-height:260px;border-radius:28px;overflow:hidden;box-shadow:0 24px 70px rgba(72,45,18,.16);border:1px solid rgba(204,156,70,.20)}
.patrimonio-gallery picture:first-child{grid-column:span 2;min-height:360px}
.patrimonio-gallery img{width:100%;height:100%;object-fit:cover}
.featured-mini-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.featured-mini-card{padding:26px;border-radius:26px;background:linear-gradient(180deg,rgba(255,255,255,.86),rgba(255,247,234,.78));border:1px solid rgba(204,156,70,.24);box-shadow:0 26px 70px rgba(72,45,18,.12);text-decoration:none!important;color:#342315;transition:transform .2s ease,box-shadow .2s ease}
.featured-mini-card:hover{transform:translateY(-4px);box-shadow:0 30px 80px rgba(72,45,18,.16)}
.featured-mini-card span{color:#c68e32;text-transform:uppercase;letter-spacing:.14em;font-size:12px;font-weight:900}
.featured-mini-card h3{font-family:Cinzel,Georgia,serif;font-size:28px;margin:10px 0 8px}
@media(max-width:1180px){.clickable-benefits{grid-template-columns:repeat(3,1fr)}}
@media(max-width:980px){.patrimonio-story,.featured-mini-grid{grid-template-columns:1fr}.featured-hero{min-height:72vh}.featured-hero h1{font-size:clamp(34px,10vw,58px)}.patrimonio-gallery picture,.patrimonio-gallery picture:first-child{grid-column:auto;min-height:280px}}
@media(max-width:620px){.clickable-benefits{grid-template-columns:1fr}}


/* ===== V7.20: etiquetas interiores más pequeñas en Familia/Pet Friendly ===== */
.family-refined-grid .feature-photo-card {
  min-height: 520px !important;
}

.family-refined-grid .feature-photo-card::after {
  background:
    linear-gradient(0deg, rgba(8,6,4,.34), rgba(8,6,4,.08) 42%, rgba(8,6,4,0)),
    radial-gradient(circle at top left, rgba(224,188,104,.04), transparent 34%) !important;
}

.family-refined-grid .feature-photo-copy {
  left: 18px !important;
  right: auto !important;
  bottom: 16px !important;
  width: min(300px, calc(100% - 36px)) !important;
  max-width: 300px !important;
  min-height: auto !important;
  padding: 10px 12px !important;
  border-radius: 16px !important;
  background:
    linear-gradient(180deg, rgba(255,250,242,.78), rgba(255,244,226,.62)) !important;
  backdrop-filter: blur(4px) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.16) !important;
}

.family-refined-grid .feature-photo-copy span {
  width: 28px !important;
  height: 28px !important;
  font-size: 14px !important;
  margin-bottom: 4px !important;
}

.family-refined-grid .feature-photo-copy h3 {
  font-size: 19px !important;
  line-height: 1.04 !important;
  margin: 0 0 3px !important;
  letter-spacing: -.02em !important;
}

.family-refined-grid .feature-photo-copy p {
  font-size: 11.5px !important;
  line-height: 1.32 !important;
  margin: 0 !important;
}

.family-refined-grid .pet-feature-card .feature-photo-copy {
  width: min(280px, calc(100% - 36px)) !important;
  max-width: 280px !important;
}

@media (max-width: 980px) {
  .family-refined-grid .feature-photo-card {
    min-height: 430px !important;
  }

  .family-refined-grid .feature-photo-copy,
  .family-refined-grid .pet-feature-card .feature-photo-copy {
    width: min(300px, calc(100% - 28px)) !important;
    max-width: 300px !important;
    left: 14px !important;
    bottom: 14px !important;
  }
}

@media (max-width: 520px) {
  .family-refined-grid .feature-photo-copy,
  .family-refined-grid .pet-feature-card .feature-photo-copy {
    width: min(260px, calc(100% - 24px)) !important;
    max-width: 260px !important;
    padding: 9px 11px !important;
  }

  .family-refined-grid .feature-photo-copy h3 {
    font-size: 18px !important;
  }

  .family-refined-grid .feature-photo-copy p {
    font-size: 11px !important;
  }
}


/* ===== V7.21: autoplay de reseñas sin mover la página ===== */
#reviewsTrack,
.reviews-track-lux,
.reviews-track-real,
.reviews-track-clean,
.reviews-track-photo {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
  overflow-anchor: none;
  scroll-snap-type: x mandatory;
}

.review-card-real,
.review-card-lux,
.review-card-clean,
.review-card-photo {
  scroll-snap-align: center;
  overflow-anchor: none;
}

.lux-reviews {
  overflow-anchor: none;
}


/* ===== V7.22: Destacados patrimoniales con fotos antiguas de Ovalle ===== */
.heritage-hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 92px;
  background: #090705;
}

.heritage-hero picture,
.heritage-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.heritage-hero img {
  object-fit: cover;
  filter: sepia(.18) contrast(1.08) brightness(.82);
}

.heritage-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.94), rgba(5,5,5,.72) 42%, rgba(5,5,5,.20)),
    radial-gradient(circle at 72% 20%, rgba(217,166,77,.18), transparent 34%);
}

.heritage-hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 42px));
  margin: 0 auto;
  color: #fff;
}

.heritage-hero h1 {
  font-family: Cinzel, Georgia, serif;
  max-width: 880px;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.05em;
  margin: 0 0 22px;
}

.heritage-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.90);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.heritage-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.heritage-intro-copy,
.heritage-cta {
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,248,236,.70));
  border: 1px solid rgba(204,156,70,.22);
  box-shadow:
    0 30px 80px rgba(72,45,18,.12),
    inset 0 1px 0 rgba(255,255,255,.75);
}

.heritage-intro-copy h2,
.heritage-section-heading h2,
.heritage-casona-now h2,
.heritage-cta h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: #342315;
  margin: 0 0 22px;
}

.heritage-photo-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(204,156,70,.22);
  box-shadow: 0 28px 74px rgba(72,45,18,.16);
  background: #fff8ec;
}

.heritage-photo-card picture,
.heritage-photo-card img {
  display: block;
  width: 100%;
}

.heritage-photo-card img {
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: sepia(.12) contrast(1.04);
}

.heritage-photo-card small {
  display: block;
  padding: 12px 16px;
  color: #74624f;
  font-size: 12px;
}

.heritage-section-heading {
  max-width: 940px;
  text-align: center;
  margin: 0 auto 34px;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 20px;
}

.heritage-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(204,156,70,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,247,234,.78));
  box-shadow: 0 26px 70px rgba(72,45,18,.13);
}

.heritage-card.large {
  grid-row: span 2;
}

.heritage-card picture,
.heritage-card img {
  display: block;
  width: 100%;
}

.heritage-card img {
  height: 320px;
  object-fit: cover;
}

.heritage-card.large img {
  height: 660px;
}

.heritage-card div {
  padding: 22px;
}

.heritage-card span {
  color: #c68e32;
  font-weight: 900;
  letter-spacing: .18em;
  font-size: 12px;
}

.heritage-card h3 {
  font-family: Cinzel, Georgia, serif;
  color: #342315;
  font-size: 28px;
  margin: 8px 0 10px;
}

.heritage-card p {
  color: #675646;
  line-height: 1.62;
}

.heritage-casona-now {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: center;
}

.heritage-now-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.heritage-now-gallery picture {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(204,156,70,.20);
  box-shadow: 0 24px 70px rgba(72,45,18,.16);
}

.heritage-now-gallery picture:first-child {
  grid-column: span 2;
}

.heritage-now-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.heritage-cta {
  text-align: center;
  width: min(960px, calc(100% - 42px));
}

.heritage-cta .lux-actions {
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .heritage-intro,
  .heritage-casona-now,
  .heritage-grid {
    grid-template-columns: 1fr;
  }

  .heritage-card.large {
    grid-row: auto;
  }

  .heritage-card img,
  .heritage-card.large img {
    height: 340px;
  }

  .heritage-hero h1 {
    font-size: clamp(34px, 10vw, 58px);
  }

  .heritage-hero {
    min-height: 74vh;
  }
}

@media (max-width: 620px) {
  .heritage-intro-copy,
  .heritage-cta {
    padding: 24px;
  }

  .heritage-now-gallery {
    grid-template-columns: 1fr;
  }

  .heritage-now-gallery picture:first-child {
    grid-column: auto;
  }
}


/* ===== V7.23: Fachada continua en formato ancho ===== */
.heritage-grid {
  grid-template-columns: 1fr 1fr !important;
}

.heritage-card.large {
  grid-column: 1 / -1 !important;
  grid-row: auto !important;
  display: grid !important;
  grid-template-columns: 1.35fr .65fr !important;
  align-items: stretch !important;
}

.heritage-card.large picture {
  min-height: 420px !important;
}

.heritage-card.large img {
  height: 100% !important;
  min-height: 420px !important;
  object-fit: cover !important;
  object-position: left center !important;
}

.heritage-card.large div {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 30px !important;
}

@media (max-width: 980px) {
  .heritage-grid {
    grid-template-columns: 1fr !important;
  }

  .heritage-card.large {
    grid-template-columns: 1fr !important;
  }

  .heritage-card.large picture,
  .heritage-card.large img {
    min-height: 300px !important;
    height: 300px !important;
    object-position: left center !important;
  }
}

/* ===== Destacados V8: lienzo patrimonial y linea editorial ===== */
.destacados-body {
  background:
    linear-gradient(180deg, rgba(244, 226, 185, .92), rgba(250, 238, 209, .96)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center top / 1450px auto repeat-y;
  color: #302116;
}

.destacados-body main {
  background:
    linear-gradient(180deg, rgba(12, 14, 8, .18), rgba(247, 232, 193, .82) 44%, rgba(248, 235, 205, .94)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center top / 1450px auto repeat-y;
}

.destacados-body .heritage-hero {
  min-height: 74vh;
  padding: 112px clamp(22px, 7vw, 92px) 82px;
}

.destacados-body .heritage-hero img {
  filter: sepia(.16) contrast(1.08) brightness(.78) saturate(.94);
}

.destacados-body .heritage-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 4, .88), rgba(5, 6, 4, .62) 45%, rgba(5, 6, 4, .22) 72%, rgba(5, 6, 4, .48)),
    linear-gradient(180deg, rgba(5, 6, 4, .36), rgba(5, 6, 4, .12) 48%, rgba(5, 6, 4, .64));
}

.destacados-body .heritage-hero-content {
  width: min(1180px, 100%);
}

.destacados-body .heritage-hero h1 {
  max-width: 940px;
  color: #fff8ec;
  text-shadow: 0 14px 36px rgba(0, 0, 0, .54);
}

.destacados-body .heritage-hero p {
  color: rgba(255, 248, 236, .9);
}

.destacados-body .lux-eyebrow {
  color: #c6942c;
  letter-spacing: .14em;
}

.destacados-body .lux-section {
  width: min(1180px, calc(100% - 42px));
  margin-left: auto;
  margin-right: auto;
}

.destacados-body .heritage-intro {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding: clamp(22px, 3.6vw, 34px);
  border: 1px solid rgba(118, 79, 36, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 249, 229, .94), rgba(242, 219, 176, .86)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center / 1350px auto;
  box-shadow: 0 22px 52px rgba(81, 49, 19, .16);
}

.destacados-body .heritage-intro-copy,
.destacados-body .heritage-cta,
.destacados-body .heritage-card {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 235, .92), rgba(244, 226, 190, .88)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center / 1100px auto;
  border: 1px solid rgba(118, 79, 36, .18);
  box-shadow: 0 16px 38px rgba(81, 49, 19, .12);
}

.destacados-body .heritage-intro-copy {
  box-shadow: none;
}

.destacados-body .heritage-photo-card,
.destacados-body .heritage-now-gallery picture {
  border-radius: 8px;
  border: 1px solid rgba(118, 79, 36, .18);
  box-shadow: 0 18px 42px rgba(81, 49, 19, .14);
}

.destacados-body .heritage-section-heading {
  margin-top: clamp(24px, 4vw, 44px);
}

.destacados-body .heritage-section-heading,
.destacados-body .heritage-casona-now > div:first-child {
  padding: clamp(18px, 3vw, 30px);
  border-radius: 8px;
  background: rgba(255, 248, 232, .46);
  border: 1px solid rgba(118, 79, 36, .1);
}

.destacados-body .heritage-intro-copy h2,
.destacados-body .heritage-section-heading h2,
.destacados-body .heritage-casona-now h2,
.destacados-body .heritage-cta h2,
.destacados-body .heritage-card h3 {
  color: #203719;
  letter-spacing: 0;
}

.destacados-body .heritage-intro-copy p,
.destacados-body .heritage-section-heading p,
.destacados-body .heritage-casona-now p,
.destacados-body .heritage-card p,
.destacados-body .heritage-photo-card small {
  color: rgba(47, 33, 24, .76);
}

.destacados-body .heritage-card {
  overflow: hidden;
}

.destacados-body .heritage-card div {
  padding: clamp(22px, 3vw, 32px);
}

.destacados-body .heritage-card span {
  color: #8a5a20;
}

.destacados-body .heritage-card img,
.destacados-body .heritage-photo-card img,
.destacados-body .heritage-now-gallery img {
  filter: sepia(.08) contrast(1.03) saturate(.94);
}

.destacados-body .heritage-casona-now {
  padding: clamp(22px, 3.6vw, 34px);
  border-radius: 8px;
  border: 1px solid rgba(118, 79, 36, .12);
  background: rgba(255, 248, 232, .34);
}

.destacados-body .heritage-cta {
  width: min(960px, calc(100% - 42px));
  margin-top: clamp(26px, 4vw, 46px);
  margin-bottom: clamp(40px, 6vw, 76px);
}

.destacados-body .lux-footer {
  background: #172610;
}

@media (max-width: 980px) {
  .destacados-body .heritage-hero {
    min-height: 72vh;
    padding: 104px 22px 66px;
  }

  .destacados-body .heritage-intro {
    margin-top: -26px;
  }
}

@media (max-width: 620px) {
  .destacados-body .lux-section,
  .destacados-body .heritage-cta {
    width: calc(100% - 24px);
  }

  .destacados-body .heritage-intro,
  .destacados-body .heritage-casona-now {
    padding: 16px;
  }
}


/* ===== V7.24: etiqueta Abierto todos los días clicable hacia horarios ===== */
.hero-open-badge.hero-open-link,
.hero-open-link {
  text-decoration: none !important;
  cursor: pointer;
  width: min(470px, 100%);
  min-height: 50px;
  padding: 13px 26px;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  letter-spacing: .14em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.hero-open-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 42px rgba(191,135,45,.30);
}

.hero-open-link:focus-visible {
  outline: 3px solid rgba(255,255,255,.75);
  outline-offset: 4px;
}

#llegar {
  scroll-margin-top: 110px;
}

@media (max-width: 620px) {
  .hero-open-badge.hero-open-link,
  .hero-open-link {
    width: min(360px, 94%);
    min-height: 44px;
    font-size: 11.5px;
    padding: 10px 16px;
    letter-spacing: .10em;
  }

  #llegar {
    scroll-margin-top: 92px;
  }
}

/* ===== Inicio V8: orden editorial y lienzo patrimonial ===== */
.home-body {
  background:
    linear-gradient(180deg, rgba(250, 240, 214, .72), rgba(246, 229, 190, .78)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center top / 1450px auto repeat-y,
    #f4e6c6;
}

.home-body main {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0) 0, rgba(255, 248, 232, .72) 720px, rgba(255, 248, 232, .18) 100%);
}

.home-body .lux-hero { order: 1; }
.home-body .lux-benefits { order: 2; }
.home-body #ambientes { order: 3; }
.home-body #familia { order: 4; }
.home-body #pet-friendly { order: 5; }
.home-body #llegar { order: 6; }
.home-body #experiencia { order: 7; }
.home-body #quienes-somos { order: 8; }
.home-body #contacto { order: 9; }
.home-body #resenas { order: 10; }

.home-body .lux-benefits.refined-benefits {
  width: min(1240px, calc(100% - 42px));
  margin: -46px auto 0;
  padding: 20px;
  border: 1px solid rgba(139, 100, 43, .22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, .92), rgba(242, 222, 181, .86)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center / 1050px auto;
  box-shadow: 0 24px 70px rgba(72, 45, 18, .18);
  position: relative;
  z-index: 5;
}

.home-body .benefit-link-card {
  border-radius: 8px;
  background: rgba(255, 252, 243, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .74);
}

.home-body .home-access-panel {
  display: grid;
  grid-template-columns: repeat(7, minmax(126px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.home-body .benefit-group-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2f4323;
  font-family: Cinzel, Georgia, serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-body .benefit-group-label::before,
.home-body .benefit-group-label::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: linear-gradient(90deg, transparent, rgba(145, 104, 44, .38), transparent);
}

.home-body .benefit-group-label-sections {
  margin-top: 6px;
  color: #7b4a25;
}

.home-body .benefit-link-card.benefit-landing {
  min-height: 154px;
  border-color: rgba(71, 91, 41, .24);
}

.home-body .benefit-link-card.benefit-section {
  min-height: 130px;
  background: rgba(255, 250, 238, .56);
  border-style: dashed;
  border-color: rgba(170, 124, 58, .34);
}

.home-body .benefit-link-card.benefit-landing h3 {
  color: #24381e;
}

.home-body .benefit-link-card.benefit-section h3 {
  color: #6b3f22;
  font-size: 14px;
}

.home-body .benefit-link-card.benefit-pending {
  cursor: default;
  opacity: .78;
  filter: saturate(.82);
}

.home-body .benefit-link-card.benefit-pending:hover {
  transform: none;
  border-color: rgba(204, 156, 70, .24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .74);
}

.home-body .benefit-link-card.benefit-pending h3::after {
  content: "Pronto";
  display: inline-block;
  margin-left: 7px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #7a4a20;
  background: rgba(222, 177, 91, .18);
  border: 1px solid rgba(178, 128, 42, .24);
  font-family: Inter, system-ui, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .04em;
  vertical-align: middle;
}

.home-body .lux-section,
.home-body .lux-reviews {
  position: relative;
  z-index: 1;
}

.home-body .lux-intro,
.home-body .home-salones,
.home-body .family-refined,
.home-body .lux-panels,
.home-body .lux-work,
.home-body .lux-about-complete,
.home-body .lux-reviews {
  width: min(1180px, calc(100% - 42px));
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  border: 1px solid rgba(139, 100, 43, .18);
  background:
    linear-gradient(180deg, rgba(255, 250, 238, .84), rgba(244, 226, 192, .64)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center / 1350px auto;
  box-shadow: 0 18px 58px rgba(72, 45, 18, .10);
}

.home-body #ambientes {
  margin-top: 48px;
}

.home-body #llegar,
.home-body #ninos,
.home-body #pet-friendly {
  scroll-margin-top: 110px;
}

.home-body #resenas {
  margin-bottom: 0;
}

.home-body .lux-footer {
  margin-top: 0;
}

.home-body .kids-section,
.home-body .pet-section {
  padding: clamp(28px, 4.8vw, 56px);
}

.home-body .kids-section .family-refined-heading,
.home-body .pet-section .family-refined-heading {
  max-width: 980px;
}

.home-body .kids-section .family-refined-heading p,
.home-body .pet-section .family-refined-heading p {
  max-width: 980px;
}

.kids-wide-card,
.pet-wide-card {
  margin-top: 28px;
  min-height: clamp(320px, 42vw, 560px);
}

.kids-wide-card picture,
.kids-wide-card img,
.pet-wide-card picture,
.pet-wide-card img {
  min-height: clamp(320px, 42vw, 560px);
}

.kids-wide-card img,
.pet-wide-card img {
  object-position: center center;
}

.home-body .pet-split-section {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(28px, 4.8vw, 56px);
}

.pet-split-photo {
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 249, 235, .92);
  border-radius: 8px;
  background: #20150e;
  box-shadow: 0 18px 36px rgba(53, 34, 15, .18);
}

.pet-split-photo picture,
.pet-split-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
}

.pet-split-photo img {
  object-fit: cover;
  object-position: center center;
}

.pet-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pet-split-copy h2 {
  margin: 0 0 18px;
  color: #26391f;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: .98;
}

.pet-split-copy p {
  color: #5d4d3b;
  font-size: 16px;
  line-height: 1.72;
}

.home-body .location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(22px, 4vw, 44px);
}

.location-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 83, 32, .18);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 252, 243, .92), rgba(242, 222, 181, .74)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center / 1100px auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
}

.location-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -38% 42%;
  height: 190px;
  background: radial-gradient(circle, rgba(184, 133, 51, .16), transparent 68%);
  pointer-events: none;
}

.location-card h2 {
  margin: 0 0 16px;
  color: #26391f;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.location-card p {
  color: #5d4d3b;
  font-size: 16px;
  line-height: 1.7;
}

.location-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 24px;
}

.location-highlights span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(126, 83, 32, .22);
  border-radius: 999px;
  color: #53351f;
  background: rgba(255, 249, 235, .72);
  font-size: 12px;
  font-weight: 800;
}

.hours-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hours-list > div {
  padding: 17px 18px;
  border: 1px solid rgba(126, 83, 32, .18);
  border-radius: 8px;
  background: rgba(255, 250, 238, .62);
}

.hours-list strong {
  display: block;
  margin-bottom: 10px;
  color: #332316;
  font-family: Cinzel, Georgia, serif;
  font-size: 17px;
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 6px 0;
  color: #4f3b28;
}

.hours-list span {
  color: #7b4a25;
  font-weight: 800;
}

.location-whatsapp {
  display: inline-flex;
  margin-top: 20px;
  color: #26391f;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(191, 135, 45, .45);
}

.home-body .experience-gallery {
  padding: clamp(28px, 4.8vw, 56px);
}

.experience-heading {
  max-width: 980px;
  margin: 0 auto 30px;
  text-align: center;
}

.experience-heading h2 {
  margin: 0 0 16px;
  color: #26391f;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 5vw, 66px);
  line-height: .98;
}

.experience-heading p {
  max-width: 860px;
  margin: 0 auto;
  color: #5d4d3b;
  font-size: 16px;
  line-height: 1.72;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, 16vw);
  gap: 12px;
}

.experience-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 8px solid rgba(255, 249, 235, .92);
  border-radius: 8px;
  background: #20150e;
  box-shadow: 0 18px 36px rgba(53, 34, 15, .16);
}

.experience-card-wide {
  grid-column: span 2;
}

.experience-card-tall {
  grid-row: span 2;
}

.experience-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.01);
  transition: transform .45s ease;
}

.experience-card:hover img {
  transform: scale(1.035);
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(18, 11, 6, .78));
  pointer-events: none;
}

.experience-card div {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff8eb;
}

.experience-card span {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 249, 235, .18);
  border: 1px solid rgba(255, 249, 235, .28);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.experience-card h3 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

.experience-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.home-body .contact-work-section {
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding: clamp(28px, 4.8vw, 56px);
}

.contact-work-section .work-copy h2 {
  margin: 0 0 18px;
  color: #26391f;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: .98;
}

.contact-work-section .work-copy p {
  color: #5d4d3b;
  font-size: 16px;
  line-height: 1.72;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.contact-quick-grid a {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(126, 83, 32, .18);
  border-radius: 8px;
  color: #332316;
  text-decoration: none;
  background: rgba(255, 250, 238, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-quick-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(204, 156, 70, .42);
  box-shadow: 0 18px 38px rgba(72, 45, 18, .12), inset 0 1px 0 rgba(255, 255, 255, .82);
}

.contact-quick-grid span {
  display: block;
  margin-bottom: 8px;
  color: #7b4a25;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-quick-grid strong {
  color: #26391f;
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-work-section .lux-form {
  border: 1px solid rgba(126, 83, 32, .20);
  border-radius: 8px;
  padding: clamp(22px, 3.4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 252, 243, .92), rgba(242, 222, 181, .72)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center / 1100px auto;
  box-shadow: 0 18px 38px rgba(72, 45, 18, .11);
}

.form-kicker {
  margin: 0 0 16px;
  color: #26391f;
  font-family: Cinzel, Georgia, serif;
  font-size: 22px;
  font-weight: 800;
}

.home-body .home-salones {
  display: grid;
  grid-template-columns: minmax(310px, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(28px, 4.8vw, 58px);
}

.home-salones .salones-copy h2 {
  max-width: 620px;
  margin: 0 0 18px;
  color: #26391f;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(31px, 4vw, 58px);
  line-height: .98;
}

.home-salones .salones-copy p {
  max-width: 650px;
  color: #5d4d3b;
  font-size: 16px;
  line-height: 1.72;
}

.salones-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 24px;
}

.salones-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(126, 83, 32, .23);
  border-radius: 999px;
  color: #53351f;
  background: rgba(255, 249, 235, .68);
  font-size: 12px;
  font-weight: 800;
}

.salones-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, 14vw);
  gap: 12px;
}

.salon-photo {
  position: relative;
  min-height: 176px;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 249, 235, .92);
  border-radius: 8px;
  background: #20150e;
  box-shadow: 0 18px 36px rgba(53, 34, 15, .18);
}

.salon-photo-large {
  grid-row: span 2;
}

.salon-photo-wide {
  grid-column: 1 / -1;
  min-height: 210px;
}

.salon-photo-terraza {
  min-height: clamp(230px, 18vw, 310px);
}

.salon-photo-mirador {
  min-height: clamp(230px, 18vw, 310px);
}

.salon-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
  transition: transform .45s ease;
}

.salon-photo-terraza img {
  object-position: center center;
}

.salon-photo-mirador img {
  object-position: center center;
}

.salon-photo:hover img {
  transform: scale(1.035);
}

.salon-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff8eb;
  background: rgba(32, 22, 12, .72);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
  font-family: Cinzel, Georgia, serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .home-body .lux-benefits.refined-benefits,
  .home-body .lux-intro,
  .home-body .home-salones,
  .home-body .family-refined,
  .home-body .lux-panels,
  .home-body .lux-work,
  .home-body .lux-about-complete,
  .home-body .lux-reviews {
    width: min(100% - 28px, 760px);
  }

  .home-body .lux-benefits.refined-benefits {
    margin-top: -24px;
    padding: 14px;
  }

  .home-body .home-access-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-body .home-salones {
    grid-template-columns: 1fr;
  }

  .home-body .pet-split-section {
    grid-template-columns: 1fr;
  }

  .home-body .location-section {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, 32vw);
  }

  .home-body .contact-work-section {
    grid-template-columns: 1fr;
  }

  .salones-gallery {
    grid-auto-rows: minmax(190px, 34vw);
  }
}

@media (max-width: 620px) {
  .home-body {
    background-size: 980px auto;
  }

  .home-body .lux-benefits.refined-benefits,
  .home-body .lux-intro,
  .home-body .home-salones,
  .home-body .family-refined,
  .home-body .lux-panels,
  .home-body .lux-work,
  .home-body .lux-about-complete,
  .home-body .lux-reviews {
    width: calc(100% - 22px);
    border-radius: 6px;
  }

  .home-body #ambientes {
    margin-top: 28px;
  }

  .home-body .home-access-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-body .benefit-group-label {
    font-size: 12px;
    letter-spacing: .06em;
  }

  .home-body .benefit-link-card.benefit-landing,
  .home-body .benefit-link-card.benefit-section {
    min-height: 124px;
    padding: 15px 13px;
  }

  .home-body .benefit-link-card span {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .home-body .home-salones {
    padding: 24px 16px;
  }

  .salones-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .salon-photo,
  .salon-photo-large,
  .salon-photo-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .salon-photo img {
    aspect-ratio: 4 / 3;
  }

  .home-body .pet-split-section {
    padding: 24px 16px;
  }

  .pet-split-photo,
  .pet-split-photo picture,
  .pet-split-photo img {
    min-height: 320px;
  }

  .home-body .location-section {
    padding: 14px;
  }

  .hours-list p {
    display: block;
  }

  .home-body .experience-gallery {
    padding: 24px 14px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .experience-card,
  .experience-card-wide,
  .experience-card-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .experience-card img {
    aspect-ratio: 4 / 3;
  }

  .home-body .contact-work-section {
    padding: 24px 14px;
  }

.contact-quick-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Carta V8: lienzo patrimonial sin visor PDF incrustado ===== */
.menu-body {
  background:
    linear-gradient(180deg, rgba(250, 240, 214, .70), rgba(246, 229, 190, .80)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center top / 1450px auto repeat-y,
    #f4e6c6;
}

.menu-body main {
  background:
    linear-gradient(180deg, rgba(4, 10, 7, .16), rgba(255, 248, 232, .78) 520px, rgba(255, 248, 232, .18));
}

.menu-body .menu-hero {
  min-height: 68vh;
  background-position: center;
}

.menu-body .menu-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(244, 230, 198, .92));
  pointer-events: none;
}

.menu-body .menu-card-section {
  width: min(1180px, calc(100% - 42px));
  margin: -42px auto 58px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(320px, 1.04fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  border: 1px solid rgba(139, 100, 43, .20);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 58px);
  background:
    linear-gradient(180deg, rgba(255, 250, 238, .88), rgba(244, 226, 192, .70)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center / 1350px auto;
  box-shadow: 0 24px 70px rgba(72, 45, 18, .16);
}

.menu-card-copy h2 {
  margin: 0 0 18px;
  color: #26391f;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: .98;
}

.menu-card-copy p {
  color: #5d4d3b;
  font-size: 16px;
  line-height: 1.72;
}

.menu-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.menu-card-actions .btn-ghost {
  color: #3a2a1b;
  border-color: rgba(175, 125, 37, .72);
  background: rgba(255, 250, 238, .42);
}

.menu-card-actions .btn-ghost:hover {
  color: #1f3218;
  background: rgba(224, 188, 104, .22);
  border-color: rgba(175, 125, 37, .92);
}

.menu-card-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.menu-public-tools {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.menu-family-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-family-tabs button {
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(126, 83, 32, .22);
  border-radius: 999px;
  background: rgba(255, 250, 238, .72);
  color: #3a2a1b;
  font: 900 13px Inter, system-ui, sans-serif;
  cursor: pointer;
}

.menu-family-tabs button.is-active {
  color: #fdf6e7;
  background: linear-gradient(135deg, #1c3b24, #0f5a37);
  border-color: rgba(15, 90, 55, .72);
}

.menu-family-tabs span {
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(202, 166, 71, .18);
}

.menu-filter-row {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(220px, 1fr);
  gap: 12px;
  width: 100%;
}

.menu-filter-row label {
  color: #405034;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-filter-row select,
.menu-filter-row input {
  min-height: 42px;
  border: 1px solid rgba(126, 83, 32, .24);
  border-radius: 8px;
  background: rgba(255, 250, 238, .78);
  color: #2d2318;
}

.menu-dynamic-panel {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  max-height: 760px;
  overflow: hidden;
}

.menu-products-head {
  display: grid;
  gap: 16px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(126, 83, 32, .18);
}

.menu-products-title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.menu-products-head strong {
  color: #26391f;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.menu-products-head span {
  color: #7b4a25;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-products-grid {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  overflow: auto;
}

.menu-product-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(126, 83, 32, .20);
  border-radius: 8px;
  background: rgba(255, 250, 238, .70);
  color: #26391f;
}

.menu-product-card img {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(126, 83, 32, .22);
}

.menu-product-card span {
  display: block;
  margin-bottom: 5px;
  color: #7b4a25;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-product-card h3 {
  margin: 0 0 6px;
  color: #26391f;
  font-size: 18px;
  line-height: 1.15;
}

.menu-product-card p {
  margin: 0;
  color: #5d4d3b;
  font-size: 13px;
  line-height: 1.45;
}

.menu-product-card footer {
  display: grid;
  gap: 6px;
  justify-items: end;
  min-width: 110px;
}

.menu-product-card footer strong {
  color: #0f5a37;
  font-size: 17px;
}

.menu-product-card small {
  max-width: 120px;
  color: #8a2d1b;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.menu-product-card.is-unavailable {
  opacity: .72;
}

.menu-empty {
  margin: 0;
  padding: 18px;
  border: 1px dashed rgba(126, 83, 32, .26);
  border-radius: 8px;
  color: #5d4d3b;
  background: rgba(255, 250, 238, .40);
}

.menu-card-panel article {
  min-height: 146px;
  padding: 22px;
  border: 1px solid rgba(126, 83, 32, .20);
  border-radius: 8px;
  background: rgba(255, 250, 238, .66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
}

.menu-card-panel span {
  display: block;
  margin-bottom: 12px;
  color: #7b4a25;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.menu-card-panel strong {
  display: block;
  color: #26391f;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.12;
}

.menu-footer {
  background: #172610;
}

@media (max-width: 900px) {
  .menu-body .menu-card-section {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }
}

@media (max-width: 560px) {
  .menu-body .menu-card-section {
    width: calc(100% - 22px);
    padding: 24px 16px;
  }

  .menu-card-panel {
    grid-template-columns: 1fr;
  }

  .menu-filter-row,
  .menu-product-card {
    grid-template-columns: 1fr;
  }

  .menu-products-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .menu-product-card footer {
    justify-items: start;
  }

  .menu-card-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Celebraciones V8: lienzo patrimonial y linea editorial ===== */
.celebraciones-body {
  background:
    linear-gradient(180deg, rgba(250, 240, 214, .70), rgba(246, 229, 190, .82)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center top / 1450px auto repeat-y,
    #f4e6c6;
}

.celebraciones-body main {
  background:
    linear-gradient(180deg, rgba(4, 10, 7, .16), rgba(255, 248, 232, .78) 540px, rgba(255, 248, 232, .18));
}

.celebraciones-body .cele-hero {
  min-height: 72vh;
  background-position: center;
}

.celebraciones-body .cele-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(244, 230, 198, .92));
  pointer-events: none;
}

.celebraciones-body .section {
  width: min(1180px, calc(100% - 42px));
  margin-left: auto;
  margin-right: auto;
  color: #332316;
}

.celebraciones-body .event-intro,
.celebraciones-body .event-pdf-download,
.celebraciones-body .menu-packages,
.celebraciones-body .event-split,
.celebraciones-body .banquet,
.celebraciones-body .extras,
.celebraciones-body .quote-section {
  border: 1px solid rgba(139, 100, 43, .18);
  border-radius: 8px;
  padding: clamp(26px, 4.6vw, 54px);
  background:
    linear-gradient(180deg, rgba(255, 250, 238, .88), rgba(244, 226, 192, .70)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center / 1350px auto;
  box-shadow: 0 18px 58px rgba(72, 45, 18, .10);
}

.celebraciones-body .event-intro {
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.celebraciones-body .section h2,
.celebraciones-body .parrilla-copy h2,
.celebraciones-body .price-card h3,
.celebraciones-body .extras-grid h3,
.celebraciones-body .banquet-groups h3 {
  color: #26391f;
}

.celebraciones-body .section p,
.celebraciones-body .section li,
.celebraciones-body .price-card ul,
.celebraciones-body .small-note {
  color: #5d4d3b !important;
}

.celebraciones-body .price-card,
.celebraciones-body .banquet-groups article,
.celebraciones-body .extras-grid article,
.celebraciones-body .simple-table div,
.celebraciones-body .work-form {
  border-color: rgba(126, 83, 32, .20);
  border-radius: 8px;
  background: rgba(255, 250, 238, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
}

.celebraciones-body .price-card.featured {
  background:
    linear-gradient(135deg, rgba(224, 188, 104, .22), rgba(255, 250, 238, .70)),
    rgba(255, 250, 238, .62);
}

.celebraciones-body .price,
.celebraciones-body .price-card span,
.celebraciones-body .price-card li strong,
.celebraciones-body .extras-grid p,
.celebraciones-body th {
  color: #8a5a20 !important;
}

.celebraciones-body .event-photo img {
  border-radius: 8px;
  border: 8px solid rgba(255, 249, 235, .92);
  box-shadow: 0 18px 36px rgba(53, 34, 15, .18);
}

.celebraciones-body .table-wrap {
  border-color: rgba(126, 83, 32, .20);
}

.celebraciones-body table {
  background: rgba(255, 250, 238, .62);
}

.celebraciones-body th,
.celebraciones-body td {
  border-bottom-color: rgba(126, 83, 32, .18);
  color: #4f3b28;
}

.celebraciones-body .btn-ghost,
.celebraciones-body .btn-outline {
  color: #3a2a1b;
  border-color: rgba(175, 125, 37, .72);
  background: rgba(255, 250, 238, .42);
}

.celebraciones-body .btn-ghost:hover,
.celebraciones-body .btn-outline:hover {
  color: #1f3218;
  background: rgba(224, 188, 104, .22);
  border-color: rgba(175, 125, 37, .92);
}

.celebraciones-body .footer.compact {
  background: #172610;
}

@media (max-width: 900px) {
  .celebraciones-body .section {
    width: min(100% - 28px, 760px);
  }

  .celebraciones-body .event-intro {
    margin-top: -24px;
  }
}

@media (max-width: 560px) {
  .celebraciones-body .section {
    width: calc(100% - 22px);
  }

  .celebraciones-body .event-intro,
  .celebraciones-body .event-pdf-download,
  .celebraciones-body .menu-packages,
  .celebraciones-body .event-split,
  .celebraciones-body .banquet,
  .celebraciones-body .extras,
  .celebraciones-body .quote-section {
    padding: 24px 16px;
  }
}

/* ===== Espectaculos V1 ===== */
.shows-body {
  background:
    linear-gradient(180deg, rgba(250, 240, 214, .70), rgba(246, 229, 190, .82)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center top / 1450px auto repeat-y,
    #f4e6c6;
}

.shows-body main {
  background:
    linear-gradient(180deg, rgba(4, 10, 7, .10), rgba(255, 248, 232, .78) 620px, rgba(255, 248, 232, .18));
}

.shows-hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  padding: 110px clamp(22px, 7vw, 110px) 76px;
  overflow: hidden;
  background: #080705;
}

.shows-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.76) contrast(1.05) saturate(1.03);
}

.shows-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 4, .88), rgba(3, 6, 4, .54) 45%, rgba(3, 6, 4, .12)),
    linear-gradient(180deg, rgba(3, 6, 4, .20), rgba(244, 230, 198, .72) 100%);
}

.shows-hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  color: #fff8ec;
}

.shows-hero h1 {
  margin: 0 0 20px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -.04em;
}

.shows-hero p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 248, 236, .88);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.shows-body .section {
  width: min(1180px, calc(100% - 42px));
  margin-left: auto;
  margin-right: auto;
}

.shows-intro,
.shows-grid-section {
  border: 1px solid rgba(139, 100, 43, .18);
  border-radius: 8px;
  padding: clamp(26px, 4.6vw, 54px);
  background:
    linear-gradient(180deg, rgba(255, 250, 238, .88), rgba(244, 226, 192, .70)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center / 1350px auto;
  box-shadow: 0 18px 58px rgba(72, 45, 18, .10);
}

.shows-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 34px;
  align-items: end;
  margin-top: -42px;
}

.shows-intro h2,
.shows-grid-section h2,
.show-card h3 {
  color: #26391f;
}

.shows-intro p,
.shows-grid-section p,
.show-card p {
  color: #5d4d3b;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.show-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(126, 83, 32, .20);
  border-radius: 8px;
  background: rgba(255, 250, 238, .66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
}

.show-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(126, 83, 32, .18);
}

.show-date span {
  color: #8a5a20;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.show-date strong {
  color: #26391f;
  font-family: Cinzel, Georgia, serif;
  font-size: 22px;
}

.show-card h3 {
  margin: 0 0 12px;
  font-family: Cinzel, Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
}

.show-card p {
  line-height: 1.65;
}

.show-card a,
.show-card button {
  margin-top: auto;
  align-self: flex-start;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  color: #20150e;
  background: linear-gradient(135deg, #e0bc68, #b9852d);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
  text-decoration: none;
}

.show-card button:disabled {
  cursor: default;
  opacity: .72;
  filter: saturate(.85);
}

.shows-footer {
  background: #172610;
}

@media (max-width: 900px) {
  .shows-body .section {
    width: min(100% - 28px, 760px);
  }

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

  .shows-intro {
    margin-top: -24px;
  }
}

@media (max-width: 560px) {
  .shows-hero {
    min-height: 70vh;
    padding: 96px 18px 56px;
  }

  .shows-body .section {
    width: calc(100% - 22px);
  }

  .shows-intro,
  .shows-grid-section {
    padding: 24px 16px;
  }
}

/* ===== Delivery ===== */
.delivery-body {
  background:
    linear-gradient(180deg, rgba(246, 231, 190, .86), rgba(242, 220, 175, .92)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center top / cover fixed;
  color: #2f2118;
}

.delivery-body main {
  background:
    linear-gradient(180deg, rgba(11, 16, 9, .14), rgba(255, 244, 219, .72) 45%, rgba(246, 231, 190, .92));
}

.delivery-hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(24px, 7vw, 92px) 82px;
  background: #090b07;
}

.delivery-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
}

.delivery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 4, .82) 0%, rgba(4, 8, 4, .56) 42%, rgba(4, 8, 4, .22) 68%, rgba(4, 8, 4, .5) 100%),
    linear-gradient(180deg, rgba(4, 8, 4, .42), rgba(4, 8, 4, .1) 48%, rgba(4, 8, 4, .62));
}

.delivery-hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: #fff8ec;
}

.delivery-hero .eyebrow,
.delivery-intro .eyebrow {
  color: #d9ad36;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.delivery-hero h1 {
  margin: 10px 0 18px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: .9;
  color: #fff8ec;
  text-shadow: 0 14px 36px rgba(0, 0, 0, .56);
}

.delivery-hero p:not(.eyebrow) {
  width: min(690px, 100%);
  color: rgba(255, 248, 236, .9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.58;
}

.delivery-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.delivery-hero-actions a,
.delivery-card a,
.delivery-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(213, 166, 55, .9);
  background: linear-gradient(135deg, #e9c75f, #c99628);
  color: #23170f;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(44, 28, 12, .2);
}

.delivery-hero-actions a.secondary,
.delivery-card a.secondary {
  background: rgba(255, 248, 236, .14);
  color: #fff8ec;
  border-color: rgba(255, 248, 236, .48);
}

.delivery-section {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.delivery-intro {
  position: relative;
  z-index: 2;
  margin-top: -44px;
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(118, 79, 36, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 249, 229, .94), rgba(242, 219, 176, .86)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center / cover;
  box-shadow: 0 20px 46px rgba(81, 49, 19, .16);
}

.delivery-intro h2,
.delivery-grid-section h2 {
  margin: 0 0 14px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  line-height: .95;
  color: #203719;
}

.delivery-intro p,
.delivery-card p {
  color: rgba(47, 33, 24, .78);
  line-height: 1.65;
}

.delivery-note {
  align-self: center;
  padding: 24px;
  border-left: 4px solid #c99628;
  background: rgba(255, 248, 232, .64);
  color: #4a3323;
  font-weight: 700;
}

.delivery-grid-section {
  padding: clamp(42px, 7vw, 78px) 0;
}

.delivery-grid-section h2,
.delivery-grid-section > p {
  text-align: center;
}

.delivery-grid-section > p {
  width: min(760px, 100%);
  margin: 0 auto 30px;
  color: rgba(47, 33, 24, .72);
  line-height: 1.65;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.delivery-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(118, 79, 36, .18);
  background:
    linear-gradient(180deg, rgba(255, 250, 235, .94), rgba(244, 226, 190, .9)),
    url("../assets/img/lienzo-inicio-patrimonial.png") center / cover;
  box-shadow: 0 16px 36px rgba(81, 49, 19, .12);
}

.delivery-card span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid rgba(201, 150, 40, .6);
  background: rgba(255, 248, 232, .76);
  color: #7b4b1d;
  font-weight: 900;
}

.delivery-card h3 {
  margin: 0 0 12px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
  color: #203719;
}

.delivery-card a,
.delivery-card button {
  width: fit-content;
  margin-top: auto;
  cursor: pointer;
}

.delivery-card button:disabled {
  cursor: default;
  opacity: .7;
  background: rgba(255, 248, 236, .38);
  color: rgba(47, 33, 24, .72);
}

.delivery-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 30px 20px 40px;
  background: #172610;
}

.delivery-footer a {
  color: #fff8ec;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 860px) {
  .delivery-hero {
    min-height: 72vh;
    padding: 104px 22px 68px;
  }

  .delivery-hero::after {
    background:
      linear-gradient(180deg, rgba(4, 8, 4, .72), rgba(4, 8, 4, .38) 44%, rgba(4, 8, 4, .72)),
      linear-gradient(90deg, rgba(4, 8, 4, .82), rgba(4, 8, 4, .22));
  }

  .delivery-intro {
    grid-template-columns: 1fr;
    margin-top: -28px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .delivery-section {
    width: min(100% - 24px, 1180px);
  }

  .delivery-hero h1 {
    font-size: clamp(2.7rem, 17vw, 4.4rem);
  }

  .delivery-hero-actions a,
  .delivery-card a,
  .delivery-card button {
    width: 100%;
  }

  .delivery-intro,
  .delivery-card {
    padding: 24px;
  }
}

/* Delivery checkout v2: compra directa con carrito */
.delivery-checkout-body {
  background: #f5f2eb;
  color: #201b16;
}

.delivery-market {
  background:
    linear-gradient(180deg, #141713 0, #141713 420px, #f5f2eb 420px, #f5f2eb 100%);
}

.delivery-checkout-body .cg-global-header {
  z-index: 40;
}

.delivery-shop-hero {
  width: min(100% - 36px, 1360px);
  min-height: 0;
  margin: 0 auto;
  padding: 96px 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .76fr);
  gap: 28px;
  align-items: stretch;
  color: #fffaf0;
  overflow: visible;
}

.delivery-shop-hero__copy {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 250, 240, .14);
  background:
    radial-gradient(circle at 18% 16%, rgba(196, 42, 34, .20), transparent 34%),
    linear-gradient(135deg, rgba(18, 24, 17, .98), rgba(38, 48, 26, .96));
}

.delivery-shop-hero .eyebrow,
.delivery-shop-heading .eyebrow,
.delivery-cart-head .eyebrow {
  margin: 0 0 10px;
  color: #cfa84e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.delivery-shop-hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(2.8rem, 5.8vw, 5.7rem);
  line-height: .92;
  letter-spacing: 0;
}

.delivery-shop-hero p:not(.eyebrow) {
  margin: 20px 0 0;
  max-width: 560px;
  color: rgba(255, 250, 240, .84);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.55;
}

.delivery-shop-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.delivery-hero-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, .14);
  background: #0f120e;
}

.delivery-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: saturate(.96) contrast(1.04);
}

.delivery-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(8, 12, 8, .86));
}

.delivery-hero-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.delivery-hero-card span {
  color: #f1d28a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.delivery-hero-card strong {
  color: #fffaf0;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  line-height: 1;
}

.delivery-shop-status {
  grid-column: 1 / -1;
  position: static;
  width: 100%;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(31, 44, 25, .18);
  background: #1f2c19;
  color: #fffaf0;
}

.delivery-shop-status strong,
.delivery-shop-status span {
  display: block;
}

.delivery-shop-status strong {
  font-size: 14px;
}

.delivery-shop-status span {
  color: rgba(255, 250, 240, .72);
  font-size: 13px;
}

.delivery-order-strip {
  width: min(100% - 36px, 1360px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(32, 27, 22, .12);
  background: #fffdf8;
  box-shadow: 0 22px 54px rgba(24, 20, 14, .08);
}

.delivery-order-strip article {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-right: 1px solid rgba(32, 27, 22, .10);
}

.delivery-order-strip article:last-child {
  border-right: 0;
}

.delivery-order-strip strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #26351d;
  color: #fffaf0;
  font-weight: 900;
}

.delivery-order-strip span {
  color: #34291c;
  font-weight: 900;
}

.delivery-shop-shell {
  width: min(100% - 36px, 1360px);
  margin: 0 auto;
  padding: 28px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  gap: 24px;
  align-items: start;
}

.delivery-shop-main {
  display: grid;
  gap: 20px;
}

.delivery-moment-strip,
.delivery-catalog-panel,
.delivery-cart-panel {
  border: 1px solid rgba(32, 27, 22, .12);
  background: #fffdf8;
  box-shadow: 0 18px 48px rgba(24, 20, 14, .07);
}

.delivery-moment-strip,
.delivery-catalog-panel {
  padding: clamp(18px, 2.6vw, 28px);
}

.delivery-shop-heading h2,
.delivery-cart-head h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  color: #1f2c19;
  letter-spacing: 0;
  line-height: 1;
}

.delivery-shop-heading h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.7rem);
}

.delivery-moment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.delivery-moment-card {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(31, 44, 25, .13);
  border-radius: 8px;
  background: #f8f5ee;
  color: #201b16;
  text-align: left;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.delivery-moment-card:hover,
.delivery-moment-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(196, 42, 34, .44);
  background: #fffdf8;
  box-shadow: 0 14px 30px rgba(24, 20, 14, .12);
}

.delivery-moment-card span,
.delivery-product-card span,
.delivery-cart-item span {
  display: block;
  color: #9a5b22;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.delivery-moment-card strong {
  display: block;
  margin-top: 12px;
  color: #1f2c19;
  font-size: 1.08rem;
  line-height: 1.1;
}

.delivery-moment-card small {
  display: block;
  margin-top: 8px;
  color: rgba(32, 27, 22, .68);
  font-size: 13px;
  line-height: 1.36;
}

.delivery-catalog-top {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(32, 27, 22, .10);
}

.delivery-search {
  width: min(330px, 100%);
  display: grid;
  gap: 8px;
  color: #5c4931;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.delivery-search input,
.delivery-checkout-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(32, 27, 22, .16);
  border-radius: 8px;
  background: #fffdf8;
  color: #201b16;
  padding: 0 12px;
  font: inherit;
}

.delivery-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.delivery-product-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 164px;
  border: 1px solid rgba(32, 27, 22, .10);
  border-radius: 8px;
  background: #fffdf8;
  overflow: hidden;
}

.delivery-product-card img,
.delivery-product-card__placeholder {
  width: 128px;
  height: 100%;
  min-height: 164px;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(38, 53, 29, .88), rgba(196, 42, 34, .62)),
    #d3c29d;
}

.delivery-product-card__body {
  padding: 16px 16px 10px;
  min-width: 0;
}

.delivery-product-card h3 {
  margin: 8px 0 0;
  color: #1f2c19;
  font-size: 1rem;
  line-height: 1.18;
}

.delivery-product-card p {
  margin: 8px 0 0;
  color: rgba(32, 27, 22, .68);
  font-size: 13px;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.delivery-product-card small {
  display: block;
  margin-top: 8px;
  color: #9a342c;
  font-size: 12px;
  font-weight: 800;
}

.delivery-product-card footer {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 16px 16px;
}

.delivery-product-card footer strong {
  color: #1f2c19;
  font-size: 1rem;
  white-space: nowrap;
}

.delivery-product-card button,
.delivery-pay-button {
  border: 0;
  border-radius: 8px;
  background: #c42a22;
  color: #fffdf8;
  min-height: 40px;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
}

.delivery-product-card button:hover,
.delivery-pay-button:hover {
  background: #9f211b;
}

.delivery-cart-panel {
  position: sticky;
  top: 92px;
  padding: 20px;
  border-radius: 8px;
}

.delivery-cart-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.delivery-cart-head h2 {
  font-size: 1.9rem;
}

#cartCount {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1f2c19;
  color: #fffdf8;
  font-weight: 900;
}

.delivery-cart-items {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  max-height: 260px;
  overflow: auto;
  padding-right: 4px;
}

.delivery-cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(32, 27, 22, .10);
}

.delivery-cart-item strong {
  display: block;
  color: #1f2c19;
  line-height: 1.2;
}

.delivery-cart-item b {
  white-space: nowrap;
  color: #1f2c19;
}

.delivery-empty {
  margin: 0;
  color: rgba(32, 27, 22, .60);
  line-height: 1.45;
}

.delivery-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: 16px 0;
  border-top: 2px solid rgba(31, 44, 25, .18);
  color: #1f2c19;
}

.delivery-cart-total strong {
  font-size: 1.35rem;
}

.delivery-checkout-form {
  display: grid;
  gap: 10px;
}

.delivery-checkout-form label:not(.delivery-age-check) {
  display: grid;
  gap: 6px;
  color: #5c4931;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.delivery-age-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #453520;
  font-size: 13px;
  line-height: 1.35;
}

.delivery-age-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
}

.delivery-pay-button {
  width: 100%;
  margin-top: 4px;
  min-height: 50px;
  font-size: 15px;
}

.delivery-pay-button:disabled {
  cursor: default;
  opacity: .55;
}

.delivery-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.delivery-trust-row span {
  padding: 7px 9px;
  border-radius: 999px;
  background: #f1eadc;
  color: #1f2c19;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.delivery-mobile-cart {
  display: none;
}

@media (max-width: 1180px) {
  .delivery-shop-hero,
  .delivery-shop-shell {
    grid-template-columns: 1fr;
  }

  .delivery-hero-card {
    min-height: 300px;
  }

  .delivery-hero-card img {
    min-height: 300px;
  }

  .delivery-cart-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .delivery-market {
    background:
      linear-gradient(180deg, #141713 0, #141713 520px, #f5f2eb 520px, #f5f2eb 100%);
  }

  .delivery-shop-hero,
  .delivery-order-strip,
  .delivery-shop-shell {
    width: min(100% - 24px, 1360px);
  }

  .delivery-shop-hero {
    padding-top: 96px;
  }

  .delivery-shop-hero__copy {
    min-height: 0;
    padding: 26px;
  }

  .delivery-hero-card {
    display: none;
  }

  .delivery-shop-status {
    display: grid;
  }

  .delivery-order-strip,
  .delivery-moment-grid,
  .delivery-product-grid {
    grid-template-columns: 1fr;
  }

  .delivery-order-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(32, 27, 22, .10);
  }

  .delivery-order-strip article:last-child {
    border-bottom: 0;
  }

  .delivery-catalog-top {
    display: grid;
    align-items: start;
  }

  .delivery-search {
    width: 100%;
  }

  .delivery-product-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .delivery-product-card img,
  .delivery-product-card__placeholder {
    width: 112px;
  }

  .delivery-mobile-cart {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 38;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 18px;
    border-radius: 999px;
    background: #c42a22;
    color: #fffdf8;
    box-shadow: 0 18px 42px rgba(24, 20, 14, .28);
    font-weight: 900;
    text-decoration: none;
  }

  .delivery-footer {
    padding-bottom: 82px;
  }
}

@media (max-width: 520px) {
  .delivery-shop-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.85rem);
    line-height: .94;
  }

  .delivery-shop-hero__actions a {
    width: 100%;
    justify-content: center;
  }

  .delivery-product-card {
    grid-template-columns: 94px minmax(0, 1fr);
    min-height: 148px;
  }

  .delivery-product-card img,
  .delivery-product-card__placeholder {
    width: 94px;
    min-height: 148px;
  }

  .delivery-product-card__body {
    padding: 14px 14px 8px;
  }

  .delivery-product-card footer {
    padding: 0 14px 14px;
  }
}

@media (max-width: 1180px) {
  .delivery-shop-shell {
    grid-template-columns: 1fr;
  }

  .delivery-cart-panel {
    position: static;
  }

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

@media (max-width: 760px) {
  .delivery-shop-hero {
    min-height: 78vh;
    padding: 104px 20px 34px;
  }

  .delivery-shop-status {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .delivery-shop-shell {
    width: min(100% - 24px, 1400px);
    padding-top: 24px;
  }

  .delivery-moment-grid,
  .delivery-product-grid {
    grid-template-columns: 1fr;
  }

  .delivery-catalog-top {
    display: grid;
    align-items: start;
  }

  .delivery-search {
    width: 100%;
  }

  .delivery-product-card {
    grid-template-rows: 180px auto auto;
    min-height: 0;
  }

  .delivery-product-card img,
  .delivery-product-card__placeholder {
    height: 180px;
  }
}
