/* ============================================================
   AD SOLUTIONS — Laminar Precision design system
   Substrate: deep charcoal-navy · Form: cream · Edge: steel blue
   ============================================================ */

:root {
  --ink: #0A0E15;
  --ink-2: #0E141D;
  --ink-3: #121A25;
  --ink-glass: rgba(14, 20, 29, .72);
  --cream: #F1EBD8;
  --cream-hi: #FBF6E4;
  --cream-dim: rgba(241, 235, 216, .58);
  --cream-faint: rgba(241, 235, 216, .30);
  --line: rgba(241, 235, 216, .09);
  --line-strong: rgba(241, 235, 216, .18);
  --steel: #8FB0CC;
  --steel-dim: rgba(143, 176, 204, .40);
  --steel-faint: rgba(143, 176, 204, .12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(.32, .72, 0, 1);
  --r-outer: 28px;
  --r-inner: 21px;
  --z-nav: 40;
  --z-drawer: 50;
  --z-modal: 60;
  --z-toast: 70;
  --z-grain: 80;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: .01em;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--cream); color: var(--ink); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: rgba(241, 235, 216, .22); border-radius: 3px; }

a { color: inherit; }

/* Cormorant usa cifras de estilo antiguo por defecto; los precios y datos
   necesitan cifras alineadas para leerse como números, no como letras */
.price, .cart-line .pr, .total-row .v, .order-total .v, .hero-stat .n {
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
}

:focus-visible {
  outline: 1px solid var(--steel);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- film grain ---- */
.grain {
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---- laminar backdrop lines ---- */
.laminar {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 119px,
    rgba(241, 235, 216, .028) 119px,
    rgba(241, 235, 216, .028) 120px
  );
}

/* ---- reveal choreography ---- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(6px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; filter: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   NAV — floating glass island
   ============================================================ */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px 8px 18px;
  border-radius: 999px;
  background: var(--ink-glass);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(251, 246, 228, .06), 0 24px 60px -24px rgba(0, 0, 0, .8);
  transition: border-color .5s var(--ease), box-shadow .5s var(--ease);
  max-width: calc(100vw - 32px);
}
.nav.scrolled { border-color: var(--line-strong); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: 18px;
}
.nav-brand img { height: 34px; width: 34px; border-radius: 50%; }
.nav-brand-name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}
.nav-links a {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-dim);
  padding: 9px 15px;
  border-radius: 999px;
  transition: color .45s var(--ease), background .45s var(--ease);
}
.nav-links a:hover { color: var(--cream-hi); background: rgba(241, 235, 216, .05); }
.nav-links a.active { color: var(--cream-hi); background: rgba(241, 235, 216, .07); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  border: none;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.nav-cta .cta-orb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(10, 14, 21, .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform .45s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px -12px rgba(241, 235, 216, .35); }
.nav-cta:hover .cta-orb { transform: translate(2px, -1px); }
.nav-cta:active { transform: scale(.97); }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 1.4px;
  background: var(--cream);
  transition: transform .5s var(--ease);
}
.nav-burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 3.5px)); }
.nav-burger span:nth-child(2) { transform: translate(-50%, calc(-50% + 3.5px)); }
body.menu-open .nav-burger span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* fullscreen menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: rgba(10, 14, 21, .88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 9vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s var(--ease), visibility .6s;
}
body.menu-open .menu-overlay { opacity: 1; visibility: visible; }
.menu-overlay a {
  font-family: var(--serif);
  font-size: clamp(38px, 9vw, 64px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 18px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), color .4s;
}
.menu-overlay a small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--steel-dim);
}
.menu-overlay a:hover { color: var(--steel); }
body.menu-open .menu-overlay a { opacity: 1; transform: none; }
body.menu-open .menu-overlay a:nth-child(1) { transition-delay: .1s; }
body.menu-open .menu-overlay a:nth-child(2) { transition-delay: .16s; }
body.menu-open .menu-overlay a:nth-child(3) { transition-delay: .22s; }
body.menu-open .menu-overlay a:nth-child(4) { transition-delay: .28s; }
body.menu-open .menu-overlay a:nth-child(5) { transition-delay: .34s; }
body.menu-open .menu-overlay a:nth-child(6) { transition-delay: .40s; }

/* ============================================================
   SHARED SECTION SCAFFOLD
   ============================================================ */
main { position: relative; z-index: 1; }

