@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream: #faf7f2;
  --sand: #eee6da;
  --ink: #2a2f33;
  --sea: #2f4e5c;
  --sea-dark: #1e343f;
  --terracotta: #c17a52;
  --terracotta-dark: #a5623d;
  --line: #e2dacb;
}

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

body {
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
}

h1, h2, h3, .brand {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--sea-dark);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.brand span {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.nav-links a {
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--terracotta);
}

.nav-cta {
  background: var(--sea);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--sea-dark); }

/* Hero */
.hero {
  position: relative;
  height: 74vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,30,35,0.15) 0%, rgba(15,25,30,0.68) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  max-width: 700px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--sand);
  margin-bottom: 14px;
  display: block;
}

.hero h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  color: #f1ede4;
  margin-bottom: 28px;
  max-width: 520px;
}

.btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  padding: 14px 30px;
  border-radius: 3px;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover { background: var(--terracotta-dark); }

.btn-outline {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding: 13px 29px;
  border-radius: 3px;
  margin-left: 14px;
  font-size: 0.95rem;
}

.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Sections */
section {
  padding: 90px 0;
}

section.tight { padding: 60px 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head .eyebrow { color: var(--terracotta); text-align: center; }

.section-head h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.section-head p { color: #565f63; }

.alt-bg { background: var(--sand); }

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.intro-grid img { border-radius: 4px; }

.intro-grid h2 { font-size: 2rem; margin-bottom: 18px; }
.intro-grid p { color: #4a5257; margin-bottom: 16px; }

/* Room cards */
.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.room-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(30,52,63,0.08);
}

.room-card img { height: 320px; object-fit: cover; width: 100%; }

.room-card-body { padding: 28px 30px 32px; }

.room-card-body h3 { font-size: 1.4rem; margin-bottom: 8px; }

.room-card-body .rate {
  color: var(--terracotta);
  font-size: 0.95rem;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.room-card-body p { color: #565f63; margin-bottom: 18px; }

/* Feature strip */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.feature-strip .icon {
  font-size: 1.6rem;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.feature-strip h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--sea-dark);
}

.feature-strip p { font-size: 0.9rem; color: #5c6468; }

/* Dogs feature */
.dogs-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.dogs-feature img { border-radius: 4px; }

.dogs-feature h2 { font-size: 1.9rem; margin-bottom: 16px; }
.dogs-feature p { color: #4a5257; margin-bottom: 14px; }

.dogs-feature .link-out {
  color: var(--sea);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 2px;
  font-size: 0.95rem;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.25s;
}

.gallery-grid img:hover { transform: scale(1.02); }

.gallery-grid figure { position: relative; }

.gallery-grid figcaption {
  font-size: 0.8rem;
  color: #6c7377;
  margin-top: 8px;
  letter-spacing: 0.2px;
}

/* Room detail page */
.room-detail {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.room-detail .photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.room-detail .photos img:first-child {
  grid-column: 1 / -1;
  height: 340px;
  object-fit: cover;
}

.room-detail .photos img { border-radius: 4px; height: 200px; object-fit: cover; }

.room-info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  position: sticky;
  top: 100px;
}

.room-info h3 { font-size: 1.5rem; margin-bottom: 4px; }
.room-info .rate { color: var(--terracotta); margin-bottom: 20px; font-size: 1.05rem; }

.amenity-list {
  list-style: none;
  margin: 18px 0 26px;
}

.amenity-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: #4a5257;
}

.amenity-list li:last-child { border-bottom: none; }

.booking-widget-slot {
  border: 1.5px dashed #c9bfa8;
  background: var(--sand);
  border-radius: 4px;
  padding: 26px 22px;
  text-align: center;
  color: #6c6252;
  font-size: 0.88rem;
  margin-top: 8px;
}

/* House rules */
.rules-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
}

.rules-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.rules-list .rule-label {
  min-width: 150px;
  font-family: 'Playfair Display', serif;
  color: var(--sea-dark);
  font-size: 0.95rem;
}

.rules-list p { color: #4a5257; font-size: 0.95rem; margin: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
}

.contact-card h3 { margin-bottom: 16px; font-size: 1.3rem; }
.contact-card p { color: #4a5257; margin-bottom: 10px; }

/* CTA band */
.cta-band {
  background: var(--sea-dark);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

.cta-band h2 { color: #fff; font-size: 2rem; margin-bottom: 14px; }
.cta-band p { color: #cfd8dc; margin-bottom: 28px; }

/* Footer */
footer {
  background: var(--sea-dark);
  color: #cfd8dc;
  padding: 50px 0 30px;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 34px;
}

footer h4 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}

footer .brand { color: #fff; margin-bottom: 12px; }
footer .brand span { color: var(--terracotta); }

footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a:hover { color: var(--terracotta); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  text-align: center;
  color: #8fa0a8;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .intro-grid, .room-grid, .dogs-feature, .room-detail, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .room-info { position: static; }
}
