:root {
  --cream: #faf6ef;
  --cream-2: #f2ecdf;
  --ink: #2b2a26;
  --ink-soft: #5a5850;
  --green: #33513f;
  --green-dark: #24392c;
  --terracotta: #c1652f;
  --gold: #c99a3e;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(36, 57, 44, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.4em;
  color: var(--green-dark);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 42, 38, 0.08);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--green-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 30px;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  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(36,57,44,0.15) 0%, rgba(24,32,26,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 24px 80px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow, .section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 0.2em;
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.btn .icon { width: 20px; height: 20px; }

.btn-primary {
  background: #25D366;
  color: #0b1f13;
  box-shadow: var(--shadow);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,0.25); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-ghost:hover { background: rgba(255,255,255,0.22); }

.contact-section .btn-ghost {
  border-color: var(--green);
  color: var(--green-dark);
  background: transparent;
}
.contact-section .btn-ghost:hover { background: rgba(51,81,63,0.08); }

/* ---------- Facts strip ---------- */
.facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-dark);
  color: var(--white);
}

.fact {
  padding: 34px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.fact:last-child { border-right: none; }

.fact-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold);
  font-weight: 700;
}

.fact-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.fact-label small { color: rgba(255,255,255,0.6); }

/* ---------- Sections ---------- */
.section { padding: 90px 24px; }
.section-alt { background: var(--cream-2); }
.section-inner { max-width: 1180px; margin: 0 auto; }

.section h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }

.about-grid, .location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.distance-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.distance-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(43,42,38,0.12);
  font-size: 0.98rem;
}

.distance-list strong { color: var(--terracotta); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  border: 2px dashed rgba(43,42,38,0.2);
  cursor: default;
  padding: 20px;
}

/* ---------- Amenities ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.amenity-icon { font-size: 1.8rem; display: block; margin-bottom: 14px; }

.amenity-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.amenity-card p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Contact ---------- */
.contact-section {
  text-align: center;
  background: var(--cream);
}
.contact-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 28px 24px;
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 16, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 200;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(90vw, 1000px);
  max-height: 78vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: var(--white);
  margin-top: 16px;
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .location-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 18px;
    display: none;
    border-bottom: 1px solid rgba(43,42,38,0.08);
  }

  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; }
  .nav-cta { margin-top: 8px; text-align: center; }

  .facts-strip { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: none; }
  .fact { border-bottom: 1px solid rgba(255,255,255,0.1); }

  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 20px; }
}