.section {
  padding: clamp(110px, 14vw, 190px) clamp(20px, 6vw, 90px);
  max-width: 1480px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--steel-faint);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 34px;
}
.eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--steel);
  box-shadow: 0 0 12px var(--steel);
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--cream-hi);
  text-wrap: balance;
}
.h-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--steel);
}

.lede {
  font-size: 16.5px;
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 58ch;
  margin-top: 28px;
  text-wrap: pretty;
}

.hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  max-width: 1480px;
  margin: 0 auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px clamp(20px, 6vw, 90px) 90px;
  max-width: 1480px;
  margin: 0 auto;
}

.hero-meta {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 26px;
  text-align: right;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.hero-meta b { display: block; font-weight: 500; color: var(--cream-dim); margin-top: 3px; }
.hero-meta .tick { width: 28px; height: 1px; background: var(--steel-dim); margin-left: auto; }

.hero-eyebrow { margin-bottom: 40px; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(58px, 10.5vw, 158px);
  line-height: .98;
  letter-spacing: -.015em;
  color: var(--cream-hi);
  max-width: 12ch;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--steel); }

.hero-slogan {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.hero-slogan::before { content: ''; width: 64px; height: 1px; background: var(--steel-dim); }

.hero-desc {
  margin-top: 26px;
  max-width: 52ch;
  font-size: 16.5px;
  color: var(--cream-dim);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 54px;
}

.btn-lux {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 28px;
  border-radius: 999px;
  border: none;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.btn-lux .cta-orb {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(10, 14, 21, .12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: transform .5s var(--ease);
}
.btn-lux:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -16px rgba(241, 235, 216, .38); }
.btn-lux:hover .cta-orb { transform: translate(2px, -2px) scale(1.06); }
.btn-lux:active { transform: scale(.98); }

.link-lux {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.link-lux:hover { color: var(--steel); border-color: var(--steel-dim); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 96px;
  border-top: 1px solid var(--line);
}
.hero-stat { padding: 26px 26px 0 0; border-right: 1px solid var(--line); padding-left: 26px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat .n {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--cream-hi);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.hero-stat .l {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-top: 8px;
}

/* ============================================================
   ESTUDIO — mission / vision
   ============================================================ */
.studio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 6vw, 110px);
  margin-top: 70px;
  align-items: start;
}

.studio-plate {
  position: sticky;
  top: 110px;
  border-radius: var(--r-outer);
  border: 1px solid var(--line);
  background: rgba(241, 235, 216, .025);
  padding: 8px;
}
.studio-plate-core {
  border-radius: var(--r-inner);
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  box-shadow: inset 0 1px 1px rgba(251, 246, 228, .07);
  padding: clamp(30px, 4vw, 54px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}
.studio-plate-core img { width: min(200px, 52%); border-radius: 50%; }
.studio-plate-core .plate-caption {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cream-faint);
  line-height: 2.1;
}

.mv-block { padding: 44px 0; border-top: 1px solid var(--line); }
.mv-block:first-child { border-top: none; padding-top: 0; }
.mv-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--steel);
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.mv-block h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--cream-hi);
  line-height: 1.12;
  margin-bottom: 18px;
  text-wrap: balance;
}
.mv-block p { color: var(--cream-dim); max-width: 60ch; text-wrap: pretty; }

.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.value-chip {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  transition: border-color .5s var(--ease), background .5s var(--ease), transform .5s var(--ease);
}
.value-chip:hover { border-color: var(--steel-dim); background: rgba(143, 176, 204, .04); transform: translateY(-3px); }
.value-chip b {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--cream-hi);
  margin-bottom: 6px;
}
.value-chip span { font-size: 12.5px; color: var(--cream-faint); line-height: 1.6; display: block; }

/* ============================================================
   TABS — segmented control
   ============================================================ */
.seg {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(241, 235, 216, .03);
  margin-top: 54px;
  flex-wrap: wrap;
}
.seg button {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 10px 26px;
  cursor: pointer;
  transition: color .45s var(--ease), background .45s var(--ease);
}
.seg button:hover { color: var(--cream-hi); }
.seg button.active { background: var(--cream); color: var(--ink); font-weight: 500; }

/* ============================================================
   SERVICES — editorial index rows
   ============================================================ */
.srv-panel { display: none; margin-top: 44px; }
.srv-panel.active { display: block; }

