:root {
  --cream: #F5EDE0;
  --warm-white: #FAF7F2;
  --linen: #EDE5D8;
  --honey: #C4993B;
  --barn-red: #7A2E2E;
  --barn-red-light: #9B4A4A;
  --timber: #3E2C1C;
  --text: #2E2318;
  --text-soft: #5C4F42;
  --stone: #8E8578;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--text); background: var(--warm-white);
  line-height: 1.65; overflow-x: hidden;
}

nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 3rem;
  background: rgba(250, 247, 242, 0.95);
  border-bottom: 1px solid rgba(62, 44, 28, 0.08);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--timber); text-decoration: none;
}
.nav-brand span { color: var(--barn-red); }
.nav-back {
  font-size: 0.8rem; color: var(--text-soft);
  text-decoration: none; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.nav-back:hover { color: var(--barn-red); }

.room-hero {
  width: 100%; height: 55vh; min-height: 350px;
  overflow: hidden;
}
.room-hero img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
}

.room-content {
  max-width: 900px; margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.room-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--barn-red);
  font-weight: 600; margin-bottom: 0.5rem;
}
.room-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--timber);
  margin-bottom: 1.5rem; line-height: 1.15;
}

.room-poem {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.15rem;
  color: var(--text-soft); line-height: 1.8;
  border-left: 3px solid var(--honey);
  padding: 1rem 0 1rem 1.5rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.room-desc {
  font-size: 1rem; color: var(--text-soft);
  line-height: 1.8; margin-bottom: 2rem;
}

.room-details {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.detail-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--cream);
  border-radius: 4px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--timber);
}
.detail-tag .dot {
  width: 5px; height: 5px;
  background: var(--honey); border-radius: 50%;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.room-gallery img {
  width: 100%; height: 280px;
  object-fit: cover; border-radius: 4px;
  cursor: pointer;
  transition: transform 0.4s;
}
.room-gallery img:hover { transform: scale(1.02); }

.other-rooms {
  border-top: 1px solid var(--linen);
  padding-top: 2.5rem;
}
.other-rooms h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--timber);
  margin-bottom: 1.25rem;
}
.other-rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.other-room-card {
  position: relative; overflow: hidden;
  height: 160px; border-radius: 4px;
  text-decoration: none;
}
.other-room-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.other-room-card:hover img { transform: scale(1.08); }
.other-room-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.75rem;
  background: linear-gradient(to top, rgba(46,35,24,0.85), transparent);
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem; color: var(--cream);
  font-weight: 700;
}

.room-cta {
  text-align: center; padding: 3rem 2rem;
  background: var(--cream);
  margin-top: 2rem;
}
.room-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--timber);
  margin-bottom: 0.5rem;
}
.room-cta p {
  color: var(--text-soft); font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-block; padding: 0.9rem 2.2rem;
  background: var(--barn-red); color: var(--cream);
  text-decoration: none; font-family: 'Source Serif 4', serif;
  font-size: 0.8rem; letter-spacing: 0.06em;
  font-weight: 600; border-radius: 4px;
  transition: all 0.35s;
}
.btn:hover { background: var(--barn-red-light); }

.nearby-bar {
  max-width: 1100px; margin: 0 auto;
  padding: 1.5rem 2rem 1rem; text-align: center;
}
.nearby-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 0.75rem;
}
.nearby-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.nearby-links a {
  font-size: 0.75rem; font-weight: 600; text-decoration: none;
  padding: 0.4rem 0.8rem; border-radius: 3px;
  background: var(--cream); color: var(--text-soft);
  transition: background 0.3s, color 0.3s;
}
.nearby-links a:hover { background: var(--barn-red); color: var(--cream); }
.nearby-links a span {
  font-weight: 400; font-size: 0.65rem; color: var(--stone);
  margin-left: 0.2rem;
}
.nearby-links a:hover span { color: rgba(245,237,224,0.7); }

footer {
  text-align: center; padding: 2rem;
  font-size: 0.75rem; color: var(--stone);
  border-top: 1px solid var(--linen);
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .room-hero { height: 40vh; min-height: 250px; }
  .room-content { padding: 2rem 1.5rem 3rem; }
  .room-gallery { grid-template-columns: 1fr; }
  .room-gallery img { height: 240px; }
  .other-rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .room-details { gap: 0.75rem; }
}
