:root {
  --ink: #1c2b24;
  --muted: #5b6b63;
  --accent: #2f6b4f;
  --bg: #fbfaf7;
  --card: #ffffff;
  --border: #e3e0d8;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font: 16px/1.6 Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--bg);
}
.wrap { max-width: 920px; margin: 0 auto; padding: 0 20px; }
a { color: var(--accent); }
.site-header { background: var(--card); border-bottom: 1px solid var(--border); padding: 16px 0; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.logo { font-weight: bold; font-size: 20px; text-decoration: none; color: var(--ink); font-family: Georgia, serif; }
.site-header nav a { margin-left: 16px; text-decoration: none; font-size: 14px; color: var(--muted); }
.site-header nav a:hover { color: var(--accent); }
main { padding: 40px 0 60px; }
h1 { font-size: 32px; margin: 0 0 6px; }
h2 { font-size: 22px; margin: 34px 0 10px; }
.lede { color: var(--muted); font-size: 18px; margin-bottom: 28px; }
.hero { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 28px; margin-bottom: 30px; }
.hero-photo { margin: 12px 0 24px; }
.hero-photo img { width: 100%; max-height: 360px; object-fit: cover; border-radius: 10px; display: block; }
.hero-photo figcaption { font-size: 11px; color: var(--muted); margin-top: 5px; }
.hero-photo figcaption a { color: var(--muted); }
.btn { display: inline-block; background: var(--accent); color: #fff; padding: 11px 20px; border-radius: 7px; text-decoration: none; font-size: 15px; font-weight: bold; }
.btn:hover { opacity: .9; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 20px 0; }
.area-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 18px; }
.area-card h3 { margin: 0 0 6px; font-size: 17px; }
.area-card p { margin: 0 0 12px; color: var(--muted); font-size: 14px; }
.hotel-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 10px; }
.hotel-list li { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; }
.hotel-list li.has-photo { display: flex; gap: 14px; align-items: flex-start; padding: 0; overflow: hidden; }
.hotel-list .hotel-thumb { flex: 0 0 140px; align-self: stretch; }
.hotel-list .hotel-thumb img { width: 140px; height: 100%; min-height: 100px; object-fit: cover; display: block; }
.hotel-list .hotel-body { padding: 12px 16px 12px 0; flex: 1 1 auto; }
.hotel-list a { text-decoration: none; font-weight: bold; }
.hotel-list a:hover { text-decoration: underline; }
.site-footer { border-top: 1px solid var(--border); padding: 24px 0 40px; margin-top: 40px; color: var(--muted); font-size: 13px; }
.site-footer a { color: var(--muted); }
.disclosure { font-size: 12px; color: #8b8b8b; }

.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 24px; margin-top: 20px; max-width: 520px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: bold; font-size: 14px; margin-bottom: 6px; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  font: inherit;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}
.form-field textarea { resize: vertical; }
.contact-form .btn { border: none; cursor: pointer; }
.form-honeypot { position: absolute; left: -9999px; top: -9999px; }
.form-errors { background: #fbeaea; border: 1px solid #e3b8b8; border-radius: 8px; padding: 14px 18px; margin-bottom: 20px; color: #7a2020; }
.form-errors ul { margin: 0; padding-left: 18px; }
