:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #1f1f1f;
  --muted: #3e5f46;
  --accent: #2f6f42;
  --accent-soft: #e6f0e8;
  --route-accent: #2f6f42;
  --route-bg: #eaf4ed;
  --border: #d9e1db;
  --shadow: 0 10px 28px rgba(40, 50, 44, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  background: var(--bg);
  color: var(--text);
}

.hero {
  background:
    linear-gradient(rgba(28, 54, 34, 0.36), rgba(28, 54, 34, 0.36)),
    url("assets/De%20Bleek%203.jpg") center / cover no-repeat;
  color: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 1.2rem;
}

.hero__content {
  max-width: 72rem;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

h1 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.lead {
  margin: 0.9rem 0 0;
  max-width: 60ch;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.container {
  width: min(72rem, 100% - 2rem);
  margin: 1.5rem auto 3rem;
}

h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
}

.info {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  margin-bottom: 1.4rem;
}

.info ul {
  margin: 0;
  padding-left: 1.15rem;
}

.info li + li {
  margin-top: 0.45rem;
}

a {
  color: var(--accent);
}

.map-section {
  margin-bottom: 1.4rem;
}

.map-section h2 {
  color: #000000;
}

.map-link {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-link:hover {
  border-color: #bac7b0;
}

.map-link img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 0.7rem;
}

.map-link span {
  display: block;
  padding: 0.75rem 0.9rem;
  color: #235335;
  background: var(--route-bg);
  border-top: 1px solid #cfe1d4;
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.7rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.lightbox__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  border: 0;
  border-radius: 999px;
  width: 2.3rem;
  height: 2.3rem;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #183222;
  background: #f3f8f3;
}

.garden-detail {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1rem;
  margin-bottom: 1rem;
}

.garden-detail img {
  width: 100%;
  height: auto;
  border-radius: 0.7rem;
}

.garden-detail h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  color: #000000;
}

.address {
  margin: 0 0 0.75rem;
  color: #235335;
  font-size: 0.96rem;
  font-weight: 600;
  background: var(--route-bg);
  border-left: 4px solid var(--route-accent);
  padding: 0.45rem 0.65rem;
  border-radius: 0.4rem;
}

.garden-detail p {
  margin: 0.45rem 0 0;
}

@media (max-width: 640px) {
  .container {
    width: min(72rem, 100% - 1rem);
  }

  .garden-detail {
    grid-template-columns: 1fr;
    padding: 0.9rem;
  }

  .garden-detail img {
    width: 100%;
    height: auto;
  }
}
