:root{
  --orange:#e86f1d;
  --gold:#f6b84c;
  --cream:#fbf6ef;
  --dark:#20140d;
  --text:#222;
  --muted:#6f675f;
  --border:#eadfce;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:white;
  line-height:1.7;
}

h1,h2,h3{
  font-family:'Playfair Display',serif;
}

.container{
  width:min(1150px,90%);
  margin:auto;
}

.navbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:rgba(20,10,5,.7);
  backdrop-filter:blur(10px);
}

.nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo{
  font-size:28px;
  font-weight:700;
  background:linear-gradient(90deg,var(--orange),var(--gold));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.nav-links{
  display:flex;
  gap:24px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  font-size:14px;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top left, rgba(255,180,0,.2), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,200,80,.15), transparent 30%),
    linear-gradient(135deg,#2b1103,#7b3400,#f59e0b);
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

.hero-content{
  position:relative;
  color:white;
  padding-top:120px;
  max-width:750px;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  color:var(--gold);
  margin-bottom:20px;
  font-weight:700;
}

.eyebrow.dark{
  color:var(--orange);
}

h1{
  font-size:clamp(42px,7vw,78px);
  line-height:1.05;
  margin-bottom:24px;
}

h1 span{
  display:block;
  background:linear-gradient(90deg,#ffb25b,#ffe08d);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-text{
  font-size:20px;
  color:rgba(255,255,255,.85);
}

.hero-buttons{
  margin-top:36px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:14px 24px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
}

.btn-primary{
  background:linear-gradient(135deg,var(--orange),var(--gold));
  color:white;
}

.btn-outline{
  border:1px solid rgba(255,255,255,.4);
  color:white;
}

.section{
  padding:100px 0;
}

.section-header{
  text-align:center;
  max-width:700px;
  margin:auto auto 60px;
}

.section-header h2{
  font-size:48px;
  margin-bottom:18px;
}

.section-header p{
  color:var(--muted);
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}

.card{
  background:white;
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px;
  box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.card h3{
  margin-bottom:12px;
  font-size:24px;
}

.card p{
  color:var(--muted);
}

.cream{
  background:var(--cream);
}

.about-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
}

.features{
  margin-top:28px;
  list-style:none;
}

.features li{
  margin-bottom:14px;
  position:relative;
  padding-left:30px;
}

.features li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--orange);
  font-weight:bold;
}

.stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.stat{
  background:white;
  border-radius:18px;
  padding:30px;
  text-align:center;
}

.stat.hot{
  background:linear-gradient(135deg,var(--orange),var(--gold));
  color:white;
}

.stat strong{
  display:block;
  font-size:42px;
  font-family:'Playfair Display',serif;
}

.review .stars{
  color:gold;
  margin-bottom:14px;
}

.center{
  text-align:center;
}

.contact-text{
  max-width:700px;
  margin:20px auto;
}

.contact-box{
  margin:40px 0;
}

.footer{
  background:var(--dark);
  color:white;
  text-align:center;
  padding:70px 0;
}

.copyright{
  opacity:.6;
  margin-top:20px;
}

@media(max-width:800px){

  .nav-links{
    display:none;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .section-header h2{
    font-size:38px;
  }

}
