:root{
  --accent:#b78f59; 
  --accent-2:#0b0b0c; 
  --bg:#fbf7f4;
}

/* RESET */
*, *::before, *::after{ box-sizing:border-box; }

body{
  margin:0;
  background:var(--bg);
  font-family:Inter, sans-serif;
  color:var(--accent-2);
}

/* GLOBAL CONTAINER */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

/* ================= HERO ================= */
#home.hero{
  width:100%;
  padding:90px 0;
  position:relative;
  overflow:hidden;
}

/* BACKGROUND */
.bg-scroll{
  position:absolute;
  inset:0;
  z-index:0;
}

.bg-track{
  display:flex;
  width:200%;
  height:100%;
  animation:scrollBG 35s linear infinite;
}

.bg-track img{
  width:50%;
  height:100%;
  object-fit:cover;
}

@keyframes scrollBG{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

/* DARK OVERLAY */
#home::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  z-index:1;
}

/* HERO CONTENT */
#home .content{
  position:relative;
  z-index:2;
}

.eyebrow{
  color:#fff;
  font-weight:700;
  font-size:14px;
  letter-spacing:0.5px;
}

.hero-title-white{
  font-family:"Playfair Display", serif;
  font-size:42px;
  margin:12px 0;
  color:#ffffff !important;
}

.lead{
  font-size:18px;
  color:#f2f2f2;
  max-width:720px;
  line-height:1.6;
}

/* HERO BUTTON */
.btn{
  padding:12px 18px;
  border-radius:10px;
  font-weight:700;
  border:none;
  cursor:pointer;
  background:linear-gradient(180deg,var(--accent),#95744f);
  color:#fff;
  z-index:5;
}

/* ================= POPUP ================= */

.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.65);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
}

.popup-box{
  background:#fff;
  width:100%;
  max-width:420px;
  padding:30px;
  border-radius:12px;
  position:relative;
  animation:fadePop .3s ease;
}

@keyframes fadePop{
  from{transform:scale(.95); opacity:0;}
  to{transform:scale(1); opacity:1;}
}

.popup-close{
  position:absolute;
  top:12px;
  right:14px;
  font-size:22px;
  background:none;
  border:none;
  cursor:pointer;
}

.popup-box input,
.popup-box textarea{
  width:100%;
  padding:12px;
  border-radius:8px;
  border:1px solid #ccc;
  font-size:14px;
}

.popup-box textarea{
  min-height:80px;
  resize:none;
}

.btn-popup{
  margin-top:10px;
  padding:12px;
  border:none;
  background:#b78f59;
  color:#fff;
  border-radius:8px;
  cursor:pointer;
  font-weight:600;
}
