
:root {
  --max-width: 1100px;
  --accent: #412D15;
  --muted: #8C7A6B;
  --bg: #E1DCC9;
  --card: #FFFFFF;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Base */
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: #1F150C;
  line-height: 1.45;
  font-family: inherit;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
}
.note { font-size: 0.9rem; color: var(--muted); }

/* Header */
  .site-header { background: var(--card); border-bottom: 1px solid #D8D8C0; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.logo { margin: 0; font-size: 1.25rem; color: var(--accent); }
.main-nav a {
  margin-left: 1rem;
  color: #1F150C;
  text-decoration: none;
}
.main-nav a:hover { color: var(--accent); }

/* Hamburger nav - checkbox :checked hack */
.nav-toggle {
  position: absolute;
  left: -9999px;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

@media (max-width: 640px) {
  .nav-toggle-label {
    display: block;
    margin-right: 0.3rem;
    text-decoration: none;
    color: #1F150C;
    font-size: 1.5rem;
    user-select: none;
    line-height: 1;
  }

  .main-nav {
    display: flex;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 200;
    gap: 1.5rem;
  }

  .nav-toggle:checked ~ .main-nav {
    visibility: visible;
    opacity: 1;
  }

  .main-nav a {
    margin: 0;
    font-size: 1.2rem;
  }

  .header-inner { position: relative; }

  .map-wrapper { padding: 0; }
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 1rem;
  align-items: center;
  margin: 1.25rem 0;
}
.hero-img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 6px;
}
.hero-text {
  background: var(--card);
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* Utilities */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  text-decoration: none;
}

/* Cards / Panels */
.details,
.map-wrapper,
.hero-text {
  background: var(--card);
  padding: 1rem;
  border-radius: 6px;
}
.details { margin-bottom: 1.5rem; }

/* Lists / Highlights / Amenities */
.highlights,
.amenities { display: flex; gap: 0.5rem; flex-wrap: wrap; list-style: none; padding: 0; margin: 0.5rem 0; }
.highlights li { background: var(--accent); color: #fff; padding: 0.35rem 0.6rem; border-radius: 4px; font-size: 0.95rem; }
.amenities { gap: 1rem; }

/* Footer */
.site-footer {
  border-top: 1px solid #D8D8C0;
  background: var(--card);
  padding: 0.75rem;
  margin-top: 2rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 0.5rem;
}
.gallery-grid img { width: 100%; height: 150px; object-fit: cover; border-radius: 6px; }

/* Attractions (list as grid of rows) */
.attractions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.attraction {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem;
  border-radius: 6px;
  background: var(--card);
  border: 1px solid #D8D8C0;
}
.attraction__img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.attraction__content { flex: 1; }
.attraction__title {
  margin: 0 0 0.25rem 0;
  font-size: 1.05rem;
  color: #1F150C;
}
.attraction__bullets { margin: 0; padding-left: 1rem; color: var(--muted); }
.attraction--img-right { flex-direction: row-reverse; }

/* Directions horizontal scroll list */
.directions-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-x: auto;
}
.direction-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  width: 500px;
  box-sizing: border-box;
  padding: 8px;
  background: var(--card);
}
.direction-item img {
  width: 220px;
  height: auto;
  display: block;
  border-radius: 4px;
  flex: 0 0 auto;
}
.direction-item figcaption {
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  flex: 1 1 auto;
}

/* Map wrapper (center content) */
.map-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0.5rem 0 1.5rem;
  padding: 0;
}
.map-wrapper iframe {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 4px;
}
.map-link a { color: inherit; text-decoration: underline; }

/* Responsive tweaks */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-img { height: 280px; }
}
@media (max-width: 640px) {
  .attraction { flex-direction: column; align-items: stretch; }
  .attraction__img { width: 100%; height: 180px; }
}
@media (max-width: 560px) {
  .gallery-grid img { height: 120px; }
}

