/* ============================================
   GRUPO DE ENSUEÑO — Design System
   ============================================ */
:root {
  --rose-dust: #D4A5A0;
  --rose-deep: #B88478;
  --rose-soft: #E8C9C2;
  --blush: #F5E6E3;
  --cream: #FAF6F2;
  --cream-deep: #F2EBE3;
  --ink: #1A1A1A;
  --ink-soft: #2D2A28;
  --gray: #7A7A7A;
  --gray-light: #B8B0AB;
  --gold: #C9A961;
  --line: rgba(184, 132, 120, 0.18);

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-script: 'Allura', 'Great Vibes', cursive;
  --font-sans: 'Montserrat', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --container: 1280px;
}

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

html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body { min-height: 100vh; }

img { max-width: 100%; display: block; }
button, a { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* Selection */
::selection { background: var(--rose-dust); color: white; }

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark {
  width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
}
.loader-mark svg { width: 100%; height: 100%; }
.loader-mark .draw-path {
  fill: none;
  stroke: var(--rose-dust);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawPath 2s var(--ease-out-expo) forwards;
}
@keyframes drawPath { to { stroke-dashoffset: 0; } }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(212, 165, 160, 0.9);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background 0.3s, opacity 0.3s;
  mix-blend-mode: multiply;
}
.cursor.is-hover {
  width: 56px; height: 56px;
  background: rgba(212, 165, 160, 0.25);
  border: 1px solid rgba(184, 132, 120, 0.4);
}
.cursor-label {
  position: fixed;
  top: 0; left: 0;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 40px));
  transition: opacity 0.3s var(--ease-out-expo);
}
.cursor-label.is-visible { opacity: 1; }

@media (hover: none), (max-width: 900px) {
  .cursor, .cursor-label { display: none; }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 201;
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.5s var(--ease-out-expo), background 0.5s, backdrop-filter 0.5s;
}
.nav.is-scrolled {
  padding: 14px 48px;
  background: rgba(250, 246, 242, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo svg { width: 42px; height: 42px; transition: transform 0.6s var(--ease-out-expo); }
.nav-logo:hover svg { transform: rotate(-8deg); }
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-text .top {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.22em;
  color: var(--ink);
  text-transform: uppercase;
}
.nav-logo-text .bot {
  font-family: var(--font-script);
  font-size: 16px;
  color: var(--rose-deep);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-menu a {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink);
  font-weight: 400;
  position: relative;
  padding: 4px 0;
}
.nav-menu a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--rose-deep);
  transition: width 0.4s var(--ease-out-expo);
}
.nav-menu a:hover::after { width: 100%; }

.nav-actions {
  display: flex; align-items: center; gap: 10px;
}

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.4s, transform 0.3s var(--ease-out-expo);
  display: inline-block;
}
.nav-cta:hover { background: var(--rose-deep); transform: scale(0.97); }

.nav-cta-catalog {
  background: var(--rose-deep);
  color: var(--cream);
  border: 1px solid var(--rose-deep);
}
.nav-cta-catalog:hover { background: var(--rose-dust); border-color: var(--rose-dust); }

.nav-burger { display: none; }

@media (max-width: 1024px) {
  .nav {
    padding: 20px 24px;
    justify-content: center;
    position: fixed;
  }
  .nav.is-scrolled { padding: 12px 24px; }
  .nav-menu, .nav-cta { display: none; }
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; padding: 8px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 201;
    width: 36px; height: 36px;
  }
  .nav-burger span {
    width: 24px; height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
    display: block;
  }
  /* Burger → X animation */
  .nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out-expo), visibility 0.45s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0;
  padding: 80px 40px 60px;
}
.mobile-menu-inner ul {
  list-style: none;
  text-align: center;
  margin-bottom: 48px;
}
.mobile-menu-inner ul li {
  overflow: hidden;
}
.mobile-menu-inner ul li a {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 8vw, 52px);
  color: var(--ink);
  padding: 10px 0;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: color 0.3s;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out-expo), opacity 0.5s var(--ease-out-expo), color 0.3s;
}
.mobile-menu.is-open .mobile-menu-inner ul li a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu-inner ul li:nth-child(1) a { transition-delay: 0.05s; }
.mobile-menu-inner ul li:nth-child(2) a { transition-delay: 0.10s; }
.mobile-menu-inner ul li:nth-child(3) a { transition-delay: 0.15s; }
.mobile-menu-inner ul li:nth-child(4) a { transition-delay: 0.20s; }
.mobile-menu-inner ul li:nth-child(5) a { transition-delay: 0.25s; }
.mobile-menu-inner ul li:nth-child(6) a { transition-delay: 0.30s; }
.mobile-menu-inner ul li a:hover { color: var(--rose-deep); }

