/* =============================================================
   MIRATE — Premium Website Styles
   Archetype: Glassmorphism Modern (04) + Editorial Dark Warm (02)
   ============================================================= */

/* =============================================================
   1. Tokens & Custom Properties
   ============================================================= */
@property --mesh-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@property --mesh-x {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 30%;
}
@property --mesh-y {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 40%;
}

:root {
  /* Brand Colors */
  --black: #1A1A1A;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --rose-deep: #A0706A;
  --rose: #C4918A;
  --gold: #B8977E;
  --gold-light: #D4C4B0;
  --nude: #E8DDD3;
  --nude-light: #F5F0EB;
  --cream: #FAF8F5;
  --white: #FFFFFF;

  /* Semantic */
  --bg: var(--cream);
  --text: var(--charcoal);
  --accent: var(--rose);
  --accent-deep: var(--rose-deep);
  --line: rgba(44, 44, 44, 0.12);

  /* Typography */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vh, 8rem);
  --container: min(90%, 1200px);
  --nav-height: 72px;

  /* Easings */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-bg-dark: rgba(26, 26, 26, 0.6);
  --glass-border-dark: rgba(255, 255, 255, 0.08);
}

/* =============================================================
   2. Reset & Base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; }
::selection { background: var(--rose); color: var(--white); }
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--black);
  z-index: 9999; border-radius: 8px; font-weight: 500;
  font-size: 0.85rem;
}
.skip-link:focus { top: 1rem; }

.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--gold-light); }

.section-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 2rem;
}
.section-heading-light { color: var(--white); }

/* Reveals handled by GSAP ScrollTrigger — no CSS opacity:0 to avoid conflicts */

/* =============================================================
   4. Glass Card Component
   ============================================================= */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
}
@supports (backdrop-filter: blur(20px)) {
  .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
  }
}

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all .45s var(--ease-soft);
  position: relative;
  cursor: pointer;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(196, 145, 138, 0.2);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-rose {
  background: var(--rose);
  color: var(--white);
  border: none;
}
.btn-rose:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196, 145, 138, 0.3);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.65rem;
}

.btn-full { width: 100%; }

/* Magnetic */
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform;
  transition: transform .8s var(--ease-soft);
}

/* =============================================================
   6. Password Gate
   ============================================================= */
.password-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: grid;
  place-items: center;
  transition: opacity .8s var(--ease-out), visibility .8s;
}
.password-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.gate-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gate-logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 3rem;
  letter-spacing: 0.6rem;
  color: var(--white);
  text-indent: 0.6rem;
}
.gate-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.gate-text {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.gate-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.gate-input {
  padding: 12px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184, 151, 126, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  width: 220px;
  text-align: center;
  transition: border-color .3s;
}
.gate-input:focus {
  outline: none;
  border-color: var(--gold);
}
.gate-input::placeholder { color: var(--gold-light); opacity: 0.4; }
.gate-btn {
  padding: 12px 24px;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
}
.gate-btn:hover { background: var(--rose-deep); }
.gate-error {
  color: #D4534B;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity .3s;
}
.gate-error.is-visible { opacity: 1; }

/* =============================================================
   7. Custom Cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px;
  margin: -2.5px;
  background: var(--cream);
  border-radius: 50%;
}
.cursor-ring {
  width: 32px; height: 32px;
  margin: -16px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring {
  width: 52px; height: 52px; margin: -26px;
}
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   8. Navigation
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease-out), backdrop-filter .4s, box-shadow .4s;
}
.nav.is-scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.nav-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.4rem;
  color: var(--white);
  transition: color .4s;
}
.nav.is-scrolled .nav-logo { color: var(--black); }
.nav-links {
  display: none;
  gap: 2rem;
}
.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding: 0.25rem 0;
  transition: color .3s;
}
.nav.is-scrolled .nav-link { color: var(--charcoal-light); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-soft);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link:hover { color: var(--white); }
.nav.is-scrolled .nav-link:hover { color: var(--black); }

.nav-cta {
  display: none;
  padding: 0.6rem 1.4rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: var(--white);
  transition: all .3s;
}
.nav.is-scrolled .nav-cta {
  border-color: var(--rose);
  color: var(--rose);
}
.nav-cta:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all .3s var(--ease-out);
}
.nav.is-scrolled .nav-hamburger span { background: var(--black); }
.nav-hamburger.is-open span { background: var(--white); }
.nav-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Nav */
.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--black);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
  pointer-events: none;
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); pointer-events: auto; }
.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.nav-mobile-link {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--white);
  transition: color .3s;
}
.nav-mobile-link:hover { color: var(--rose); }

