:root {
  --accent: #784b2d;
  --ink: #201a16;
  --paper: #f7efe4;
  --cream: #fffaf4;
  --line: rgba(24, 22, 18, .16);
  --hero: url("assets/hero-environment.webp");
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Arial, sans-serif; color: var(--ink); background: var(--paper); padding-bottom: 0; }
a { color: inherit; }
.topbar { position: fixed; inset: 0 0 auto; z-index: 20; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 15px clamp(18px, 4vw, 48px); color: #fff; background: linear-gradient(to bottom, rgba(0,0,0,.58), rgba(0,0,0,0)); }
.brand { font-family: Georgia, serif; font-size: clamp(21px, 2.4vw, 34px); font-weight: 700; text-decoration: none; text-shadow: 0 3px 20px rgba(0,0,0,.4); }
.nav { display: flex; gap: 8px; }
.nav a { text-decoration: none; padding: 8px 11px; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; background: rgba(255,255,255,.14); }
.hero { min-height: 92svh; display: grid; align-items: end; padding: 118px clamp(18px, 6vw, 80px) 76px; color: white; background-image: linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.40) 45%, rgba(0,0,0,.78)), var(--hero); background-size: cover; background-position: center; }
.hero-content { max-width: 780px; }
.eyebrow { display: inline-flex; max-width: 100%; padding: 8px 12px; border: 1px solid rgba(255,255,255,.52); border-radius: 999px; background: rgba(0,0,0,.24); font-size: 13px; line-height: 1.35; overflow-wrap: anywhere; }
h1 { margin: 18px 0 14px; font-family: Georgia, serif; font-size: clamp(42px, 8vw, 86px); line-height: .96; letter-spacing: 0; text-wrap: balance; text-shadow: 0 4px 30px rgba(0,0,0,.45); }
.lead, .hero p { max-width: 720px; font-size: clamp(18px, 2vw, 23px); line-height: 1.5; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.btn { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 12px 18px; border: 1px solid var(--accent); background: var(--accent); color: white; text-decoration: none; font-weight: 800; }
.btn.ghost { border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.16); backdrop-filter: blur(12px); }
section { padding: clamp(54px, 8vw, 94px) clamp(18px, 6vw, 80px); }
.intro, .proof, .visit { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .88fr); gap: clamp(24px, 5vw, 58px); align-items: start; }
h2 { margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(31px, 5vw, 54px); line-height: 1.04; letter-spacing: 0; }
.card { border: 1px solid var(--line); border-radius: 8px; padding: 24px; background: var(--cream); box-shadow: 0 18px 50px rgba(24, 22, 18, .08); }
dl { display: grid; grid-template-columns: 104px 1fr; gap: 10px 15px; margin: 0; }
dt { font-weight: 800; color: rgba(24,22,18,.62); }
dd { margin: 0; overflow-wrap: anywhere; }
.gallery { background: #fffaf3; }
.photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
figure { margin: 0; border-radius: 8px; overflow: hidden; background: #eadfd0; }
figure img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
figcaption { min-height: 48px; padding: 11px 12px; font-weight: 800; background: var(--cream); }
.proof ul { margin: 0; padding-left: 20px; line-height: 1.65; }
.map { min-height: 430px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); }
iframe { width: 100%; min-height: 430px; height: 100%; border: 0; display: block; }
footer { padding: 30px clamp(18px, 6vw, 80px) 96px; background: var(--ink); color: rgba(255,255,255,.78); line-height: 1.55; }
.mobile-actions { position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 30; display: none; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; border-radius: 12px; background: rgba(23, 33, 29, .88); backdrop-filter: blur(18px); }
.mobile-actions a { min-height: 44px; display: grid; place-items: center; border-radius: 8px; background: var(--accent); color: white; text-decoration: none; font-weight: 800; }
.mobile-actions a:last-child { background: white; color: var(--accent); }
@media (max-width: 920px) {
  body { padding-bottom: 82px; }
  .nav a:not(:last-child) { display: none; }
  .intro, .proof, .visit { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-actions { display: grid; }
}
@media (max-width: 520px) {
  .topbar { padding: 12px 14px; }
  .brand { font-size: 20px; }
  h1 { font-size: clamp(40px, 13vw, 62px); }
  section { padding-left: 16px; padding-right: 16px; }
  .photo-grid { grid-template-columns: 1fr; }
  dl { grid-template-columns: 88px 1fr; }
}
