
:root{
  --brand-green:#1D3526;
  --brand-green-2:#3E5B35;
  --brand-gold:#E4D2B2;
  --bg:#FAF6EF;
  --text:#2B2B2B;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:var(--bg)}
h1,h2,h3,h4{font-family:'EB Garamond',serif;color:var(--brand-green)}
.container{max-width:1100px;margin:0 auto;padding:0 16px}
.topbar{position:sticky;top:0;background:#fff;border-bottom:1px solid #ebebeb;z-index:20}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:10px 0}
.brand-logo{height:48px;width:auto}
.menu a{margin:0 8px;text-decoration:none;color:#27413c;font-weight:600}
.menu .cta{background:var(--brand-green);color:#fff;padding:10px 14px;border-radius:999px}
.hero{background-size:cover;background-position:center;min-height:70vh;display:grid;place-items:center}
.hero .overlay{background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.45));color:#fff;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:40px}
.hero h1{font-size:46px;color:#fff;margin:0 0 10px}
.hero p{font-size:20px;margin:0 0 20px}
.btn{display:inline-block;background:var(--brand-green);color:#fff;padding:12px 20px;border-radius:12px;text-decoration:none;font-weight:700}
.btn.outline{background:transparent;color:#fff;border:2px solid #fff}
.section{padding:60px 0}
.section.alt{background:#fff}
.lead{font-size:18px}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;margin-top:20px}
.card{background:#fff;border-radius:16px;padding:16px;box-shadow:0 5px 25px rgba(0,0,0,.05)}
.card img{width:100%;height:180px;object-fit:cover;border-radius:12px}
.card h3{margin:10px 0 8px}
.grid2{display:grid;grid-template-columns:1fr;gap:24px}
.shadow{border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.12);width:100%}
@media(min-width:860px){.grid2{grid-template-columns:1.2fr .8fr}}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}
.gallery-grid img{width:100%;border-radius:12px}
.contact .form{display:flex;flex-direction:column;gap:12px;background:#fff;border-radius:16px;padding:16px;box-shadow:0 10px 30px rgba(0,0,0,.06)}
.form input,.form textarea{padding:12px;border:1px solid #ddd;border-radius:10px;font:inherit}
.form textarea{min-height:120px;resize:vertical}
.form .hp{display:none}
.contact-box{background:#fff;border-radius:16px;padding:16px;box-shadow:0 10px 30px rgba(0,0,0,.06)}
.footer{background:#0e1b21;color:#f5f5f5;padding:40px 0;margin-top:20px}
.footer a{color:#f5f5f5;text-decoration:none}
.footer h4,.footer h5{color:var(--brand-gold);margin:0 0 10px;font-family:'EB Garamond',serif}
.copy{opacity:.9;margin-top:14px;text-align:center}
.grid3{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px}
.center{text-align:center}
.small{font-size:12px;color:#666}
