/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #1a1a1a;
  --bg-card:   #141414;
  --white:     #ffffff;
  --cream:     #f0ece4;
  --gray-100:  #e5e5e5;
  --gray-200:  #cccccc;
  --gray-300:  #999999;
  --gray-400:  #666666;
  --gray-500:  #444444;
  --gray-600:  #2a2a2a;
  --accent:    #ffffff;
  --line:      rgba(255,255,255,0.08);
  --glass:     rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);

  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif:  "Cormorant Garamond", "Georgia", serif;

  --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);

  --nav-h: 72px;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  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; line-height: 1.08; letter-spacing: -0.03em; }
::selection { background: var(--white); color: var(--bg); }
:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--white); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.section-pad { padding-block: clamp(5rem, 12vh, 10rem); }

/* =============================================================
   4. Typography
   ============================================================= */
.display-xl {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
}
.display-lg {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
}
.display-md {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-300);
}
.body-lg {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-200);
}
.kicker {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
  display: block;
}

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.8rem;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 60px;
  transition: all .5s var(--ease-soft);
  position: relative; overflow: hidden;
}
.btn-sm {
  padding: 0.6rem 1.6rem;
  font-size: 0.7rem;
}
.btn-primary {
  background: var(--white); color: var(--bg);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(255,255,255,0.15), 0 8px 24px rgba(255,255,255,0.1);
}
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-ghost {
  border: 1px solid var(--gray-500);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* --- Nav --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding-inline: var(--gutter);
  transition: background .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: var(--container); width: 100%; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--sans);
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--white);
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; padding: 0; }
.nav-link {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray-300);
  position: relative;
  padding: 0.25rem 0;
  transition: color .3s var(--ease-out);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--white);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-soft);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--gray-500);
  border-radius: 60px;
  color: var(--cream);
  transition: all .3s var(--ease-out);
}
.nav-cta:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* Mobile nav */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  margin-right: -10px;
  cursor: pointer;
  position: relative; z-index: 101;
}
.nav-burger span {
  display: block; height: 1px; background: var(--cream);
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile-links {
  list-style: none; padding: 0; text-align: center;
  display: flex; flex-direction: column; gap: 2rem;
}
.nav-mobile-link {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 300; font-style: italic;
  color: var(--cream);
  display: inline-block;
  padding: 0.35rem 1rem;
  min-height: 44px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease-soft), transform .5s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] .nav-mobile-link {
  opacity: 1; transform: none;
}
.nav-mobile[aria-hidden="false"] li:nth-child(1) .nav-mobile-link { transition-delay: .15s; }
.nav-mobile[aria-hidden="false"] li:nth-child(2) .nav-mobile-link { transition-delay: .22s; }
.nav-mobile[aria-hidden="false"] li:nth-child(3) .nav-mobile-link { transition-delay: .29s; }
.nav-mobile[aria-hidden="false"] li:nth-child(4) .nav-mobile-link { transition-delay: .36s; }
.nav-mobile[aria-hidden="false"] li:nth-child(5) .nav-mobile-link { transition-delay: .43s; }
.nav-mobile[aria-hidden="false"] li:nth-child(6) .nav-mobile-link { transition-delay: .5s; }
.nav-mobile-link--cta {
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 500; font-style: normal;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--gray-500);
  border-radius: 60px;
  padding: 0.9rem 2.2rem;
  margin-top: 0.5rem;
}
body.nav-open { overflow: hidden; }

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.28) saturate(0.6);
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,255,255,0.02), transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.55) 50%, var(--bg) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 820px; padding: 2rem var(--gutter);
  animation: heroFadeIn 1.2s var(--ease-out) .3s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
.hero-kicker {
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 300; font-style: italic;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300; line-height: 1.75;
  color: var(--gray-300);
  max-width: 520px; margin-inline: auto;
  margin-bottom: 3rem;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.hero-scroll-text {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray-500);
}
.hero-scroll-line {
  width: 1px; height: 40px; background: var(--gray-600);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ""; position: absolute; top: -100%; left: 0;
  width: 1px; height: 100%; background: var(--gray-300);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* --- Collections 2x2 --- */
.collections { background: var(--bg); }
.collections-header {
  text-align: center; margin-bottom: clamp(3rem, 6vh, 5rem);
}
.collections-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.collection-card-lg {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
  cursor: pointer;
  will-change: transform;
}
.collection-card-lg:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* Image area — light bg for renders on white */
.collection-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.collection-card-img--light {
  background: #f0eeea;
}
.collection-card-img--dark {
  background: #080808;
}
.collection-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform .8s var(--ease-soft);
}
.collection-card-img--dark img {
  padding: 0.5rem;
  object-fit: cover;
}
.collection-card-lg:hover .collection-card-img img {
  transform: scale(1.04);
}