.srv-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr auto;
  gap: clamp(16px, 3vw, 48px);
  align-items: baseline;
  padding: 34px 10px;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: background .5s var(--ease), padding-left .5s var(--ease);
}
.srv-panel .srv-row:last-child { border-bottom: 1px solid var(--line); }
.srv-row:hover { background: rgba(241, 235, 216, .025); padding-left: 22px; }
.srv-row .idx {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--steel-dim);
  font-variant-numeric: tabular-nums;
}
.srv-row h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(23px, 2.6vw, 32px);
  color: var(--cream-hi);
  line-height: 1.15;
  transition: color .4s;
}
.srv-row:hover h3 { color: var(--steel); }
.srv-row p { font-size: 14px; color: var(--cream-faint); max-width: 52ch; }
.srv-row .go {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  font-size: 15px;
  align-self: center;
  transition: transform .5s var(--ease), border-color .5s, color .5s, background .5s;
}
.srv-row:hover .go { transform: rotate(45deg); border-color: var(--cream); color: var(--ink); background: var(--cream); }

/* ============================================================
   PORTFOLIO — asymmetric gallery
   ============================================================ */
.pf-panel { display: none; margin-top: 44px; }
.pf-panel.active { display: grid; }
.pf-panel {
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.pf-card {
  position: relative;
  border-radius: var(--r-outer);
  border: 1px solid var(--line);
  background: rgba(241, 235, 216, .025);
  padding: 7px;
  overflow: hidden;
}
.pf-card.span-7 { grid-column: span 7; }
.pf-card.span-5 { grid-column: span 5; }
.pf-card.span-4 { grid-column: span 4; }
.pf-card-core {
  position: relative;
  border-radius: var(--r-inner);
  overflow: hidden;
  background: var(--ink-3);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}
.pf-card-core img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
  filter: saturate(.9);
}
.pf-card:hover .pf-card-core img { transform: scale(1.045); filter: saturate(1); }
.pf-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 21, .88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.pf-card:hover .pf-veil { opacity: 1; }
.pf-veil .cat { font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.pf-veil .ttl { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--cream-hi); }

.pf-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-inner);
  background:
    repeating-linear-gradient(to bottom, transparent 0, transparent 11px, rgba(241, 235, 216, .03) 11px, rgba(241, 235, 216, .03) 12px),
    var(--ink-3);
  cursor: default;
}
.pf-soon .ring {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px dashed var(--line-strong);
}
.pf-soon span {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream-faint);
  text-align: center;
  padding: 0 18px;
  line-height: 2;
}

/* ============================================================
   CATALOG — product plates
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.product {
  border-radius: var(--r-outer);
  border: 1px solid var(--line);
  background: rgba(241, 235, 216, .025);
  padding: 7px;
  display: flex;
  flex-direction: column;
  transition: transform .6s var(--ease), border-color .6s var(--ease), box-shadow .6s var(--ease);
}
.product:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 34px 70px -34px rgba(0, 0, 0, .85);
}
.product-visual {
  position: relative;
  border-radius: var(--r-inner);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(143, 176, 204, .07), transparent 60%),
    linear-gradient(165deg, var(--ink-3), var(--ink-2));
  box-shadow: inset 0 1px 1px rgba(251, 246, 228, .06);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}
.product-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-inner);
  transition: transform .8s var(--ease);
}
.product:hover .product-visual > img { transform: scale(1.04); }
.product-visual svg { opacity: .5; transition: opacity .5s, transform .8s var(--ease); }
.product:hover .product-visual svg { opacity: .85; transform: translateY(-3px); }
.product-visual .cat-label {
  font-size: 9.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.product-flag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 5px 11px;
  background: var(--cream);
  color: var(--ink);
}
.product-flag.promo { background: transparent; color: var(--steel); border: 1px solid var(--steel-dim); }
.product-body { padding: 22px 18px 16px; display: flex; flex-direction: column; flex: 1; }
.product-body .cat {
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
.product-body h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  color: var(--cream-hi);
  line-height: 1.15;
  margin-bottom: 8px;
}
.product-body p { font-size: 13px; color: var(--cream-faint); line-height: 1.65; margin-bottom: 20px; }
.product-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.price {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  color: var(--cream-hi);
  font-variant-numeric: tabular-nums;
}
.price small { font-family: var(--sans); font-size: 10px; letter-spacing: .14em; color: var(--cream-faint); }
.add-btn {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .3s var(--ease);
}
.add-btn:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.add-btn:active { transform: scale(.96); }

/* ============================================================
   QUOTE — cotización
   ============================================================ */
.quote-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(48px, 6vw, 110px);
  margin-top: 70px;
  align-items: start;
}

