*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --primary:#1C2B16;
  --secondary:#3D5A2A;
  --gold:#B8973E;
  --gold-light:#D4B86A;
  --cream:#F7F3EC;
  --cream-dark:#EDE8DC;
  --text:#1a1a1a;
  --muted:#6b6b6b;
  --border:#E2DAC9;
  --white:#ffffff;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
}

html{
  scroll-behavior:smooth;
}

img{
  width:100%;
  display:block;
}

.container{
  width:min(1240px,92%);
  margin:auto;
}

section{
  padding:120px 0;
}

h1,h2,h3,h4,h5{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
}

p{
  line-height:1.85;
  color:var(--muted);
  font-size:15.5px;
}

a{
  transition:all .3s ease;
}

/* ─── HEADER ─── */

header{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
}

.navbar{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}

.logo img{
  width:90px;
}

.logo-text h2{
  color:var(--primary);
  font-size:28px;
  letter-spacing:2px;
  line-height:1;
}

.logo-text span{
  color:var(--gold);
  font-size:10px;
  letter-spacing:4px;
  text-transform:uppercase;
  display:block;
  margin-top:3px;
}

nav ul{
  display:flex;
  list-style:none;
  gap:40px;
}

nav a{
  text-decoration:none;
  color:#333;
  font-size:14px;
  font-weight:500;
  letter-spacing:.5px;
  position:relative;
}

nav a::after{
  content:'';
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:1px;
  background:var(--gold);
  transition:width .3s ease;
}

nav a:hover{
  color:var(--primary);
}

nav a:hover::after{
  width:100%;
}

.nav-btn{
  background:var(--primary);
  color:white !important;
  padding:12px 26px;
  border-radius:4px;
  text-decoration:none;
  font-size:13.5px;
  font-weight:500;
  letter-spacing:.5px;
}

.nav-btn:hover{
  background:var(--secondary);
}

.nav-btn::after{
  display:none;
}

/* ─── HERO ─── */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:86px;
  background:
    linear-gradient(105deg, rgba(247,243,236,.98) 48%, rgba(247,243,236,.7) 100%),
    url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:80px;
  align-items:center;
}

.hero-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:28px;
}

.hero-label span{
  color:var(--gold);
  font-size:11px;
  letter-spacing:5px;
  text-transform:uppercase;
  font-weight:500;
}

.hero-label::before{
  content:'';
  width:32px;
  height:1px;
  background:var(--gold);
  display:block;
}

.hero h1{
  font-size:82px;
  line-height:.92;
  color:var(--primary);
  margin-bottom:30px;
  letter-spacing:-1px;
}

.hero h1 em{
  font-style:italic;
  color:var(--gold);
}

.hero-desc{
  font-size:16px;
  max-width:480px;
  margin-bottom:44px;
  line-height:1.8;
}

.hero-buttons{
  display:flex;
  gap:16px;
  align-items:center;
}

.primary-btn{
  background:var(--primary);
  color:white;
  padding:15px 34px;
  border-radius:4px;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  letter-spacing:.5px;
  display:inline-block;
}

.primary-btn:hover{
  background:var(--secondary);
  color:white;
}

.secondary-btn{
  color:var(--primary);
  padding:15px 34px;
  border-radius:4px;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  letter-spacing:.5px;
  border:1px solid var(--border);
  display:inline-block;
}

.secondary-btn:hover{
  border-color:var(--primary);
  background:var(--primary);
  color:white;
}

.hero-card{
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-radius:6px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 30px 80px rgba(0,0,0,.07);
}

.hero-card-img{
  height:260px;
  overflow:hidden;
}

