:root{
  --orange:#ff994e;
  --yellow:#ffda58;
  --blue:#0a57a2;
  --blueLight:#2692de;
  --ink:#0f172a;
  --text:#222;
  --muted:#5a5a5a;
  --bg:#fff;
  --radius:14px;
  --shadow:0 8px 30px rgba(0,0,0,.08);
  --max:1100px;
}
*{box-sizing:border-box}
body{margin:0;font:16px/1.55 Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;color:var(--text);background:var(--bg)}
h1,h2,h3{font-family:'Baloo 2', system-ui;margin:0 0 8px;color:var(--blue);line-height:1.1}
h1{font-size:clamp(28px,5vw,44px)}
h2{font-size:clamp(22px,3.4vw,30px)}
h3{font-size:20px}
p{margin:0 0 10px;color:var(--muted)}
a{text-decoration:none;color:var(--blue)}
a:hover{opacity:.92}
ul{margin:0;padding-left:18px;color:var(--muted)}
.container{max-width:var(--max);margin:auto;padding:0 20px}

.top{background:#fff;position:sticky;top:0;z-index:10;border-bottom:1px solid #eee}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:10px 20px;gap:12px}
.logo{height:56px;width:auto}
.nav{display:flex;gap:10px}

.hero{background:linear-gradient(135deg,var(--orange),var(--yellow));color:var(--ink);padding:48px 20px;text-align:center}
.hero-inner{max-width:var(--max);margin:auto;display:flex;align-items:center;gap:32px}
.hero-logo{flex:0 0 auto;width:250px;height:250px;margin:-35px 0}
.hero-copy{flex:1}
.hero p{color:var(--ink)}
.actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}

.banner{background:#fff3cd;border-top:1px solid #ffe08a;border-bottom:1px solid #ffe08a;color:#7a5200;font-weight:800;padding:10px 20px}
.banner-inner{max-width:var(--max);margin:auto}
.banner em{font-style:italic}

.section{padding:44px 20px}
.section.alt{background:#f8fafc}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{background:#fff;border:1px solid #eee;border-radius:var(--radius);padding:16px;box-shadow:var(--shadow)}
.card-large{padding:20px}
.price{font-size:22px;font-weight:800;color:#111;margin:0 0 10px}

.dl-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.dl-grid .map{grid-column:1 / -1}
.map iframe{width:100%;height:240px;border:0;border-radius:var(--radius)}

.btn{display:inline-block;padding:10px 16px;border-radius:12px;font:inherit;font-weight:800;border:2px solid transparent;color:var(--ink);background:#fff;cursor:pointer}
.btn-primary{background:var(--blue);color:#fff}
.btn-secondary{background:var(--blueLight);color:#fff}
.btn:hover{opacity:.92}

.book-form label{display:block;font-weight:700;margin-top:10px}
.book-form input,.book-form textarea{width:100%;padding:10px;margin-top:6px;border:1px solid #ccd;border-radius:12px;font-size:14px}
.two-col{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.contact-group{margin-top:14px}
.contact-group>.lbl{font-weight:700;margin-bottom:8px}
.radios{display:flex;gap:20px}
.radios label{display:flex;align-items:center;gap:8px;font-weight:400;color:var(--muted);margin-top:0}
.radios input{width:18px;height:18px;margin:0;accent-color:var(--blue)}
.book-form .actions{justify-content:flex-start;margin-top:12px}

.foot{background:#0b1020;color:#cbd5e1;padding:18px 20px;margin-top:20px}
.foot-inner{max-width:var(--max);margin:auto;font-size:13px}
.foot a{color:#dbeafe}

@media (max-width:900px){
  .cards{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .dl-grid{grid-template-columns:1fr}
  .hero-inner{flex-direction:column;gap:0}
  .hero-logo{width:200px;height:200px;margin:-20px 0 0}
}
