:root {
  --ink: #111111;
  --paper: #f6f4f0;
  --white: #ffffff;
  --platinum: #c0c0c0;
  --platinum-dark: #868686;
  --teal: #0d6d6e;
  --red: #c7473b;
  --gold: #d4af37;
  --line: rgba(17,17,17,.14);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 12px; top: 12px; z-index: 100; background: white; padding: 10px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,244,240,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { text-decoration: none; font-family: Montserrat, sans-serif; letter-spacing: -.03em; }
.wordmark strong { color: var(--platinum-dark); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-weight: 600; font-size: .92rem; }
.nav-cta { padding: 10px 18px; border: 1px solid var(--ink); }
.menu-button { display: none; border: 1px solid var(--ink); background: transparent; padding: 8px 12px; font: inherit; }
.hero { min-height: 720px; display: grid; align-items: center; overflow: hidden; background:
  radial-gradient(circle at 75% 40%, rgba(192,192,192,.35), transparent 30%),
  linear-gradient(135deg, #f9f8f5, #ece9e4);
}
.hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 24px; padding-block: 90px; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 800; color: var(--teal); margin: 0 0 20px; }
.eyebrow.light { color: var(--platinum); }
h1, h2, h3 { font-family: Montserrat, sans-serif; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); letter-spacing: -.065em; margin-bottom: 26px; }
h1 span { color: var(--platinum-dark); }
h2 { font-size: clamp(2.2rem, 4.8vw, 4.6rem); letter-spacing: -.05em; margin-bottom: 24px; }
h3 { font-size: 1.55rem; }
.hero-text, .lead { font-size: 1.16rem; max-width: 620px; color: #454545; }
.hero-art { display: flex; justify-content: center; }
.hero-art img { width: min(780px, 100%); filter: drop-shadow(0 26px 40px rgba(0,0,0,.10)); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 24px; text-decoration: none; font-weight: 800; border: 1px solid var(--ink); transition: .2s ease; }
.button.primary { background: var(--ink); color: white; }
.button.primary:hover { background: var(--teal); border-color: var(--teal); }
.button.secondary:hover { background: white; }
.button.full { width: 100%; }
.welcome-band { background: var(--ink); color: white; text-align: center; padding: 26px 0; text-transform: uppercase; letter-spacing: .25em; font-weight: 800; }
.welcome-band p { margin: 0; }
.section { padding: 110px 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.prose { font-size: 1.08rem; color: #444; }
.section-dark { background: var(--ink); color: white; padding: 110px 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { border: 1px solid rgba(255,255,255,.18); padding: 34px; min-height: 280px; }
.value-card span { color: var(--platinum); font-weight: 800; }
.value-card p { color: #cfcfcf; }
.visit { background: white; }
.visit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.info-card { padding: 36px; border: 1px solid var(--line); box-shadow: 0 28px 70px rgba(0,0,0,.08); }
.info-card > div { display: grid; gap: 4px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-card > div:first-child { padding-top: 0; }
.info-card .button { margin-top: 28px; }
.label { color: var(--teal); font-size: .74rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.info-card strong { font-size: 1.2rem; }
.info-card small { color: #666; }
.connect { background: linear-gradient(135deg, #dedede, #f7f7f7); }
.centered { text-align: center; }
.narrow { margin-inline: auto; }
.fine-print { font-size: .82rem; color: #555; margin-top: 18px; }
.contact-links { display: grid; gap: 12px; font-size: 1.15rem; }
.contact-links a { text-decoration-thickness: 1px; text-underline-offset: 5px; }
.site-footer { background: var(--ink); color: white; padding: 42px 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.footer-wrap p { margin: 4px 0 0; color: #bbb; }
@media (max-width: 850px) {
  .menu-button { display: block; }
  .site-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 22px; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; }
  .hero-grid, .split, .visit-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 70px; }
  .hero-copy { order: 2; }
  .hero-art { order: 1; }
  .hero-art img { width: 100%; }
  .card-grid { grid-template-columns: 1fr; }
  .section, .section-dark { padding: 76px 0; }
  .split, .visit-grid { gap: 36px; }
  .footer-wrap { align-items: start; flex-direction: column; }
}
@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  h1 { font-size: 3.05rem; }
  .button-row { flex-direction: column; }
  .button { width: 100%; }
}