.hero-card-img img{
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.hero-card:hover .hero-card-img img{
  transform:scale(1.04);
}

.hero-card-body{
  padding:34px 36px;
}

.hero-card-tag{
  font-size:10px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:500;
  display:block;
  margin-bottom:10px;
}

.hero-card-body h3{
  color:var(--primary);
  font-size:32px;
  margin-bottom:12px;
  line-height:1.1;
}

.hero-card-body p{
  font-size:14.5px;
}

/* ─── TRUST / FEATURES ─── */

.trust{
  background:var(--cream);
  padding:100px 0;
}

.section-header{
  text-align:center;
  margin-bottom:72px;
}

.section-tag{
  display:inline-block;
  color:var(--gold);
  font-size:10.5px;
  letter-spacing:5px;
  text-transform:uppercase;
  font-weight:500;
  margin-bottom:16px;
  position:relative;
  padding:0 20px;
}

.section-tag::before,
.section-tag::after{
  content:'';
  position:absolute;
  top:50%;
  width:14px;
  height:1px;
  background:var(--gold);
}

.section-tag::before{ left:0; }
.section-tag::after{ right:0; }

.section-header h2{
  font-size:56px;
  color:var(--primary);
  line-height:1.05;
  margin-bottom:16px;
}

.section-header p{
  max-width:520px;
  margin:0 auto;
  font-size:15.5px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
  background:var(--border);
  border:1px solid var(--border);
}

.trust-card{
  background:var(--white);
  padding:50px 44px;
  transition:.35s ease;
}

.trust-card:hover{
  background:var(--primary);
}

.trust-card:hover .trust-icon-wrap{
  background:rgba(255,255,255,.1);
}

.trust-card:hover h3,
.trust-card:hover p{
  color:white;
}

.trust-icon-wrap{
  width:54px;
  height:54px;
  background:var(--cream);
  border-radius:4px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:28px;
  font-size:22px;
  transition:.35s ease;
}

.trust-card h3{
  font-size:28px;
  color:var(--primary);
  margin-bottom:14px;
  transition:.35s ease;
}

.trust-card p{
  transition:.35s ease;
}

/* ─── ABOUT ─── */

.about{
  background:#fff;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  align-items:center;
}

.about-visual{
  position:relative;
}

.about-img-main{
  border-radius:4px;
  overflow:hidden;
  aspect-ratio:4/5;
}

.about-img-main img{
  height:100%;
  object-fit:cover;
}

.about-badge{
  position:absolute;
  bottom:-24px;
  right:-24px;
  background:var(--primary);
  color:white;
  padding:28px 32px;
  border-radius:4px;
  text-align:center;
}

.about-badge h4{
  font-size:44px;
  color:var(--gold-light);
  line-height:1;
}

.about-badge p{
  font-size:12px;
  color:rgba(255,255,255,.75);
  letter-spacing:1px;
  margin-top:4px;
}

.about-content{
  padding-bottom:24px;
}

.about-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:24px;
}

.about-label span{
  color:var(--gold);
  font-size:11px;
  letter-spacing:4px;
  text-transform:uppercase;
  font-weight:500;
}

.about-label::before{
  content:'';
  width:28px;
  height:1px;
  background:var(--gold);
}

.about-content h2{
  font-size:60px;
  color:var(--primary);
  line-height:.95;
  margin-bottom:28px;
  letter-spacing:-1px;
}

.about-content h2 em{
  font-style:italic;
  color:var(--gold);
}

.about-content p{
  margin-bottom:18px;
}

.about-list{
  list-style:none;
  margin-top:30px;
}

.about-list li{
  padding:14px 0;
  border-top:1px solid var(--border);
  display:flex;
  align-items:center;
  gap:14px;
  font-size:14.5px;
  color:var(--text);
  font-family:'Inter',sans-serif;
}

.about-list li span{
  color:var(--gold);
  font-size:16px;
}

/* ─── PRODUCTS PREVIEW ─── */

#products{
  background:var(--cream);
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.product-card{
  background:var(--white);
  border-radius:4px;
  overflow:hidden;
  border:1px solid var(--border);
  transition:.35s ease;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,.07);
}

.product-card-img{
  height:260px;
  overflow:hidden;
}

.product-card-img img{
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.product-card:hover .product-card-img img{
  transform:scale(1.05);
}

.product-content{
  padding:30px 32px;
}

.product-tag{
  font-size:10px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:500;
  display:block;
  margin-bottom:10px;
}

.product-content h3{
  font-size:30px;
  color:var(--primary);
  margin-bottom:10px;
  line-height:1.1;
}

.products-cta{
  text-align:center;
  margin-top:56px;
}

/* ─── PROCESS ─── */

.process{
  background:var(--primary);
}

.process .section-header h2{
  color:white;
}

.process .section-tag{
  color:var(--gold-light);
}

.process .section-tag::before,
.process .section-tag::after{
  background:var(--gold-light);
}

.timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2px;
  background:rgba(255,255,255,.08);
}

.timeline-item{
  background:var(--primary);
  padding:44px 34px;
  position:relative;
  overflow:hidden;
  transition:.35s ease;
}

.timeline-item:hover{
  background:#243318;
}

