:root {
  --blush: #FBF0E6;
  --blush-deep: #F0DBC4;
  --ink: #3A2417;
  --ink-soft: #7C5C48;
  --rose: #C17A52;
  --rose-deep: #A85C3C;
  --gold: #D9A86C;
  --copper-bright: #E8A26B;
  --lips: #E23B33;
  --white: #FFFFFF;
  --glass: rgba(255,255,255,0.55);
  --shadow: 0 20px 60px rgba(168,92,60,0.2);
  --radius: 22px;
  --serif: "Cormorant Garamond", serif;
  --script: "Playfair Display", serif;
  --sans: "Poppins", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--blush);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  position: relative;
}

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: radial-gradient(circle at 1px 1px, rgba(43,35,32,0.035) 1px, transparent 0);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); margin: 0; font-weight: 600; }
em { font-family: var(--script); font-style: italic; color: var(--rose-deep); font-weight: 400; }
p { line-height: 1.7; color: var(--ink-soft); }

/* ---------------- NAV ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,240,230,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(168,92,60,0.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; gap: 28px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.nav-logo-mark {
  height: 44px; width: 44px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav-logo-text { font-family: var(--script); font-size: 21px; line-height: 1; color: var(--ink); }
.nav-links { display: flex; gap: 26px; font-size: 14.5px; font-weight: 500; letter-spacing: .2px; }
.nav-links a { opacity: .8; transition: opacity .2s, color .2s; }
.nav-links a:hover { opacity: 1; color: var(--rose-deep); }

.lang-switch { display: flex; border: 1px solid rgba(168,92,60,0.3); border-radius: 100px; overflow: hidden; }
.lang-btn {
  border: none; background: transparent; font-family: var(--sans); font-size: 12.5px;
  font-weight: 600; letter-spacing: .5px; padding: 6px 12px; cursor: pointer; color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.lang-btn--active { background: var(--rose-deep); color: #fff; }

.nav-cta {
  background: var(--rose-deep); color: #fff; padding: 10px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600; white-space: nowrap; transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(168,92,60,0.35); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

.nav-mobile {
  display: none; flex-direction: column; gap: 4px; padding: 10px 28px 20px;
  background: rgba(251,240,230,0.98);
}
.nav-mobile a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid rgba(43,35,32,0.06); }
.nav-mobile--open { display: flex; }
.lang-switch--mobile { margin: 12px 0; align-self: flex-start; }
.nav-mobile-cta {
  background: var(--rose-deep); color: #fff; text-align: center; border-radius: 100px;
  padding: 12px; margin-top: 8px; font-weight: 600;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta, .lang-switch:not(.lang-switch--mobile) { display: none; }
  .nav-burger { display: flex; }
}

/* ---------------- HERO ---------------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 60px 24px; overflow: hidden;
}

.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 32%;
  background: var(--blush-deep);
  transform: scale(1.08);
  will-change: transform;
}
@media (max-width: 900px) {
  .hero-bg-img { transform: none; }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(38,20,10,0.28) 0%, rgba(58,30,16,0.42) 55%, var(--blush) 96%);
}

.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  width: 100%; height: 100%;
}

.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .35; z-index: 0; mix-blend-mode: screen; }
.hero-glow--1 { width: 480px; height: 480px; background: radial-gradient(circle, #F5C79A, transparent 70%); top: -120px; left: -100px; }
.hero-glow--2 { width: 520px; height: 520px; background: radial-gradient(circle, #E8A26B, transparent 70%); bottom: -160px; right: -140px; }

.hero-branch { position: absolute; top: 0; height: 100%; color: #FBE3CE; opacity: .22; z-index: 1; }
.hero-branch--left { left: 0; }
.hero-branch--right { right: 0; }
@media (max-width: 700px) { .hero-branch { display: none; } }

.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-monogram {
  color: #fff; margin-bottom: 18px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-monogram-img {
  height: 160px; width: auto;
  object-fit: contain;
}
@media (max-width: 600px) {
  .hero-monogram-img { height: 120px; }
}
.hero-monogram-word { font-family: var(--sans); font-size: 9px; letter-spacing: 3px; color: rgba(255,255,255,0.75); }

.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 12.5px; font-weight: 600;
  color: var(--copper-bright); margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.hero-title {
  font-size: clamp(38px, 7vw, 64px); line-height: 1.08; color: #fff;
  text-shadow: 0 0 40px rgba(232,162,107,0.35), 0 4px 22px rgba(0,0,0,0.45);
}
.hero-title em { color: #FCEBD8; text-shadow: 0 0 30px rgba(232,162,107,0.55), 0 4px 18px rgba(0,0,0,0.4); }
.hero-sub { font-size: 17px; max-width: 480px; margin: 22px auto 0; color: rgba(255,255,255,0.88); text-shadow: 0 2px 14px rgba(0,0,0,0.35); }
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

.hero-scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 1.6px solid rgba(255,255,255,0.55); border-radius: 100px;
}
.hero-scroll-cue span {
  display: block; width: 4px; height: 8px; border-radius: 4px; background: #fff;
  margin: 6px auto 0; animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(16px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.btn { padding: 15px 30px; border-radius: 100px; font-weight: 600; font-size: 15px; transition: all .25s; display: inline-block; }
.btn-primary { background: var(--rose-deep); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 50px rgba(168,92,60,0.4); }
.btn-ghost { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.55); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.24); }

/* ---------------- SECTIONS ---------------- */
.section { padding: 100px 24px; position: relative; z-index: 2; }
.section--tint { background: linear-gradient(180deg, transparent, var(--blush-deep) 12%, var(--blush-deep) 88%, transparent); }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-inner--narrow { max-width: 720px; text-align: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 2.6px; font-size: 15px; font-weight: 700; color: var(--rose-deep); text-align: center; margin-bottom: 10px; }
.eyebrow--brand { font-size: 22px; letter-spacing: 4px; margin-bottom: 16px; }
@media (max-width: 600px) {
  .eyebrow--brand { font-size: 18px; letter-spacing: 3px; }
}
.section-title { font-size: clamp(28px, 4vw, 42px); text-align: center; margin-bottom: 26px; line-height: 1.2; }
.lead { font-size: 16.5px; max-width: 620px; margin: 0 auto; }
.lead--center { text-align: center; }

