:root {
  --gold:        #B37E10;
  --gold-light:  #F8DD7B;
  --gold-mid:    #D4A843;
  --black:       #000000;
  --black-soft:  #0d0d0d;
  --black-card:  #111111;
  --white:       #FFFFFF;
  --text-muted:  rgba(248,221,123,0.7);
  --border-gold: rgba(212,168,67,0.5);
}
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden
}

/* ── CURSOR ── */

/* ── NAV ── */

/* ── HERO ── */
.tc-hero{
  min-height:100vh;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  text-align:center;
  position:relative;overflow:hidden;
  padding:8rem 4rem 6rem;
}
.tc-hero::before{
  content:'';
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(179,126,16,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(212,168,67,0.03) 0%, transparent 60%);
}
.tc-hero-deco{
  position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(to right, transparent, var(--gold-mid), var(--gold-light), var(--gold-mid), transparent);
  opacity:.5;
}
.tc-santiago-ribbon{
  position:absolute;top:6rem;right:0;
  background:linear-gradient(135deg, var(--gold), var(--gold-light));
  color:var(--black);
  font-family:'Montserrat',sans-serif;
  font-size:.42rem;font-weight:600;
  letter-spacing:.28em;text-transform:uppercase;
  padding:.45rem 1.4rem .45rem 1rem;
  clip-path:polygon(10px 0%, 100% 0%, 100% 100%, 10px 100%, 0% 50%);
  z-index:2;
}
.tc-eyebrow{
  font-size:.9rem;letter-spacing:.28em;text-transform:uppercase;
  color:var(--gold);margin-bottom:2rem;
  display:flex;align-items:center;justify-content:center;gap:1rem;
  opacity:0;animation:fadeUp .6s .2s forwards;
  position:relative;z-index:1;
}
.tc-eyebrow::before,.tc-eyebrow::after{content:'';width:40px;height:1px;background:var(--gold);opacity:.5;}
.tc-hero-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3rem,7vw,6.5rem);
  font-weight:300;line-height:1;
  margin-bottom:1.5rem;
  opacity:0;animation:fadeUp .7s .4s forwards;
  position:relative;z-index:1;
}
.tc-hero-title em{
  display:block;font-style:italic;
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-mid) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.tc-hero-sub{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1rem,2vw,1.3rem);font-style:italic;
  color:rgba(255,255,255,0.80);
  max-width:600px;line-height:1.8;margin-bottom:3.5rem;
  opacity:0;animation:fadeUp .7s .6s forwards;
  position:relative;z-index:1;
}
.tc-hero-cta{
  display:flex;gap:1rem;justify-content:center;
  opacity:0;animation:fadeUp .7s .8s forwards;
  position:relative;z-index:1;
}
.tc-scroll{
  position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
  opacity:.35;
  animation:fadeUp .7s 1.2s forwards, pulse 2.5s 2s infinite;
}
.tc-scroll span{font-size:.82rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);}
.tc-scroll-line{width:1px;height:40px;background:linear-gradient(to bottom,var(--gold-mid),transparent);}
@keyframes pulse{0%,100%{opacity:.35}50%{opacity:.6}}

/* ── BUTTONS ── */
.btn-gold{
  padding:.85rem 2.5rem;
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color:var(--black);font-size:.8rem;letter-spacing:.25em;
  text-transform:uppercase;font-weight:600;
  text-decoration:none;font-family:'Montserrat',sans-serif;
  transition:all .3s;display:inline-block;
}
.btn-gold:hover{opacity:.9;transform:translateY(-2px);}
.btn-ghost{
  padding:.85rem 2.5rem;background:transparent;
  color:var(--gold-light);font-size:.8rem;letter-spacing:.25em;
  text-transform:uppercase;font-weight:400;text-decoration:none;
  border:1px solid rgba(212,168,67,0.65);
  font-family:'Montserrat',sans-serif;
  transition:all .3s;display:inline-block;
}
.btn-ghost:hover{border-color:var(--gold-light);color:var(--white);transform:translateY(-2px);}

/* ── GOLD SEP ── */
.gold-sep{width:100%;height:1px;background:linear-gradient(to right, transparent, var(--gold-mid), var(--gold-light), var(--gold-mid), transparent);opacity:.3;}

