:root {
  --white: #FFFFFF;
  --offwhite: #FAFAFA;
  --charcoal: #1A1A1A;
  --gold: #D4AF37;
  --navy: #0D1B2A;
  --pear-green: #7BA05B;
  --emerald: #009B77;
  --royal-blue: #0055FF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif; /* clean modern body font */
  background-color: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
}

/* Headings – luxury serif */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Menu, buttons, labels – modern uppercase */
nav ul li a,
button,
.btn,
.roi-btn {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}


/* ---------------- Hero Section ---------------- */.hero{
    position:relative;
    height:90vh;
    overflow:hidden;
}

.hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.65),
        rgba(0,0,0,.25)
    );
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:620px;
    color:#fff;
    z-index:2;
}

.hero-content h1{
    font-family:'Playfair Display', serif;
    font-size:56px;
    line-height:1.15;
    margin-bottom:18px;
}

.hero-content h1 span{
    color:#d6b46a;
}

.hero-content p{
    font-size:17px;
    max-width:520px;
    margin-bottom:32px;
    color:#eaeaea;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#1f4032;
    color:#fff;
    padding:14px 32px;
    border-radius:30px;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.btn-primary:hover{
    background:#163127;
}

.btn-outline{
    border:2px solid #d6b46a;
    color:#d6b46a;
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.btn-outline:hover{
    background:#d6b46a;
    color:#111;
}

/* MOBILE */
@media(max-width:768px){
    .hero-content{
        left:6%;
        right:6%;
        text-align:left;
    }
    .hero-content h1{
        font-size:40px;
    }
}

  
  /* OWNER BENEFITS */
.owner-benefits{
    padding:90px 0;
    background:#ffffff;
    text-align:center;
}

.benefits-title{
    font-size:36px;
    font-weight:500;
    margin-bottom:60px;
    color:#111;
    font-family: 'Playfair Display', serif;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.benefit-item{
    max-width:240px;
    margin:auto;
}

.benefit-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#f7f6f2;
    display:flex;
    align-items:center;
    justify-content:center;
}

.benefit-icon i{
    font-size:28px;
    color:#b89b5e; /* luxury gold */
}

.benefit-item h4{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
    color:#111;
}

.benefit-item p{
    font-size:14px;
    line-height:1.6;
    color:#666;
}

/* Responsive */
@media(max-width:991px){
    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }
}

@media(max-width:575px){
    .benefits-grid{
        grid-template-columns:1fr;
    }
}


.how-it-works{
    padding:90px 0;
    background:#f9f8f4;
}

.how-title{
    font-size:36px;
    margin-bottom:60px;
    font-family: 'Playfair Display', serif;
}

.how-steps{
    display:flex;
    justify-content:center;
    gap:60px;
}

.how-step{
    max-width:260px;
    text-align:center;
    opacity:.6;
}

.how-step.active{
    opacity:1;
}

.how-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#0f3d2e;
    color:#d6b77c;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:30px;
    border:4px solid #d6b77c;
}

.how-step h4{
    font-size:18px;
    margin-bottom:10px;
}

.how-step p{
    font-size:14px;
    color:#666;
}

@media(max-width:768px){
    .how-steps{
        flex-direction:column;
        gap:40px;
    }
}

.luxury-hero{
    background:#1f2b25;
    padding:90px 0;
    border-bottom:6px solid #c9b37e;
}

.luxury-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
    padding:0 20px;
}

.luxury-content h1{
    font-size:44px;
    color:#e9e2c8;
    font-family:'Playfair Display', serif;
    margin-bottom:20px;
}

.luxury-content p{
    color:#cfcfcf;
    max-width:420px;
    margin-bottom:30px;
    line-height:1.6;
}

.luxury-btn{
    display:inline-block;
    padding:12px 26px;
    background:#243d32;
    color:#d9c68c;
    border:1px solid #d9c68c;
    text-decoration:none;
    border-radius:4px;
}

.luxury-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 25px 60px rgba(0,0,0,.4);
}

@media(max-width:900px){
    .luxury-container{
        grid-template-columns:1fr;
        text-align:center;
    }
}
.roi-section{
    background:linear-gradient(180deg,#183327,#0f231b);
    padding:90px 0;
}

.roi-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.roi-title{
    text-align:center;
    font-size:34px;
    color:#e8e1c7;
    margin-bottom:60px;
    font-family:'Playfair Display', serif;
}

.roi-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.roi-card{
    background:#14261f;
    border:2px solid #c9b37e;
    padding:35px;
    border-radius:12px;
    color:#fff;
}

.chart-card h4{
    margin-bottom:5px;
}

.fake-chart{
    margin-top:30px;
    display:flex;
    gap:10px;
    align-items:flex-end;
    height:140px;
}

.fake-chart span{
    flex:1;
    background:linear-gradient(180deg,#d9c68c,#7c6a3a);
    border-radius:4px;
}

.fake-chart span:nth-child(1){height:40%;}
.fake-chart span:nth-child(2){height:70%;}
.fake-chart span:nth-child(3){height:55%;}
.fake-chart span:nth-child(4){height:90%;}

.form-card h3{
    margin-bottom:25px;
}

.form-card input{
    width:100%;
    padding:12px;
    margin-bottom:14px;
    border-radius:4px;
    border:none;
}

.checkbox{
    display:block;
    font-size:13px;
    margin:15px 0;
    color:#ccc;
}

.form-card button{
    width:100%;
    padding:14px;
    background:#1f3c30;
    color:#e8d39b;
    border:1px solid #e8d39b;
    cursor:pointer;
    font-size:15px;
}

@media(max-width:900px){
    .roi-grid{
        grid-template-columns:1fr;
    }
}


/* ---------------- Footer ---------------- */
.footer {
  text-align: center;
  padding: 24px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}


