:root {
  --paper: #f5f7f8;
  --ink: #111827;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.1);
  --green: #2f7d5b;
  --deep: #173a31;
  --sage: #d9ebe4;
  --water: #2f80a7;
  --berry: #8b5fa8;
  --white: rgba(255, 255, 255, 0.86);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.09);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(248, 245, 239, 0.88);
  border-bottom: 1px solid rgba(221, 215, 202, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.main-nav {
  gap: clamp(12px, 3vw, 30px);
  color: var(--muted);
  font-size: 15px;
}

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

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(36px, 7vw, 88px) clamp(18px, 4vw, 56px) 42px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.tag,
.route-time,
.places-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.1;
}

.lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: #425047;
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.ghost {
  color: var(--green);
  background: rgba(255, 253, 248, 0.55);
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-main,
.hero-side {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 26px 80px rgba(22, 51, 40, 0.22);
}

.hero-main {
  right: 12%;
  bottom: 0;
  width: min(62%, 410px);
  height: min(76%, 520px);
  border-radius: 8px;
}

.hero-side.top {
  top: 0;
  right: 0;
  width: min(58%, 460px);
  height: 270px;
  border-radius: 8px;
}

.hero-side.bottom {
  left: 0;
  bottom: 62px;
  width: min(42%, 260px);
  height: 340px;
  border-radius: 8px;
}

.intro-grid,
.section,
.photo-strip,
.site-footer {
  margin-inline: clamp(18px, 4vw, 56px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.quick-card {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
}

.quick-card span {
  color: var(--water);
  font-weight: 900;
}

.quick-card strong {
  display: block;
  margin: 34px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.quick-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding: clamp(58px, 9vw, 112px) 0;
}

.page-main {
  padding-top: clamp(58px, 8vw, 96px);
}

.page-hero {
  max-width: 920px;
  padding: clamp(46px, 7vw, 82px) clamp(18px, 4vw, 56px) clamp(22px, 4vw, 44px);
}

.section.muted {
  margin-inline: 0;
  padding-inline: clamp(18px, 4vw, 56px);
  background: #edf2e9;
}

.page-hero + .section {
  padding-top: clamp(24px, 4vw, 42px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
}

.place-feature {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.place-feature img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.place-feature div {
  padding: 24px;
}

.place-feature p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.place-feature.dark {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  color: var(--white);
  background: var(--deep);
  border-color: var(--deep);
}

.place-feature.dark img {
  height: 100%;
  min-height: 460px;
}

.place-feature.dark .tag,
.place-feature.dark p {
  color: var(--sage);
}

.place-feature.dark a,
.route-card.accent a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--white);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.route-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(47, 93, 69, 0.18);
  border-radius: 8px;
}

.route-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.route-card div {
  padding: 22px;
}

.route-card p {
  color: var(--muted);
}

.route-card.accent {
  color: var(--white);
  background: var(--green);
}

.route-card.accent .route-time,
.route-card.accent p {
  color: #dbeadf;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.guide-card.large {
  grid-row: span 2;
}

.guide-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.guide-card.large img {
  height: 430px;
}

.guide-card div {
  padding: 24px;
}

.guide-card span,
.fact-card span,
.timeline span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-card h2 {
  margin: 10px 0;
  font-size: clamp(26px, 3vw, 38px);
}

.guide-card p {
  color: var(--muted);
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.places-grid article {
  min-height: 270px;
  padding: 24px;
  background: var(--white);
}

.places-grid p {
  color: var(--muted);
}

.places-directory article {
  min-height: 320px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.fact-card {
  position: sticky;
  top: 94px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fact-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.article-body {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 21px);
}

.article-body h2 {
  margin: 38px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.article-body p {
  color: #37443d;
}

.timeline {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline article {
  display: grid;
  grid-template-columns: 0.3fr 0.35fr 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
}

.timeline h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.steps {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 20px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps article {
  display: grid;
  grid-template-columns: 90px minmax(180px, 0.35fr) 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
}

.steps span {
  color: var(--water);
  font-size: 28px;
  font-weight: 900;
}

.steps h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 20px;
}

.detail-panel {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 44px);
  color: var(--white);
  background: var(--deep);
  border-radius: 8px;
}

.detail-panel .tag,
.detail-panel p {
  color: var(--sage);
}

.detail-panel h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 58px);
}

.detail-panel p:last-child {
  margin-bottom: 0;
}

.detail-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
}

.detail-notes {
  margin-top: 20px;
}

.photo-strip {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr;
  gap: 16px;
}

.photo-strip img {
  width: 100%;
  height: clamp(250px, 34vw, 440px);
  object-fit: cover;
  border-radius: 8px;
}

.map-teaser {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 6vw, 62px);
  background: var(--deep);
  color: var(--white);
  border-radius: 8px;
}

.map-teaser .eyebrow,
.map-teaser p {
  color: var(--sage);
}

.map-teaser h2 {
  max-width: 640px;
}

.map-teaser p {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 18px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(280px, 0.42fr);
  gap: 20px;
  align-items: stretch;
}

.schematic-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(rgba(47, 93, 69, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 93, 69, 0.08) 1px, transparent 1px),
    #edf2e9;
  background-size: 42px 42px;
  border: 1px solid rgba(47, 93, 69, 0.18);
  border-radius: 8px;
}

.map-point {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 132px;
  min-height: 58px;
  place-items: center;
  padding: 12px 16px;
  color: var(--white);
  background: var(--green);
  border: 2px solid rgba(255, 253, 248, 0.84);
  border-radius: 999px;
  box-shadow: 0 18px 52px rgba(22, 51, 40, 0.18);
  font-weight: 900;
  text-align: center;
}

.map-point.pond {
  left: 12%;
  top: 22%;
  background: #477e8b;
}

.map-point.forest {
  right: 14%;
  top: 16%;
  background: var(--deep);
}

.map-point.evening {
  left: 32%;
  top: 45%;
  background: var(--berry);
}

.map-point.day {
  right: 20%;
  bottom: 18%;
  background: var(--green);
}

.map-point.weekend {
  left: 43%;
  bottom: 33%;
  background: #846f48;
}

.map-point.nearby {
  left: 13%;
  bottom: 18%;
  background: #7b6a3f;
}

.map-line {
  position: absolute;
  height: 3px;
  background: rgba(47, 93, 69, 0.34);
  border-radius: 999px;
  transform-origin: left center;
}

.line-one {
  left: 25%;
  top: 34%;
  width: 37%;
  transform: rotate(-9deg);
}

.line-two {
  left: 26%;
  top: 55%;
  width: 46%;
  transform: rotate(18deg);
}

.line-three {
  left: 25%;
  bottom: 28%;
  width: 48%;
  transform: rotate(-10deg);
}

.map-notes {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-notes p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.journal {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 38px;
  align-items: start;
}

.journal-list {
  display: grid;
  gap: 12px;
}

.journal-list a {
  padding: 18px 0;
  color: var(--deep);
  font-size: clamp(20px, 2.4vw, 30px);
  font-family: Georgia, "Times New Roman", serif;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
}

.not-found {
  min-height: calc(100vh - 72px);
  padding: clamp(58px, 10vw, 120px) clamp(18px, 4vw, 56px);
}

.not-found .lead {
  max-width: 720px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media {
    min-height: 520px;
  }

  .intro-grid,
  .feature-layout,
  .route-list,
  .places-grid,
  .detail-hero,
  .guide-grid,
  .article-layout,
  .map-layout,
  .steps article,
  .journal {
    grid-template-columns: 1fr;
  }

  .map-teaser {
    align-items: flex-start;
    flex-direction: column;
  }

  .schematic-map {
    min-height: 480px;
  }

  .fact-card {
    position: static;
  }

  .guide-card.large {
    grid-row: auto;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .place-feature.dark {
    grid-template-columns: 1fr;
  }

  .places-grid article {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-media {
    min-height: 440px;
  }

  .hero-main {
    right: 0;
    width: 58%;
    height: 360px;
  }

  .hero-side.top {
    width: 72%;
    height: 190px;
  }

  .hero-side.bottom {
    bottom: 26px;
    width: 43%;
    height: 250px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .map-layout {
    display: block;
  }

  .map-notes {
    margin-top: 16px;
  }

  .schematic-map {
    min-height: 520px;
  }

  .map-point {
    min-width: 112px;
    font-size: 14px;
  }

  .map-point.pond {
    left: 8%;
  }

  .map-point.forest {
    right: 8%;
  }

  .map-point.evening {
    left: 24%;
  }

  .map-point.day {
    right: 8%;
  }

  .map-point.weekend {
    left: 30%;
    bottom: 34%;
  }

  .map-point.nearby {
    left: 8%;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* Apple-like visual polish */
body {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 247, 0.84) 46%, rgba(232, 241, 236, 0.78)),
    var(--paper);
}

.site-header {
  padding-block: 14px;
  background: rgba(245, 247, 248, 0.72);
  border-bottom-color: rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
}

.brand {
  font-weight: 760;
}

.brand-mark {
  background: linear-gradient(145deg, #236e50, #3a946b);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 8px 20px rgba(47, 125, 91, 0.22);
}

.main-nav a,
.text-link,
.button,
.quick-card,
.place-feature,
.route-card,
.guide-card,
.places-grid article,
.fact-card,
.timeline article,
.steps article,
.detail-panel,
.detail-photo,
.map-point,
.map-notes,
.journal-list a {
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms var(--ease),
    border-color 220ms var(--ease),
    color 220ms var(--ease),
    opacity 220ms var(--ease);
}

h1,
h2,
.quick-card strong,
.journal-list a {
  font-family: inherit;
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 780;
  line-height: 0.98;
}

h2 {
  font-weight: 760;
}

h3 {
  font-weight: 730;
}

.button {
  font-weight: 720;
  box-shadow: 0 10px 26px rgba(47, 125, 91, 0.12);
}

.button.primary {
  background: linear-gradient(145deg, #2e7b59, #3c946e);
  border-color: rgba(47, 125, 91, 0.42);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(47, 125, 91, 0.18);
}

.hero-main,
.hero-side,
.detail-photo {
  box-shadow: var(--shadow);
}

.intro-grid,
.places-grid,
.timeline,
.steps,
.schematic-map {
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.quick-card,
.place-feature,
.route-card,
.guide-card,
.places-grid article,
.fact-card,
.timeline article,
.steps article,
.map-notes {
  background: var(--glass-strong);
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.quick-card:hover,
.place-feature:hover,
.route-card:hover,
.guide-card:hover,
.places-grid article:hover,
.journal-list a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.section.muted {
  background: rgba(232, 239, 242, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.place-feature.dark,
.detail-panel,
.map-teaser {
  background: linear-gradient(145deg, rgba(23, 58, 49, 0.94), rgba(40, 102, 86, 0.9));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.route-card.accent {
  background: linear-gradient(145deg, #2e7b59, #276b85);
}

.schematic-map {
  background:
    linear-gradient(rgba(47, 125, 91, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 125, 91, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.56);
  background-size: 42px 42px;
}

.map-point {
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.map-point:hover {
  transform: translateY(-4px) scale(1.02);
}
