:root {
  --green-900: #2f4433;
  --green-700: #4c6b52;
  --green-500: #6f9377;
  --green-100: #e7efe8;
  --green-050: #f3f8f3;
  --gray-900: #2b2b28;
  --gray-600: #63625c;
  --gray-300: #d9d7d0;
  --gray-100: #f4f3ef;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(47, 68, 51, 0.08);
  --max-width: 1120px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  color: var(--green-900);
  margin: 0 0 0.4em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--gray-600); }

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-700);
  margin: 0 0 0.6em;
}

.muted { color: var(--gray-600); font-size: 0.9rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-300);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-900);
}

.brand-dot { color: var(--green-500); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a { color: var(--gray-900); transition: color 0.15s; }
.nav a:hover { color: var(--green-700); }

.nav-cta {
  background: var(--green-700);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--green-900); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--green-900);
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--green-900); transform: translateY(-1px); }

.btn-ghost {
  border: 1.5px solid var(--green-700);
  color: var(--green-900);
}
.btn-ghost:hover { background: var(--green-100); }

/* Placeholder media blocks */
.placeholder-block {
  position: relative;
  background: linear-gradient(135deg, var(--green-100), var(--gray-100));
  border: 1.5px dashed var(--green-500);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-block::after {
  content: attr(data-label);
  color: var(--green-700);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 0 20px;
  opacity: 0.85;
}

/* Hero */
.hero {
  position: relative;
  padding-top: 40px;
}
.hero-media {
  height: 480px;
  margin: 0 24px;
  border-radius: var(--radius);
}
.hero-copy {
  text-align: center;
  padding: 48px 24px 0;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 40px;
}
.hero-stats {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 28px 0 8px;
  margin: 0;
  border-top: 1px solid var(--gray-300);
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-stats strong {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--green-900);
}
.hero-stats span {
  font-size: 0.78rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--green-050); }
.section-sub { max-width: 620px; font-size: 1.02rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col-media { min-height: 340px; }

/* Amenities */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 28px;
}
.amenity-icon { font-size: 1.6rem; margin-bottom: 10px; }
.amenity-card p { margin-bottom: 0; font-size: 0.94rem; }

/* Rooms */
.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.room-media { min-height: 160px; margin-bottom: 14px; }
.room-card h3 { margin-bottom: 0.2em; }
.room-card p { margin-bottom: 0; font-size: 0.92rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.gallery-media { min-height: 170px; }

/* Book */
.section-book {
  background: var(--green-900);
  color: var(--white);
  text-align: center;
}
.section-book .eyebrow { color: var(--green-500); }
.section-book h2 { color: var(--white); }
.section-book .section-sub { color: var(--gray-300); margin-left: auto; margin-right: auto; }
.book-wrap { display: flex; flex-direction: column; align-items: center; }
.book-actions { display: flex; gap: 14px; margin-top: 8px; }
.section-book .btn-ghost { border-color: var(--white); color: var(--white); }
.section-book .btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* Footer */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--gray-300);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
}
.footer-inner p { margin: 0; }

/* Responsive */
@media (max-width: 860px) {
  .nav { position: fixed; inset: 72px 0 auto 0; background: var(--white); flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--gray-300); transform: translateY(-120%); transition: transform 0.2s; }
  .nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .two-col { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-media { height: 320px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 520px) {
  .amenity-grid, .room-grid, .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions, .book-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn, .book-actions .btn { width: 100%; text-align: center; }
}
