* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --sand: #F4EFEA;
  --sage: #A8B5A2;
  --rose: #C98C7A;
  --clay: #D6B29A;
  --charcoal: #3A3A3A;
  --text-lt: #7A7068;
  --cream: #FBF8F5;
}
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--sand); color: var(--charcoal); }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  background: rgba(244,239,234,0.96); backdrop-filter: blur(10px);
  padding: 0 48px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(168,181,162,0.25);
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; letter-spacing: 1px; color: var(--charcoal); text-decoration: none; }
.nav-logo span { color: var(--rose); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--charcoal); font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--rose); }
.btn {
  display: inline-block; background: var(--rose); color: white;
  padding: 12px 28px; border-radius: 30px;
  font-family: 'Lato', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; font-weight: 700;
  box-shadow: 0 4px 16px rgba(201,140,122,0.3); transition: all 0.3s;
}
.btn:hover { background: var(--charcoal); box-shadow: none; }
.btn-outline {
  display: inline-block; border: 1.5px solid var(--rose); color: var(--rose);
  padding: 11px 28px; border-radius: 30px; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none; font-weight: 700; transition: all 0.3s;
}
.btn-outline:hover { background: var(--rose); color: white; }
.hero {
  margin-top: 68px; min-height: 620px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: #C8B0A0;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,25,20,0.18), rgba(30,25,20,0.62)); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 48px 24px; max-width: 850px; }
.eyebrow, .section-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; }
.hero .eyebrow { color: rgba(255,255,255,0.82); }
.hero h1 { font-size: clamp(44px, 7vw, 78px); line-height: 1.08; color: white; margin-bottom: 20px; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero h1 em { color: #F5E0D4; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.8; max-width: 660px; margin: 0 auto 34px; font-weight: 300; }
.section { padding: 90px 48px; }
.section.cream { background: var(--cream); }
.section.sand { background: var(--sand); }
.section.dark { background: var(--charcoal); color: white; }
.inner { max-width: 1080px; margin: 0 auto; }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.split p, .copy p { color: var(--text-lt); line-height: 1.9; font-size: 15px; font-weight: 300; margin-bottom: 16px; }
.section.dark p { color: rgba(255,255,255,0.68); }
.section h2 { font-size: clamp(34px, 5vw, 52px); line-height: 1.16; margin-bottom: 18px; }
.section h3 { font-size: 28px; margin-bottom: 12px; }
.image-card { border-radius: 22px; overflow: hidden; box-shadow: 0 30px 60px rgba(58,58,58,0.12); }
.image-card img { display: block; width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 38px; }
.card { background: white; border-radius: 20px; padding: 34px 30px; box-shadow: 0 4px 24px rgba(58,58,58,0.07); }
.card .tag { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.card p, .faq-item p, .proof-card p { color: var(--text-lt); line-height: 1.8; font-size: 14px; font-weight: 300; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--rose); margin: 18px 0; }
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 34px; }
.proof-card { background: white; border-radius: 20px; padding: 34px; box-shadow: 0 4px 24px rgba(58,58,58,0.07); }
.stars { color: var(--rose); letter-spacing: 3px; margin-bottom: 18px; }
.faq-grid { display: grid; gap: 14px; margin-top: 34px; }
.faq-item { background: white; border-radius: 16px; padding: 26px 28px; box-shadow: 0 2px 14px rgba(58,58,58,0.06); }
.faq-item h3 { font-size: 23px; }
.service-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.service-links a { color: var(--rose); border: 1px solid rgba(201,140,122,0.45); border-radius: 999px; padding: 10px 16px; text-decoration: none; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.cta { text-align: center; background: var(--charcoal); color: white; padding: 100px 48px; }
.cta p { color: rgba(255,255,255,0.65); margin: 0 auto 34px; max-width: 620px; line-height: 1.8; }
footer { background: #2C2C2C; padding: 54px 48px 34px; color: rgba(244,239,234,0.65); }
.footer-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
footer h3 { color: var(--sand); font-size: 22px; margin-bottom: 8px; }
footer a { color: rgba(244,239,234,0.72); text-decoration: none; margin-right: 18px; font-size: 13px; }
footer a:hover { color: var(--rose); }
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { min-height: 560px; }
  .section, .cta { padding: 52px 20px; }
  .split, .cards, .proof-grid { grid-template-columns: 1fr; }
  .image-card img { min-height: 300px; }
  .footer-inner { display: block; }
  footer a { display: block; margin: 10px 0; }
}