.field { position: relative; margin-bottom: 34px; }
.field label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin-bottom: 10px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--cream-hi);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  padding: 6px 0 14px;
  transition: border-color .5s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.field select { cursor: pointer; appearance: none; }
.field select option { background: var(--ink-2); color: var(--cream); font-family: var(--sans); font-size: 15px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(241, 235, 216, .22); font-style: italic; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--steel);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.field .select-caret {
  position: absolute;
  right: 4px; bottom: 22px;
  color: var(--cream-faint);
  pointer-events: none;
  font-size: 12px;
}

.form-success {
  display: none;
  border: 1px solid var(--steel-faint);
  border-radius: var(--r-outer);
  padding: 60px 40px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success .mark {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--steel);
  margin-bottom: 14px;
}
.form-success h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--cream-hi); margin-bottom: 12px; }
.form-success p { color: var(--cream-dim); max-width: 44ch; margin: 0 auto; }

.contact-side { position: sticky; top: 110px; }
.contact-side h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 36px);
  color: var(--cream-hi);
  line-height: 1.2;
  margin-bottom: 40px;
  text-wrap: balance;
}
.contact-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left .45s var(--ease);
}
.contact-line:hover { padding-left: 10px; }
.contact-line .k { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--cream-faint); }
.contact-line .v { font-family: var(--serif); font-size: 19px; color: var(--cream-hi); text-align: right; transition: color .4s; }
.contact-line:hover .v { color: var(--steel); }

.social-row { display: flex; gap: 10px; margin-top: 36px; flex-wrap: wrap; }
.social-pill {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  transition: border-color .45s var(--ease), color .45s var(--ease), transform .45s var(--ease);
}
.social-pill:hover { border-color: var(--steel-dim); color: var(--steel); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--line);
  padding: 70px clamp(20px, 6vw, 90px) 46px;
  max-width: 1480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.foot-brand { display: flex; align-items: center; gap: 16px; }
.foot-brand img { width: 44px; height: 44px; border-radius: 50%; }
.foot-brand .n { font-size: 13px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--cream-hi); }
.foot-brand .s { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--steel-dim); margin-top: 4px; }
.foot-nav { display: flex; gap: 8px 28px; flex-wrap: wrap; list-style: none; }
.foot-nav a {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color .4s;
}
.foot-nav a:hover { color: var(--steel); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.foot-bottom a { color: inherit; text-decoration: none; transition: color .4s; }
.foot-bottom a:hover { color: var(--steel); }

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.float-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: var(--z-nav);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--ink-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: transform .45s var(--ease), border-color .45s, background .45s, color .45s;
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, .8);
}
.float-btn:hover { transform: translateY(-3px); border-color: var(--cream); }
.float-btn:active { transform: scale(.95); }
.float-btn.cart-btn { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 21px; height: 21px;
  border-radius: 999px;
  background: var(--steel);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.scrim {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-drawer) - 1);
  background: rgba(6, 9, 14, .6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.scrim.active { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 12px; right: 12px; bottom: 12px;
  width: min(430px, calc(100vw - 24px));
  z-index: var(--z-drawer);
  border-radius: var(--r-outer);
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  box-shadow: inset 0 1px 0 rgba(251, 246, 228, .05), -30px 0 80px -30px rgba(0, 0, 0, .8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(calc(100% + 24px));
  transition: transform .65s var(--ease);
}
.drawer.open { transform: none; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 30px;
  border-bottom: 1px solid var(--line);
}
.drawer-head .t {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--cream-hi);
}
.icon-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream-dim);
  cursor: pointer;
  font-size: 14px;
  transition: color .4s, border-color .4s, transform .4s var(--ease);
}
.icon-close:hover { color: var(--cream-hi); border-color: var(--line-strong); transform: rotate(90deg); }

