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

:root {
  --sand: #EEDBB9;
  --dark: #142833;
  --mid: #4a6741;
  --accent: #8B6914;
  --light: #f9f0e0;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--sand);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header ── */
header {
  background-color: var(--dark);
  color: #fff;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

header .header-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

header .site-title {
  padding: 1.2rem 1rem 0.4rem;
  font-size: 1.9rem;
  font-weight: normal;
  letter-spacing: 0.04em;
}

header .site-tagline {
  padding-bottom: 1rem;
  font-size: 0.95rem;
  color: #c8bfa8;
  font-style: italic;
}

/* ── Nav ── */
nav {
  background-color: var(--dark);
  border-top: 2px solid var(--accent);
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

nav ul li a {
  display: block;
  color: #e8dcc8;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.15s;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: var(--accent);
  color: #fff;
  text-decoration: none;
}

/* ── Layout ── */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* ── Page title ── */
h1.page-title {
  font-size: 1.6rem;
  font-weight: normal;
  color: var(--accent);
  border-bottom: 1px solid #cbb98a;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--dark);
  margin: 1.5rem 0 0.6rem;
}

p { margin-bottom: 1rem; }

ul.feature-list {
  margin: 0.5rem 0 1rem 1.5rem;
}

ul.feature-list li { margin-bottom: 0.3rem; }

/* ── Hero image block ── */
.hero-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hero-imgs img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 3px solid #cbb98a;
}

/* ── Contact block ── */
.contact-box {
  background: var(--light);
  border: 1px solid #cbb98a;
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
}

.contact-box p { margin-bottom: 0.4rem; }

/* ── Rates table ── */
table.rates {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
}

table.rates th, table.rates td {
  padding: 0.6rem 0.9rem;
  border: 1px solid #cbb98a;
  text-align: left;
}

table.rates th {
  background-color: var(--dark);
  color: #fff;
  font-weight: normal;
}

table.rates tr:nth-child(even) td { background-color: var(--light); }

/* ── Photo gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.gallery a {
  display: block;
  overflow: hidden;
  border: 2px solid #cbb98a;
}

.gallery a:hover { border-color: var(--accent); }

.gallery img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}

.gallery a:hover img { transform: scale(1.05); }

/* ── Suite cards ── */
.suite-card {
  background: var(--light);
  border: 1px solid #cbb98a;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.suite-card h2 { margin-top: 0; color: var(--accent); }

/* ── News posts ── */
.news-post {
  border-bottom: 1px solid #cbb98a;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.news-post .post-meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.6rem;
}

/* ── Reviews ── */
.review {
  background: var(--light);
  border-left: 4px solid var(--mid);
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  font-style: italic;
}

/* ── Footer ── */
footer {
  background-color: var(--dark);
  color: #c8bfa8;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
  margin-top: 3rem;
}

footer a { color: #c8bfa8; }

/* ── Lightbox (CSS-only) ── */
.lightbox-target {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox-target:target { display: flex; }

.lightbox-target img {
  max-width: 92vw;
  max-height: 92vh;
  border: 3px solid #fff;
}

.lightbox-target a.close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .hero-imgs { grid-template-columns: 1fr; }
  header .site-title { font-size: 1.4rem; }
  nav ul li a { padding: 0.55rem 0.7rem; font-size: 0.82rem; }
}
