:root {
  --ink: #251f21;
  --ink2: #585254;
  --hairline: #eae9ea;
  --teal: #4f8577;
  --sand: #f7f3ef;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background: url('photos/hero-sunset.jpg') center 62% / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,14,12,.62), rgba(20,14,12,0) 55%);
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 96px 24px 40px;
  color: #fff;
}
.hero h1 { font-size: 44px; font-weight: 700; letter-spacing: -.01em; }
.hero .fact { font-size: 17px; opacity: .92; margin-top: 4px; }
.lang {
  position: absolute;
  top: 18px;
  inset-inline-end: 20px;
  z-index: 2;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  background: rgba(20,14,12,.35);
  backdrop-filter: blur(4px);
}
main { max-width: 860px; margin: 0 auto; padding: 0 24px 64px; }
.intro { font-size: 19px; margin: 40px 0 8px; }
section { margin-top: 48px; }
h2 { font-size: 26px; font-weight: 700; margin-bottom: 18px; }
dl.facts { border-top: 1px solid var(--hairline); }
dl.facts > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline);
}
dl.facts dt { color: var(--ink2); font-size: 15px; }
dl.facts dd { font-weight: 500; }
ul.amen { list-style: none; border-top: 1px solid var(--hairline); }
ul.amen li { padding: 13px 0; border-bottom: 1px solid var(--hairline); }
ul.amen b { display: block; font-weight: 600; }
ul.amen span { color: var(--ink2); font-size: 15px; }
figure { margin: 0; }
figcaption { color: var(--ink2); font-size: 14px; margin: 8px 2px 0; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gallery figure { break-inside: avoid; }
.gallery img, .wide img {
  width: 100%;
  border-radius: 14px;
  display: block;
}
.wide { margin-bottom: 14px; }
.wide figcaption, .gallery figcaption { margin-bottom: 6px; }
.cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cta a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.cta a.secondary { background: #fff; color: var(--ink); border: 1px solid var(--hairline); }
footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  color: var(--ink2);
  font-size: 15px;
}
.maplink { color: var(--teal); font-weight: 600; }
@media (max-width: 640px) {
  .hero h1 { font-size: 34px; }
  .gallery { grid-template-columns: 1fr; }
  dl.facts > div { grid-template-columns: 110px 1fr; }
}
