:root {
  --bg: #fafaf8;
  --ink: #161616;
  --muted: #6b6b66;
  --line: #e3e2dd;
  --accent: #1f6f8b;
  --max: 1200px;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #111110; --ink: #f0efea; --muted: #a09f98; --line: #2a2a27; --accent: #6fb6d1; }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 500; letter-spacing: -0.01em; margin: 0 0 .5rem; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.15rem; margin-top: 2rem; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .9rem; }
nav a { margin-left: 1.5rem; font-size: .9rem; color: var(--muted); }
nav a:hover { color: var(--ink); }

.hero {
  background: #0b0b0b; color: #fff;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  max-width: var(--max); margin: 0 auto; min-height: 80vh; padding: 0;
}
.hero-text { padding: 3rem 1.5rem; max-width: 560px; }
.hero-img { width: 100%; height: 80vh; object-fit: cover; object-position: center 20%; display: block; }
.eyebrow { text-transform: uppercase; letter-spacing: .15em; font-size: .75rem; margin: 0 0 .5rem; opacity: .75; }
.lede { font-size: 1.15rem; max-width: 40ch; opacity: .9; }
.button {
  display: inline-block; margin-top: 1rem; padding: .7rem 1.2rem;
  border: 1px solid #fff; border-radius: 999px; font-size: .9rem;
}
.button:hover { background: #fff; color: #111; }

section { padding: 4rem 1.5rem; max-width: var(--max); margin: 0 auto; }
.section-intro { color: var(--muted); max-width: 60ch; margin-bottom: 2rem; }

.grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
figure { margin: 0; }
figure img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; display: block; background: var(--line); }
figcaption { font-size: .8rem; color: var(--muted); margin-top: .5rem; }

.about { border-top: 1px solid var(--line); }
.about-inner { max-width: 68ch; }
.about p { font-size: 1.05rem; }

.contact { border-top: 1px solid var(--line); }
.contact-links a { display: inline-block; margin-right: 1.5rem; color: var(--accent); border-bottom: 1px solid currentColor; }

.site-footer { border-top: 1px solid var(--line); padding: 2rem 1.5rem; font-size: .8rem; color: var(--muted); text-align: center; }

@media (max-width: 600px) {
  nav a { margin-left: 1rem; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-img { height: 70vh; order: -1; }
}
.hero-band { background: #0b0b0b; }
