: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; }
.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 26px; padding: 0; }
.hotel-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.hotel-list li:last-child { border-bottom: none; }
.hotel-list a { font-weight: bold; text-decoration: none; }
.hotel-list a:hover { text-decoration: underline; }
.hotel-list li.has-photo { display: flex; gap: 14px; align-items: flex-start; padding: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; background: var(--card); }
.hotel-list li.has-photo:last-child { margin-bottom: 10px; }
.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; }
.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); }
.back-link { display: inline-block; margin-top: 10px; font-size: 14px; }
.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 { max-width: 520px; margin-top: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: bold; font-size: 14px; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  padding: 10px 12px;
  font: 15px/1.5 Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 7px;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.field textarea { resize: vertical; }
.contact-form .btn { border: none; cursor: pointer; font: bold 15px Georgia, 'Times New Roman', serif; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.alert { border-radius: 8px; padding: 14px 16px; margin: 18px 0; font-size: 15px; }
.alert-success { background: #e7f3ec; border: 1px solid var(--accent); color: var(--accent); }
.alert-error { background: #fbeaea; border: 1px solid #c0392b; color: #c0392b; }
.recaptcha-note { font-size: 12px; color: var(--muted); margin-top: 14px; }
