/* --- RESET & VARIABLES --- */
:root {
    --bg-color: #FDFCF8;
    --bg-secondary: #F5F3EF;
    --text-main: #2C2C2C;
    --text-light: #666666;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--text-main);
    background: transparent;
    transition: var(--transition);
}
.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    border: none;
}
.btn-gold:hover { background-color: #B59026; }
.btn:hover { background-color: var(--text-main); color: var(--white); }

/* --- HEADER --- */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(253, 252, 248, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-serif); font-size: 1.8rem; letter-spacing: 1px; font-weight: 700; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-icons { display: flex; gap: 20px; align-items: center; }
.cart-count { font-size: 0.8rem; font-weight: 600; }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}
.hero-content { flex: 1; padding-right: 50px; animation: fadeIn 1.5s ease; }
.hero-image { flex: 1; position: relative; animation: fadeIn 1.5s ease; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 30px; max-width: 450px; }

/* --- SECTIONS --- */
section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }
.bg-beige { background-color: var(--bg-secondary); }

/* --- BENEFITS --- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.benefit-card i { font-size: 2rem; color: var(--gold); margin-bottom: 15px; }
.benefit-card h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* --- TESTIMONIALS --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.testimonial { text-align: center; padding: 30px; border: 1px solid #eee; }
.stars { color: var(--gold); margin-bottom: 15px; letter-spacing: 3px; }
.testimonial p { font-style: italic; margin-bottom: 15px; font-family: var(--font-serif); }

/* --- FOOTER --- */
footer { background-color: #1a1a1a; color: var(--white); padding: 60px 0; text-align: center; }
footer a { color: #aaa; }
footer a:hover { color: var(--gold); }
.footer-logo { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 20px; display: inline-block; }

/* --- ANIMATIONS --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; height: auto; padding-top: 120px; }
    .hero-content { padding-right: 0; margin-bottom: 40px; }
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }


/* CONTACT PAGE */
.contact-hero{
  padding: 70px 0 25px;
  background: #faf7f2;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-hero h1{
  font-family: "Playfair Display", serif;
  font-size: 52px;
  margin: 0 0 10px;
}
.contact-hero p{
  max-width: 700px;
  font-family: "Inter", sans-serif;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
  margin: 0;
}

.contact-section{
  padding: 50px 0 80px;
  background: #fff;
}
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.contact-card, .contact-form{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.contact-card h2, .contact-form h2{
  font-family: "Playfair Display", serif;
  margin: 0 0 6px;
}
.contact-sub{
  font-family: "Inter", sans-serif;
  color: rgba(0,0,0,0.60);
  margin: 0 0 18px;
  line-height: 1.5;
}
.contact-row{
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-row:last-child{
  border-bottom: none;
}
.contact-label{
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-value{
  font-family: "Inter", sans-serif;
  color: rgba(0,0,0,0.70);
}
.contact-value a{
  color: rgba(0,0,0,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.contact-value a:hover{
  border-bottom-color: rgba(0,0,0,0.6);
}

.divider{
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 18px 0;
}
.fineprint{
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  line-height: 1.6;
}

/* Form */
.contact-form form{
  display: grid;
  gap: 10px;
}
.contact-form label{
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(0,0,0,0.75);
  margin-top: 6px;
}
.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  outline: none;
  font-family: "Inter", sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(0,0,0,0.35);
}

/* Footer */
.lux-footer{
  background: #0e0e0f;
  color: rgba(255,255,255,0.85);
  padding: 45px 0 22px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 20px;
}
.footer-logo{
  font-family: "Playfair Display", serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
}
.footer-sub{
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-top: 10px;
}
.lux-footer h4{
  font-family: "Inter", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 12px;
}
.lux-footer a{
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin: 8px 0;
}
.lux-footer a:hover{
  color: #fff;
}

.footer-bottom{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 26px;
  padding-top: 16px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* Responsive */
@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; }
} /* Simple hide for demo, would use burger menu in prod */
}