.mobile-menu-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out-expo) 0.35s, transform 0.5s var(--ease-out-expo) 0.35s, background 0.3s;
}
.mobile-menu.is-open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-cta:hover { background: var(--rose-deep); }

@media (max-width: 1024px) {
  .mobile-menu { display: block; }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.1s var(--ease-out-expo), transform 1.1s var(--ease-out-expo);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.mask-reveal {
  position: relative;
  overflow: hidden;
}
.mask-reveal > * {
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out-expo);
}
.mask-reveal.is-visible > * { transform: translateY(0); }

.image-reveal {
  position: relative;
  overflow: hidden;
}
.image-reveal::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--cream);
  transform-origin: bottom;
  transition: transform 1.2s var(--ease-out-expo);
}
.image-reveal img,
.image-reveal .ph {
  transform: scale(1.15);
  transition: transform 1.6s var(--ease-out-expo);
}
.image-reveal.is-visible::after { transform: scaleY(0); }
.image-reveal.is-visible img,
.image-reveal.is-visible .ph { transform: scale(1); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 200px 48px 80px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg .floral-l, .hero-bg .floral-r {
  position: absolute;
  width: 480px; height: 480px;
  opacity: 0.6;
}
.hero-bg .floral-l { top: 6%; left: -120px; transform: rotate(-12deg); }
.hero-bg .floral-r { bottom: 4%; right: -140px; transform: rotate(20deg); }
.hero-bg .sparkle {
  position: absolute;
  width: 24px; height: 24px;
  opacity: 0.7;
  animation: twinkle 4s ease-in-out infinite;
}
.hero-bg .sparkle.s1 { top: 18%; left: 22%; animation-delay: 0s; }
.hero-bg .sparkle.s2 { top: 30%; right: 18%; animation-delay: 1.4s; width: 18px; height: 18px; }
.hero-bg .sparkle.s3 { bottom: 28%; left: 30%; animation-delay: 2.6s; width: 14px; height: 14px; }
.hero-bg .sparkle.s4 { top: 60%; right: 28%; animation-delay: 3.2s; width: 20px; height: 20px; }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 0.9; transform: scale(1.1) rotate(20deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 36px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--rose-dust);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title .word {
  display: inline-block;
  margin: 0 0.06em;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(30px);
  transition: opacity 1.1s var(--ease-out-expo), filter 1.1s var(--ease-out-expo), transform 1.1s var(--ease-out-expo);
}
.hero-title .word.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.hero-title em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--rose-deep);
  font-size: 1.05em;
  display: inline-block;
  padding: 0 0.05em;
}

.hero-sub {
  font-family: var(--font-script);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--rose-deep);
  margin-bottom: 28px;
  line-height: 1;
}

.hero-desc {
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 18px;
  font-weight: 400;
}

.hero-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 48px;
}

.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease-out-expo), background 0.4s, color 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: scale(0.98); }
.btn:active { transform: scale(0.94); }
.btn-primary {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}
.btn-primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn .arrow { transition: transform 0.4s var(--ease-out-expo); }
.btn:hover .arrow { transform: translateX(4px); }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 2;
}
.hero-scroll .line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--rose-dust), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: '';
  position: absolute; top: -56px; left: 0;
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--rose-deep));
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -56px; } 100% { top: 56px; }
}

/* ============================================
   HERO BUBBLES ARC
   ============================================ */
.hero-bubbles {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0; right: 0;
  height: 320px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.hero-bubbles-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  will-change: transform;
  animation: heroBubbleScroll 34s linear infinite;
}

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

.hb {
  flex-shrink: 0;
  width: var(--size);
  height: var(--size);
  margin: 0 16px;
  transform: translateY(var(--arc));
}

