/* ---------- Design tokens ---------- */
:root {
  --forest: #2f3d2f;
  --forest-dark: #202b20;
  --heather: #7a5c4f;
  --rust: #a3552e;
  --cream: #f6f1e7;
  --cream-alt: #efe7d8;
  --paper: #fffdf9;
  --ink: #2a2620;
  --ink-soft: #5b5548;
  --line: rgba(42, 38, 32, 0.12);
  --shadow: 0 20px 40px rgba(32, 27, 18, 0.12);
  --radius: 6px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 300;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--forest-dark);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; color: var(--rust); }

p { margin: 0 0 1em; color: var(--ink-soft); }

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

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--rust);
  margin-bottom: 0.8em;
  font-weight: 500;
}

.center { text-align: center; }
.eyebrow.center, .section-intro.center { margin-left: auto; margin-right: auto; }

.section-intro {
  max-width: 620px;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--rust);
  color: var(--cream);
}
.btn-primary:hover { background: #8a441f; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-outline {
  background: transparent;
  color: var(--forest-dark);
  border-color: var(--forest-dark);
}
.btn-outline:hover { background: var(--forest-dark); color: var(--cream); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.main-nav a:hover { color: var(--rust); }

.header-cta { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32,43,32,0.25) 0%, rgba(24,20,14,0.55) 75%, rgba(20,16,10,0.75) 100%);
}

.hero-content {
  position: relative;
  color: var(--cream);
  padding-bottom: 80px;
}

.hero-content .eyebrow { color: #e3c9a8; }
.hero-content h1 { color: var(--cream); }

.hero-sub {
  max-width: 560px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---------- Sections ---------- */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--cream);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse .col-img { order: 2; }
.two-col.reverse .col-text { order: 1; }

.col-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.area-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.area-facts p { font-size: 0.92rem; }

/* ---------- Rooms ---------- */
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 48px;
}

.room-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.room-body { padding: 32px; }

.room-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.room-features li {
  padding: 6px 0;
  border-top: 1px solid var(--line);
}
.room-features li:first-child { border-top: none; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial {
  margin: 0;
  background: var(--paper);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-avatar {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 4px var(--line);
}

.testimonial blockquote {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--forest-dark);
  font-style: italic;
}

.testimonial figcaption {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rust);
}

.video-block {
  margin-top: 72px;
  text-align: center;
}

.video-embed {
  position: relative;
  max-width: 760px;
  margin: 24px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb {
  display: block;
  cursor: pointer;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-thumb:hover img { transform: scale(1.04); }

.video-thumb .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20, 16, 10, 0.65);
  color: var(--cream);
  font-size: 1.6rem;
  padding-left: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-thumb:hover .play-button {
  background: var(--rust);
  transform: translate(-50%, -50%) scale(1.08);
}

/* ---------- Contact ---------- */
.map-embed {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.social-links {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.social-links a {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest-dark);
  border-bottom: 1px solid var(--rust);
  padding-bottom: 2px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-dark);
  color: rgba(246, 241, 231, 0.75);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner p { margin: 0; color: rgba(246, 241, 231, 0.75); font-size: 0.9rem; }

.site-footer .social-links a { color: rgba(246, 241, 231, 0.85); border-bottom-color: rgba(246, 241, 231, 0.4); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .two-col, .room-grid, .testimonial-grid, .area-facts {
    grid-template-columns: 1fr;
  }
  .two-col.reverse .col-img,
  .two-col.reverse .col-text { order: initial; }
  .section { padding: 64px 0; }
  .hero { min-height: 76vh; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .header-cta { display: none; }
}