/* =============================================================
   9. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.hero-mesh {
  position: absolute; inset: -10%; z-index: 0;
  background:
    radial-gradient(60% 50% at var(--mesh-x) var(--mesh-y),
      rgba(196, 145, 138, 0.45), transparent 60%),
    radial-gradient(45% 40% at calc(100% - var(--mesh-x)) calc(100% - var(--mesh-y)),
      rgba(184, 151, 126, 0.35), transparent 55%),
    conic-gradient(from var(--mesh-angle),
      rgba(196, 145, 138, 0.25),
      rgba(184, 151, 126, 0.15),
      rgba(232, 221, 211, 0.2),
      rgba(250, 248, 245, 0.1),
      rgba(196, 145, 138, 0.25));
  filter: blur(80px) saturate(130%);
  opacity: .8;
  animation: meshShift 30s linear infinite;
  mix-blend-mode: screen;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 30%; --mesh-y: 40%; }
  33%  { --mesh-angle: 120deg; --mesh-x: 65%; --mesh-y: 35%; }
  66%  { --mesh-angle: 240deg; --mesh-x: 45%; --mesh-y: 70%; }
  100% { --mesh-angle: 360deg; --mesh-x: 30%; --mesh-y: 40%; }
}

.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0.08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 2rem;
}
.hero-logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 7rem);
  letter-spacing: 0.6rem;
  color: var(--white);
  text-indent: 0.6rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hero-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.hero-tagline {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--rose);
  letter-spacing: 0.15rem;
  margin-bottom: 0.8rem;
}
.hero-subtitle {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}
.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.6;
}

/* =============================================================
   10. Stats Bar
   ============================================================= */
.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
  padding: 0 clamp(1rem, 4vw, 2rem);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 2rem 2.5rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--black);
  line-height: 1;
}
.stat-plus {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--rose);
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  font-weight: 500;
}

/* =============================================================
   11. About
   ============================================================= */
.about {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid;
  gap: 4rem;
}
.about-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gold-light);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.about-image-frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  pointer-events: none;
  opacity: 0.3;
}
.about-image-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: 2rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.philosophy-item {
  padding: 1.2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--nude);
}
.philosophy-icon {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.philosophy-item h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.philosophy-item p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--charcoal-light);
}

.about-signature {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.signature-name {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose-deep);
}
.signature-role {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================================
   12. Experiencias
   ============================================================= */
.experiencias {
  padding: var(--section-pad) 0;
  background: var(--nude-light);
}
.exp-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
.exp-card {
  overflow: hidden;
  transition: transform .55s var(--ease-soft), box-shadow .55s;
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.exp-card:hover {
  box-shadow: 0 40px 80px rgba(196, 145, 138, 0.2), 0 0 0 1px rgba(196, 145, 138, 0.15);
}
.exp-img-wrap {
  position: relative;
  overflow: hidden;
}
.exp-img-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .8s var(--ease-soft);
}
.exp-card:hover .exp-img-wrap img {
  transform: scale(1.08);
}
.exp-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(26, 26, 26, 0.7);
  color: var(--gold);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.exp-body {
  padding: 1.5rem;
}
.exp-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 0.8rem;
}
.exp-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}
.exp-includes {
  margin-bottom: 1.2rem;
}
.exp-includes li {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.exp-includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65rem;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.exp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--nude);
}
.exp-price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--rose-deep);
}

/* =============================================================
   13. Portafolio
   ============================================================= */
.portafolio {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 2rem;
}
.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-soft), filter .6s;
}
.bento-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.2) brightness(1.05);
}
.portafolio-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* =============================================================
   14. Tienda
   ============================================================= */