.hb-inner {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212, 165, 160, 0.55);
  box-shadow:
    0 0 0 5px rgba(212, 165, 160, 0.10),
    0 8px 30px rgba(184, 132, 120, 0.20);
}
.hb-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(232, 201, 194, 0.45);
  pointer-events: none;
}

.hb-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) brightness(1.03);
}

@media (max-width: 768px) {
  .hero-bubbles { height: 140px; }
  .hero-bubbles-track {
    will-change: auto;
    animation: none;
  }
  .hb {
    width: calc(var(--size) * 0.38);
    height: calc(var(--size) * 0.38);
    transform: translateY(calc(var(--arc) * 0.38));
  }
  .brands-marquee {
    overflow: hidden;
    cursor: default;
  }
}

/* ============================================
   SECTION GENERICS
   ============================================ */
section { position: relative; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 140px 0; }
.section-tight { padding: 100px 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
.section-title em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--rose-deep);
  font-weight: 400;
}

.section-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gray);
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 64px;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands { background: var(--cream); padding: 140px 0; position: relative; }
.brands::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(212,165,160,0.08), transparent 60%);
  pointer-events: none;
}

.brands-head {
  text-align: center;
  max-width: 800px; margin: 0 auto 80px;
  position: relative;
}
.brands-head .section-sub { margin: 0 auto; }

.brands-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: scroll;
  overflow-y: hidden;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}
.brands-marquee::-webkit-scrollbar { display: none; }
.brands-marquee.is-dragging { cursor: grabbing; }

.brands-track {
  display: flex;
  gap: 28px;
  width: max-content;
  pointer-events: none;
}
.brands-track .brand-card { pointer-events: auto; }

.brand-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo), opacity 0.5s;
  display: flex; flex-direction: column;
  width: 380px;
  flex-shrink: 0;
  min-height: 460px;
}
.brand-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 110%, rgba(212,165,160,0.18), transparent 70%);
  opacity: 0; transition: opacity 0.6s var(--ease-out-expo);
  pointer-events: none;
}
.brand-card:hover::before { opacity: 1; }
.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -20px rgba(184, 132, 120, 0.25);
}
.brands-grid:hover .brand-card:not(:hover) { opacity: 0.45; }
.brand-card .brand-logo {
  width: 180px; height: 180px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.7s var(--ease-out-expo);
}
.brand-card:hover .brand-logo { transform: scale(1.06); }
.brand-card .brand-logo img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}

.brand-card .brand-tag {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--rose-deep);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.1;
}
.brand-card .brand-desc {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: auto;
}
.brand-card .brand-link {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  align-self: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.brand-card .brand-link .arrow { transition: transform 0.4s var(--ease-out-expo); }
.brand-card:hover .brand-link .arrow { transform: translateX(4px); }

.brand-card.is-coming {
  background: linear-gradient(135deg, var(--blush) 0%, white 100%);
}
.brand-card.is-coming::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.6) 50%, transparent 70%);
  background-size: 250% 100%;
  background-position: 100% 0;
  animation: shimmer 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
.brand-badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--ink);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 7px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  z-index: 2;
  animation: pulseBadge 2.6s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ============================================
   STORY SECTION
   ============================================ */
.story {
  background: var(--cream-deep);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.story-floral {
  position: absolute;
  width: 600px; height: 600px;
  opacity: 0.35;
  pointer-events: none;
}
.story-floral.tl { top: -100px; left: -180px; transform: rotate(-15deg); }
.story-floral.br { bottom: -180px; right: -200px; transform: rotate(160deg); }

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 60px; } }

.story-text p {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 20px;
}
.story-text p strong { color: var(--rose-deep); font-weight: 500; font-style: italic; }
.story-text p em { font-family: var(--font-script); font-size: 1.2em; font-style: normal; color: var(--rose-deep); }