/* ---------------- SCROLL REVEAL ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.about-grid .reveal:nth-child(2) { transition-delay: .08s; }
.about-grid .reveal:nth-child(3) { transition-delay: .16s; }
.price-grid .reveal:nth-child(2) { transition-delay: .1s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------- ABOUT (Nosotros) ---------------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 46px;
  text-align: left;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: 0 14px 40px rgba(43,35,32,0.06); border: 1px solid rgba(168,92,60,0.12);
  transition: transform .3s, box-shadow .3s;
}
.about-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(168,92,60,0.14); }
.about-card h3 { font-family: var(--serif); font-size: 21px; color: var(--rose-deep); margin-bottom: 12px; }
.about-card p { font-size: 15px; margin: 0; }
.about-tagline {
  text-align: center; margin-top: 40px; font-family: var(--serif); font-size: 22px; color: var(--ink);
}
.about-tagline em { display: block; margin-top: 4px; font-size: 19px; }

/* ---------------- PRICING ---------------- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 46px; }
@media (max-width: 800px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 34px;
  box-shadow: 0 14px 40px rgba(43,35,32,0.06); position: relative; border: 1px solid rgba(168,92,60,0.12);
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(168,92,60,0.14); }
.price-card--highlight { background: linear-gradient(160deg, #fff, #FBEADA); border: 1px solid rgba(168,92,60,0.35); }
.price-card-icon { color: var(--rose-deep); margin-bottom: 18px; }
.price-card h3 { font-size: 25px; margin-bottom: 8px; }
.price-tag { font-weight: 600; color: var(--ink); font-size: 15.5px; margin: 0 0 14px; }
.price-badge {
  position: absolute; top: -13px; right: 28px; background: var(--rose-deep); color: #fff;
  font-size: 11.5px; font-weight: 700; padding: 6px 16px; border-radius: 100px; letter-spacing: .4px;
}

/* ---------------- LOCATIONS ---------------- */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 46px; }
.loc-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  border-top: 4px solid var(--loc-accent, var(--rose-deep));
  box-shadow: 0 14px 34px rgba(43,35,32,0.06); transition: transform .25s, box-shadow .25s;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(43,35,32,0.1); }
