:root{
  --navy:#1f3553;
  --navy-2:#2d4669;
  --gold:#c7a14a;
  --gold-soft:#e9d6a3;
  --cream:#f8f4ec;
  --white:#ffffff;
  --text:#233245;
  --muted:#617186;
  --line:rgba(31,53,83,.12);
  --shadow:0 20px 60px rgba(20,35,57,.12);
  --radius:22px;
  --radius-sm:16px;
  --container:1200px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat',sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.65;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(100% - 2rem, var(--container));
  margin-inline:auto;
}

.section{
  padding:90px 0;
}

.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(31,53,83,.08);
}

.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand-logo{
  width:185px;
  height:auto;
}

.menu{
  display:flex;
  align-items:center;
  gap:28px;
}

.menu a{
  font-size:.94rem;
  font-weight:600;
  color:var(--navy);
  position:relative;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.3s ease;
}

.menu a:hover::after{
  width:100%;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.menu-toggle{
  display:none;
  border:none;
  background:transparent;
  font-size:1.8rem;
  cursor:pointer;
  color:var(--navy);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:52px;
  padding:0 24px;
  border-radius:999px;
  font-weight:700;
  font-size:.95rem;
  transition:.25s ease;
  cursor:pointer;
  border:none;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-gold{
  background:linear-gradient(135deg, var(--gold), #d9b86d);
  color:#fff;
  box-shadow:0 12px 28px rgba(199,161,74,.28);
}

.btn-outline{
  border:1px solid rgba(31,53,83,.15);
  color:var(--navy);
  background:#fff;
}

.btn-light{
  background:rgba(255,255,255,.18);
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter:blur(10px);
}

.btn-full{
  width:100%;
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(120deg, rgba(20,34,56,.88), rgba(20,34,56,.60)),
    radial-gradient(circle at 85% 15%, rgba(199,161,74,.28), transparent 26%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color:#fff;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(17,26,40,.08), rgba(17,26,40,.18));
}

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:42px;
  align-items:center;
  padding:80px 0;
}

.eyebrow,
.section-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.section-tag{
  background:rgba(199,161,74,.12);
  color:var(--gold);
  border:1px solid rgba(199,161,74,.2);
}

.section-tag.light{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.18);
}

.hero-text h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3rem, 6vw, 5.4rem);
  line-height:.95;
  margin-bottom:20px;
  letter-spacing:-.02em;
}

.hero-text p{
  max-width:690px;
  font-size:1.05rem;
  color:rgba(255,255,255,.88);
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.trust-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:34px;
}

.trust-strip div{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px;
  backdrop-filter:blur(10px);
}

.trust-strip strong{
  display:block;
  font-size:.9rem;
  margin-bottom:4px;
}

.trust-strip span{
  color:rgba(255,255,255,.78);
  font-size:.84rem;
}

.hero-card{
  display:flex;
  justify-content:flex-end;
}

.mini-card{
  width:100%;
  max-width:430px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  border-radius:28px;
  padding:30px;
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
}

.mini-card h3{
  font-size:1.5rem;
  margin-bottom:10px;
}

.mini-card p{
  color:rgba(255,255,255,.82);
}

.mini-card ul{
  list-style:none;
  margin:22px 0 24px;
  display:grid;
  gap:10px;
}

.mini-card li{
  position:relative;
  padding-left:24px;
  color:rgba(255,255,255,.9);
}

.mini-card li::before{
  content:"•";
  position:absolute;
  left:8px;
  color:var(--gold-soft);
}

.highlights{
  background:var(--cream);
  padding:0 0 70px;
}

.highlights-grid{
  margin-top:-48px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.highlight{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
  border:1px solid rgba(31,53,83,.05);
}

.highlight .icon{
  font-size:2rem;
  display:inline-block;
  margin-bottom:12px;
}

.highlight h3{
  margin-bottom:10px;
  color:var(--navy);
}

.about-grid,
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:44px;
  align-items:center;
}

.photo-card{
  background:linear-gradient(160deg, var(--navy), #304c73);
  border-radius:32px;
  padding:18px;
  box-shadow:var(--shadow);
}

.photo-placeholder{
  min-height:480px;
  border-radius:24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.06)),
    url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
  position:relative;
  overflow:hidden;
}

.photo-placeholder::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent, rgba(18,31,51,.5));
}

.photo-placeholder span{
  position:absolute;
  left:24px;
  bottom:24px;
  z-index:2;
  font-family:'Cormorant Garamond',serif;
  font-size:3rem;
  color:#fff;
  letter-spacing:.08em;
}

.about-text h2,
.section-head h2,
.contact-info h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.3rem,4vw,3.5rem);
  line-height:1;
  margin-bottom:18px;
  color:var(--navy);
}

.about-text p,
.section-head p,
.contact-info p{
  color:var(--muted);
}

.quote-box{
  margin-top:24px;
  background:var(--cream);
  padding:22px;
  border-left:4px solid var(--gold);
  border-radius:20px;
}