.story-portrait {
  position: relative;
}
.story-portrait .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--blush);
  box-shadow: 0 30px 60px -20px rgba(184,132,120,0.3);
}
.story-portrait .ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--rose-soft), var(--blush));
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: var(--rose-deep);
  font-family: var(--font-serif);
  font-style: italic;
}
.story-portrait .ph .initials {
  font-family: var(--font-script);
  font-size: 120px;
  line-height: 1;
  color: var(--rose-deep);
  margin-bottom: 12px;
}
.story-portrait .ph .label {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--rose-deep);
  text-transform: uppercase;
  font-style: normal;
  opacity: 0.6;
}
.story-portrait .caption {
  margin-top: 24px;
  text-align: center;
}
.story-portrait .caption .name {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.story-portrait .caption .role {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--rose-deep);
}
.story-portrait .frame::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 100%; height: 100%;
  border: 1px solid var(--rose-dust);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ============================================
   MISSION / VALUES STRIP
   ============================================ */
.mission {
  padding: 140px 0;
  background: var(--cream);
  text-align: center;
}
.mission-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.2;
  color: var(--ink);
  max-width: 1000px;
  margin: 0 auto 80px;
  letter-spacing: -0.01em;
}
.mission-quote em {
  font-family: var(--font-script);
  color: var(--rose-deep);
  font-style: normal;
  font-size: 1.08em;
}
.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 700px) { .values-row { grid-template-columns: repeat(2, 1fr); } }

.value {
  padding: 32px 16px;
  border-top: 1px solid var(--line);
}
.value .icon {
  width: 32px; height: 32px;
  margin: 0 auto 16px;
  color: var(--rose-deep);
}
.value .title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}
.value .desc {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* ============================================
   SERVICES — editorial showcase
   ============================================ */
.services {
  padding: 0;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.services-intro {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}
.services-intro .scroll-word { display: none; }
.services-intro .section-title { max-width: 900px; margin: 0 auto; }

/* Marquee headline */
.services-marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.services-marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee-srv 40s linear infinite;
  align-items: center;
}
@keyframes marquee-srv {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.services-marquee span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.services-marquee .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose-deep);
  flex-shrink: 0;
}

/* Editorial cards */
.services-showcase {
  padding: 120px 0;
}
.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.service-card:last-child { border-bottom: none; }
.service-card:nth-child(even) {
  direction: rtl;
}
.service-card:nth-child(even) > * { direction: ltr; }

@media (max-width: 900px) {
  .service-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
  .service-card:nth-child(even) { direction: ltr; }
}

.service-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush), var(--rose-soft));
  display: flex; align-items: center; justify-content: center;
}
.service-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.5), transparent 50%),
    repeating-linear-gradient(45deg, rgba(212,165,160,0.18) 0 1px, transparent 1px 24px);
}
.service-visual .visual-num {
  position: absolute;
  top: 24px; left: 24px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--rose-deep);
  text-transform: uppercase;
}
.service-visual .visual-icon {
  width: 50%; height: 50%;
  color: var(--rose-deep);
  position: relative;
  z-index: 1;
  transition: transform 0.8s var(--ease-out-expo);
}
.service-card:hover .visual-icon { transform: scale(1.08) rotate(-4deg); }

.service-info { position: relative; }
.service-info .big-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--rose-deep);
  position: absolute;
  top: -40px; left: -10px;
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}
.service-info .info-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 20px;
  display: inline-block;
  background: var(--cream-deep);
  position: relative; z-index: 1;
  padding-right: 16px;
}
.service-info h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.service-info h3 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--rose-deep);
  font-size: 1.15em;
}
.service-info p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 480px;
  position: relative; z-index: 1;
}
.service-info .features {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.service-info .features span {
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.service-info .info-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  font-weight: 500;
  transition: gap 0.4s var(--ease-out-expo), color 0.3s;
}
.service-info .info-cta:hover { gap: 18px; color: var(--rose-deep); }

/* ============================================
   PROCESS — 3 column timeline
   ============================================ */
.process {
  background: var(--ink);
  color: var(--cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.process-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 100px;
}
.process-head .section-eyebrow { color: var(--rose-dust); }
.process-head .section-title { color: var(--cream); }
.process-head .section-title em { color: var(--rose-dust); }
.process-head .section-sub { color: var(--gray-light); margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-dust) 15%, var(--rose-dust) 85%, transparent);
  opacity: 0.4;
}
@media (max-width: 800px) {
  .process-steps { grid-template-columns: 1fr; gap: 56px; }
  .process-steps::before { display: none; }
}

