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

/* BODY */
body{
  font-family:'Inter',sans-serif;
  color:#f5f2ea;
  position:relative;
  z-index:1;
}

/* 🔥 BACKGROUND FIX (WORKS ON ALL PHONES) */
body::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;

  background:
    linear-gradient(rgba(20,15,10,0.6), rgba(20,15,10,0.85)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab") center/cover no-repeat;

  z-index:-1;
}

/* CONTAINER */
.container{
  max-width:1100px;
  margin:auto;
  padding:20px;
}

/* LOGO */
.logo{
  text-align:center;
  margin:50px 0;
}

.logo h1{
  font-family:'Cinzel', serif;
  font-size:50px;
  letter-spacing:4px;
  color:#d4af37;
}

.logo h2{
  font-family:'Cinzel', serif;
  font-size:26px;
  margin-bottom:15px;
}

/* HERO */
.hero{
  padding:60px 30px;
  border-radius:22px;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.15);
  text-align:center;
  box-shadow:0 30px 70px rgba(0,0,0,0.5);
  margin-bottom:70px;
}

.hero h1{
  font-family:'Playfair Display', serif;
  font-size:64px;
  line-height:1.2;
}

.gold-text{
  color:#d4af37;
}

.tagline{
  font-size:12px;
  letter-spacing:3px;
  color:#d4af37;
  margin-bottom:25px;
}

.hero-highlight{
  font-size:20px;
  margin:30px auto;
  padding:16px;
  max-width:620px;
  background:rgba(212,175,55,0.15);
  border-left:4px solid #d4af37;
  border-radius:8px;
}

.hero-content{
  max-width:720px;
  margin:35px auto;
}

.luxury-text{
  font-family:'Cormorant Garamond', serif;
  font-size:24px;
  line-height:1.9;
  margin-bottom:20px;
}

.hero-content p:not(.luxury-text){
  font-size:15px;
  color:#ddd;
  line-height:1.9;
}

.premium-cta{
  font-size:17px;
  margin-top:25px;
}

/* BUTTON */
.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:25px;
  padding:14px 32px;
  border-radius:14px;
  background:linear-gradient(135deg,#d4af37,#b8962e);
  color:#000;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.cta-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 30px rgba(0,0,0,0.3);
}

/* SECTION */
.section{
  margin-top:90px;
}

.section h3{
  font-family:'Playfair Display', serif;
  text-align:center;
  margin-bottom:40px;
  font-size:30px;
}

.section h3::after{
  content:"";
  width:80px;
  height:2px;
  background:#d4af37;
  display:block;
  margin:12px auto 0;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

/* CARD */
.card{
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(28px);
  border:1px solid rgba(255,255,255,0.15);
  padding:26px;
  border-radius:16px;
  line-height:1.6;
  box-shadow:0 15px 30px rgba(0,0,0,0.2);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

/* CONTACT BOX */
.contact-box{
  margin-top:100px;
  padding:70px 40px;
  border-radius:20px;
  text-align:center;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(28px);
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 25px 60px rgba(0,0,0,0.4);
}

.contact-box h3{
  font-family:'Playfair Display', serif;
  font-size:20px;
  letter-spacing:2px;
  color:#d4af37;
  margin-bottom:10px;
}

.contact-box h2{
  font-family:'Playfair Display', serif;
  font-size:38px;
  margin-bottom:20px;
}

.contact-subtext{
  max-width:600px;
  margin:0 auto 25px;
  font-size:15px;
  color:#ddd;
  line-height:1.8;
}

/* CONTACT INFO */
.contact-info{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:60px;
  flex-wrap:wrap;
}

.contact-label{
  display:block;
  font-size:13px;
  letter-spacing:2px;
  color:#d4af37;
  margin-bottom:6px;
  text-transform:uppercase;
}

.contact-value{
  font-size:16px;
  font-weight:500;
}

/* 📱 MOBILE OPTIMIZATION */
@media(max-width:768px){

  body::before{
    background-position:center top;
    background-size:cover;
  }

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

  .hero h1{
    font-size:36px;
  }

  .hero{
    padding:50px 20px;
  }

  .contact-info{
    flex-direction:column;
    gap:20px;
  }

  .logo h1{
    font-size:36px;
  }
}