.timeline-num{
  font-family:'Cormorant Garamond',serif;
  font-size:80px;
  color:rgba(255,255,255,.06);
  line-height:1;
  position:absolute;
  top:20px;
  right:24px;
  font-weight:700;
  pointer-events:none;
}

.timeline-step{
  width:36px;
  height:2px;
  background:var(--gold);
  margin-bottom:28px;
}

.timeline-item h3{
  color:white;
  font-size:28px;
  margin-bottom:14px;
}

.timeline-item p{
  color:rgba(255,255,255,.6);
  font-size:14.5px;
}

/* ─── STATS ─── */

.stats{
  padding:80px 0;
  background:var(--cream-dark);
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2px;
  background:var(--border);
}

.stat-box{
  background:var(--white);
  padding:52px 40px;
  text-align:center;
}

.stat-box h2{
  color:var(--primary);
  font-size:64px;
  line-height:1;
  margin-bottom:8px;
}

.stat-box p{
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:500;
}

/* ─── CONTACT ─── */

.contact{
  background:#fff;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:40px;
  align-items:start;
}

.contact-card{
  border:1px solid var(--border);
  border-radius:4px;
  padding:52px 46px;
}

.contact-card h3{
  color:var(--primary);
  font-size:38px;
  margin-bottom:36px;
  line-height:1.1;
}

.contact-divider{
  width:40px;
  height:2px;
  background:var(--gold);
  margin-bottom:36px;
}

.contact-item{
  padding:20px 0;
  border-top:1px solid var(--border);
}

.contact-item:last-child{
  border-bottom:1px solid var(--border);
}

.contact-item span{
  display:block;
  color:var(--gold);
  font-size:10px;
  letter-spacing:4px;
  text-transform:uppercase;
  font-weight:500;
  margin-bottom:6px;
}

.contact-item p{
  color:var(--text);
  font-size:15px;
}

.map{
  border-radius:4px;
  overflow:hidden;
  border:1px solid var(--border);
  height:100%;
  min-height:440px;
}

iframe{
  width:100%;
  height:100%;
  min-height:440px;
  border:0;
  display:block;
}

/* ─── FOOTER ─── */

footer{
  background:#0f0f0f;
  padding:80px 0 32px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr;
  gap:60px;
  margin-bottom:64px;
}

.footer-brand h2{
  font-size:38px;
  color:white;
  margin-bottom:6px;
  letter-spacing:2px;
}

.footer-brand-sub{
  color:var(--gold);
  font-size:9px;
  letter-spacing:5px;
  text-transform:uppercase;
  margin-bottom:20px;
  display:block;
}

.footer-brand p{
  color:rgba(255,255,255,.45);
  font-size:14.5px;
  max-width:300px;
}

.footer-links h4{
  color:white;
  font-size:16px;
  font-family:'Inter',sans-serif;
  font-weight:600;
  margin-bottom:24px;
  letter-spacing:.5px;
}

.footer-links a{
  display:block;
  color:rgba(255,255,255,.45);
  margin-bottom:14px;
  text-decoration:none;
  font-size:14px;
  transition:.25s;
}

.footer-links a:hover{
  color:var(--gold-light);
}

.copyright{
  border-top:1px solid rgba(255,255,255,.07);
  padding-top:28px;
  text-align:center;
  color:rgba(255,255,255,.3);
  font-size:13px;
}

/* ─── RESPONSIVE ─── */

@media(max-width:1024px){

  .hero h1{ font-size:64px; }
  .about-content h2{ font-size:50px; }

}

@media(max-width:992px){

  nav{ display:none; }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid{ grid-template-columns:1fr; }

  .trust-grid,
  .products-grid{ grid-template-columns:1fr 1fr; }

  .timeline,
  .stats-grid{ grid-template-columns:1fr 1fr; }

  .about-badge{ right:0; bottom:-16px; }

  .hero h1{ font-size:56px; }

}

@media(max-width:768px){

  section{ padding:80px 0; }

  .trust-grid,
  .products-grid,
  .timeline,
  .stats-grid{ grid-template-columns:1fr; }

  .hero{ text-align:center; }

  .hero-label{ justify-content:center; }

  .hero-buttons{ justify-content:center; flex-wrap:wrap; }

  .hero h1{ font-size:46px; }

  .hero-desc{ margin:0 auto 40px; }

  .section-header h2{ font-size:40px; }

  .about-content h2{ font-size:44px; }

  .trust-grid{ background:none; gap:16px; }

}