:root{
  --sr-rose: #F6CED8;
  --sr-olive: #A3B18A;
  --sr-slate: #2B3A42;
  --sr-cream: #FFF8F2;
  --sr-gold: #E4B85A;
  --max-width: 1100px;
}
*{box-sizing:border-box}
body{font-family: 'Lato', Arial, system-ui, -apple-system; margin:0; color:var(--sr-slate); background:var(--sr-cream);}
.container{max-width:var(--max-width); margin:0 auto; padding:24px;}
.header{position:sticky; top:0; backdrop-filter: blur(6px); background: rgba(255,248,242,0.85); display:flex; align-items:center; justify-content:space-between; gap:20px; padding:12px 24px; border-bottom:1px solid rgba(43,58,66,0.06); z-index:1000;}
.brand{display:flex; align-items:center; gap:12px;}
.brand img{height:56px;}
.nav a{margin-left:18px; color:var(--sr-slate); text-decoration:none; font-weight:600;}
.hero{display:flex; gap:40px; align-items:center; margin-top:32px; flex-wrap:wrap; padding:40px 0;}
.hero-left{flex:1; min-width:280px;}
.hero-right{flex:1; min-width:280px; background:linear-gradient(90deg,var(--sr-rose),var(--sr-olive)); color:white; padding:24px; border-radius:18px;}
h1{font-family:'Playfair Display', serif; font-size:44px; margin:0 0 12px 0; color:var(--sr-slate);}
.lead{font-size:18px; color:rgba(43,58,66,0.85); margin-bottom:18px;}
.cta{display:inline-block; padding:12px 18px; border-radius:12px; background:var(--sr-olive); color:white; text-decoration:none; margin-right:8px; box-shadow:0 6px 18px rgba(163,177,138,0.14);}
.card-row{display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:16px; margin-top:24px;}
.card{background:white; padding:18px; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,0.06);}
.section{padding:48px 0;}
.form-box{background:white; padding:20px; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,0.06); max-width:700px;}
.input{width:100%; padding:12px; border-radius:8px; border:1px solid rgba(43,58,66,0.12); margin-bottom:12px;}
.btn{display:inline-block; padding:12px 18px; border-radius:12px; background:var(--sr-rose); color:var(--sr-slate); text-decoration:none; font-weight:700; border:0; cursor:pointer;}
.footer{margin-top:48px; padding:24px 0; border-top:1px solid rgba(0,0,0,0.06); text-align:center; font-size:14px; color:rgba(43,58,66,0.8);}
.socials a{margin:0 8px; color:var(--sr-slate); text-decoration:none; font-weight:600;}
@media(max-width:800px){
  h1{font-size:32px;}
  .header{padding:10px;}
  .brand img{height:44px;}
}