/* ============================================
   SANDRAYLOOKS - ESTILOS PRINCIPALES
   PALETA: ROJO · NEGRO · BLANCO
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* NUEVA PALETA ROJO-NEGRO-BLANCO */
  --bg:          #F8F8F8;      /* Fondo blanco roto */
  --bg-deep:     #EEEEEE;       /* Fondo más oscuro */
  --primary:     #C41E3A;       /* Rojo principal */
  --primary-light: #E86B6B;     /* Rojo suave */
  --primary-deep: #8B0000;      /* Rojo oscuro / burdeos */
  --accent:      #D4AF37;       /* Dorado para detalles (opcional) */
  --ink:         #111111;       /* Negro puro */
  --ink-soft:    #333333;       /* Negro suave */
  --muted:       #666666;       /* Gris medio */
  --white:       #FFFFFF;
  --border:      rgba(0,0,0,.1);
  --shadow-sm:   0 4px 24px rgba(0,0,0,.06);
  --shadow-md:   0 12px 48px rgba(0,0,0,.10);
  --shadow-lg:   0 24px 80px rgba(0,0,0,.14);
  --radius-sm:   12px;
  --radius-md:   24px;
  --radius-lg:   48px;
  --nav-h:       72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .3;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }

/* NAVIGATION */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s, box-shadow .4s;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
  background: transparent;
}
nav.scrolled {
  background: rgba(17,17,17,.92);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}
nav.scrolled .logo,
nav.scrolled .nav-links a,
nav.scrolled .hamburger span {
  color: var(--white);
}
nav.scrolled .nav-links a::after {
  background: var(--primary);
}
nav.scrolled .hamburger span {
  background: var(--white);
}

.nav-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.5px;
}
.logo em { font-style: italic; color: var(--primary); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--primary);
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 40px;
  font-size: .78rem !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--primary-deep) !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(196,30,58,.3); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .35s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(17,17,17,.98);
  backdrop-filter: blur(20px);
  padding: 2rem 1.5rem 2.5rem;
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: all .35s ease;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.mobile-nav a {
  display: block;
  padding: .8rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,.1); color: var(--primary-light); }
.mobile-nav .btn-nav-mob {
  display: block;
  margin-top: 1rem;
  text-align: center;
  background: var(--primary);
  color: white;
  padding: 14px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}
.mobile-nav .btn-nav-mob:hover { background: var(--primary-deep); }

@media (max-width: 1024px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
}

/* HERO */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 5vw, 3.5rem) 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,30,58,.12) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,17,17,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--primary);
}
.hero-h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.6rem;
  color: var(--ink);
}
.hero-h1 em {
  font-style: italic;
  color: var(--primary);
  display: block;
}
.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(196,30,58,.35);
  transition: all .3s;
}
.btn-primary:hover { background: var(--primary-deep); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(196,30,58,.45); }
.btn-ghost {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .3s;
}
.btn-ghost:hover { color: var(--primary); gap: 10px; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}
.hero-stat-label { font-size: .78rem; color: var(--muted); margin-top: 4px; }
.hero-visual { position: relative; display: flex; justify-content: center; z-index: 1; }
.hero-img-frame { position: relative; width: clamp(280px, 44vw, 520px); aspect-ratio: .82; }
.hero-img-blob {
  width: 100%; height: 100%;
  border-radius: 60% 40% 55% 45% / 50% 50% 50% 50%;
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: var(--shadow-lg);
}
.hero-img-blob img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.hero-img-blob:hover img { transform: scale(1.04); }
.hero-badge-float {
  position: absolute;
  bottom: 10%; left: -8%;
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .8rem;
  animation: floatY 4s ease-in-out infinite;
}
.hero-badge-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.hero-badge-text strong { font-size: .85rem; font-weight: 600; color: var(--ink); display: block; }
.hero-badge-text span { font-size: .72rem; color: var(--muted); }
.hero-badge-float2 {
  position: absolute;
  top: 10%; right: -6%;
  background: var(--ink);
  border-radius: var(--radius-sm);
  padding: .9rem 1.2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  animation: floatY 4s ease-in-out infinite reverse;
}
.hero-badge-float2 .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-light);
}
.hero-badge-float2 .lbl { font-size: .7rem; color: rgba(255,255,255,.55); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; text-align: center; padding-bottom: 3rem; gap: 3rem; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-img-frame { width: clamp(220px, 70vw, 380px); }
  .hero-badge-float { left: 0; }
  .hero-badge-float2 { right: 0; }
}