.loc-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.loc-pin { color: var(--loc-accent, var(--rose-deep)); }
.loc-card h3 { font-size: 22px; }
.loc-addr { font-size: 14.5px; margin-bottom: 16px; }
.loc-hours p { margin: 3px 0; font-size: 13.5px; }
.loc-hours strong { color: var(--ink); }
.loc-closed { color: var(--loc-accent, var(--rose-deep)); font-weight: 600; }
.loc-map { display: inline-block; margin-top: 16px; font-weight: 600; font-size: 14px; color: var(--loc-accent, var(--rose-deep)); }

/* ---------------- MAP ---------------- */
.loc-map-wrap {
  margin-top: 40px; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 16px 40px rgba(43,35,32,0.1); border: 1px solid rgba(168,92,60,0.15);
}
#locMap { height: 400px; width: 100%; background: var(--blush-deep); }
.map-pin span {
  display: block; width: 20px; height: 20px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
.leaflet-popup-content-wrapper { border-radius: 12px; font-family: var(--sans); }
.leaflet-popup-content { font-size: 13.5px; }

/* ---------------- WHATSAPP GROUPS ---------------- */
.whatsapp-groups { margin-top: 46px; text-align: center; }
.whatsapp-groups-title { font-weight: 600; font-size: 15px; margin-bottom: 16px; color: var(--ink); }
.whatsapp-groups-grid { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.wa-group {
  display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff;
  padding: 11px 22px; border-radius: 100px; font-weight: 600; font-size: 14px;
  transition: transform .2s, box-shadow .2s;
}
.wa-group:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,0.35); }

/* ---------------- CANALES (WhatsApp Channel + Messenger) ---------------- */
.channels-block { margin-top: 40px; text-align: center; }
.channels-title { font-weight: 600; font-size: 15px; margin-bottom: 16px; color: var(--ink); }
.channels-grid { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.channel-item {
  display: inline-flex; align-items: center; gap: 8px; color: #fff;
  padding: 11px 22px; border-radius: 100px; font-weight: 600; font-size: 14px;
  transition: transform .2s, box-shadow .2s;
}
.channel-item--whatsapp { background: #25D366; }
.channel-item--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,0.35); }
.channel-item--messenger { background: linear-gradient(135deg, #00B2FF 0%, #006AFF 50%, #B620E0 100%); }
.channel-item--messenger:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,106,255,0.35); }

/* ---------------- BRANDS ---------------- */
/* ---------------- NOVEDADES / RECIÉN LLEGADO ---------------- */
.novedades-scroll {
  display: flex; gap: 24px; margin-top: 42px; padding: 6px 4px 18px;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  justify-content: center; flex-wrap: wrap;
}
.novedades-scroll::-webkit-scrollbar { height: 8px; }
.novedades-scroll::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 100px; }
.novedades-scroll::-webkit-scrollbar-track { background: transparent; }

