:root{
  --navy:#07111f;
  --navy2:#101c2f;
  --gold:#c79a3a;
  --gold2:#f0cf72;
  --cream:#f7f3ea;
  --white:#ffffff;
  --text:#101827;
  --muted:#667085;
  --shadow:0 24px 70px rgba(7,17,31,.16);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  font-family:Inter,sans-serif;
  background:var(--cream);
  color:var(--text);
  line-height:1.6;
  cursor:none;
  overflow-x:hidden;
}

body::selection{
  background:rgba(199,154,58,.32);
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}
.service-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:18px;
}

.container{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}

/* =========================
   HEADER
========================= */

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(7,17,31,.94);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#fff;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-logo{
  width:48px;
  height:48px;
  border-radius:50%;
  background:#fff;
  padding:7px;
  box-shadow:0 14px 30px rgba(0,0,0,.25);
  animation:softGlow 4.8s ease-in-out infinite;
}

.brand-name{
  font-weight:800;
  letter-spacing:.24em;
  font-size:14px;
}

.brand-sub{
  color:rgba(240,207,114,.82);
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:24px;
  color:rgba(255,255,255,.74);
  font-size:14px;
}

.nav-links a:hover{
  color:var(--gold2);
}

.menu-btn{
  display:none;
  background:none;
  border:0;
  color:#fff;
  font-size:30px;
  cursor:pointer;
}

/* =========================
   BUTTONS
========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:13px 22px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  transition:.25s ease;
}

.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);
  box-shadow:0 16px 32px rgba(199,154,58,.26);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-ghost{
  border-color:rgba(255,255,255,.20);
  color:#fff;
  background:rgba(255,255,255,.05);
}

/* =========================
   HERO
========================= */

.hero{
  position:relative;
  overflow:hidden;
  background:
  radial-gradient(circle at 80% 18%,rgba(240,207,114,.25),transparent 28%),
  radial-gradient(circle at 10% 82%,rgba(199,154,58,.18),transparent 30%),
  linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:45px;
  align-items:center;
  min-height:620px;
  padding:55px 0 65px;
}

.eyebrow{
  display:inline-flex;
  border:1px solid rgba(199,154,58,.35);
  color:var(--gold2);
  border-radius:999px;
  padding:8px 14px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:18px;
}

h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(44px,6vw,78px);
  line-height:.96;
  letter-spacing:-.03em;
  max-width:780px;
}

.hero p{
  margin-top:18px;
  max-width:650px;
  color:rgba(255,255,255,.76);
  font-size:17px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}

.trust-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:24px;
}

.trust-pill{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  border-radius:18px;
  padding:14px 16px;
  color:rgba(255,255,255,.78);
  font-size:13px;
}

.trust-pill b{
  display:block;
  color:var(--gold2);
  font-size:18px;
}

.hero-card{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.07);
  border-radius:30px;
  padding:28px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
  animation:floatCard 6s ease-in-out infinite;
}

.logo-frame{
  background:#fff;
  border-radius:24px;
  padding:38px;
  border:1px solid rgba(240,207,114,.32);
}

.logo-frame img{
  width:min(320px,90%);
  margin:auto;
  animation:softGlow 4.8s ease-in-out infinite;
}

.hero-tags{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}

.hero-tags span{
  text-align:center;
  padding:12px 8px;
  border-radius:16px;
  color:var(--gold2);
  background:rgba(255,255,255,.08);
  font-weight:800;
  font-size:13px;
}

/* =========================
   GENERAL SECTIONS
========================= */

section{
  padding:55px 0;
}

.section-head{
  max-width:850px;
  margin-bottom:28px;
}

.section-kicker{
  color:var(--gold);
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.20em;
  font-weight:900;
}

h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(34px,4vw,54px);
  line-height:1.05;
  margin-top:10px;
}

.lead{
  color:var(--muted);
  margin-top:12px;
  font-size:16px;
}

/* =========================
   VALUES
========================= */

.values{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:-25px;
  position:relative;
  z-index:3;
}

.value-card{
  background:#fff;
  border-radius:20px;
  padding:22px;
  box-shadow:0 18px 48px rgba(7,17,31,.10);
  border:1px solid rgba(7,17,31,.06);
}

.value-card b{
  color:var(--navy);
  font-size:18px;
}

.value-card p{
  color:var(--muted);
  font-size:14px;
  margin-top:8px;
}

/* =========================
   ABOUT
========================= */

.about-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:20px;
  align-items:center;
}

.about-box{
  background:#fff;
  border-radius:28px;
  padding:28px;
  border:1px solid rgba(7,17,31,.08);
  box-shadow:0 18px 48px rgba(7,17,31,.08);
}

.about-dark{
  background:linear-gradient(135deg,var(--navy),#13233a);
  color:#fff;
  border-radius:30px;
  padding:32px;
  min-height:390px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow:var(--shadow);
}

.about-dark p{
  color:rgba(255,255,255,.72);
  margin-top:16px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:22px;
}

.stat{
  background:rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
  border:1px solid rgba(255,255,255,.10);
}

.stat strong{
  display:block;
  color:var(--gold2);
  font-size:28px;
}

.stat span{
  color:rgba(255,255,255,.70);
  font-size:13px;
}

/* =========================
   SERVICES
========================= */

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.service-card{
  background:#fff;
  border-radius:22px;
  padding:22px;
  border:1px solid rgba(7,17,31,.08);
  box-shadow:0 14px 38px rgba(7,17,31,.06);
  transition:.25s ease;
}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 58px rgba(7,17,31,.12);
}

