:root {
  color-scheme: light;
  --ink: #172326;
  --muted: #59676a;
  --paper: #f7faf9;
  --white: #ffffff;
  --line: #d9e4e1;
  --teal: #087a78;
  --teal-dark: #055b5a;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.mini-site { min-height: 100vh; }
.mini-hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  background: var(--white);
}
.mini-hero img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.mini-copy {
  display: grid;
  align-content: center;
  padding: clamp(32px, 7vw, 84px);
}
.eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
h1, h2, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}
.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  max-width: 620px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--line);
}
.button.primary {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.button.secondary {
  background: var(--white);
  color: var(--teal-dark);
}
.section {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}
.section.compact { padding-block: 34px; }
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.info-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}
.info-panel p {
  color: var(--muted);
  margin-bottom: 16px;
}
.info-panel p:last-child { margin-bottom: 0; }
.map {
  width: 100%;
  height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

@media (max-width: 820px) {
  .mini-hero, .mini-grid { grid-template-columns: 1fr; }
  .mini-hero img { min-height: 330px; }
}

@media (max-width: 520px) {
  .section { width: min(100% - 22px, 1040px); }
  .mini-copy { padding: 30px 18px; }
  .button { width: 100%; }
}