/* Fan layout — múltiples imágenes por tarjeta */
.collection-card-img--fan {
  position: relative;
}
.collection-card-img--fan img {
  position: absolute;
  width: 50%;
  height: 88%;
  object-fit: contain;
  padding: 0.75rem;
  top: 50%;
  transition: transform .6s var(--ease-soft);
}
.fan-img-l {
  left: 4%;
  transform: translateY(-50%) rotate(-11deg);
  z-index: 1;
  opacity: 0.82;
}
.fan-img-c {
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
}
.fan-img-r {
  right: 4%;
  transform: translateY(-50%) rotate(11deg);
  z-index: 2;
  opacity: 0.88;
}
.fan-img-2l {
  left: 18%;
  transform: translateY(-50%) rotate(-7deg);
  z-index: 2;
  opacity: 0.9;
}
.fan-img-2r {
  right: 18%;
  transform: translateY(-50%) rotate(7deg);
  z-index: 1;
  opacity: 0.85;
}
.collection-card-lg:hover .fan-img-l {
  transform: translateY(-50%) rotate(-15deg) translateX(-6px);
}
.collection-card-lg:hover .fan-img-r {
  transform: translateY(-50%) rotate(15deg) translateX(6px);
}
.collection-card-lg:hover .fan-img-c {
  transform: translateX(-50%) translateY(-54%);
}
.collection-card-lg:hover .fan-img-2l {
  transform: translateY(-50%) rotate(-11deg) translateX(-5px);
}
.collection-card-lg:hover .fan-img-2r {
  transform: translateY(-50%) rotate(11deg) translateX(5px);
}

.collection-tag {
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gray-400);
  margin-bottom: 0.35rem;
  display: block;
}

.collection-card-body {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-top: 1px solid var(--line);
}
.collection-num {
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.2em; color: var(--gray-500);
  margin-bottom: 0.6rem; display: block;
}
.collection-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300; font-style: italic;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.collection-desc {
  font-size: 0.85rem; color: var(--gray-400);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* --- Gallery --- */
.gallery { background: var(--bg-2); }
.gallery-header { text-align: center; margin-bottom: clamp(3rem, 6vh, 5rem); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }

/* Photo items */
.gallery-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-soft);
}
.gallery-item:hover .gallery-photo { transform: scale(1.05); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* Color swatch items */
.gallery-swatch {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 1.25rem;
  transition: transform .6s var(--ease-soft);
}
.gallery-item:hover .gallery-swatch { transform: scale(1.03); }
.gallery-swatch--img {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.gallery-swatch--img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-soft);
}
.gallery-item:hover .gallery-swatch--img img { transform: scale(1.05); }
.gallery-swatch--img .gallery-label {
  position: relative;
  z-index: 2;
  margin: auto 0 1.25rem 1.25rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.gallery-label {
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}

/* --- About / Beneficios --- */
.about { background: var(--bg); }
.about-inner { text-align: center; max-width: 800px; margin-inline: auto; }
.about-text {
  max-width: 600px; margin-inline: auto;
  margin-top: 1.5rem; margin-bottom: clamp(3rem, 6vh, 5rem);
}
.about-values {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
.about-value {
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.about-value:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Small product image inside benefit card */
.about-value-img {
  width: 100px; height: 100px;
  border-radius: 14px;
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  background: #f0eeea;
  display: flex; align-items: center; justify-content: center;
}
.about-value-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.about-value-icon {
  font-size: 1.2rem; color: var(--gray-500);
  display: block; margin-bottom: 0.8rem;
}
.about-value-title {
  font-size: 1rem; font-weight: 500; color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0;
}
.about-value-desc {
  font-size: 0.875rem; font-weight: 300; color: var(--gray-400);
  line-height: 1.6;
}

/* --- Waitlist --- */
.waitlist {
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.waitlist::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 50% 40% at 30% 50%, rgba(255,255,255,0.015), transparent),
    radial-gradient(ellipse 50% 40% at 70% 50%, rgba(255,255,255,0.01), transparent);
  filter: blur(60px);
  z-index: 0;
}
.waitlist-inner {
  position: relative; z-index: 1;
  max-width: 600px; margin-inline: auto;
  text-align: center;
}
.waitlist-content { margin-bottom: 3rem; }
.waitlist-desc {
  max-width: 480px; margin-inline: auto; margin-top: 1.2rem;
}
.waitlist-form {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2rem;
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft);
}
.waitlist-form.is-sent {
  opacity: 0; transform: translateY(-12px); pointer-events: none;
  position: absolute; width: 100%;
}
.waitlist-field input {
  width: 100%;
  padding: 1.1rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.9rem; font-weight: 300;
  color: var(--cream);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: border-color .3s var(--ease-out), background .3s;
}
.waitlist-field input::placeholder { color: var(--gray-500); }
.waitlist-field input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
}
@supports (backdrop-filter: blur(16px)) {
  .waitlist-field input {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}
.waitlist-submit {
  width: 100%; margin-top: 0.5rem;
}
.waitlist-submit-label { transition: opacity .3s; }
.waitlist-submit-spinner {
  position: absolute; inset: 0; display: grid; place-items: center;
  opacity: 0; pointer-events: none;
}
.waitlist-form.is-sending .waitlist-submit-label { opacity: 0; }
.waitlist-form.is-sending .waitlist-submit-spinner { opacity: 1; }
.waitlist-submit-spinner::after {
  content: ""; width: 18px; height: 18px;
  border: 1.5px solid rgba(0,0,0,0.25); border-top-color: var(--bg);
  border-radius: 50%; animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.waitlist-success {
  opacity: 0; pointer-events: none;
  transition: opacity .8s var(--ease-out) .25s;
  padding: 2rem 0;
}
.waitlist-success.is-visible {
  opacity: 1; pointer-events: auto;
}

.waitlist-social {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}
.waitlist-social-label {
  font-size: 0.8rem; color: var(--gray-400); font-weight: 300;
  margin-bottom: 1rem;
}
.waitlist-social-links {
  display: flex; gap: 1rem; justify-content: center;
}

/* --- FAQ --- */
.faq { background: var(--bg); }
.faq-header { text-align: center; margin-bottom: clamp(3rem, 6vh, 5rem); }
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%; text-align: left;
  padding: 1.5rem 0;
  font-size: 1rem; font-weight: 400; color: var(--white);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: color .3s;
}
.faq-question:hover { color: var(--gray-200); }
.faq-icon {
  font-size: 1.2rem; color: var(--gray-400);
  transition: transform .4s var(--ease-out);
  flex-shrink: 0;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease-soft);
}
.faq-item.is-open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.9rem; font-weight: 300;
  color: var(--gray-300); line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: 3rem 2rem;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 2rem;
}
.footer-top-minimal {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 1.5rem;
}
.footer-brand {
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--white);
}
.footer-socials {
  display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center;
}
.footer-social {
  font-size: 0.75rem; color: var(--gray-400);
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color .3s;
}
.footer-social:hover { color: var(--white); }
.footer-bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: flex-start;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.footer-copy {
  font-size: 0.7rem; color: var(--gray-500);
  font-weight: 300;
}
.footer-disclaimer {
  font-size: 0.65rem; color: var(--gray-600);
  max-width: 480px; line-height: 1.5;
}