.process-step {
  text-align: center;
  position: relative;
}
.process-step .step-num {
  width: 76px; height: 76px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--rose-dust);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--rose-dust);
  position: relative;
  z-index: 1;
  transition: background 0.5s var(--ease-out-expo), color 0.5s, transform 0.5s;
}
.process-step:hover .step-num {
  background: var(--rose-dust);
  color: var(--ink);
  transform: scale(1.08);
}
.process-step h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--cream);
}
.process-step h3 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--rose-dust);
}
.process-step p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-light);
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   TEAM
   ============================================ */
.team {
  padding: 160px 0;
  background: var(--cream);
}
.team-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.team-head .section-sub { margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  text-align: center;
  padding: 28px 16px;
  transition: transform 0.5s var(--ease-out-expo);
}
.team-card:hover { transform: translateY(-6px); }

.team-avatar {
  width: 180px; height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose-soft));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s;
}
.team-card:hover .team-avatar {
  transform: scale(1.04);
  box-shadow: 0 20px 40px -10px rgba(184,132,120,0.3);
}
.team-avatar::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--rose-dust);
  transform: scale(1.06);
  opacity: 0; transition: opacity 0.4s, transform 0.6s var(--ease-out-expo);
}
.team-card:hover .team-avatar::after {
  opacity: 1; transform: scale(1.12);
}
.team-avatar .initials {
  font-family: var(--font-script);
  font-size: 70px;
  color: var(--rose-deep);
  line-height: 1;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 400;
}
.team-role {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 160px 0;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.testimonials-head { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--cream);
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.6);
  position: relative;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
}
.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(184,132,120,0.3);
}
.testimonial .quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 0.6;
  color: var(--rose-dust);
  display: block;
  margin-bottom: 16px;
}
.testimonial .quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 32px;
  font-weight: 300;
}
.testimonial .person {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rose-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--rose-deep);
}
.testimonial .person .name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.testimonial .person .meta {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 160px 0;
  background: var(--cream);
}
.gallery-head { text-align: center; max-width: 800px; margin: 0 auto 64px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  padding: 0 48px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--blush);
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:nth-child(7) { grid-row: span 2; }
.gallery-item:nth-child(10) { grid-row: span 2; }

.gallery-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--rose-deep);
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  transition: transform 1s var(--ease-out-expo);
  position: relative;
}
.gallery-ph::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(212,165,160,0.18),
    rgba(212,165,160,0.18) 8px,
    rgba(212,165,160,0.05) 8px,
    rgba(212,165,160,0.05) 16px
  );
}
.gallery-ph span {
  position: relative; z-index: 1;
  background: rgba(250,246,242,0.85);
  padding: 6px 12px;
  border-radius: 100px;
}
.gallery-item:hover .gallery-ph { transform: scale(1.06); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,0.4);
  opacity: 0;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 24px;
  color: var(--cream);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  transition: opacity 0.4s var(--ease-out-expo);
}
.gallery-item:hover .overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 60px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-content {
  width: 100%; max-width: 1000px;
  height: 80vh;
  background: var(--blush);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.94);
  transition: transform 0.5s var(--ease-out-expo);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open .lightbox-content { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--ink);
  transition: transform 0.3s var(--ease-out-expo), background 0.3s;
}
.lightbox-close:hover { background: var(--rose-dust); transform: rotate(90deg); }

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: 160px 0;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }

.location-text .lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}
.location-text .body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 32px;
}
.location-text .body strong { color: var(--ink); font-weight: 500; }

.location-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.stat .num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--rose-deep);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.stat .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.location-map {
  position: relative;
  aspect-ratio: 1.1/1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}

#ensueno-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* Colorize tiles to match rose/cream palette */
.leaflet-tile-pane {
  filter: saturate(0.35) sepia(0.5) hue-rotate(295deg) brightness(0.82) contrast(1.4);
}

.leaflet-control-zoom {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: none !important;
}
.leaflet-control-zoom a {
  color: var(--rose-deep) !important;
  font-size: 18px !important;
}
.leaflet-control-attribution {
  font-size: 9px;
  opacity: 0.45;
  background: transparent !important;
}