.service-number{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  background:rgba(199,154,58,.12);
  color:var(--gold);
  border-radius:14px;
  font-weight:900;
  margin-bottom:14px;
}

.service-card h3{
  font-size:19px;
  margin-bottom:10px;
  color:var(--navy);
}

.service-card ul{
  padding-left:18px;
  color:var(--muted);
  font-size:14px;
}

.service-card li{
  margin:6px 0;
}

/* =========================
   TEAM
========================= */

.team{
  background:#fff;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.team-card{
  border-radius:24px;
  padding:22px;
  background:var(--cream);
  border:1px solid rgba(7,17,31,.08);
}

.avatar{
  width:70px;
  height:70px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:22px;
  margin-bottom:18px;
}

.team-card a{
  display:block;
  color:var(--gold);
  font-weight:700;
  margin-top:10px;
  word-break:break-word;
}

/* =========================
   CONTACT
========================= */

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:20px;
  align-items:stretch;
}

.contact-info,
.form-card{
  background:#fff;
  border-radius:28px;
  padding:28px;
  border:1px solid rgba(7,17,31,.08);
  box-shadow:0 18px 48px rgba(7,17,31,.08);
}

.contact-item{
  padding:16px 0;
  border-bottom:1px solid rgba(7,17,31,.08);
}

.contact-item:last-child{
  border-bottom:0;
}

.contact-item b{
  display:block;
  color:var(--navy);
}

.contact-item span,
.contact-item a{
  color:var(--muted);
  display:block;
}

form{
  display:grid;
  gap:14px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

label{
  font-size:13px;
  font-weight:800;
  color:var(--navy);
}

input,
textarea,
select{
  width:100%;
  margin-top:7px;
  border:1px solid rgba(7,17,31,.12);
  border-radius:14px;
  padding:13px 14px;
  font-family:inherit;
  font-size:15px;
  outline:none;
  background:#fbfaf7;
}

input:focus,
textarea:focus,
select:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(199,154,58,.12);
}

textarea{
  min-height:120px;
  resize:vertical;
}

.form-message{
  display:none;
  padding:14px 16px;
  border-radius:14px;
  background:rgba(199,154,58,.12);
  color:var(--navy);
  font-weight:700;
}

/* =========================
   FOOTER
========================= */

.footer{
  background:var(--navy);
  color:rgba(255,255,255,.68);
  padding:34px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
}

.footer b{
  color:#fff;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:200;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:26px;
  box-shadow:0 18px 38px rgba(0,0,0,.22);
}

/* =========================
   CURSOR
========================= */

.cursor-dot,
.cursor-ring{
  position:fixed;
  top:0;
  left:0;
  pointer-events:none;
  z-index:9999;
  border-radius:50%;
  transform:translate(-50%,-50%);
  transition:opacity .2s ease;
}

.cursor-dot{
  width:8px;
  height:8px;
  background:var(--gold2);
  box-shadow:0 0 18px rgba(240,207,114,.85);
}

.cursor-ring{
  width:34px;
  height:34px;
  border:1px solid rgba(240,207,114,.62);
  transition:width .18s ease,height .18s ease,border .18s ease,opacity .2s ease;
}

.cursor-ring.active{
  width:54px;
  height:54px;
  border-color:rgba(255,255,255,.75);
}

/* =========================
   ANIMATIONS
========================= */

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:.7s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@keyframes floatCard{
  0%,100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-12px);
  }
}

@keyframes softGlow{
  0%,100%{
    filter:drop-shadow(0 20px 24px rgba(7,17,31,.22));
  }

  50%{
    filter:drop-shadow(0 22px 34px rgba(199,154,58,.38));
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px){

  .hero-grid{
    grid-template-columns:1fr;
    gap:40px;
    min-height:auto;
  }

  .hero-card{
    max-width:580px;
    margin:auto;
  }

  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .values,
  .services-grid,
  .team-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media (max-width:900px){

  body{
    cursor:auto;
  }

  .cursor-dot,
  .cursor-ring{
    display:none !important;
  }

  .menu-btn{
    display:block;
  }

  .nav-links{
    display:none;
    position:absolute;
    top:74px;
    left:0;
    right:0;
    width:100%;
    background:rgba(7,17,31,.98);
    padding:24px;
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .nav-links.open{
    display:flex;
  }

  .nav-links a,
  .nav-links .btn{
    width:100%;
  }

  .trust-strip{
    grid-template-columns:repeat(2,1fr);
  }

}

@media (max-width:640px){

  .container{
    width:min(100% - 26px,1180px);
  }

  section{
    padding:45px 0;
  }

  .hero-grid{
    padding:45px 0 55px;
  }

  .values,
  .services-grid,
  .team-grid,
  .stats,
  .form-row,
  .trust-strip,
  .hero-tags{
    grid-template-columns:1fr;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

}