.quote-box p{
  font-weight:600;
  color:var(--navy);
}

.section-head{
  max-width:760px;
  text-align:center;
  margin:0 auto 40px;
}

.services{
  background:linear-gradient(180deg, #fff, #fbfaf8);
}

.services-grid,
.why-grid,
.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.service-card,
.process-step{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:0 14px 30px rgba(20,35,57,.05);
  transition:.25s ease;
}

.service-card:hover,
.process-step:hover,
.why-item:hover{
  transform:translateY(-4px);
}

.service-card span{
  font-size:2rem;
  display:inline-block;
  margin-bottom:12px;
}

.service-card h3,
.process-step h3,
.why-item h3{
  color:var(--navy);
  margin-bottom:10px;
}

.service-card p,
.process-step p,
.why-item p{
  color:var(--muted);
}

.promo{
  background:
    linear-gradient(120deg, rgba(20,34,56,.92), rgba(20,34,56,.72)),
    url('https://images.unsplash.com/photo-1468413253725-0d5181091126?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color:#fff;
}

.promo-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:36px;
  border-radius:28px;
  backdrop-filter:blur(10px);
}

.promo-text h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.1rem,4vw,3.2rem);
  margin-bottom:12px;
}

.promo-text p{
  max-width:800px;
  color:rgba(255,255,255,.84);
}

.why-item{
  display:flex;
  gap:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  transition:.25s ease;
}

.why-number{
  width:58px;
  height:58px;
  min-width:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--gold), #ddc17f);
  color:#fff;
  font-weight:800;
}

.process-step span{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  font-weight:800;
  margin-bottom:16px;
}

.contact{
  background:linear-gradient(180deg, #faf7f1, #fff);
}

.contact-cards{
  margin-top:28px;
  display:grid;
  gap:14px;
}

.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}

.contact-card strong{
  color:var(--navy);
}

.contact-card a{
  color:var(--gold);
  font-weight:700;
}

.form-card{
  background:#fff;
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow);
  border:1px solid rgba(31,53,83,.07);
}

.contact-form{
  display:grid;
  gap:16px;
}

.field{
  display:grid;
  gap:8px;
}

.field label{
  font-size:.92rem;
  font-weight:700;
  color:var(--navy);
}

.field input,
.field textarea{
  width:100%;
  border:1px solid rgba(31,53,83,.14);
  border-radius:16px;
  padding:16px 18px;
  font-family:inherit;
  font-size:.98rem;
  outline:none;
  transition:.2s ease;
  background:#fff;
}

.field input:focus,
.field textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(199,161,74,.12);
}

.form-note{
  font-size:.85rem;
  color:var(--muted);
  text-align:center;
}

.footer{
  background:var(--navy);
  color:#fff;
  padding:34px 0;
}

.footer-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-logo{
  width:150px;
  margin-bottom:10px;
  filter:brightness(0) invert(1) grayscale(1) contrast(1.1);
}

.footer p{
  color:rgba(255,255,255,.75);
}

.footer-links{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links a{
  color:rgba(255,255,255,.86);
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1200;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:64px;
  height:64px;
  padding:0 18px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  font-weight:800;
  box-shadow:0 20px 40px rgba(37,211,102,.35);
}

.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .75s ease, transform .75s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

.delay-1{ transition-delay:.12s; }
.delay-2{ transition-delay:.22s; }

@media (max-width: 1100px){
  .hero-content,
  .about-grid,
  .contact-grid,
  .services-grid,
  .why-grid,
  .process-grid,
  .highlights-grid{
    grid-template-columns:1fr 1fr;
  }

  .trust-strip{
    grid-template-columns:1fr;
  }
}

@media (max-width: 860px){
  .menu{
    position:absolute;
    top:84px;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid rgba(31,53,83,.08);
    box-shadow:0 18px 30px rgba(20,35,57,.08);
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
  }

  .menu.open{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .desktop-btn{
    display:none;
  }

  .hero{
    min-height:auto;
    padding-top:20px;
  }

  .hero-content,
  .about-grid,
  .contact-grid,
  .services-grid,
  .why-grid,
  .process-grid,
  .highlights-grid{
    grid-template-columns:1fr;
  }

  .hero-text h1{
    font-size:3.4rem;
  }

  .promo-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .contact-card{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 560px){
  .brand-logo{
    width:145px;
  }

  .hero-text h1{
    font-size:2.8rem;
  }

  .hero-cta{
    flex-direction:column;
  }

  .btn,
  .btn-full,
  .btn-light,
  .btn-gold{
    width:100%;
  }

  .section{
    padding:72px 0;
  }

  .mini-card,
  .form-card,
  .highlight,
  .service-card,
  .why-item,
  .process-step{
    padding:22px;
  }

  .whatsapp-float{
    width:62px;
    min-width:62px;
    padding:0;
    font-size:0;
  }

  .whatsapp-float::before{
    content:"✆";
    font-size:1.5rem;
  }
}