/* ── INTRO ── */
.tc-intro{
  padding:7rem 6rem;max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;
  gap:6rem;align-items:center;
}
.tc-intro-label{
  font-size:.9rem;letter-spacing:.25em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.5rem;
  display:flex;align-items:center;gap:.75rem;
}
.tc-intro-label::before{content:'✦';font-size:.72rem;}
.tc-intro-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.8rem,3vw,2.8rem);
  font-weight:300;line-height:1.15;margin-bottom:2rem;color:var(--white);
}
.tc-intro-title em{
  font-style:italic;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.tc-intro-p{
  font-size:1rem;line-height:2;
  color:rgba(255,255,255,0.82);
  letter-spacing:.02em;margin-bottom:1rem;
}
.tc-intro-p strong{color:var(--gold-light);font-weight:400;}
.tc-intro-nota{
  margin-top:2rem;
  display:flex;align-items:flex-start;gap:.75rem;
  padding:1rem 1.25rem;
  border:1px solid rgba(212,168,67,.25);
  background:rgba(179,126,16,.04);
  font-size:.72rem;letter-spacing:.05em;
  color:rgba(255,255,255,.65);line-height:1.7;
}
.tc-nota-icon{font-size:1rem;flex-shrink:0;}
.tc-intro-nota strong{color:var(--gold-light);font-weight:400;}
.tc-intro-visual{position:relative;}
.tc-visual-box{
  border:1px solid var(--border-gold);
  padding:3rem;background:rgba(179,126,16,0.03);position:relative;
}
.tc-visual-box::before{
  content:'';
  position:absolute;top:-1rem;left:-1rem;right:1rem;bottom:1rem;
  border:1px solid rgba(212,168,67,0.4);
  z-index:0;pointer-events:none;
}
.tc-visual-icon{
  font-size:4rem;display:block;text-align:center;
  margin-bottom:2rem;opacity:.8;
}
.tc-visual-quote{
  font-family:'Cormorant Garamond',serif;
  font-size:1.3rem;font-style:italic;
  color:rgba(255,255,255,0.78);text-align:center;
  line-height:1.7;position:relative;z-index:1;
}
.tc-visual-quote::before{
  content:'"';font-size:5rem;line-height:.2;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  display:block;margin-bottom:1rem;opacity:.4;
}

/* ── SERVICIOS ── */
.tc-services-section{
  padding:7rem 6rem;
  background:var(--black-soft);
}
.tc-services-inner{max-width:1100px;margin:0 auto;}
.tc-services-header{text-align:center;margin-bottom:4rem;}
.tc-section-label{
  font-size:.9rem;letter-spacing:.25em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1rem;
  display:flex;align-items:center;justify-content:center;gap:.75rem;
}
.tc-section-label::before{content:'✦';font-size:.72rem;}
.tc-section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,3.5vw,3rem);
  font-weight:300;line-height:1.1;color:var(--white);
}
.tc-section-title em{
  font-style:italic;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.tc-services-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background:var(--border-gold);
  border:1px solid var(--border-gold);
}
.tc-service-card{
  background:var(--black);padding:2.5rem 1.75rem;
  transition:background .3s;position:relative;overflow:hidden;
}
.tc-service-card::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:2px;
  background:linear-gradient(to right,var(--gold),var(--gold-light));
  transform:scaleX(0);transition:transform .3s;
}
.tc-service-card:hover{background:var(--black-card);}
.tc-service-card:hover::after{transform:scaleX(1);}
.tc-service-num{
  font-family:'Cormorant Garamond',serif;
  font-size:2.5rem;font-weight:300;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  opacity:.25;line-height:1;margin-bottom:.75rem;
}
.tc-service-icon{font-size:1.8rem;margin-bottom:1rem;opacity:.75;}
.tc-service-title{
  font-size:.9rem;letter-spacing:.15em;text-transform:uppercase;
  color:var(--gold-light);margin-bottom:.75rem;font-weight:500;
}
.tc-service-text{
  font-size:.95rem;color:rgba(255,255,255,0.75);
  line-height:1.85;letter-spacing:.02em;
}

/* ── PROCESO ── */
.tc-process{
  padding:7rem 6rem;background:var(--black);
}
.tc-process-inner{max-width:1100px;margin:0 auto;}
.tc-process .tc-section-label{justify-content:flex-start;}
.tc-process .tc-section-title{text-align:left;margin-bottom:4rem;}
.tc-steps{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;position:relative;
}
.tc-steps::before{
  content:'';position:absolute;
  top:1.95rem;left:0;right:0;height:1px;
  background:linear-gradient(90deg, transparent, rgba(212,168,67,.2) 10%, rgba(212,168,67,.2) 90%, transparent);
}
.tc-step{text-align:center;padding:0 1.5rem;position:relative;}
.tc-step-num{
  width:4rem;height:4rem;
  border:1px solid rgba(212,168,67,.35);
  background:var(--black);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.5rem;
  font-family:'Cormorant Garamond',serif;
  font-size:1.4rem;color:var(--gold);
  position:relative;z-index:1;
  transition:border-color .3s,background .3s;
}
.tc-step:hover .tc-step-num{
  border-color:var(--gold);
  background:rgba(179,126,16,.06);
}
.tc-step-title{
  font-family:'Cormorant Garamond',serif;
  font-size:1.15rem;color:var(--white);margin-bottom:.5rem;
}
.tc-step-desc{
  font-size:.75rem;font-weight:300;
  color:rgba(255,255,255,.5);line-height:1.85;
}

