:root {
  --forest: #2d5a3d;
  --sage: #8faf88;
  --wood: #c4a574;
  --cream: #f4ede0;
  --ink: #243126;
  --paper: #f7f3ea;
  --bark: #6d4e32;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Figtree", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  background-image: linear-gradient(#f7f3ea, #f7f3ea),
    repeating-linear-gradient(90deg, rgba(196,165,116,0.08) 0 2px, transparent 2px 14px);
}
img { max-width: 100%; display: block; }
a { color: var(--forest); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 8px; top: 8px; background: #fff; padding: 8px; z-index: 20; }

.local-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.1rem;
  background: rgba(247, 243, 234, 0.96);
  border-bottom: 3px solid var(--forest);
  backdrop-filter: blur(8px);
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--forest);
}
.brand strong {
  font-family: "Bitter", Georgia, serif;
  font-size: 1.15rem;
}
.brand span { font-size: 0.82rem; color: var(--bark); font-style: italic; }
.nav-toggle {
  display: none;
  background: var(--forest);
  color: #fff;
  border: 0;
  padding: 0.5rem 0.8rem;
  font: inherit;
  border-radius: 6px;
}
.nav { display: flex; flex-wrap: wrap; gap: 0.15rem 0.85rem; align-items: center; }
.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 650;
  font-size: 0.95rem;
}
.nav a[aria-current="page"] { color: var(--forest); text-decoration: underline; text-underline-offset: 4px; }
.nav .visit-btn {
  background: var(--forest);
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 6px;
}
.nav .visit-btn:hover { color: #fff; background: #214530; }

.visit-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 78vh;
}
.visit-panel {
  background: var(--forest);
  color: #f4ede0;
  padding: clamp(1.6rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visit-panel h1 {
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 0.7rem;
}
.visit-panel p { margin: 0 0 1rem; font-size: 1.08rem; }
.big-address {
  font-family: "Bitter", Georgia, serif;
  font-size: 1.25rem;
  font-style: normal;
  margin: 0 0 0.3rem;
}
.phone { font-size: 1.2rem; font-weight: 800; margin: 0 0 1rem; }
.phone a { color: #f0d48a; text-decoration: none; }
.times {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
  background: #eef4ea;
  border-radius: 10px;
  color: var(--ink);
}
.times li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid #d5e3d4;
}
.times li:last-child { border-bottom: 0; }
.visit-panel .times {
  background: rgba(0,0,0,0.12);
  color: #f4ede0;
}
.visit-panel .times li { border-bottom-color: rgba(255,255,255,0.12); }
.place-panel {
  background: #8faf88 center/cover no-repeat;
  position: relative;
  min-height: 320px;
}
.place-caption {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  background: rgba(244, 237, 224, 0.94);
  padding: 0.9rem 1rem;
  border-left: 6px solid var(--wood);
  font-family: "Bitter", Georgia, serif;
}

.wrap { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 2.4rem 0; }
.section h2 {
  font-family: "Bitter", Georgia, serif;
  font-size: 1.9rem;
  margin: 0 0 0.7rem;
}
.neighbor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.neighbor {
  background: #fff;
  border: 1px solid #e4d8c4;
  border-top: 5px solid var(--wood);
  padding: 1.1rem 1.15rem 1.25rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 18px rgba(36, 49, 38, 0.06);
}
.neighbor h3 { font-family: "Bitter", Georgia, serif; margin: 0 0 0.4rem; }
.neighbor p { margin: 0; color: #4d5b50; }

.layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.6rem;
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding-top: 1.5rem;
}
.main h1 {
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 1rem;
}
.side {
  background: #fff;
  border: 1px solid #e4d8c4;
  padding: 1rem;
  height: fit-content;
  position: sticky;
  top: 5.2rem;
}
.side h2 { font-family: "Bitter", Georgia, serif; font-size: 1.15rem; margin: 0 0 0.6rem; }
.side .visit-btn {
  display: block;
  text-align: center;
  background: var(--forest);
  color: #fff;
  text-decoration: none;
  padding: 0.7rem;
  border-radius: 6px;
  margin-top: 0.8rem;
  font-weight: 800;
}

.stack { display: grid; gap: 1rem; }
.block {
  background: #fff;
  border: 1px solid #e4d8c4;
  padding: 1.1rem 1.2rem;
}
.block h2 { font-family: "Bitter", Georgia, serif; margin-top: 0; }
.verse {
  background: #eef4ea;
  padding: 0.8rem 0.9rem;
  margin: 0 0 0.8rem;
  border-left: 4px solid var(--forest);
}
.verse cite { display: block; color: var(--forest); font-weight: 800; font-style: normal; font-size: 0.9rem; }
.person { background: #fff; border: 1px solid #e4d8c4; padding: 1.1rem; }
.person h2 { font-family: "Bitter", Georgia, serif; margin: 0 0 0.35rem; }
.form, .expect article { background: #fff; border: 1px solid #e4d8c4; padding: 1.1rem; }
label { display: block; font-weight: 800; margin: 0.6rem 0 0.25rem; }
input, textarea {
  width: 100%;
  font: inherit;
  padding: 0.65rem;
  border: 1px solid #d3c6b0;
  border-radius: 6px;
  background: #fffdf8;
}
textarea { min-height: 110px; }
.btn {
  display: inline-block;
  background: var(--forest);
  color: #fff;
  text-decoration: none;
  border: 0;
  font: inherit;
  font-weight: 800;
  padding: 0.75rem 1.1rem;
  border-radius: 6px;
  cursor: pointer;
}
.btn:hover { color: #fff; background: #214530; }
.btn-wood { background: var(--bark); }
button.btn { cursor: pointer; }
.thanks { background: #e7f0e3; padding: 0.75rem; margin-bottom: 0.8rem; }
.muted { color: #5b6a5e; }

.yt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin: 1rem 0 0;
}
.yt-item { display: grid; gap: 0.4rem; }
.yt-item h3 {
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.05rem;
}
.yt-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.yt-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 700px) {
  .yt-grid { grid-template-columns: 1fr 1fr; }
}

.footer {
  background: #243126;
  color: #e8eadf;
  padding: 2.2rem 1rem;
  margin-top: 1rem;
}
.footer a { color: #e2c48a; }
.footer-grid {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.2rem;
}
.footer h2, .footer h3 { font-family: "Bitter", Georgia, serif; margin: 0 0 0.5rem; color: #fff; }
.chooser-link { text-align: center; margin-top: 1.3rem; }

@media (max-width: 900px) {
  .visit-hero, .neighbor-grid, .layout, .footer-grid { grid-template-columns: 1fr; }
  .side { position: static; }
  .nav-toggle { display: inline-block; }
  .local-bar { flex-wrap: wrap; }
  .nav { display: none; width: 100%; flex-direction: column; }
  .nav.is-open { display: flex; }
}