.tienda {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.tienda-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--rose-deep);
  margin-bottom: 2rem;
}
.tienda-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--nude);
  border-radius: 50px;
  color: var(--charcoal-light);
  background: transparent;
  cursor: pointer;
  transition: all .3s;
}
.filter-btn:hover,
.filter-btn.is-active {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.tienda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.product-card {
  overflow: hidden;
  transition: transform .45s var(--ease-soft), box-shadow .45s, opacity .4s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.product-card.is-hidden {
  display: none;
}
.product-img {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-badge {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
}
.product-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.product-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1rem;
  color: var(--black);
}
.product-tier {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.product-price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--rose-deep);
  margin: 0.3rem 0;
}
.product-body .btn { margin-top: 0.5rem; }

.tienda-advisory {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.advisory-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--charcoal);
}
.advisory-text strong { color: var(--rose-deep); }

.tienda-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--charcoal-light);
}
.trust-icon {
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

/* =============================================================
   15. Proceso / Timeline
   ============================================================= */
.proceso {
  padding: var(--section-pad) 0;
  background: var(--nude-light);
}
.timeline {
  position: relative;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--gold-light);
  transform: translateX(-50%);
}
.timeline-step {
  position: relative;
  width: 50%;
  padding: 0 2rem 3rem;
}
.timeline-left { margin-right: auto; text-align: right; padding-right: 3rem; }
.timeline-right { margin-left: auto; text-align: left; padding-left: 3rem; }
.timeline-step::after {
  content: "";
  position: absolute;
  top: 1rem;
  width: 12px; height: 12px;
  background: var(--rose);
  border: 3px solid var(--cream);
  border-radius: 50%;
}
.timeline-left::after { right: -6px; }
.timeline-right::after { left: -6px; }
.timeline-card {
  padding: 1.5rem;
}
.timeline-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2rem;
  color: var(--gold-light);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.timeline-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.timeline-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--charcoal-light);
}

/* =============================================================
   16. Testimonios
   ============================================================= */
.testimonios {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.testimonios-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
.testimonio-card {
  padding: 2rem;
  position: relative;
}
.testimonio-quote {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: -1rem;
}
.testimonio-text {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.testimonio-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonio-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
}
.author-name {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--black);
}
.author-role {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* =============================================================
   17. Modelos
   ============================================================= */
.modelos {
  padding: var(--section-pad) 0;
  background: var(--black);
}
.modelos-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid;
  gap: 3rem;
}
.modelos-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gold-light);
  margin: 1rem 0;
}
.modelos-benefits {
  margin: 1.5rem 0;
}
.modelos-benefits li {
  font-size: 0.85rem;
  color: var(--gold-light);
  padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative;
}
.modelos-benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7rem;
  width: 5px; height: 5px;
  background: var(--rose);
  border-radius: 50%;
}

.modelos-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184, 151, 126, 0.2);
  border-radius: 12px;
  color: var(--charcoal);
  font-size: 0.85rem;
  transition: border-color .3s;
}
.modelos .form-group input,
.modelos .form-group textarea,
.modelos .form-group select {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rose);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--charcoal-light);
  opacity: 0.5;
}
.modelos .form-group input::placeholder,
.modelos .form-group textarea::placeholder {
  color: var(--gold-light);
  opacity: 0.4;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-success {
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s var(--ease-soft);
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-success.is-visible {
  opacity: 1;
  transform: none;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
}
.modelos .form-success p { color: var(--gold-light); }
.modelos .form-success h3 { color: var(--gold); }

.modelos-form-wrap { position: relative; }

/* =============================================================
   18. Agenda / Booking
   ============================================================= */
.agenda {
  padding: var(--section-pad) 0;
  background: var(--nude-light);
}
.agenda-subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 2rem;
}
.agenda-grid {
  display: grid;
  gap: 3rem;
}
.agenda-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.agenda-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.agenda-item h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.agenda-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--charcoal-light);
}
.agenda-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.agenda-form-wrap { position: relative; }
.agenda-form .form-group input,
.agenda-form .form-group textarea,
.agenda-form .form-group select {
  background: rgba(255,255,255,0.5);
}

/* =============================================================
   19. Instagram Section
   ============================================================= */
