:root {
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --paper: #f7f4ef;
  --paper-2: #efeae2;
  --line: #ddd6cb;
  --muted: #6b6560;
  --white: #fafafa;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --shadow: 0 20px 50px rgba(10, 10, 10, 0.08);
  --radius: 1.25rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% 0%, #ebe4d8 0%, transparent 55%),
    radial-gradient(700px 380px at 100% 8%, #e3e7e2 0%, transparent 50%),
    var(--paper);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(1080px, calc(100% - 2rem)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10,10,10,0.06);
}
.logo-header { width: min(200px, 48vw); height: auto; }
.nav { display: flex; gap: 1.25rem; font-size: 0.92rem; font-weight: 500; }
.nav a { text-decoration: none; color: var(--muted); }
.nav a:hover { color: var(--ink); }

.hero { padding: 4.5rem 0 3.5rem; }
.hero-inner { text-align: center; max-width: 44rem; }
.hero-seal {
  margin: 0 auto 1.25rem;
  width: 88px; height: auto;
  opacity: 0.92;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.72rem; font-weight: 600; color: var(--muted); margin: 0 0 1rem;
}
h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
}
.lede {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  color: #3f3a36;
  font-size: 1.08rem;
}
.cta { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.25rem; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 0.92rem;
  border: 1px solid transparent;
}
.btn.primary { background: var(--ink); color: var(--white); }
.btn.primary:hover { background: #222; }
.btn.ghost { border-color: var(--line); background: rgba(255,255,255,0.55); }
.btn.light { background: var(--white); color: var(--ink); }

.section { padding: 3.5rem 0 4rem; }
.section-head { max-width: 34rem; margin-bottom: 1.75rem; }
.section-head h2, .band h2, .contact h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin: 0 0 0.6rem;
}
.section-head p { margin: 0; color: var(--muted); }
.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.grid article {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}
.num {
  display: block; font-size: 0.75rem; letter-spacing: 0.12em;
  color: var(--muted); font-weight: 600; margin-bottom: 0.7rem;
}
.grid h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.grid p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.band {
  background: var(--ink);
  color: var(--white);
  padding: 3.75rem 0;
}
.band p { color: #cfc9c2; }
.split {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 1.75rem; align-items: stretch;
}
.meta { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1.15rem; }
.meta .label {
  display: block; font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #9a948c; margin-bottom: 0.25rem; font-weight: 600;
}
.map-card {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.6rem;
  background:
    radial-gradient(400px 220px at 80% 0%, rgba(255,255,255,0.08), transparent 60%),
    #111;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 0.25rem;
  min-height: 240px;
}
.map-seal { width: 64px; height: auto; filter: invert(1); opacity: 0.9; margin-bottom: 0.75rem; }
.map-city { font-family: var(--display); font-size: 2.1rem; margin: 0; color: #fff; }
.map-state { margin: 0 0 1.1rem; color: #b7b1a9; }
.map-card .btn { align-self: flex-start; }

.contact .phone { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 600; margin: 0.4rem 0; }
.contact .phone a { text-decoration: none; border-bottom: 1px solid rgba(10,10,10,0.2); }
.fine { color: var(--muted); font-size: 0.85rem; margin: 0; }

.site-footer {
  background: #050505;
  color: #d7d2cb;
  padding: 2.5rem 0 2.75rem;
  border-top: 1px solid #1c1c1c;
}
.foot-inner {
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
}
.logo-foot {
  width: min(220px, 70vw);
  height: auto;
  /* source is white-on-black with padding; keep readable */
  object-fit: contain;
  max-height: 72px;
}
.foot-copy p { margin: 0.15rem 0; font-size: 0.9rem; }
.muted { color: #8f8982; }

@media (max-width: 820px) {
  .grid, .split { grid-template-columns: 1fr; }
  .site-header { padding-inline: 1rem; }
  .nav { gap: 0.85rem; font-size: 0.85rem; }
  .hero { padding-top: 3rem; }
}