/* Custom map marker */
.map-pin-dot {
  width: 18px; height: 18px;
  background: var(--rose-deep);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 10px rgba(184,132,120,0.6);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,132,120,0.6); }
  70% { box-shadow: 0 0 0 20px rgba(184,132,120,0); }
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 200px 0;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-final::before, .cta-final::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,165,160,0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-final::before { top: -200px; left: -200px; }
.cta-final::after { bottom: -200px; right: -200px; }
.cta-final-inner { position: relative; z-index: 1; }
.cta-final h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 1100px;
  margin-left: auto; margin-right: auto;
}
.cta-final h2 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--rose-deep);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--gray-light);
  padding: 100px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 48px; } }

.footer h4 {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 400;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.footer-brand .footer-logo svg { width: 56px; height: 56px; color: var(--rose-dust); }
.footer-brand .footer-logo .text .top {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
  display: block;
}
.footer-brand .footer-logo .text .bot {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--rose-dust);
  margin-top: 4px;
  letter-spacing: 0.02em;
  display: block;
}
.footer-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-light);
  max-width: 360px;
  margin-bottom: 24px;
}
.footer-brands-strip {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.footer-brands-strip .mini {
  width: 150px; height: 150px;
  border-radius: var(--radius-sm);
  background: rgba(250, 246, 242, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}
.footer-brands-strip .mini:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.4);
}
.footer-brands-strip .mini img { width: 100%; height: 100%; object-fit: contain; }

.footer-list { list-style: none; }
.footer-list li { margin-bottom: 14px; font-size: 14px; }
.footer-list a { transition: color 0.3s; }
.footer-list a:hover { color: var(--rose-dust); }
.footer-list .icon {
  display: inline-block;
  width: 16px;
  margin-right: 10px;
  color: var(--rose-dust);
}

.footer-bottom {
  padding-top: 32px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.footer-powered {
  padding-top: 12px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(184, 176, 171, 0.45);
}
.footer-powered a {
  color: rgba(184, 176, 171, 0.6);
  transition: color 0.3s;
}
.footer-powered a:hover { color: var(--rose-dust); }

/* ============================================
   FLORAL DECORATIONS (line art SVG)
   ============================================ */
.floral-deco {
  width: 100%; height: 100%;
  color: var(--rose-dust);
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Sparkle SVG */
.sparkle-svg {
  width: 100%; height: 100%;
  color: var(--rose-deep);
  fill: currentColor;
}

/* RD map */
.rd-map {
  fill: none;
  stroke: var(--rose-deep);
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.rd-map.filled { fill: rgba(212,165,160,0.18); }

/* Magnetic button wrap */
.magnetic { display: inline-block; }

/* ============================================
   CATALOG MODAL
   ============================================ */
.catalog-modal {
  position: fixed; inset: 0;
  z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}
.catalog-modal.is-open { opacity: 1; visibility: visible; }

.catalog-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(26, 26, 26, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.catalog-modal-box {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 40px 40px 32px;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.45s var(--ease-out-expo);
  display: flex; flex-direction: column; gap: 24px;
}
.catalog-modal.is-open .catalog-modal-box {
  transform: scale(1) translateY(0);
}

.catalog-modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 22px; line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s var(--ease-out-expo);
}
.catalog-modal-close:hover { background: var(--rose-soft); transform: rotate(90deg); }

.catalog-modal-header { padding-right: 48px; }
.catalog-modal-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: block;
  margin-bottom: 6px;
}
.catalog-modal-header h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.catalog-modal-embed { border-radius: var(--radius-md); overflow: hidden; }

.catalog-modal-footer { text-align: right; }
.catalog-modal-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  border-bottom: 1px solid var(--rose-dust);
  padding-bottom: 3px;
  transition: gap 0.3s var(--ease-out-expo);
}
.catalog-modal-link:hover { gap: 12px; }

@media (max-width: 600px) {
  .catalog-modal { padding: 12px; }
  .catalog-modal-box { padding: 28px 20px 24px; }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 500;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--rose-deep);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px -6px rgba(184, 132, 120, 0.65);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), background 0.3s;
  animation: waPulseRing 3s ease-in-out infinite;
}
.whatsapp-float svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
}
.whatsapp-float:hover {
  background: var(--rose-dust);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 16px 40px -8px rgba(184, 132, 120, 0.7);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-108%) translateY(-50%);
}

.whatsapp-tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  transform: translateX(-100%) translateY(-50%);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 100px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--ink);
}