/* ── COLECCIÓN ── */
.tc-coleccion{
  padding:7rem 6rem;
  background:var(--black);
  position:relative;
}
.tc-coleccion::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 80% 50% at 50% 0%,rgba(179,126,16,.05) 0%,transparent 65%);
  pointer-events:none;
}
.tc-coleccion-inner{max-width:1200px;margin:0 auto;position:relative;}
.tc-coleccion-header{text-align:center;margin-bottom:3.5rem;}
.tc-coleccion-sub{
  font-size:.72rem;font-weight:300;
  color:rgba(255,255,255,.72);
  line-height:2;max-width:520px;margin:.8rem auto 0;
}

/* Grid de items */
.tc-col-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
  margin-bottom:3rem;
}
.tc-item-card{
  background:var(--black-card);
  border:1px solid rgba(212,168,67,.12);
  overflow:hidden;cursor:pointer;
  position:relative;
  transition:transform .3s,border-color .3s,box-shadow .3s;
}
.tc-item-card:hover{
  transform:translateY(-6px);
  border-color:rgba(212,168,67,.4);
  box-shadow:0 20px 50px rgba(0,0,0,.5);
}
.tc-item-img{
  width:100%;aspect-ratio:3/4;overflow:hidden;
  background:linear-gradient(160deg,#0d0d0d,#141008);
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.tc-item-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .6s;filter:brightness(.88);
}
.tc-item-card:hover .tc-item-img img{transform:scale(1.06);filter:brightness(.98);}
.tc-item-ph{
  font-size:3rem;opacity:.15;
}
.tc-item-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.7) 0%,transparent 50%);
}
.tc-item-badge{
  position:absolute;top:.85rem;left:.85rem;
  font-size:.42rem;letter-spacing:.2em;text-transform:uppercase;
  background:linear-gradient(135deg,var(--gold),var(--gl));
  color:#000;padding:.22rem .65rem;font-weight:600;
  z-index:2;
}
.tc-item-body{padding:1.25rem 1rem;}
.tc-item-name{
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;color:#fff;
  line-height:1.2;margin-bottom:.35rem;
}
.tc-item-meta{
  font-size:.55rem;letter-spacing:.15em;text-transform:uppercase;
  color:rgba(248,221,123,.82);font-weight:400;
}
.tc-item-colors{
  display:flex;gap:.3rem;margin-top:.65rem;flex-wrap:wrap;align-items:center;
}
.tc-item-color-dot{
  width:12px;height:12px;border-radius:50%;
  border:1px solid rgba(255,255,255,.22);
  flex-shrink:0;
}
.tc-item-color-more{
  font-size:.48rem;letter-spacing:.1em;
  color:rgba(255,255,255,.55);
}

/* Botón Ver Colección */
.tc-col-cta{text-align:center;margin-top:1rem;}
.tc-btn-gold{
  display:inline-block;
  padding:.9rem 2.8rem;
  background:linear-gradient(135deg,var(--gold),var(--gl));
  color:#000;
  font-size:.65rem;letter-spacing:.28em;text-transform:uppercase;
  font-weight:600;text-decoration:none;
  font-family:'Montserrat',sans-serif;
  transition:all .3s;
}
.tc-btn-gold:hover{opacity:.9;transform:translateY(-2px);}