.novedades-card {
  position: relative; flex: 0 0 auto; width: 500px; scroll-snap-align: start;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s ease;
}
.novedades-card:hover { transform: translateY(-4px); }
.novedades-embed {
  width: 100%; min-height: 560px; display: flex; align-items: center; justify-content: center;
  background: var(--blush-deep); overflow: hidden; position: relative;
}
.novedades-embed iframe { max-width: 100%; }
.novedades-embed-spinner {
  position: absolute; width: 34px; height: 34px; border-radius: 50%;
  border: 3px solid rgba(0,0,0,0.08); border-top-color: var(--rose-deep, #b5637a);
  animation: novedades-spin .8s linear infinite; pointer-events: none;
}
@keyframes novedades-spin { to { transform: rotate(360deg); } }
.novedades-fallback {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 40px 20px; width: 100%;
}
.novedades-fallback p { margin: 0; font-size: 14px; color: var(--ink-soft); }
.novedades-fallback a {
  display: inline-block; font-size: 14px; font-weight: 700; color: #fff;
  background: var(--rose-deep, #b5637a); padding: 10px 22px; border-radius: 100px;
  transition: transform .2s, box-shadow .2s;
}
.novedades-fallback a:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.15); }
.novedades-badge {
  position: absolute; top: 12px; left: 12px; background: var(--lips); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px; box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.novedades-body { padding: 18px 20px 22px; }
.novedades-caption { font-size: 15.5px; color: var(--ink); line-height: 1.55; margin: 0 0 8px; font-weight: 500; }
.novedades-time { font-size: 13px; color: var(--ink-soft); margin: 0 0 10px; }
.novedades-link {
  display: inline-block; font-size: 13px; font-weight: 600; color: var(--rose-deep);
  border-bottom: 1px solid var(--rose-deep);
}
.novedades-empty { text-align: center; color: var(--ink-soft); font-size: 14.5px; padding: 20px 0; }

@media (max-width: 640px) {
  .novedades-card { width: 100%; max-width: 500px; }
  .novedades-embed { min-height: 480px; }
}

.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 22px; margin-top: 46px; }
.brand-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(43,35,32,0.07); transition: transform .25s;
}
.brand-card:hover { transform: translateY(-4px); }
.brand-cover { height: 150px; background-size: cover; background-position: center; background-color: var(--blush-deep); }
.brand-body { padding: 18px; text-align: center; }
.brand-body h3 { font-size: 18px; margin-bottom: 12px; }
.brand-btn {
  border: 1px solid var(--rose-deep); background: transparent; color: var(--rose-deep);
  padding: 9px 18px; border-radius: 100px; font-weight: 600; font-size: 13px; cursor: pointer;
  transition: background .2s, color .2s; font-family: var(--sans);
}
.brand-btn:hover { background: var(--rose-deep); color: #fff; }
.loading-hint { text-align: center; color: var(--ink-soft); font-style: italic; }

/* ---------------- GALLERY MODAL ---------------- */
.gallery-modal {
  position: fixed; inset: 0; background: rgba(43,35,32,0.75); backdrop-filter: blur(6px);
  z-index: 100; display: none; align-items: center; justify-content: center; padding: 30px;
}
.gallery-modal--open { display: flex; }
.gallery-modal-inner {
  background: var(--blush); border-radius: 22px; max-width: 900px; width: 100%;
  max-height: 85vh; display: flex; flex-direction: column; overflow: hidden;
}
.gallery-modal-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 26px; border-bottom: 1px solid rgba(43,35,32,0.08); }
.gallery-modal-head h3 { font-size: 22px; }
.gallery-modal-actions { display: flex; align-items: center; gap: 14px; }
.gallery-fb-link { font-size: 13px; font-weight: 600; color: var(--rose-deep); }
.gallery-close { border: none; background: rgba(43,35,32,0.08); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 14px; }
.gallery-track { overflow-y: auto; padding: 22px 26px; display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.gallery-cat-title { grid-column: 1 / -1; font-family: var(--serif); font-size: 20px; color: var(--rose-deep); margin: 18px 0 2px; font-weight: 600; }
.gallery-cat-title:first-child { margin-top: 0; }

.custom-section-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-top: 40px; }
.custom-section-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); cursor: pointer; display: block; box-shadow: 0 10px 26px rgba(168,92,60,0.14); }
.gallery-track img { width: 100%; border-radius: 10px; display: block; aspect-ratio: 1; object-fit: cover; }

/* ---------------- ZOOM DE IMAGEN (nuevo) ---------------- */
.gallery-track img {
  cursor: zoom-in;
  transition: transform .2s;
}
.gallery-track img:hover {
  transform: scale(1.03);
}

.zoom-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.zoom-modal--open { display: flex; }
.zoom-modal img {
  max-width: 88vw;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
  cursor: default;
}
.zoom-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.zoom-close:hover { background: rgba(255,255,255,0.3); }

.zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-nav:hover { background: rgba(255,255,255,0.3); }
.zoom-nav--prev { left: 20px; }
.zoom-nav--next { right: 20px; }

@media (max-width: 600px) {
  .zoom-close { top: 14px; right: 14px; width: 36px; height: 36px; }
  .zoom-nav { width: 40px; height: 40px; font-size: 22px; }
  .zoom-nav--prev { left: 8px; }
  .zoom-nav--next { right: 8px; }
}

/* ---------------- CONTACT ---------------- */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}
.contact-item {
  flex: 1 1 auto;
  width: fit-content;
  min-width: 0;
  background: var(--white); border-radius: 16px; padding: 20px 26px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 10px 26px rgba(43,35,32,0.06); transition: transform .2s;
}
.contact-item:hover { transform: translateY(-3px); }
.contact-icon { color: var(--rose-deep); flex-shrink: 0; }
.contact-item > span {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.contact-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-item span span,
.contact-item > span {
  font-size: 13.5px;
  color: var(--ink-soft);
}

@media (max-width: 480px) {
  .contact-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-item {
    width: 100%;
    justify-content: flex-start;
  }
  .contact-item > span {
    white-space: normal;
    word-break: break-all;
  }
}

/* ---------------- FOOTER ---------------- */
.footer { background: var(--ink); color: #EEE1D6; padding: 50px 24px; text-align: center; }
.footer-logo-img { height: 120px; width: auto; margin: 0 auto 14px; display: block; }
.footer p { color: #CBB6A6; font-size: 14px; max-width: 420px; margin: 0 auto; }

.to-top {
  position: fixed; bottom: 26px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--rose-deep); color: #fff; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 40; font-size: 18px;
}
.to-top--visible { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }

/* ---------------- MOBILE (teléfonos) ---------------- */
@media (max-width: 600px) {
  .nav-inner { padding: 12px 16px; gap: 14px; }
  .nav-logo-text { font-size: 18px; }

  .hero { padding: 90px 18px 50px; min-height: unset; }
  .hero-monogram svg { width: 68px; height: 68px; }
  .hero-title { font-size: clamp(30px, 9vw, 42px); }
  .hero-sub { font-size: 15.5px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; padding: 14px 24px; }

  .section { padding: 56px 16px; }
  .section-title { font-size: clamp(24px, 6vw, 32px); margin-bottom: 18px; }
  .lead { font-size: 15px; }

  .about-card { padding: 24px 20px; }
  .about-tagline { font-size: 19px; }
  .about-tagline em { font-size: 17px; }

  .price-grid { gap: 18px; margin-top: 32px; }
  .price-card { padding: 28px 22px; }
  .price-card h3 { font-size: 21px; }
  .price-badge { top: -12px; right: 18px; font-size: 10.5px; padding: 5px 13px; }

  .loc-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .loc-card { padding: 24px 20px; }
  .loc-map-wrap { margin-top: 26px; }
  #locMap { height: 260px; }

  .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
  .brand-cover { height: 120px; }
  .brand-body { padding: 14px; }
  .brand-body h3 { font-size: 15.5px; margin-bottom: 9px; }
  .brand-btn { font-size: 12px; padding: 8px 14px; }

  .whatsapp-groups-grid { flex-direction: column; align-items: stretch; }
  .wa-group { justify-content: center; }

  .channels-grid { flex-direction: column; align-items: stretch; }
  .channel-item { justify-content: center; }

  .contact-block .section-title { font-size: clamp(24px, 7vw, 30px); }

  .gallery-modal { padding: 14px; }
  .gallery-modal-inner { max-height: 92vh; border-radius: 16px; }
  .gallery-modal-head { padding: 14px 16px; }
  .gallery-modal-head h3 { font-size: 18px; }
  .gallery-track { padding: 14px 16px; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .custom-section-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 28px; }

  .footer { padding: 36px 18px; }
  .footer-logo { font-size: 20px; }

  .to-top { width: 40px; height: 40px; bottom: 18px; right: 18px; font-size: 16px; }
}