@keyframes waPulseRing {
  0%, 100% { box-shadow: 0 8px 28px -6px rgba(184,132,120,0.65), 0 0 0 0 rgba(184,132,120,0.4); }
  60% { box-shadow: 0 8px 28px -6px rgba(184,132,120,0.65), 0 0 0 14px rgba(184,132,120,0); }
}

@media (max-width: 600px) {
  .whatsapp-float { bottom: 24px; right: 24px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ============================================
   DARK MODE — prefers-color-scheme: dark
   (must be at end of file to override base rules)
   ============================================ */
@media (prefers-color-scheme: dark) {
  :root {
    --rose-dust: #C49690;
    --rose-deep: #C09080;
    --rose-soft: #3E2420;
    --blush: #241816;
    --cream: #1C1714;
    --cream-deep: #151210;
    --ink: #EEE6E1;
    --ink-soft: #C8B5AC;
    --gray: #9A8E8A;
    --gray-light: #A09590;
    --gold: #D4B46A;
    --line: rgba(212, 165, 160, 0.12);
  }

  /* Loader */
  .loader { background: var(--cream); }

  /* Nav scrolled glass */
  .nav.is-scrolled {
    background: rgba(22, 17, 15, 0.90);
    border-bottom-color: var(--line);
  }

  /* Cursor */
  .cursor { background: rgba(196, 150, 144, 0.75); }
  .cursor.is-hover {
    background: rgba(196, 150, 144, 0.15);
    border-color: rgba(192, 144, 128, 0.35);
  }
  .cursor-label { background: var(--cream); color: var(--ink); }

  /* Brands */
  .brands { background: radial-gradient(ellipse at 50% 50%, rgba(196,150,144,0.05), transparent 70%); }
  .brand-card {
    background: var(--blush);
    border-color: var(--line);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.40);
  }
  .brand-card::before { background: radial-gradient(circle at 50% 110%, rgba(196,150,144,0.18), transparent 70%); }
  .brand-card.is-coming { background: linear-gradient(135deg, var(--blush) 0%, #2E1C1A 100%); }
  .brand-card.is-coming::after { background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%); }

  /* Service visual pattern */
  .service-visual::before {
    background:
      radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03), transparent 50%),
      repeating-linear-gradient(45deg, rgba(196,150,144,0.10) 0 1px, transparent 1px 24px);
  }

  /* Story */
  .story-portrait { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55); }

  /* Gallery */
  .gallery-ph { background: rgba(24, 18, 16, 0.92); }
  .gallery-ph span { background: rgba(16, 11, 10, 0.90); color: var(--rose-dust); }
  .gallery-item { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.40); }

  /* Lightbox */
  .lightbox { background: rgba(8, 6, 5, 0.96); }

  /* Testimonials */
  .testimonial { border-color: rgba(255, 255, 255, 0.06); }
  .testimonial:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45); }

  /* Process — must stay dark */
  .process { background: #0E0C0A; color: var(--ink); }
  .process-head .section-title { color: var(--ink); }
  .process-step .step-num { background: #1A1210; }
  .process-step h3 { color: var(--ink); }

  /* Contact form */
  .form-input, .form-textarea {
    background: var(--blush);
    border-color: var(--line);
    color: var(--ink);
  }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--gray); }
  .form-input:focus, .form-textarea:focus { border-color: var(--rose-deep); }

  /* CTA final */
  .cta-final::before, .cta-final::after {
    background: radial-gradient(circle, rgba(196, 150, 144, 0.10), transparent 70%);
  }

  /* Footer — must stay dark */
  .footer { background: #0A0908; color: var(--gray-light); }
  .footer h4 { color: var(--ink); }
  .footer-brand .footer-logo .text .top { color: var(--ink); }
  .footer-grid { border-bottom-color: rgba(255, 255, 255, 0.06); }
  .footer-brands-strip .mini { background: rgba(30, 20, 18, 0.92); }

  /* Map */
  .map-container { filter: invert(0.88) hue-rotate(180deg) saturate(0.6) brightness(0.85); }
  .map-pin-dot { border-color: #0A0908; }

  /* Catalog modal */
  .catalog-modal-backdrop { background: rgba(6, 4, 3, 0.93); }
  .catalog-modal-inner { background: var(--cream); }
}
