:root{
  --bg: #17120c;
  --bg-alt: #1f1811;
  --bg-card: #221a12;
  --gold: #c9973f;
  --gold-bright: #e0b869;
  --cream: #f2ead9;
  --muted: #a89a86;
  --line: rgba(201,151,63,0.28);
  --line-soft: rgba(201,151,63,0.14);
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:
    radial-gradient(ellipse 700px 500px at 15% 0%, rgba(201,151,63,0.08), transparent 60%),
    radial-gradient(ellipse 600px 500px at 85% 100%, rgba(201,151,63,0.06), transparent 60%),
    var(--bg);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
h1,h2,h3, .serif{ font-family: 'Cormorant Garamond', serif; }
a{color:inherit; text-decoration:none;}
.wrap{ max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.eyebrow{
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}
.gold{ color: var(--gold); }

.framed{ position: relative; }
.framed::before, .framed::after{
  content:''; position:absolute; width:8px; height:8px;
  border-radius:50%; background: var(--bg);
  border: 1px solid var(--gold); opacity:0.7;
}
.framed::before{ top:-1px; left:-1px; }
.framed::after{ bottom:-1px; right:-1px; }

/* ---------- NAV ---------- */
header{
  position: sticky; top:0; z-index: 50;
  background: rgba(23,18,12,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
nav{
  max-width:1140px; margin:0 auto; padding: 18px 32px;
  display:flex; align-items:center; justify-content:space-between;
  position: relative;
}
.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:32px; height:32px; background:none; border:none; cursor:pointer; padding:0;
}
.nav-toggle span{
  display:block; width:100%; height:1.5px; background: var(--cream);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }
.nav-links-wa{ display:none; }
.logo-mark{ display:flex; align-items:center; gap:10px; }
.hex{ width:20px; height:20px; }
.logo-mark .word{ font-family:'Cormorant Garamond',serif; font-size:22px; letter-spacing:0.12em; }
.logo-mark .word b{ color: var(--gold); font-weight:600; }
.nav-links{ display:flex; gap:34px; font-size:13px; letter-spacing:0.14em; text-transform:uppercase; color: var(--muted); }
.nav-links a:hover{ color: var(--gold-bright); }
.nav-links a.active{ color: var(--gold-bright); }
.nav-cta{
  border:1px solid var(--gold); color: var(--gold-bright);
  padding: 9px 20px; font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  transition: all .25s ease;
}
.nav-cta:hover{ background: var(--gold); color:#1a140d; }

/* ---------- HERO ---------- */
.hero{
  text-align:center; padding: 130px 32px 100px; position:relative;
}
.hero .hex-icon{ width:52px; height:52px; margin:0 auto 28px; opacity:0.9; animation: spin 22s linear infinite; }
@keyframes spin{ to{ transform: rotate(360deg); } }
.hero h1{ font-size: clamp(58px, 11vw, 118px); letter-spacing: 0.08em; font-weight:500; line-height:1; }
.hero h1 .a{ color: var(--gold); }
.hero .divider{ display:flex; align-items:center; justify-content:center; gap:14px; margin: 26px auto; width: 180px; }
.hero .divider .ln{ flex:1; height:1px; background: var(--line); }
.hero .divider .dot{ width:5px; height:5px; border-radius:50%; background: var(--gold); }
.hero .tag{ font-size: 15px; letter-spacing:0.34em; text-transform:uppercase; color: var(--muted); }
.hero .site{ margin-top:6px; font-size:14px; letter-spacing:0.28em; color: var(--gold-bright); }
.hero .lede{
  max-width: 560px; margin: 42px auto 0; color: var(--muted); font-size:16px; font-weight:300;
}
.hero-ctas{ margin-top:36px; display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.btn{
  padding: 14px 30px; font-size:13px; letter-spacing:0.16em; text-transform:uppercase;
  transition: all .25s ease; display:inline-flex; align-items:center; gap:8px; cursor:pointer;
  border:none; font-family:'Jost',sans-serif;
}
.btn-solid{ background: var(--gold); color:#1a140d; font-weight:500; }
.btn-solid:hover{ background: var(--gold-bright); transform: translateY(-1px); }
.btn-outline{ border:1px solid var(--line); color: var(--cream); background:transparent; }
.btn-outline:hover{ border-color: var(--gold); color: var(--gold-bright); }

/* material strip (short factual note, replaces the old "about" section) */
.material-strip{
  border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft);
  background: var(--bg-alt);
}
.material-strip .row{
  max-width:1140px; margin:0 auto; padding: 22px 32px;
  display:flex; justify-content:center; gap:44px; flex-wrap:wrap;
  font-size:12.5px; letter-spacing:0.04em; color: var(--muted); text-align:center;
}
.material-strip .row span b{ color: var(--gold-bright); font-weight:500; }

/* ---------- SECTION HEADERS ---------- */
.section{ padding: 90px 0; }
.section-head{ text-align:center; margin-bottom:56px; }
.section-head h2{ font-size: clamp(34px,5vw,48px); font-weight:500; margin-top:10px; }
.section-head p{ color: var(--muted); max-width:480px; margin: 14px auto 0; font-size:15px; }
hr.rule{ border:none; height:1px; background: var(--line-soft); max-width:1140px; margin:0 auto; }

/* ---------- CARD ENTRANCE ANIMATION ---------- */
@keyframes pieceIn{
  from{ opacity:0; transform: translateY(14px); }
  to{ opacity:1; transform: translateY(0); }
}
.piece{ animation: pieceIn .45s ease both; }

/* ---------- HOVER ZOOM ---------- */
.piece-img, .gallery-img, .thumb img{ transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.piece:hover .piece-img{ transform: scale(1.08); }
.gallery-main:hover .gallery-img{ transform: scale(1.06); }
.thumb:hover img{ transform: scale(1.12); }
.filter-btn{ transition: all .2s ease, transform .15s ease; }
.filter-btn:active{ transform: scale(0.96); }

/* ---------- CATALOG ---------- */
.filters{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom: 48px; }
.filter-btn{
  padding: 9px 20px; font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  border:1px solid var(--line); color: var(--muted); background:transparent; cursor:pointer;
  font-family:'Jost',sans-serif;
}
.filter-btn:hover{ color: var(--cream); border-color: var(--gold); }
.filter-btn.active{ background: var(--gold); color:#1a140d; border-color: var(--gold); font-weight:500; }

.catalog-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.piece{
  background: var(--bg-card); border:1px solid var(--line-soft);
  transition: border-color .25s ease, transform .25s ease;
  display:block; cursor:pointer;
}
.piece:hover{ border-color: var(--gold); transform: translateY(-4px); }
.piece-photo{
  aspect-ratio: 1/1; position:relative; overflow:hidden;
  border-bottom:1px solid var(--line-soft);
  display:flex; align-items:center; justify-content:center;
  background:
    repeating-linear-gradient(135deg, rgba(201,151,63,0.05) 0 2px, transparent 2px 14px),
    var(--bg-alt);
}
.piece-photo .placeholder-icon{ width:38px; height:38px; opacity:0.35; }
.piece-photo .placeholder-txt{
  position:absolute; bottom:12px; left:0; right:0; text-align:center;
  font-size:10px; letter-spacing:0.18em; text-transform:uppercase; color: var(--muted); opacity:0.55;
}
.piece-photo::after{
  content:''; position:absolute; inset:10px; border:1px dashed rgba(201,151,63,0.25);
  pointer-events:none;
}
.piece-img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1;
}
.piece-photo.has-photo .placeholder-icon,
.piece-photo.has-photo .placeholder-txt{ display:none; }
.piece-photo.has-photo::after{ display:none; }
.piece-body{ padding: 20px 22px 22px; }
.piece-cat{ font-size:10px; letter-spacing:0.16em; text-transform:uppercase; color: var(--gold); margin-bottom:6px; }
.piece-name{ font-family:'Cormorant Garamond',serif; font-size:23px; font-weight:500; }
.piece-desc{ font-size:13px; color: var(--muted); margin-top:6px; min-height:34px; }
.piece-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:16px; }
.piece-price{ font-size:14px; color: var(--cream); font-weight:400; }
.piece-order{
  font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color: var(--gold-bright);
  border-bottom:1px solid var(--gold); padding-bottom:2px;
}
.piece-order:hover{ color: var(--cream); }

.catalog-note{
  text-align:center; margin-top: 40px; font-size:13px; color: var(--muted);
  border:1px solid var(--line-soft); padding: 18px; max-width: 560px; margin-left:auto; margin-right:auto;
}

/* ---------- NSFW BLUR + VERIFICACIÓN DE EDAD ---------- */
.piece-photo.blurred .piece-img{
  filter: blur(16px) brightness(0.55) saturate(0.8);
  transform: scale(1.15);
}
.piece-locked{ cursor:pointer; }
.age-gate-overlay{
  position:absolute; inset:0; z-index:2;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  text-align:center; padding:14px;
  background: rgba(23,18,12,0.42);
}
.age-gate-overlay .badge{
  font-family:'Cormorant Garamond',serif; font-weight:600; font-size:17px;
  color: var(--gold-bright); border:1px solid var(--gold); border-radius:50%;
  width:44px; height:44px; display:flex; align-items:center; justify-content:center;
}
.age-gate-overlay small{
  font-size:9.5px; letter-spacing:0.1em; text-transform:uppercase; color: var(--cream); opacity:0.9;
  max-width: 140px;
}
.gallery-main.blurred .gallery-img{
  filter: blur(22px) brightness(0.55) saturate(0.8);
  transform: scale(1.15);
}
.thumb.blurred img{ filter: blur(8px) brightness(0.6); }

.age-modal{
  position:fixed; inset:0; z-index:200; display:none;
  align-items:center; justify-content:center;
  background: rgba(10,8,5,0.8); backdrop-filter: blur(3px); padding:24px;
}
.age-modal.open{ display:flex; }
.age-modal-card{
  background: var(--bg-card); border:1px solid var(--line);
  max-width:400px; width:100%; padding:36px 30px; text-align:center;
  animation: pieceIn .3s ease both;
}
.age-modal-card .hex-icon{ width:32px; height:32px; margin:0 auto 16px; opacity:.9; }
.age-modal-card h3{ font-size:24px; margin-bottom:10px; }
.age-modal-card p{ color: var(--muted); font-size:14px; margin-bottom:26px; }
.age-modal-ctas{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ---------- PRODUCT DETAIL ---------- */
.breadcrumb{
  font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color: var(--muted);
  padding-top: 28px;
}
.breadcrumb a:hover{ color: var(--gold-bright); }
.product-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:start;
  padding-top: 40px; padding-bottom: 100px;
}
.gallery-main{
  aspect-ratio: 1/1; position:relative; overflow:hidden;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  background:
    repeating-linear-gradient(135deg, rgba(201,151,63,0.05) 0 2px, transparent 2px 14px),
    var(--bg-alt);
}
.gallery-main::after{
  content:''; position:absolute; inset:14px; border:1px dashed rgba(201,151,63,0.25); pointer-events:none;
}
.gallery-main .placeholder-icon{ width:56px; height:56px; opacity:0.32; }
.gallery-main .placeholder-txt{
  position:absolute; bottom:20px; left:0; right:0; text-align:center;
  font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color: var(--muted); opacity:0.55;
}
.gallery-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; }
.gallery-main.has-photo .placeholder-icon,
.gallery-main.has-photo .placeholder-txt{ display:none; }
.gallery-main.has-photo::after{ display:none; }
.gallery-thumbs{ display:flex; gap:12px; margin-top:14px; }
.thumb{
  width:72px; height:72px; border:1px solid var(--line-soft); cursor:pointer;
  display:flex; align-items:center; justify-content:center; background: var(--bg-alt);
  transition: border-color .2s ease; position:relative; overflow:hidden;
}
.thumb.active{ border-color: var(--gold); }
.thumb svg{ width:20px; height:20px; opacity:0.4; }
.thumb img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; }

.product-info .eyebrow{ margin-bottom:8px; }
.product-info h1{ font-size: clamp(36px,5vw,52px); font-weight:500; margin-bottom:14px; }
.product-info .price{ font-size:20px; color: var(--gold-bright); margin-bottom:22px; }
.product-info .desc{ color: var(--muted); font-size:16px; margin-bottom:26px; }
.spec-list{ display:flex; flex-direction:column; gap:12px; margin-bottom: 34px; }
.spec-list .row{ display:flex; gap:14px; border-bottom:1px solid var(--line-soft); padding-bottom:10px; }
.spec-list .row .k{ min-width:110px; font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color: var(--gold); }
.spec-list .row .v{ font-size:14px; color: var(--muted); }
.product-info .product-ctas{ display:flex; gap:14px; flex-wrap:wrap; }

.related-note{
  font-size:13px; color: var(--muted); border-top:1px solid var(--line-soft); padding-top:22px; margin-top:10px;
}

/* ---------- PROCESS ---------- */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.step{ text-align:center; padding: 0 10px; }
.step .num{ font-family:'Cormorant Garamond',serif; font-size:15px; color: var(--gold); letter-spacing:0.1em; margin-bottom:14px; }
.step h3{ font-size:22px; font-weight:500; margin-bottom:10px; }
.step p{ font-size:13.5px; color: var(--muted); }
.step-line{ height:1px; background: var(--line-soft); margin: 0 auto 22px; width:30px; }

/* ---------- CONTACT ---------- */
.contact{
  background: var(--bg-alt); border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft);
}
.contact-inner{ text-align:center; padding-top:20px; padding-bottom:20px; }
.contact-inner .hex-icon{ width:44px; height:44px; margin: 0 auto 22px; opacity:.85;}
.contact-inner h2{ font-size: clamp(30px,5vw,44px); font-weight:500; }
.contact-inner p{ color: var(--muted); max-width: 480px; margin: 16px auto 34px; font-size:15px; }
.contact-methods{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }

/* ---------- FOOTER ---------- */
footer{ padding: 46px 0; }
.foot-inner{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.foot-inner .word{ font-family:'Cormorant Garamond',serif; font-size:18px; letter-spacing:0.1em; color: var(--muted); }
.foot-inner .links{ display:flex; gap:26px; font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color: var(--muted); }
.foot-inner .links a:hover{ color: var(--gold-bright); }

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float{
  position: fixed; bottom: 26px; right: 26px; z-index: 60;
  width: 56px; height:56px; border-radius: 50%;
  background: var(--gold); display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.4);
  transition: transform .2s ease;
}
.wa-float:hover{ transform: scale(1.08); }
.wa-float svg{ width:26px; height:26px; fill:#1a140d; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px){
  .nav-toggle{ display:flex; }
  .nav-links{
    display:none; position:absolute; top:100%; left:0; right:0;
    flex-direction:column; gap:0; background: rgba(23,18,12,0.98);
    border-bottom:1px solid var(--line-soft);
    box-shadow: 0 14px 26px rgba(0,0,0,0.35);
  }
  .nav-links.open{ display:flex; }
  .nav-links a{
    padding:16px 24px; border-bottom:1px solid var(--line-soft);
    text-align:left; letter-spacing:0.1em;
  }
  .nav-links-wa{ display:block; color: var(--gold-bright); }
  .nav-cta{ display:none; }
  .catalog-grid{ grid-template-columns: repeat(2,1fr); }
  .steps{ grid-template-columns: repeat(2,1fr); row-gap:36px; }
  .product-grid{ grid-template-columns: 1fr; gap:36px; }
  .material-strip .row{ gap:20px; }
}
@media (max-width: 520px){
  .catalog-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .hero{ padding: 100px 24px 70px; }
  nav{ padding: 16px 20px; }
  .hero-ctas, .contact-methods, .product-ctas, .age-modal-ctas{ flex-direction:column; align-items:stretch; }
  .hero-ctas .btn, .contact-methods .btn, .product-ctas .btn{ width:100%; text-align:center; }
  .wa-float{ width:50px; height:50px; bottom:18px; right:18px; }
  .gallery-thumbs{ overflow-x:auto; padding-bottom:6px; }
  .thumb{ flex:0 0 64px; }
  .wrap{ padding:0 20px; }
  .breadcrumb{ padding-top:20px; font-size:10px; }
  .product-grid{ padding-top:24px; padding-bottom:70px; gap:28px; }
  .product-info h1{ font-size:30px; margin-bottom:10px; }
  .product-info .price{ font-size:17px; margin-bottom:16px; }
  .product-info .desc{ font-size:14.5px; margin-bottom:20px; }
  .spec-list{ gap:10px; margin-bottom:26px; }
  .spec-list .row{ flex-direction:column; gap:2px; padding-bottom:8px; }
  .spec-list .row .k{ min-width:0; }
  .related-note{ font-size:12.5px; padding-top:18px; }
}

@media (prefers-reduced-motion: reduce){
  .hero .hex-icon{ animation: none; }
  .piece{ animation: none; }
  *{ transition: none !important; }
}