/* Empty state */
.tc-col-empty{
  text-align:center;padding:5rem 2rem;
}
.tc-col-empty-icon{font-size:2.5rem;margin-bottom:1rem;opacity:.25;}
.tc-col-empty p{
  font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(255,255,255,.45);margin-bottom:1.5rem;
}
.tc-btn-wa{
  display:inline-block;
  padding:.7rem 2rem;
  border:1px solid rgba(248,221,123,.45);
  color:rgba(248,221,123,.85);
  font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;
  text-decoration:none;font-family:'Montserrat',sans-serif;
  transition:all .25s;
}
.tc-btn-wa:hover{border-color:var(--gl);color:#fff;}

/* ── CTA ── */
.tc-cta{
  padding:7rem 6rem;background:var(--black-soft);
  text-align:center;position:relative;overflow:hidden;
}
.tc-cta::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 70% 60% at 50% 50%, rgba(179,126,16,0.06) 0%, transparent 70%);
}
.tc-cta-inner{position:relative;z-index:1;max-width:700px;margin:0 auto;}
.tc-cta-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,3.5rem);
  font-weight:300;line-height:1.1;margin-bottom:1.5rem;color:var(--white);
}
.tc-cta-title em{
  font-style:italic;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.tc-cta-text{
  font-size:1rem;color:rgba(255,255,255,0.75);
  line-height:2;letter-spacing:.03em;margin-bottom:3rem;
}
.tc-cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}
.tc-cta-note{
  margin-top:2rem;font-size:.82rem;
  color:rgba(255,255,255,0.45);letter-spacing:.15em;text-transform:uppercase;
}

/* ── FOOTER ── */
.tc-footer{
  padding:2rem 4rem;
  border-top:1px solid var(--border-gold);
  display:flex;align-items:center;justify-content:space-between;
  background:var(--black);
}
.tc-footer-copy{font-size:.85rem;color:rgba(255,255,255,0.55);letter-spacing:.08em;}
.tc-footer-link{
  font-size:.85rem;letter-spacing:.15em;text-transform:uppercase;
  color:rgba(248,221,123,0.65);text-decoration:none;transition:color .2s;
}
.tc-footer-link:hover{color:var(--gold-light);}

/* ── WA FLOAT ── */
.wa-float{
  position:fixed;bottom:2rem;right:2rem;
  width:58px;height:58px;
  background:linear-gradient(135deg,#25D366,#1db954);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;z-index:400;
  box-shadow:0 4px 25px rgba(37,211,102,0.35);
  text-decoration:none;transition:transform .3s,box-shadow .3s;
}
.wa-float:hover{transform:scale(1.1);box-shadow:0 8px 35px rgba(37,211,102,0.5);}

@keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}

/* ── NAV TOGGLE ── */

/* ── TABLET ── */
@media(max-width:1024px){
  .tc-hero{padding:7rem 3rem 5rem;}
  .tc-intro{grid-template-columns:1fr;gap:3rem;padding:5rem 3rem;}
  .tc-services-section,.tc-process,.tc-cta,.tc-coleccion{padding:5rem 3rem;}
  .tc-col-grid{grid-template-columns:repeat(2,1fr);}
  .tc-services-grid{grid-template-columns:repeat(2,1fr);}
  .tc-steps{grid-template-columns:repeat(2,1fr);}
  .tc-steps::before{display:none;}
  .tc-step{padding:1.5rem 1rem;}
  .tc-footer{padding:2rem;}
}

/* ── MOBILE ── */
@media(max-width:768px){  .tc-hero{padding:6rem 1.25rem 4rem;min-height:auto;}
  .tc-hero-cta{flex-direction:column;align-items:center;gap:.75rem;}
  .btn-gold,.btn-ghost{width:100%;max-width:280px;text-align:center;padding:.8rem 1.5rem;}
  .tc-scroll{display:none;}
  .tc-intro{grid-template-columns:1fr;gap:2.5rem;padding:4rem 1.25rem;}
  .tc-visual-box{padding:2rem 1.5rem;}
  .tc-services-section{padding:4rem 1.25rem;}
  .tc-services-grid{grid-template-columns:1fr;}
  .tc-service-card{padding:2rem 1.5rem;}
  .tc-process{padding:4rem 1.25rem;}
  .tc-steps{grid-template-columns:1fr;}
  .tc-step{padding:1.5rem .5rem;}
  .tc-coleccion{padding:4rem 1.25rem;}
  .tc-col-grid{grid-template-columns:repeat(2,1fr);gap:1rem;}
  .tc-item-body{padding:1rem .75rem;}
  .tc-item-name{font-size:1rem;}
  .tc-cta{padding:4rem 1.25rem;}
  .tc-cta-btns{flex-direction:column;align-items:center;}
  .tc-footer{flex-direction:column;gap:.75rem;text-align:center;padding:1.5rem 1.25rem;}
  .wa-float{width:50px;height:50px;font-size:1.2rem;bottom:1.25rem;right:1.25rem;}
  .tc-santiago-ribbon{font-size:.36rem;top:5rem;}
}

/* ── SMALL MOBILE ── */
@media(max-width:380px){
  .tc-hero-title{font-size:2.4rem;}
  .tc-section-title{font-size:1.8rem;}
  .tc-cta-title{font-size:1.8rem;}
}