/* =============================================================
   7. Effects & Animations
   ============================================================= */

/* Reveal on scroll */
[data-reveal] {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }

/* Grain overlay */
.has-grain::after {
  content: ""; position: absolute; inset: 0;
  pointer-events: none; opacity: 0.04; 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;
  z-index: 3;
}

/* 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(--white); border-radius: 50%; }
.cursor-ring {
  width: 32px; height: 32px; margin: -16px;
  border: 1px solid var(--white); 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: 48px; height: 48px; margin: -24px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   8. Responsive
   ============================================================= */

@media (min-width: 540px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 2; }
}

@media (min-width: 720px) {
  .collections-grid-2x2 { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 2; }
}

/* --- Tablet (≤1024px) --- */
@media (max-width: 1024px) {
  .nav-links { gap: 1.8rem; }
}

/* --- Tablet / mobile nav (≤768px) --- */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Inputs: mínimo 16px para evitar zoom automático en iOS */
  .waitlist-field input {
    font-size: 1rem;
    min-height: 52px;
  }
  .waitlist-submit { min-height: 52px; }

  .footer-top-minimal { flex-direction: column; text-align: center; }
  .footer-socials { justify-content: center; gap: 1.25rem; }
  .footer-social { padding: 0.5rem 0.25rem; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
  .footer-disclaimer { text-align: center; font-size: 0.7rem; color: var(--gray-500); }

  .gallery-grid { grid-auto-rows: 180px; }

  .faq-question { padding: 1.35rem 0.25rem; min-height: 56px; }
}

/* --- Móvil (≤480px) --- */
@media (max-width: 480px) {
  .section-pad { padding-block: clamp(4rem, 10vh, 6rem); }

  /* Hero: CTAs en columna, ancho cómodo para el pulgar */
  .hero-content { padding-inline: 1.25rem; }
  .hero-kicker { margin-bottom: 1.5rem; }
  .hero-title { margin-bottom: 1.4rem; }
  .hero-sub { margin-bottom: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin-inline: auto; }
  .hero-actions .btn { width: 100%; min-height: 52px; }
  .hero-scroll { bottom: 1.75rem; }

  /* Colecciones: una columna con respiración lateral */
  .collections-grid-2x2 { gap: 1.25rem; }
  .collection-card-body { padding: 1.4rem 1.25rem 1.6rem; }
  .collection-card-lg .btn-sm { min-height: 44px; padding-inline: 1.8rem; }

  /* Galería: 2 columnas compactas, wide ocupa fila entera */
  .gallery-grid { grid-auto-rows: 150px; gap: 0.75rem; }
  .gallery-item { border-radius: 12px; }

  /* Nosotros / beneficios */
  .about-values { gap: 1.25rem; }
  .about-value { padding: 1.75rem 1.25rem; }

  /* Lista de espera */
  .waitlist-content { margin-bottom: 2.25rem; }

  /* Nav móvil: enlaces un poco más compactos en pantallas bajas */
  .nav-mobile-links { gap: 1.4rem; }
  .nav-mobile-link { font-size: 1.7rem; }
}

/* Pantallas muy angostas */
@media (max-width: 360px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item-wide { grid-column: span 1; }
  .gallery-item-tall { grid-row: span 1; }
}

/* =============================================================
   9. Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line::after { animation: none; }
}
