﻿:root {
  --brand: #0f3d2e;
  --accent: #c9a227;
  --dark: #12221c;
  --light: #f7f4ef;
  --text: #1d1f1e;
  --muted: #5b615e;
  --card: #ffffff;
  --border: #e2ddd4;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.topbar { background: var(--dark); color: #fff; font-size: 0.9rem; }
.topbar-inner { display: flex; justify-content: space-between; padding: 0.5rem 0; }
.topbar a { color: #fff; text-decoration: none; }

.site-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.brand { display: flex; gap: 0.75rem; align-items: center; text-decoration: none; color: var(--brand); font-weight: 700; }
.brand img { width: 64px; height: 64px; object-fit: contain; }

.nav { display: flex; gap: 1.25rem; align-items: center; }
.nav a, .nav button { text-decoration: none; color: var(--text); font-weight: 600; background: none; border: none; cursor: pointer; font: inherit; }
.nav .nav-cta { background: var(--brand); color: #fff; padding: 0.5rem 0.9rem; border-radius: 4px; }
.nav .active { color: var(--accent); }

.nav-item { position: relative; }
.dropdown { position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border); min-width: 200px; padding: 0.5rem; display: none; }
.dropdown a { display: block; padding: 0.4rem 0.6rem; color: var(--text); }
.nav-item.open .dropdown { display: block; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); margin: 5px 0; }

.hero { position: relative; color: #fff; padding: 6rem 0; background-size: cover; background-position: center; }
.hero.small { padding: 4.5rem 0; }
.hero .overlay { position: absolute; inset: 0; background: rgba(10, 18, 15, 0.55); }
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.4vw, 3.4rem); margin-bottom: 0.8rem; }
.hero .eyebrow { letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; }
.hero-actions { display: flex; gap: 0.8rem; margin-top: 1rem; }

.section { padding: 3.5rem 0; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; }
.section-head h2, .section-head p { margin: 0; }

.grid { display: grid; gap: 1.5rem; }
.cards-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card { background: var(--card); padding: 1.25rem; border: 1px solid var(--border); border-radius: 6px; display: flex; flex-direction: column; gap: 0.6rem; height: 100%; }
.card h3 { margin: 0.6rem 0 0.2rem; }
.card a { color: var(--brand); font-weight: 600; text-decoration: none; margin-top: auto; }

.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin: 1rem 0 2rem; }
.fact-item { display: flex; align-items: flex-start; gap: 0.75rem; background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 0.9rem; }
.fact-item h4 { margin: 0 0 0.2rem; font-size: 1rem; }
.fact-item p { margin: 0; color: var(--muted); }
.icon { width: 28px; height: 28px; color: var(--brand); flex: 0 0 28px; }

.attractions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.attraction-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.attraction-card img { width: 100%; height: 180px; object-fit: cover; }
.attraction-card .card-body { padding: 0.9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.attraction-card h3 { margin: 0; font-size: 1.05rem; }

.chip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.8rem; margin: 0.5rem 0 1.5rem; }
.chip { display: flex; align-items: center; gap: 0.6rem; background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 0.65rem 0.8rem; font-weight: 600; }

.gallery-grid img { width: 100%; height: 190px; object-fit: cover; border-radius: 4px; cursor: pointer; }

.lightbox { position: fixed; inset: 0; background: rgba(10, 18, 15, 0.85); display: none; align-items: center; justify-content: center; z-index: 1000; }
.lightbox.open { display: flex; }
.lightbox-content { position: relative; max-width: min(90vw, 1100px); max-height: 85vh; }
.lightbox-content img { width: 100%; height: auto; max-height: 85vh; object-fit: contain; display: block; border-radius: 6px; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; top: 12px; background: rgba(255,255,255,0.9); border: none; padding: 0.4rem 0.6rem; cursor: pointer; border-radius: 4px; font-weight: 700; }
.lightbox-close { right: 12px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: -48px; }
.lightbox-next { right: -48px; }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.callout { background: #fff; border: 1px solid var(--border); padding: 1.5rem; border-radius: 6px; }

.stats { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; text-align: center; }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--brand); display: block; }

.cta-band { background: var(--brand); color: #fff; padding: 3rem 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-actions { display: flex; gap: 0.8rem; }

.btn { display: inline-block; padding: 0.7rem 1.2rem; border-radius: 4px; text-decoration: none; font-weight: 600; }
.btn.primary { background: var(--accent); color: #1a1a1a; }
.btn.secondary { border: 1px solid #fff; color: #fff; }

.list { padding-left: 1.2rem; }

.site-footer { background: #0e1b16; color: #d9d4c7; padding: 3rem 0 1.5rem; }
.site-footer a { color: #d9d4c7; text-decoration: none; display: block; margin-bottom: 0.35rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.footer-logo { width: 160px; margin-bottom: 0.6rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 1.5rem; padding-top: 1rem; font-size: 0.9rem; }

.form { background: #fff; border: 1px solid var(--border); padding: 1.5rem; border-radius: 6px; }
.form-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.form-grid label { display: flex; flex-direction: column; gap: 0.4rem; font-weight: 600; }
.form-grid input, .form-grid select, .form-grid textarea { padding: 0.6rem; border: 1px solid var(--border); border-radius: 4px; font: inherit; }
.form-grid .full { grid-column: 1 / -1; }
.form-actions { margin-top: 1rem; }
.form-fallback { font-size: 0.9rem; color: var(--muted); }

.faq details { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 0.8rem 1rem; margin-bottom: 0.8rem; }
.faq summary { cursor: pointer; font-weight: 600; }

@media (max-width: 900px) {
  .nav { position: absolute; top: 100%; right: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 1rem; border: 1px solid var(--border); display: none; width: min(320px, 90vw); }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { width: 100%; text-align: center; }
  .brand img { width: 48px; height: 48px; }
  .footer-logo { width: 120px; }
  .lightbox-prev, .lightbox-next { display: none; }
}

