:root {
  --green-900: #1a3a0f;
  --green-800: #2d5016;
  --green-700: #3d6b1e;
  --green-100: #e8f0e0;
  --gold-600: #b8923d;
  --gold-500: #c9a961;
  --gold-400: #d9bf7f;
  --gold-100: #f5ecd2;
  --cream: #fdf8e8;
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --muted: #6b6b6b;
  --line: #e5e0d0;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(26, 58, 15, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 58, 15, 0.12);
  --shadow-lg: 0 12px 32px rgba(26, 58, 15, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p { margin-bottom: 1rem; color: var(--ink-soft); }

a { color: var(--green-800); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-600); }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 232, 0.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-900);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  display: grid;
  place-items: center;
  color: var(--gold-400);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold-600);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 0.4rem;
  align-items: center;
}

.nav-links a {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--green-100);
  color: var(--green-900);
}

.nav-links a.active {
  background: var(--green-800);
  color: var(--white);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  padding: 0 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.25rem 1.25rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  gap: 0.25rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 0.85rem 0.75rem;
  border-radius: 8px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.mobile-menu a.active { color: var(--green-900); background: var(--green-100); }
.mobile-menu a:last-child { border-bottom: none; }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 97, 0.18), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(45, 80, 22, 0.15), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #f3eed8 100%);
}

.hero-photo {
  background:
    linear-gradient(to bottom, rgba(10, 30, 5, 0.45) 0%, rgba(10, 30, 5, 0.60) 100%),
    url('hero.jpg') center 55% / cover no-repeat;
  padding: 5.5rem 0 6.5rem;
}

.hero-photo .hero-scene { display: none; }

.hero-photo .eyebrow {
  color: #f5ecd2;
  border-color: rgba(201, 169, 97, 0.7);
  background: rgba(0, 0, 0, 0.25);
}

.hero-photo h1 { color: #ffffff; }

.hero-photo .lede { color: rgba(255, 255, 255, 0.88); }

.hero-photo .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-photo .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.5);
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Page hero (non-home) */
.page-hero {
  position: relative;
  padding: 3rem 0 2.5rem;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(201, 169, 97, 0.16), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #f5efd9 100%);
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-secondary {
  background: var(--gold-500);
  color: var(--green-900);
}
.btn-secondary:hover {
  background: var(--gold-400);
  color: var(--green-900);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border: 1.5px solid var(--green-800);
}
.btn-ghost:hover {
  background: var(--green-800);
  color: var(--white);
}

/* ---------- Sections ---------- */
section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { font-size: 1.05rem; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-art {
  height: 180px;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  position: relative;
  overflow: hidden;
}

.card-art svg { width: 100%; height: 100%; display: block; }

.card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-art img { transform: scale(1.04); }

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.5rem;
}

.card h3 { margin-bottom: 0.5rem; }

.card-body p {
  font-size: 0.95rem;
  flex: 1;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.chip {
  display: inline-block;
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 500;
}

.chip.gold {
  background: var(--gold-100);
  color: var(--gold-600);
}

/* ---------- Feature row ---------- */
.feature-row {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 880px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .feature-row.reverse > div:first-child { order: 2; }
}

.feature-art {
  height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-art svg { width: 100%; height: 100%; }

/* ---------- Stats strip ---------- */
.stats {
  background: var(--green-900);
  color: var(--white);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-400);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: var(--white);
  padding: 4rem 1.25rem;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 2rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, 0.25), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201, 169, 97, 0.15), transparent 50%);
  pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); max-width: 540px; margin: 0 auto 1.5rem; }

/* ---------- Listing (stay / eat) ---------- */
.listing {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .listing { grid-template-columns: repeat(2, 1fr); }
}

.listing-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.listing-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.listing-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.listing-head h3 { margin-bottom: 0.25rem; }

.listing-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: block;
}

.listing-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ---------- Travel info ---------- */
.travel-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .travel-grid { grid-template-columns: repeat(2, 1fr); }
}

.travel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 4px solid var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.travel-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-800);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.travel-icon svg { width: 30px; height: 30px; }

.travel-card h3 { margin-bottom: 0.75rem; }

.travel-card ul {
  list-style: none;
  margin-top: 1rem;
}

.travel-card li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.travel-card li:last-child { border-bottom: none; }

.travel-card li strong {
  color: var(--green-900);
  font-weight: 600;
}

/* ---------- Map placeholder ---------- */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: var(--green-100);
  height: 380px;
  width: 100%;
  position: relative;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand h3 {
  color: var(--gold-400);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--gold-400);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-col a:hover { color: var(--gold-400); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
