:root {
  --bg: #f3eee6;
  --paper: #fffcf7;
  --ink: #1b1916;
  --muted: #5e584f;
  --line: #d9d0c2;
  --steel: #3d5a80;
  --steel-dark: #243a58;
  --brick: #b03a2e;
  --brick-dark: #8c2d24;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}
img, video { max-width: 100%; display: block; }
a { color: var(--steel); }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus { left: 8px; background: #fff; padding: 8px; z-index: 20; }

.wrap { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand img { height: 52px; width: auto; max-width: min(340px, 62vw); }

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
nav a[aria-current="page"] { color: var(--steel); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 8px 10px;
  font: inherit;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background: var(--brick);
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
}
.btn:hover { background: var(--brick-dark); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.header-call { white-space: nowrap; padding: 10px 14px; }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 70vh;
  background: var(--steel-dark);
  color: #f7f3ea;
}
.hero img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.hero-copy {
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #d7c39a;
  margin: 0 0 12px;
}
h1, h2, h3 { font-family: "Source Serif 4", Georgia, serif; line-height: 1.15; margin: 0 0 12px; }
h1 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.lede { font-size: 1.15rem; max-width: 38rem; color: #e8e2d6; }
.hero-copy .lede { margin-bottom: 24px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }

section { padding: 64px 0; }
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--steel);
  margin: 0 0 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}
.card img { height: 200px; width: 100%; object-fit: cover; }
.card-body { padding: 18px; }
.card h3 { font-size: 1.25rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.split img { width: 100%; height: 380px; object-fit: cover; }
.muted { color: var(--muted); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.work-item figcaption {
  font-size: 0.95rem;
  padding: 10px 2px 0;
  color: var(--muted);
}
.work-item img, .work-item video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #111;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.video-grid .work-item video {
  height: 200px;
}
.video-grid figcaption { font-weight: 600; color: var(--ink); }

.form {
  display: grid;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px;
}
.form label { font-weight: 600; font-size: 0.9rem; }
.form input, .form select, .form textarea {
  width: 100%;
  font: inherit;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
}
.contact-facts a { color: inherit; font-weight: 700; }

.town-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 28px;
}
.town-cols ul {
  columns: 2;
  gap: 1.5rem;
  margin: 8px 0 0;
  padding-left: 1.1rem;
}
.town-cols li { break-inside: avoid; margin: 4px 0; }
.faq dt { font-weight: 700; margin: 18px 0 4px; }
.faq dd { margin: 0; color: var(--muted); max-width: 40rem; }

.site-footer {
  background: var(--steel-dark);
  color: #ece6da;
  padding: 36px 0;
  font-size: 0.95rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer a { color: #fff; }

@media (max-width: 860px) {
  .hero, .split, .cards, .work-grid, .video-grid, .contact-grid, .town-cols { grid-template-columns: 1fr; }
  .town-cols ul { columns: 1; }
  .hero { min-height: auto; }
  .hero-copy { padding: 32px 20px; }
  .nav-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 20px;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 12px; }
  .header-call { display: none; }
  .split img, .work-item img, .work-item video { height: 240px; }
}