/* SECTION SHARED */
section { padding: clamp(3.5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 3.5rem); }
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .8rem;
}
.sec-label::before, .sec-label::after {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--primary);
}
.sec-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: .8rem;
}
.sec-title em { font-style: italic; color: var(--primary); }
.sec-sub { font-size: .95rem; color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 520px; }
.sec-header { margin-bottom: 3.5rem; }
.sec-header.center { text-align: center; }
.sec-header.center .sec-sub { margin: 0 auto; }

/* ABOUT */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.about-images {
  position: relative;
  height: clamp(380px, 50vw, 580px);
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 85%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 58%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid white;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-pill {
  position: absolute;
  top: 45%; left: 60%;
  background: var(--primary);
  color: white;
  border-radius: 40px;
  padding: .6rem 1.1rem;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(196,30,58,.35);
  white-space: nowrap;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feat {
  padding: 1.2rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  transition: all .3s;
}
.about-feat:hover { background: var(--bg-deep); transform: translateY(-2px); }
.about-feat-icon { font-size: 1.4rem; margin-bottom: .5rem; display: block; }
.about-feat h4 { font-size: .9rem; font-weight: 600; font-family: 'Jost', sans-serif; margin-bottom: .2rem; color: var(--ink); }
.about-feat p { font-size: .78rem; color: var(--muted); font-weight: 300; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 320px; order: -1; }
}

/* SERVICES */
#services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  transition: all .35s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--bg-deep), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: transform .3s;
  color: var(--primary-deep);
}
.service-card:hover .service-icon { transform: rotate(-5deg) scale(1.1); }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; color: var(--ink); }
.service-card p { font-size: .85rem; color: var(--muted); line-height: 1.65; font-weight: 300; margin-bottom: 1.2rem; }
.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
}
.service-price span { font-size: .75rem; font-family: 'Jost'; color: var(--muted); font-weight: 400; }

/* GALLERY */
#gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-deep);
  cursor: pointer;
}
.gallery-item:first-child { grid-row: span 2; aspect-ratio: .75; }
.gallery-item:not(:first-child) { aspect-ratio: 1.1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: white; font-size: .85rem; font-weight: 500; }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-row: unset; aspect-ratio: 1; }
}

/* TESTIMONIALS */
#testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: .8;
  color: var(--primary-light);
  margin-bottom: .5rem;
}
.testimonial-text {
  font-size: .92rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.testimonial-stars { color: var(--primary); font-size: .9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--white);
}
.author-name { font-size: .9rem; font-weight: 600; color: var(--ink); }
.author-role { font-size: .75rem; color: var(--muted); }

/* BOOKING STRIP */
#booking-strip {
  background: linear-gradient(135deg, var(--ink) 0%, var(--primary-deep) 100%);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#booking-strip::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
#booking-strip h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: .8rem;
}
#booking-strip h2 em { color: var(--primary-light); }
#booking-strip p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 2rem; font-weight: 300; }
.btn-strip {
  background: var(--primary);
  color: white;
  padding: 15px 38px;
  border-radius: 40px;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
  box-shadow: 0 8px 28px rgba(196,30,58,.4);
}
.btn-strip:hover { background: var(--primary-deep); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(196,30,58,.5); }

/* CONTACT */
#contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--ink); }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--bg-deep), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-deep);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-item-val { font-size: .9rem; font-weight: 500; color: var(--ink); }
.contact-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.contact-social a {
  width: 40px; height: 40px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all .2s;
}
.contact-social a:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--ink); }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  color: var(--ink);
  transition: all .25s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(196,30,58,.1);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 40px;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: .5rem;
}
.form-submit:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(196,30,58,.35); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.55);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.25rem, 5vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: .8rem;
}
.footer-logo em { font-style: italic; color: var(--primary-light); }
.footer-tagline { font-size: .83rem; line-height: 1.6; }
.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: .5rem; }
.footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--primary-light); }
.footer-col p { font-size: .85rem; line-height: 1.6; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
}

/* BACK TO TOP */
#back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px rgba(196,30,58,.4);
  opacity: 0;
  transform: translateY(12px);
  transition: all .35s;
  z-index: 998;
}
#back-top.show { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--primary-deep); transform: translateY(-2px) scale(1.05); }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 52px; height: 52px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all .3s;
  z-index: 998;
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 0 0 10px rgba(37,211,102,.12); }
}

/* FADE UP */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.d4 { transition-delay: .4s; }
.fade-up.d5 { transition-delay: .5s; }
.fade-up.d6 { transition-delay: .6s; }

.img-placeholder { background: linear-gradient(135deg, #E8DDD5 0%, #D4C5BB 100%); }
.img-placeholder-dark { background: linear-gradient(135deg, #C5B0A6 0%, #B09088 100%); }