* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", sans-serif;
  background: #faf7f2;
  color: #2b2b2b;
}

a {
  color: #2f6f4f;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-weight: bold;
  font-size: 1.1rem;
  color: #2b2b2b;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav a {
  text-decoration: none;
  color: #2b2b2b;
  font-size: 0.9rem;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px 64px;
}

section {
  margin-top: 56px;
}

h1 {
  font-size: 1.8rem;
  text-align: center;
  margin: 16px 0 8px;
}

h2 {
  font-size: 1.3rem;
  border-bottom: 2px solid #d8cdb8;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.hero {
  text-align: center;
  margin-top: 24px;
}

.hero-photo {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.hero-tagline {
  color: #6b6b6b;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #2f6f4f;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.placeholder-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #f0ece2, #f0ece2 10px, #e8e2d4 10px, #e8e2d4 20px);
  border: 1px dashed #b7ac96;
  color: #8a7f66;
  font-size: 0.9rem;
  text-align: center;
  padding: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.amenities-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
}

.amenities-list li {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.95rem;
}

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

.area-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
}

.area-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.area-card p {
  margin: 0;
  color: #6b6b6b;
  font-size: 0.9rem;
}

#access p {
  margin: 4px 0;
}

.site-footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  text-align: center;
  color: #6b6b6b;
  font-size: 0.9rem;
}

.site-footer .btn {
  margin-bottom: 12px;
}
