*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1A1C22;
  --blue:   #185FA5;
  --teal:   #0F6E56;
  --slate:  #2c3e50;
  --amber:  #BA7517;
  --purple: #534AB7;
  --coral:  #993C1D;
  --gray:   #5F5E5A;
  --pink:   #993556;
  --bg:     #F7F6F3;
  --surface:#FFFFFF;
  --border: rgba(0,0,0,0.1);
  --text:   #1A1A18;
  --muted:  #6B6A66;
  --faint:  #9A9994;
}

body { font-family:'Inter',system-ui,sans-serif; background:var(--bg); color:var(--text); line-height:1.6; }

.nav {
  background:linear-gradient(90deg,#051a24 0%,var(--navy) 42%,#0a0c0f 100%);
  padding:0 clamp(1rem,3vw,2rem);
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:64px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(1.05rem,2.4vw,1.3rem);
  font-style:italic;
  font-weight:400;
  letter-spacing:-0.02em;
  color:#fff;
  text-decoration:none;
}
.nav-right { display:flex; align-items:center; gap:1rem 1.25rem; flex-wrap:wrap; justify-content:flex-end; }
.nav-links { display:flex; flex-wrap:wrap; align-items:center; justify-content:flex-end; gap:.5rem 1.25rem; }
.nav-links a { color:rgba(255,255,255,0.78); text-decoration:none; font-size:14px; font-weight:500; transition:color .15s; }
.nav-links a:hover { color:#fff; }
.nav-cta { background:#8B2323; color:#fff !important; padding:8px 18px; border-radius:999px; font-weight:700; font-size:14px; transition:background .2s; }
.nav-cta:hover { background:#6e1b1b !important; }

/* HAMBURGER */
.nav-hamburger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  background:none;border:none;cursor:pointer;padding:6px;
  width:36px;height:36px;
}
.nav-hamburger span{
  display:block;width:22px;height:2px;background:#fff;border-radius:2px;
  transition:transform .25s,opacity .25s;
}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-hamburger.open span:nth-child(2){opacity:0;}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.nav-mobile-drawer{
  display:none;flex-direction:column;
  background:linear-gradient(180deg,#051a24 0%,var(--navy) 100%);
  padding:1rem 1.5rem 1.5rem;gap:.75rem;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.nav-mobile-drawer a{
  color:rgba(255,255,255,0.85);text-decoration:none;font-size:15px;font-weight:500;
  padding:.4rem 0;border-bottom:1px solid rgba(255,255,255,0.07);
}
.nav-mobile-drawer a:last-child{border-bottom:none;}
.nav-mobile-drawer a:hover{color:#fff;}
.nav-book--drawer,.nav-cta--drawer{
  margin-top:.5rem;text-align:center;
  background:#8B2323 !important;
  padding:10px 18px !important;border-radius:999px !important;
  font-weight:700 !important;font-size:14px !important;
  border-bottom:none !important;color:#fff !important;
}

@media(max-width:640px){
  .nav-links{display:none;}
  .nav-hamburger{display:flex;}
  .nav-mobile-drawer.open{display:flex;}
}

.hero { background:linear-gradient(135deg,#1a2835 0%,var(--navy) 50%,var(--slate) 100%); padding:5rem 2rem 4rem; text-align:center; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; top:-80px; right:-80px; width:400px; height:400px; border-radius:50%; background:rgba(255,255,255,0.04); }
.hero-eyebrow { font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:#a8c4d4; font-weight:500; margin-bottom:1rem; }
.hero h1 { font-family:'Lora',Georgia,serif; font-size:clamp(2rem,5vw,3.25rem); font-weight:400; color:#fff; margin-bottom:1rem; line-height:1.2; }
.hero p { font-size:17px; color:rgba(255,255,255,.75); max-width:540px; margin:0 auto 2rem; }
.hero-book { display:inline-block; background:#8B2323; color:#fff; text-decoration:none; padding:14px 32px; border-radius:30px; font-size:15px; font-weight:500; transition:background .2s,transform .1s; }
.hero-book:hover { background:#6e1b1b; transform:translateY(-1px); }

.stats-bar { background:var(--surface); border-bottom:1px solid var(--border); display:flex; justify-content:center; gap:4rem; padding:1.25rem 2rem; flex-wrap:wrap; }
.stat { text-align:center; }
.stat-num { font-family:'Lora',Georgia,serif; font-size:22px; color:#1A1C22; }
.stat-label { font-size:12px; color:var(--muted); margin-top:2px; }

.map-section { background:var(--surface); border-bottom:1px solid var(--border); }
.map-inner { max-width:1100px; margin:0 auto; padding:2rem 1.5rem; }
.map-header { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; margin-bottom:1rem; }
.map-header h2 { font-family:'Lora',Georgia,serif; font-size:22px; font-weight:400; }
.location-btn {
  display:flex; align-items:center; gap:8px;
  background:transparent; border:1px solid var(--border);
  border-radius:8px; padding:8px 16px; font-size:13px;
  font-family:inherit; color:var(--text); cursor:pointer;
  transition:all .15s;
}
.location-btn:hover { border-color:#888; background:var(--bg); }
.location-btn svg { flex-shrink:0; }
.map-wrapper { border-radius:12px; overflow:hidden; border:1px solid var(--border); position:relative; }
.map-wrapper iframe { display:block; width:100%; height:420px; border:none; }
.map-note { font-size:12px; color:var(--faint); margin-top:0.5rem; }
#dist-display { font-size:13px; color:var(--teal); font-weight:500; display:none; margin-top:0.5rem; }

.container { max-width:1100px; margin:0 auto; padding:2.5rem 1.5rem; }

.toolbar { display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin-bottom:1.25rem; }
.chip { padding:6px 16px; border-radius:24px; border:1px solid var(--border); background:var(--surface); color:var(--muted); font-size:13px; font-family:inherit; cursor:pointer; transition:all .15s; white-space:nowrap; }
.chip:hover { border-color:#aaa; color:var(--text); }
.chip.active { color:#fff; border-color:transparent; }
.chip[data-cat="all"].active      { background:var(--navy); }
.chip[data-cat="nature"].active   { background:var(--teal); }
.chip[data-cat="landmark"].active { background:var(--blue); }
.chip[data-cat="dining"].active   { background:var(--amber); }
.chip[data-cat="family"].active   { background:var(--purple); }
.chip[data-cat="history"].active  { background:var(--gray); }
.chip[data-cat="adventure"].active{ background:var(--coral); }
.chip[data-cat="nightlife"].active{ background:var(--pink); }

.toggle-row { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:1.25rem; align-items:center; }
.toggle-label { font-size:12px; color:var(--muted); }
.toggle-btn { padding:4px 12px; border-radius:16px; border:1px solid var(--border); background:var(--surface); color:var(--muted); font-size:12px; font-family:inherit; cursor:pointer; transition:all .15s; }
.toggle-btn.on { background:#E1F5EE; color:#0F6E56; border-color:#1D9E75; }

.search-row { display:flex; gap:10px; margin-bottom:1.25rem; align-items:center; flex-wrap:wrap; }
.search-row input { flex:1; min-width:200px; padding:9px 16px; border:1px solid var(--border); border-radius:8px; font-size:14px; font-family:inherit; background:var(--surface); color:var(--text); outline:none; transition:border-color .15s; }
.search-row input:focus { border-color:var(--blue); }
.sort-select { padding:9px 16px; border:1px solid var(--border); border-radius:8px; font-size:14px; font-family:inherit; background:var(--surface); color:var(--text); outline:none; cursor:pointer; }
.results-count { font-size:13px; color:var(--muted); margin-bottom:1rem; }

.grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:16px; }

.card { background:var(--surface); border:1px solid var(--border); border-radius:14px; overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .2s,transform .15s; }
.card:hover { box-shadow:0 4px 20px rgba(0,0,0,.09); transform:translateY(-2px); }
.card-accent { height:5px; }
.cat-nature    .card-accent { background:#1D9E75; }
.cat-landmark  .card-accent { background:#185FA5; }
.cat-dining    .card-accent { background:#BA7517; }
.cat-family    .card-accent { background:#7F77DD; }
.cat-history   .card-accent { background:#888780; }
.cat-adventure .card-accent { background:#D85A30; }
.cat-nightlife .card-accent { background:#D4537E; }

.card-body { padding:1.25rem; flex:1; display:flex; flex-direction:column; }
.card-top { display:flex; justify-content:space-between; align-items:flex-start; gap:10px; margin-bottom:0.5rem; }
.card h2 { font-family:'Lora',Georgia,serif; font-size:17px; font-weight:400; color:var(--text); line-height:1.3; }

.badge-row { display:flex; gap:5px; flex-wrap:wrap; margin-bottom:6px; }
.badge { font-size:10px; font-weight:500; padding:3px 9px; border-radius:12px; white-space:nowrap; }
.badge-nature    { background:#E1F5EE; color:#0F6E56; }
.badge-landmark  { background:#E6F1FB; color:#185FA5; }
.badge-dining    { background:#FAEEDA; color:#854F0B; }
.badge-family    { background:#EEEDFE; color:#534AB7; }
.badge-history   { background:#F1EFE8; color:#5F5E5A; }
.badge-adventure { background:#FAECE7; color:#993C1D; }
.badge-nightlife { background:#FBEAF0; color:#993556; }
.badge-free      { background:#EAF3DE; color:#3B6D11; font-weight:600; }
.badge-kid       { background:#EEEDFE; color:#534AB7; }
.badge-dog       { background:#FAEEDA; color:#854F0B; }

.card-desc { font-size:13px; color:var(--muted); line-height:1.6; margin-bottom:.75rem; flex:1; }
.card-meta { font-size:12px; color:var(--faint); display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-bottom:.75rem; }
.stars { color:#BA7517; font-weight:500; }

.tag-row { display:flex; gap:5px; flex-wrap:wrap; margin-bottom:.75rem; }
.tag { font-size:11px; padding:2px 8px; border:1px solid var(--border); border-radius:10px; color:var(--muted); }

.drive-row { font-size:12px; color:var(--faint); margin-bottom:.75rem; display:flex; align-items:center; gap:5px; flex-wrap:wrap; }
.drive-dist { color:var(--teal); font-weight:500; }

.card-link { display:inline-block; font-size:13px; color:var(--blue); text-decoration:none; font-weight:500; transition:color .15s; }
.card-link:hover { color:var(--navy); text-decoration:underline; }

.promo { background:linear-gradient(135deg,var(--navy),var(--slate)); border-radius:16px; padding:3rem 2.5rem; text-align:center; margin-top:3rem; color:#fff; }
.promo h2 { font-family:'Lora',Georgia,serif; font-size:28px; font-weight:400; margin-bottom:.75rem; }
.promo p { font-size:16px; color:rgba(255,255,255,.75); margin-bottom:1.75rem; max-width:480px; margin-left:auto; margin-right:auto; }
.promo a { display:inline-block; background:#8B2323; color:#fff; text-decoration:none; padding:14px 32px; border-radius:30px; font-size:15px; font-weight:500; transition:background .2s; }
.promo a:hover { background:#6e1b1b; }

/* Site footer: partials/site_footer.html + site-footer.css */
.site-footer { margin-top: 4rem; }

.empty { text-align:center; padding:3rem; color:var(--muted); font-size:15px; }

@media(max-width:640px){
  .nav-links { display:none; }
  .hero { padding:3rem 1.5rem; }
  .stats-bar { gap:2rem; }
  .grid { grid-template-columns:1fr; }
  .map-header { flex-direction:column; align-items:flex-start; }
}
