/* styles.css - mobile-first responsive styles */
:root{
  --container: 1100px;
  --brand-green: #284033;
  --muted: #6b6b6b;
  --accent: #c9a24f;
  --bg: #fffaf7;
  --text:#222;
  --radius:12px;
  --gutter:16px;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

*{box-sizing:border-box}
body{margin:0;color:var(--text);background:var(--bg);-webkit-font-smoothing:antialiased}
.container{max-width:var(--container);margin:0 auto;padding:0 16px}

.site-header{background:#fff;position:sticky;top:0;z-index:30;border-bottom:1px solid #eee}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.logo{height:100px}
.brand{display:flex;align-items:center;text-decoration:none;color:inherit}
.nav{display:flex;gap:12px;align-items:center}
.nav a{color:var(--text);text-decoration:none;padding:8px 10px;border-radius:8px;font-weight:600}
.nav a.cta{background:var(--brand-green);color:#fff;padding:8px 14px}
.nav-toggle{display:inline-flex;flex-direction:column;gap:4px;border:0;background:none;padding:8px;cursor:pointer}
.nav-toggle span{display:block;width:22px;height:2px;background:#444;border-radius:2px}

.hero{position:relative;overflow:hidden;border-bottom:1px solid #f0ebe6;padding-bottom:28px}
.hero-img{width:100%;height:52vw;object-fit:cover;filter:brightness(.9)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.6))}
.hero-inner{position:absolute;left:0;right:0;top:10%;text-align:center;padding:0 16px}
.status{background:rgba(255,255,255,0.8);display:inline-block;padding:6px 10px;border-radius:8px;color:var(--muted);font-weight:700;margin-bottom:10px}
h1{margin:10px 0 6px;font-family:'Playfair Display', serif;font-size:28px}
.lead{color:var(--muted);max-width:720px;margin:0 auto 12px}

.hero-ctas{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.btn{background:var(--brand-green);color:#fff;padding:10px 14px;border-radius:10px;text-decoration:none;font-weight:700}
.btn-outline{border:1px solid var(--brand-green);color:var(--brand-green);padding:9px 12px;border-radius:10px;text-decoration:none}

.section{padding:24px 0}
.section h2{font-family:'Playfair Display', serif;font-size:20px;margin:0 0 8px}
.muted{color:var(--muted)}

.rooms-grid{display:grid;grid-template-columns:1fr;gap:14px;margin-top:12px}
.rooms-grid figure{background:#fff;padding:10px;border-radius:12px;display:flex;gap:12px;align-items:center;box-shadow:0 6px 18px rgba(23,23,23,0.04)}
.rooms-grid img{width:110px;height:86px;object-fit:cover;border-radius:8px}
.rooms-grid h3{margin:0;font-size:16px;font-weight:700}
.rooms-grid p{margin:6px 0 0;color:var(--muted);font-size:13px}

.sell-options{display:grid;gap:12px;margin-top:12px}
.sell-options article{background:#fff;padding:12px;border-radius:12px;box-shadow:0 6px 18px rgba(23,23,23,0.04)}

.cafe-grid{display:grid;grid-template-columns:1fr;gap:12px;align-items:center}
.cafe-grid img{width:100%;height:220px;object-fit:cover;border-radius:12px}
.map-cta{margin-top:12px}

.site-footer{border-top:1px solid #eee;padding:18px 0;background:#fff}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap}

/* responsive: >=640 */
@media(min-width:640px){
  h1{font-size:40px}
  .rooms-grid{grid-template-columns:1fr 1fr}
  .cafe-grid{grid-template-columns:380px 1fr;gap:20px}
  .nav-toggle{display:none}
}

/* responsive: >=1000 */
@media(min-width:1000px){
  .hero-img{height:40vw}
  .rooms-grid figure{padding:14px}
  .rooms-grid img{width:150px;height:110px}
}
