/* Very lightweight CSS inspired by the reference layout */
:root{
  --bg:#f6f2ee;
  --text:#3b2f2a;
  --muted:#827a74;
  --accent:#9a5f2d;
  --btn-bg:#8a5a33;
  --max-width:1100px;
  --gap:40px;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family: 'Helvetica Neue', Arial, sans-serif;background:var(--bg);color:var(--text)}
.wrapper{max-width:var(--max-width);margin:40px auto;display:grid;grid-template-columns:1fr 1fr;gap:var(--gap);align-items:center;padding:20px}
.left{padding:10px}
.hero{width:100%;height:auto;display:block;border-radius:4px;object-fit:cover;box-shadow:0 6px 18px rgba(0,0,0,0.12)}
.right{padding:30px}
.title{font-size:56px;line-height:0.9;margin:0 0 12px 0;font-weight:800;letter-spacing:-1px}
.title .line1{color:var(--text)}
.title .line2{color:var(--accent)}
.accent{width:70px;height:6px;background:var(--accent);border-radius:3px;margin:18px 0}
.lead{color:var(--muted);font-size:18px;line-height:1.7;margin:8px 0 18px 0}
.info{color:var(--muted);font-size:16px;line-height:1.6;margin-bottom:18px}
.contact-label{margin:8px 0 12px 0;color:var(--text);font-size:16px}
.email-btn{display:inline-block;padding:12px 20px;border-radius:8px;background:var(--btn-bg);color:#fff;text-decoration:none;font-weight:600;margin-bottom:18px}
.divider{border:none;border-top:1px solid rgba(0,0,0,0.06);margin:22px 0}
.footer-note{color:var(--muted);font-size:14px;margin:0}

/* Responsive */
@media(max-width:900px){
  .wrapper{grid-template-columns:1fr;gap:20px;padding:12px}
  .title{font-size:40px}
}