.instagram-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}
.ig-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-soft);
}
.ig-item:hover img { transform: scale(1.08); }
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(26, 26, 26, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transition: opacity .4s;
}
.ig-item:hover .ig-overlay { opacity: 1; }

/* =============================================================
   20. Final CTA
   ============================================================= */
.final-cta {
  position: relative;
  padding: clamp(5rem, 12vh, 10rem) 2rem;
  background: var(--black);
  text-align: center;
  overflow: hidden;
}
.final-cta-mesh {
  position: absolute; inset: -20%; z-index: 0;
  background:
    radial-gradient(50% 40% at 30% 50%, rgba(196, 145, 138, 0.3), transparent 60%),
    radial-gradient(40% 35% at 70% 60%, rgba(184, 151, 126, 0.25), transparent 55%);
  filter: blur(100px);
  opacity: 0.6;
}
.final-cta-content {
  position: relative; z-index: 1;
}
.final-cta-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.final-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================
   21. Footer
   ============================================================= */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(184, 151, 126, 0.1);
  padding: 4rem 0 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.5rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--rose);
  display: block;
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--gold-light);
  opacity: 0.5;
}
.footer-heading {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: var(--gold-light);
  padding: 0.3rem 0;
  transition: color .3s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding: 1.5rem clamp(1rem, 4vw, 2rem);
  border-top: 1px solid rgba(184, 151, 126, 0.1);
}
.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  text-align: center;
}

/* =============================================================
   22. Tilt 3D (for cards)
   ============================================================= */
.has-tilt {
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

/* =============================================================
   23. Responsive
   ============================================================= */

/* Tablet 540+ */
@media (min-width: 540px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .testimonios-grid { grid-template-columns: 1fr; }
}

/* Tablet 768+ */
@media (min-width: 768px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid .exp-card:last-child { grid-column: span 2; }
  .testimonios-grid { grid-template-columns: repeat(3, 1fr); }
  .agenda-grid { grid-template-columns: 1fr 1fr; }
  .modelos-inner { grid-template-columns: 1fr 1fr; align-items: start; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Desktop 1024+ */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }

  .about-inner { grid-template-columns: 1fr 1.2fr; align-items: center; }

  .exp-grid { grid-template-columns: repeat(3, 1fr); }
  .exp-grid .exp-card:last-child { grid-column: span 1; }

  .bento {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
  }
  .bento-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
  .bento-item:nth-child(2) { grid-column: span 5; }
  .bento-item:nth-child(3) { grid-column: span 5; }
  .bento-item:nth-child(4) { grid-column: span 4; }
  .bento-item:nth-child(5) { grid-column: span 4; }
  .bento-item:nth-child(6) { grid-column: span 4; }
  .bento-item:nth-child(7) { grid-column: span 6; }
  .bento-item:nth-child(8) { grid-column: span 6; }

  .tienda-grid { grid-template-columns: repeat(3, 1fr); }

  .ig-grid { grid-template-columns: repeat(6, 1fr); }
}

/* Large desktop */
@media (min-width: 1280px) {
  .tienda-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile small */
@media (max-width: 539px) {
  :root { --section-pad: 4rem; }
  .section-container { padding: 0 1.25rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 1.5rem; }
  .stat-value { font-size: 2rem; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .timeline-line { left: 20px; }
  .timeline-step { width: 100%; padding-left: 3rem; padding-right: 0; text-align: left; }
  .timeline-left { padding-right: 0; text-align: left; }
  .timeline-left::after { right: auto; left: 14px; }
  .timeline-right::after { left: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-logo { font-size: 3rem; }
  .hero-tagline { font-size: 1.3rem; }
  .section-heading { font-size: 1.8rem; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .tienda-grid { grid-template-columns: 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .exp-card { margin-bottom: 1rem; }
  .agenda-grid { grid-template-columns: 1fr; }
  .modelos-inner { grid-template-columns: 1fr; }
  .cursor { display: none; }
  .final-cta-heading { font-size: 1.6rem; }
}

@media (max-width: 767px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* =============================================================
   24. Reduced Motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .scroll-line { animation: none; }
  /* DO NOT disable: tilt, hover, fade, scroll reveal, cursor, magnetic */
}