.drawer-items { flex: 1; overflow-y: auto; padding: 10px 30px; }
.cart-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--cream-faint);
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
}
.cart-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line .thumb {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-dim);
}
.cart-line .info { flex: 1; }
.cart-line .nm { font-size: 14px; font-weight: 400; color: var(--cream-hi); }
.cart-line .nm small { color: var(--cream-faint); margin-left: 6px; }
.cart-line .pr { font-family: var(--serif); font-size: 17px; color: var(--steel); font-variant-numeric: tabular-nums; margin-top: 2px; }
.cart-line .rm {
  background: none;
  border: none;
  color: rgba(241, 235, 216, .3);
  cursor: pointer;
  font-size: 15px;
  transition: color .3s;
  padding: 6px;
}
.cart-line .rm:hover { color: #E08D8D; }

.drawer-foot { padding: 24px 30px 26px; border-top: 1px solid var(--line); }
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.total-row .k { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--cream-faint); }
.total-row .v { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--cream-hi); font-variant-numeric: tabular-nums; }
.checkout-btn { width: 100%; justify-content: space-between; }

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.modal-wrap {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(6, 9, 14, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.modal-wrap.open { opacity: 1; visibility: visible; }
.modal-card {
  width: min(620px, 100%);
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  border-radius: var(--r-outer);
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  box-shadow: inset 0 1px 0 rgba(251, 246, 228, .05), 0 60px 120px -40px rgba(0, 0, 0, .9);
  transform: translateY(24px) scale(.98);
  transition: transform .55s var(--ease);
}
.modal-wrap.open .modal-card { transform: none; }
.modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 30px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.modal-head .t { font-family: var(--serif); font-size: 23px; font-weight: 500; color: var(--cream-hi); }
.modal-body { padding: 26px 30px 30px; }

.order-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 28px;
}
.order-box .h { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 14px; }
.order-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13.5px;
  color: var(--cream-dim);
  padding: 7px 0;
  font-variant-numeric: tabular-nums;
}
.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 14px;
}
.order-total .k { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--cream-faint); }
.order-total .v { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--cream-hi); font-variant-numeric: tabular-nums; }

.payer-h { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 18px; }
.modal-body .field { margin-bottom: 22px; }
.modal-body .field input { font-size: 18px; }

.mp-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 4px 0 20px; }
.mp-tag {
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
}
.mp-note {
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(241, 235, 216, .3);
  margin-top: 14px;
  text-align: center;
  text-transform: uppercase;
}
.mp-loading { text-align: center; padding: 36px 0; color: var(--cream-faint); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.mp-spinner {
  width: 30px; height: 30px;
  border: 1px solid var(--line-strong);
  border-top-color: var(--steel);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pay-result { text-align: center; padding: 40px 10px; }
.pay-result .mark { font-family: var(--serif); font-size: 46px; color: var(--steel); margin-bottom: 12px; }
.pay-result h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--cream-hi); margin-bottom: 14px; }
.pay-result p { color: var(--cream-dim); font-size: 14.5px; }
.pay-result a { color: var(--steel); }
.pay-result .btn-lux { margin-top: 24px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(6, 9, 14, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; max-width: 940px; width: 100%; }
.lightbox-inner img {
  width: 100%;
  max-height: 76dvh;
  object-fit: contain;
  border-radius: var(--r-inner);
  transform: scale(.96);
  transition: transform .6s var(--ease);
}
.lightbox.open .lightbox-inner img { transform: none; }
.lightbox-caption {
  text-align: center;
  margin-top: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--cream-dim);
}
.lightbox .icon-close { position: absolute; top: -50px; right: 0; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 80px);
  z-index: var(--z-toast);
  background: var(--cream);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .8);
  opacity: 0;
  transition: transform .55s var(--ease), opacity .55s var(--ease);
  pointer-events: none;
  max-width: calc(100vw - 40px);
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-meta { display: none; }
  .studio-grid { grid-template-columns: 1fr; }
  .studio-plate { position: static; max-width: 440px; }
  .values-row { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .contact-side { position: static; }
  .pf-card.span-7, .pf-card.span-5, .pf-card.span-4 { grid-column: span 6; }
}

@media (max-width: 768px) {
  .nav { top: 12px; padding: 7px 8px 7px 14px; gap: 10px; width: calc(100vw - 24px); justify-content: space-between; }
  .nav-links, .nav .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav-brand { margin-right: 0; }

  .hero { padding-top: 130px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .hero-stat { padding: 22px 14px 8px; border-right: none; border-bottom: 1px solid var(--line); }
  .hero-stat:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--line); }
  .hero-stat:nth-child(n+3) { border-bottom: none; }

  .srv-row { grid-template-columns: 1fr; gap: 10px; padding: 28px 4px; }
  .srv-row .idx { font-size: 14px; }
  .srv-row .go { display: none; }

  .pf-panel { grid-template-columns: 1fr; }
  .pf-card.span-7, .pf-card.span-5, .pf-card.span-4 { grid-column: span 1; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .values-row { grid-template-columns: 1fr; }

  .float-stack { right: 16px; bottom: 16px; }
  .drawer { top: 8px; right: 8px; bottom: 8px; width: calc(100vw - 16px); }
  .foot-top { flex-direction: column; }
}
