:root{
  --gold:#c9a96e;
  --gold-dark:#a07840;
  --gold-light:#e8d5b0;
  --cream:#faf7f2;
  --ivory:#f5f0e8;
  --warm-white:#fefcf8;
  --charcoal:#2a2a2a;
  --muted:#7a7167;
  --border:rgba(201,169,110,.22);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--cream);
  color:var(--charcoal);
  overflow-x:hidden;
}

h1,h2,h3,h4,h5{
  font-family:'Playfair Display',serif;
}

a{
  text-decoration:none;
}

/* NAVBAR */

.navbar{
  background:rgba(250,247,242,.96)!important;
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  padding:14px 0;
}

.navbar-brand{
  font-family:'Playfair Display',serif;
  font-size:22px;
  font-weight:600;
  color:var(--charcoal)!important;
}

.navbar-brand em{
  font-style:italic;
}

.navbar-brand span{
  color:var(--gold);
}

.nav-link{
  font-size:11px;
  font-weight:500;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--muted)!important;
  transition:.3s;
}

.nav-link:hover,
.nav-link.active{
  color:var(--gold-dark)!important;
}

.btn-gold{
  background:var(--gold);
  color:#fff;
  border:none;
  border-radius:0;
  padding:10px 22px;
  font-size:11px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:.3s;
}

.btn-gold:hover{
  background:var(--gold-dark);
  color:#fff;
}

/* HERO */

.page-hero{
  position:relative;
  padding:160px 0 100px;
  text-align:center;
  background:
  linear-gradient(rgba(250,247,242,.88),rgba(250,247,242,.92)),
  url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
}

.eyebrow{
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:14px;
}

.page-title{
  font-size:clamp(40px,6vw,72px);
  line-height:1.08;
  font-weight:400;
  color:var(--charcoal);
}

.page-title em{
  color:var(--gold-dark);
  font-style:italic;
}

.gold-rule{
  width:40px;
  height:1px;
  background:var(--gold);
  margin:22px auto;
}

.page-sub{
  max-width:650px;
  margin:auto;
  color:var(--muted);
  line-height:1.9;
  font-size:13px;
}

/* SECTION */

.section{
  padding:100px 0;
}

.section-title{
  font-size:48px;
  line-height:1.1;
  margin-bottom:14px;
}

.section-title em{
  color:var(--gold-dark);
  font-style:italic;
}

.section-rule{
  width:34px;
  height:1px;
  background:var(--gold);
  margin:18px 0 26px;
}

.section-text{
  color:var(--muted);
  line-height:2;
  font-size:14px;
}

/* IMAGE */

.about-image{
  position:relative;
  overflow:hidden;
}

.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.image-badge{
  position:absolute;
  bottom:30px;
  left:30px;
  background:rgba(42,42,42,.9);
  color:#fff;
  padding:18px 22px;
  min-width:180px;
}

.image-badge h3{
  font-size:34px;
  margin-bottom:4px;
}

.image-badge p{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold-light);
}

/* STATS */

.stats-section{
  background:var(--ivory);
}

.stat-card{
  text-align:center;
  padding:40px 20px;
}

.stat-number{
  font-family:'Playfair Display',serif;
  font-size:54px;
  color:var(--gold-dark);
  margin-bottom:10px;
}

.stat-label{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--muted);
  line-height:1.8;
}

/* SERVICES */

.service-box{
  background:var(--warm-white);
  padding:34px 30px;
  height:100%;
  border-top:2px solid transparent;
  transition:.3s;
  box-shadow:0 10px 35px rgba(0,0,0,.03);
}

.service-box:hover{
  border-color:var(--gold);
  transform:translateY(-6px);
}

.service-icon{
  width:58px;
  height:58px;
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:22px;
  margin-bottom:24px;
  background:var(--ivory);
}

.service-title{
  font-size:28px;
  margin-bottom:14px;
}

.service-text{
  font-size:13px;
  line-height:2;
  color:var(--muted);
}

/* OWNER */

.owner-section{
  background:var(--warm-white);
}

.owner-card{
  background:var(--ivory);
  padding:45px;
}

.owner-name{
  font-size:42px;
  margin-bottom:8px;
}

.owner-role{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:24px;
}

.owner-text{
  line-height:2;
  color:var(--muted);
  font-size:14px;
}

/* CTA */

.cta-section{
  position:relative;
  padding:110px 0;
  text-align:center;
  background:
  linear-gradient(rgba(42,42,42,.76),rgba(42,42,42,.76)),
  url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
}

.cta-title{
  color:#fff;
  font-size:56px;
  margin-bottom:18px;
}

.cta-title em{
  color:var(--gold-light);
  font-style:italic;
}

.cta-text{
  max-width:620px;
  margin:auto;
  color:rgba(255,255,255,.72);
  line-height:1.9;
  font-size:14px;
}

.cta-btn{
  display:inline-block;
  margin-top:34px;
  background:var(--gold);
  color:#fff;
  padding:15px 34px;
  font-size:11px;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:.3s;
}

.cta-btn:hover{
  background:var(--gold-dark);
  color:#fff;
}

/* FOOTER */

footer{
  background:var(--charcoal);
  color:rgba(255,255,255,.6);
  padding:65px 0 28px;
}

.footer-brand{
  font-family:'Playfair Display',serif;
  font-size:24px;
  color:#fff;
  margin-bottom:10px;
}

.footer-brand span{
  color:var(--gold);
}

.footer-text{
  max-width:260px;
  line-height:1.9;
  font-size:13px;
}

.footer-rule{
  width:28px;
  height:1px;
  background:var(--gold);
  margin:18px 0;
}

.footer-contact{
  line-height:2.2;
  font-size:13px;
}

.footer-contact a{
  color:rgba(255,255,255,.65);
}

.footer-heading{
  color:#fff;
  margin-bottom:16px;
  font-size:16px;
}

.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  color:rgba(255,255,255,.55);
  font-size:13px;
}

.footer-links a:hover{
  color:var(--gold);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:22px;
  margin-top:40px;
}

.social-wrap{
  display:flex;
  gap:10px;
}

.social-btn{
  width:36px;
  height:36px;
  border:1px solid rgba(201,169,110,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  transition:.3s;
}

.social-btn:hover{
  background:var(--gold);
  color:#fff;
}

/* FLOAT */

.whatsapp-float{
  position:fixed;
  bottom:22px;
  right:22px;
  width:58px;
  height:58px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:28px;
  z-index:999;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.whatsapp-float:hover{
  color:#fff;
  transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

  .page-hero{
    padding:140px 0 80px;
  }

  .section{
    padding:70px 0;
  }

  .section-title{
    font-size:38px;
  }

  .owner-card{
    padding:30px 24px;
  }

  .cta-title{
    font-size:42px;
  }

}
