@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --navy:#06111d;
  --navy2:#071827;
  --navy3:#0b1f33;
  --gold:#c29347;
  --gold2:#e0b768;
  --white:#ffffff;
  --muted:#aab4c0;
  --text:#0b1d2d;
  --light:#f4f6f8;
  --line:rgba(255,255,255,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  color:white;
  background:var(--navy);
  line-height:1.55;
}
.container{max-width:1220px;margin:0 auto;padding:0 24px}

.site-header{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:40;
  background:linear-gradient(to bottom, rgba(6,17,29,.84), rgba(6,17,29,.20));
}
.nav{height:96px;display:flex;align-items:center;justify-content:space-between}
.brand img{width:214px;display:block}
nav{display:flex;align-items:center;gap:30px}
nav a{color:rgba(255,255,255,.76);text-decoration:none;font-size:13px;font-weight:750;text-transform:uppercase;letter-spacing:.04em}
nav a:hover{color:var(--gold2)}
.nav-quote{
  border:1px solid rgba(224,183,104,.70);
  color:var(--gold2)!important;
  padding:14px 22px;
  border-radius:2px;
}

.hero{
  position:relative;
  min-height:760px;
  overflow:hidden;
  background:
    radial-gradient(circle at 79% 42%, rgba(194,147,71,.12), transparent 38%),
    linear-gradient(135deg,#06111d 0%,#071827 48%,#0c2237 100%);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(6,17,29,.97) 0%, rgba(6,17,29,.85) 24%, rgba(6,17,29,.36) 45%, rgba(6,17,29,.02) 69%, rgba(6,17,29,.06) 100%);
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(to bottom, rgba(6,17,29,.16) 0%, transparent 45%, rgba(6,17,29,.64) 100%),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
  background-size:auto, 78px 78px, 78px 78px;
}
.hero-art{
  position:absolute;
  right:-3%;
  top:96px;
  width:68%;
  height:650px;
  z-index:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.hero-art img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:saturate(1) contrast(1.08) brightness(1);
  opacity:1;
}
.hero-content{
  position:relative;
  z-index:5;
  min-height:760px;
  display:flex;
  align-items:center;
  padding-top:96px;
}
.hero-copy{max-width:480px}
.kicker{
  margin:0 0 14px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:850;
}
.kicker.dark{color:var(--gold)}
h1,h2,h3{margin:0;letter-spacing:-.035em}
h1{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:68px;
  line-height:.98;
  font-weight:600;
}
h2{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:48px;
  line-height:1.05;
  font-weight:600;
}
.lead{
  margin:24px 0 0;
  color:rgba(255,255,255,.76);
  font-size:18px;
  max-width:450px;
}
.gold-line{width:44px;height:2px;background:var(--gold);margin:26px 0 0}
.hero-actions{display:flex;gap:14px;margin-top:34px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 23px;
  text-decoration:none;
  font-weight:850;
}
.primary{background:transparent;border:1px solid var(--gold);color:var(--gold2)}
.secondary{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);color:white}
.hero-glow{position:absolute;inset:0;z-index:0;pointer-events:none}
.hero-glow span{position:absolute;border-radius:50%;filter:blur(18px);opacity:.16}
.hero-glow span:nth-child(1){width:320px;height:320px;background:var(--gold);right:20%;top:18%}
.hero-glow span:nth-child(2){width:360px;height:360px;background:#376187;left:8%;bottom:10%}
.hero-glow span:nth-child(3){width:250px;height:250px;background:var(--gold);right:4%;bottom:6%}

.process-strip{
  background:#081a2a;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.strip-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
}
.strip-grid div{
  min-height:146px;
  padding:26px 22px;
  border-right:1px solid rgba(255,255,255,.09);
}
.strip-grid div:last-child{border-right:0}
.strip-grid b{
  display:block;
  color:var(--gold2);
  font-size:13px;
  letter-spacing:.14em;
  margin-bottom:8px;
}
.strip-grid span{
  display:block;
  font-weight:850;
  font-size:18px;
}
.strip-grid p{
  margin:6px 0 0;
  color:rgba(255,255,255,.58);
  font-size:14px;
}

.section{padding:88px 0;background:#0a1c2d}
.section.light{background:var(--light);color:var(--text)}
.section-head{max-width:740px;margin-bottom:32px}
.cards{display:grid;gap:20px}
.four{grid-template-columns:repeat(4,1fr)}
.card{
  min-height:250px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.09);
  border-radius:18px;
  padding:28px;
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover{
  transform:translateY(-5px);
  border-color:rgba(224,183,104,.35);
  background:rgba(255,255,255,.055);
}
.icon{
  color:var(--gold2);
  font-size:36px;
  margin-bottom:28px;
}
.card h3{font-size:20px}
.card p{
  color:rgba(255,255,255,.62);
  margin:10px 0 0;
}
.product-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:58px;
  align-items:start;
}
.muted{color:#6d7b89;margin-top:14px}
.tags{display:flex;flex-wrap:wrap;gap:12px}
.tags span{
  background:white;
  border:1px solid #e4e8ee;
  border-radius:999px;
  padding:12px 16px;
  color:#182b3f;
  font-weight:760;
}

.contact{
  background:
    radial-gradient(circle at 82% 22%, rgba(194,147,71,.14), transparent 30%),
    linear-gradient(135deg,#06111d,#0b1f33);
  padding:88px 0;
}
.contact-box{
  display:grid;
  grid-template-columns:1fr .72fr;
  gap:52px;
  align-items:center;
}
.contact p{color:rgba(255,255,255,.68);max-width:610px}
.contact-card{
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:30px;
  display:grid;
  gap:14px;
}
.contact-card a{
  color:white;
  text-decoration:none;
  font-size:18px;
  font-weight:850;
}
.contact-card a:hover{color:var(--gold2)}

footer{background:#050e18;border-top:1px solid rgba(255,255,255,.08)}
.footer{
  min-height:112px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:rgba(255,255,255,.54);
}
.footer img{width:190px}

.reveal{opacity:0;transform:translateY(20px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

@media(max-width:1100px){
  nav{display:none}
  .brand img{width:180px}
  .hero-art{right:-16%;width:85%;opacity:.7}
  .hero-copy{max-width:540px}
  .strip-grid,.four{grid-template-columns:1fr 1fr}
  .product-grid,.contact-box{grid-template-columns:1fr}
}
@media(max-width:680px){
  .hero,.hero-content{min-height:720px}
  .hero-art{right:-58%;top:250px;width:145%;height:480px;opacity:.42}
  .hero::before{background:rgba(6,17,29,.78)}
  h1{font-size:44px}
  h2{font-size:34px}
  .nav{height:76px}
  .brand img{width:160px}
  .strip-grid,.four{grid-template-columns:1fr}
  .strip-grid div{border-right:0;border-bottom:1px solid rgba(255,255,255,.09)}
  .section,.contact{padding:62px 0}
  .footer{flex-direction:column;justify-content:center;gap:14px;text-align:center}
}

.hero-art::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(90deg, rgba(6,17,29,.55) 0%, transparent 17%, transparent 82%, rgba(6,17,29,.22) 100%),
    linear-gradient(to bottom, rgba(6,17,29,.25) 0%, transparent 20%, transparent 72%, rgba(6,17,29,.38) 100%);
  pointer-events:none;
}
.hero-art img{
  position:relative;
  z-index:1;
}
.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  padding:14px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  color:#06111d;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  box-shadow:0 18px 44px rgba(194,147,71,.24);
}
@media(max-width:680px){
  .whatsapp-float{right:14px;bottom:14px;padding:12px 15px;font-size:14px}
}

/* V3: sharper integrated hero visual, no stray letters */
.hero-art{
  overflow:visible;
}
.hero-art img{
  object-fit:contain;
  object-position:center right;
}
.hero-art::before{
  background:
    linear-gradient(90deg, rgba(6,17,29,.38) 0%, transparent 15%, transparent 84%, rgba(6,17,29,.15) 100%),
    linear-gradient(to bottom, rgba(6,17,29,.18) 0%, transparent 18%, transparent 76%, rgba(6,17,29,.28) 100%);
}
@media(max-width:1100px){
  .hero-art{right:-20%;width:88%}
}
@media(max-width:680px){
  .hero-art{right:-68%;width:150%;opacity:.46}
}
