@font-face {
  font-family: "CH Serif";
  src: url("../fonts/LiberationSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CH Serif";
  src: url("../fonts/LiberationSerif-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CH Serif";
  src: url("../fonts/LiberationSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "CH Sans";
  src: url("../fonts/LiberationSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CH Sans";
  src: url("../fonts/LiberationSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CH Sans";
  src: url("../fonts/LiberationSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #F7F4EE;
  --ink: #1C1916;
  --slate: #3F4A4A;
  --brass: #B08D4A;
  --brass-deep: #8C6E34;
  --card: #FFFcf7;
  --line: #DDD6C8;
  --line-soft: #E8E2D6;
  --muted: #5C5852;
  --faint: #8A8478;
  --star-off: #D2C8B4;
  --wash: #F1EDE4;
  --util: #2A2A28;
  --header: #F5F3ED;
  --max: 1180px;
  --pad: 40px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
html, body { margin: 0; padding: 0; }
body {
  font-family: "CH Sans", "Liberation Sans", "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
  text-decoration: none;
  font-size: 13px;
}
.skip:focus { top: 12px; }

.util {
  height: 22px;
  background: var(--util);
  color: #F5F3ED;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top {
  background: var(--header);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 -2px 0 var(--brass);
  position: sticky;
  top: 0;
  z-index: 40;
}
.top-inner {
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.brand img.mark {
  height: 52px;
  width: 52px;
  display: block;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}
.brand-name {
  font-family: "CH Serif", Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.05;
}
.brand-tag {
  font-size: 11px;
  color: var(--slate);
  line-height: 1.25;
  max-width: 280px;
}
.indep { display: none; }
nav.main {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav.main a {
  font-size: 14px;
  color: var(--slate);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
}
nav.main a:hover { color: var(--ink); }
nav.main a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--brass);
  font-weight: 700;
}
.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.wrap {
  width: 100%;
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  padding: 28px var(--pad) 48px;
  flex: 1;
}
main:focus { outline: none; }

.kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 8px;
}
h1.title {
  font-family: "CH Serif", Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  font-size: clamp(32px, 4.4vw, 48px);
}
h1.title .break { display: block; }
.lede {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.5;
  max-width: 560px;
  margin: 12px 0 0;
}
h2, h3 {
  font-family: "CH Serif", Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.lbl {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  background: var(--brass);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--brass);
  cursor: pointer;
}
.btn:hover { background: var(--brass-deep); border-color: var(--brass-deep); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 2px solid var(--brass-deep);
  outline-offset: 2px;
}
.links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.link {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 1px;
}
.link:hover { color: var(--brass-deep); }

.mast {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 22px;
}
.mast .lede { margin-top: 8px; }
.mast-aside {
  text-align: right;
  color: var(--muted);
  font-size: 13px;
  padding-bottom: 4px;
  max-width: 260px;
  flex-shrink: 0;
}

/* Home */
.home-hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 36px;
  align-items: start;
}
.cta-row { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.hook {
  margin-top: 18px;
  padding: 12px 14px;
  background: var(--wash);
  border-left: 3px solid var(--brass);
  color: var(--slate);
  font-size: 14.5px;
}
.hook b { color: var(--ink); }
.consult-quiet { margin: 14px 0 0; font-size: 14px; color: var(--muted); }
.consult-quiet a { color: var(--ink); }

.status {
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 20px 22px 18px;
}
.status .lbl { margin-bottom: 6px; }
.status h2 {
  font-size: 26px;
  margin: 0 0 6px;
  line-height: 1.1;
}
.status p { margin: 0; color: var(--muted); font-size: 14px; }
.status ul { list-style: none; margin: 12px 0 0; padding: 0; }
.status li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
}
.status li span { color: var(--muted); }
.status li strong { font-weight: 700; color: var(--ink); }
.status .now { color: var(--brass-deep); }
.still-wrap {
  margin-top: 12px;
  position: relative;
  height: 140px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #ddd;
}
.still-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.paths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.path {
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}
.path:hover { border-color: var(--brass); }
.path .num {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}
.path h3 { font-size: 22px; margin: 0 0 6px; line-height: 1.1; }
.path p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.4; flex: 1; }
.path .go {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brass-deep);
}

.events-strip { margin-top: 36px; }
.events-strip .strip-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}
.events-strip h2 { font-size: 24px; margin: 0; }
.egallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ecard {
  background: var(--card);
  border: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.ecard:hover { border-color: var(--brass); }
.ecard .thumb {
  height: 200px;
  background: var(--wash);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecard .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ecard .thumb.logo img { object-fit: contain; padding: 16px; max-height: 140px; width: auto; }
.ecard .body { padding: 12px 14px 14px; }
.ecard h3 { font-size: 18px; margin: 0 0 4px; }
.ecard p { margin: 0; color: var(--muted); font-size: 13px; }
.empty-note {
  margin: 0;
  padding: 16px 16px 14px;
  border: 1px dashed var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  background: var(--wash);
}

/* Checklist */
.stepper {
  display: flex;
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-right: 1px solid var(--line-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  min-width: 90px;
}
.step:last-child { border-right: 0; }
.step:hover { color: var(--ink); }
.step.on { background: var(--ink); color: #fff; }
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.col-stack { display: flex; flex-direction: column; gap: 14px; }
.block {
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 14px 16px 12px;
}
.block.current { border-color: var(--brass); box-shadow: inset 3px 0 0 var(--brass); }
.block h3 {
  font-size: 18px;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.block h3 em {
  font-family: "CH Sans", sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  line-height: 1.35;
  color: var(--ink);
}
.check:first-of-type { border-top: 0; }
.check.done { color: var(--muted); }
.check .note { color: var(--muted); font-size: 12.5px; display: block; margin-top: 3px; }
.check input {
  appearance: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1.5px solid var(--brass);
  background: #fff;
  cursor: pointer;
  position: relative;
}
.check input:checked {
  background: var(--brass);
}
.check input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check-meta {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

/* Themes */
.tgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.tcard {
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 0 0 14px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.tcard:hover, .tcard:focus-within { border-color: var(--brass); box-shadow: 0 0 0 2px rgba(176,141,74,.15); }
.tcard h3 { font-size: 18px; margin: 10px 14px 4px; }
.tcard p { margin: 0 14px 8px; color: var(--muted); font-size: 13px; }
.tcard .go { margin: 0 14px; color: var(--brass-deep); font-size: 12px; font-weight: 700; }
.swatch { height: 76px; }
.swatch.derby { background: linear-gradient(160deg,#5a1a2a,#c4a15a); }
.swatch.luau { background: linear-gradient(160deg,#1f4a3a,#e0b25a); }
.swatch.tie { background: linear-gradient(160deg,#1a1a1a,#4a4a4a); }
.swatch.mil { background: linear-gradient(160deg,#2a3a2a,#6a7a4a); }
.swatch.west { background: linear-gradient(160deg,#4a2a14,#c48a4a); }
.swatch.masters { background: linear-gradient(160deg,#1a3a28,#6a8a4a); }
.swatch.flag { background: linear-gradient(160deg,#1a2a4a,#8a2a2a); }
.swatch.roar { background: linear-gradient(160deg,#2a1a28,#b08d4a); }
.swatch.caddy { background: linear-gradient(160deg,#1a4a1a,#d4c44a); }
.swatch.wars { background: linear-gradient(160deg,#0e1630,#c4a15a); }
.prize {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--brass);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--slate);
}
.theme-notes {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.theme-note {
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 16px 18px;
}
.theme-note h3 { font-size: 20px; margin: 0 0 8px; }
.theme-note p { margin: 0; color: var(--slate); font-size: 14.5px; }

/* Vendors */
.dir-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 16px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line-soft);
}
.dir-bar input[type="search"] {
  flex: 1;
  min-width: 180px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 8px 10px;
}
.chip {
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 9px;
  border: 1px solid var(--line);
  color: var(--slate);
  background: #fff;
  cursor: pointer;
}
.chip[aria-pressed="true"], .chip.on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.vend-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 16px;
  align-items: start;
}
.vgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vcard {
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 12px 14px 10px;
}
.vcard h3 { font-size: 18px; margin: 0 0 2px; line-height: 1.15; }
.vcard .blurb { color: var(--muted); font-size: 12.5px; margin: 0 0 6px; }
.vrow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  padding: 7px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px;
  align-items: start;
}
.vrow .name { font-weight: 700; color: var(--ink); }
.vrow .vlogo { max-height: 36px; max-width: 160px; width: auto; object-fit: contain; display: block; }
.vrow .note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12.5px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}
.vrow .rate {
  color: var(--brass-deep);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
  white-space: nowrap;
  background: none;
  padding: 0;
  cursor: pointer;
}
.stars {
  display: inline-flex;
  gap: 1px;
  font-size: 13px;
  line-height: 1;
  color: var(--star-off);
  font-family: "CH Serif", Georgia, serif;
  letter-spacing: 1px;
}
.vcard.empty-cat .empty-note { margin-top: 8px; }
.rate-card {
  background: #fff;
  border: 1px solid var(--brass);
  box-shadow: 0 0 0 3px rgba(176,141,74,.12);
  padding: 18px 18px 16px;
  position: sticky;
  top: 88px;
}
.rate-card .lbl { margin-bottom: 6px; }
.rate-card h2 { font-size: 24px; margin: 0 0 2px; line-height: 1.1; }
.rate-card .sub { color: var(--muted); font-size: 13px; margin: 0 0 12px; }
.field-lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 6px;
  display: block;
}
.star-pick { display: flex; gap: 6px; margin-bottom: 12px; }
.star-pick button {
  font-family: "CH Serif", Georgia, serif;
  font-size: 28px;
  line-height: 1;
  color: var(--star-off);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.star-pick button.on, .star-pick button[aria-checked="true"] { color: var(--brass); }
.note-box, .field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 8px 10px;
  color: var(--ink);
}
.note-box, .field textarea { min-height: 88px; resize: vertical; }
.rate-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.fine { font-size: 12px; color: var(--faint); }

/* Board */
.board-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: start;
}
.recap {
  background: var(--card);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.recap-top { padding: 14px 16px 10px; }
.recap-top h2, .recap-top h3 { font-size: 22px; margin: 0 0 4px; line-height: 1.15; }
.recap-top p { margin: 0; color: var(--slate); font-size: 14px; }
.photos {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 6px;
  padding: 0 16px;
}
.photos figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #d8d2c6;
  height: 168px;
}
.photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photos figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(28,25,22,.45);
  padding: 2px 6px;
}
.recap .copy { padding: 12px 16px 16px; color: var(--slate); font-size: 14.5px; }
.recap .copy p { margin: 0; }
.recap .copy p + p { margin-top: 8px; }
.share-card {
  background: #fff;
  border: 1px solid var(--brass);
  box-shadow: 0 0 0 3px rgba(176,141,74,.12);
  padding: 18px 18px 16px;
}
.share-card h2 { font-size: 24px; margin: 0 0 6px; }
.share-card .sub { color: var(--muted); font-size: 14px; margin: 0 0 14px; }

/* Consult / forms */
.price-box { text-align: right; padding-bottom: 4px; }
.price {
  font-family: "CH Serif", Georgia, serif;
  font-size: 40px;
  line-height: 1;
}
.tiny { font-size: 13px; color: var(--muted); }
.cgrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.ccard {
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 18px 18px 16px;
}
.ccard h2, .ccard h3 { font-size: 20px; margin: 0 0 10px; }
ul.plain { margin: 0; padding: 0 0 0 18px; color: var(--slate); font-size: 15px; }
ul.plain li { margin: 0 0 8px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-top: 8px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.form-panel {
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px 22px;
}
.form-panel h2 { font-size: 24px; margin: 0 0 6px; }
.form-ok {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--wash);
  border-left: 3px solid var(--brass);
  color: var(--ink);
  font-size: 14.5px;
}
.form-ok.show { display: block; }
.form-err {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--wash);
  border-left: 3px solid var(--slate);
  color: var(--ink);
  font-size: 14.5px;
}
.form-err.show { display: block; }
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* 404 */
.notfound { max-width: 560px; padding: 24px 0 40px; }
.notfound h1 { font-size: 42px; }

/* Footer */
.site-foot {
  background: var(--ink);
  color: #E8E2D6;
  margin-top: auto;
}
.site-foot a { color: #E8E2D6; text-decoration: none; }
.site-foot a:hover { color: #fff; border-bottom: 1px solid var(--brass); }
.foot-inner {
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  padding: 28px var(--pad) 22px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}
.foot-brand .word {
  font-family: "CH Serif", Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #F7F4EE;
  line-height: 1;
}
.foot-brand .rule {
  width: 132px;
  height: 1px;
  background: var(--brass);
  margin: 8px 0;
}
.foot-brand .tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C4B89A;
}
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  font-size: 13px;
}
.foot-base {
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  padding: 0 var(--pad) 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #A39A8C;
  border-top: 1px solid #3A342C;
  padding-top: 14px;
}
.foot-base strong { color: #E8E2D6; font-weight: 700; }

@media (max-width: 1100px) {
  :root { --pad: 24px; }
  nav.main { gap: 14px; }
  .paths { grid-template-columns: 1fr 1fr; }
  .tgrid { grid-template-columns: 1fr 1fr; }
  .egallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .menu-btn { display: inline-flex; }
  nav.main {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--header);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
    box-shadow: 0 10px 20px rgba(28,25,22,.08);
  }
  .top.is-open nav.main { display: flex; }
  nav.main a { padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
  nav.main a[aria-current="page"] { border-bottom-color: var(--brass); }
  .indep { display: none; }
  .home-hero, .vend-layout, .board-layout, .cgrid, .grid-3, .theme-notes, .form-grid, .foot-inner {
    grid-template-columns: 1fr;
  }
  .mast { flex-direction: column; align-items: flex-start; }
  .mast-aside, .price-box { text-align: left; }
  .rate-card { position: static; }
  .photos { grid-template-columns: 1fr 1fr 1fr; }
  .cta-row .btn { flex: 1; }
  .foot-nav { justify-content: flex-start; }
}
@media (max-width: 560px) {
  :root { --pad: 16px; }
  .brand img.mark { height: 44px; width: 44px; }
  .brand-tag { font-size: 10px; max-width: 200px; }
  .paths, .tgrid, .vgrid, .egallery { grid-template-columns: 1fr; }
  .photos { grid-template-columns: 1fr; height: auto; }
  .photos figure { height: 160px; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .stepper { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .wrap { padding-top: 20px; }
  h1.title { font-size: 30px; }
}

.section-h {
  font-size: 22px;
  margin: 28px 0 12px;
}
.edir {
  background: var(--card);
  border: 1px solid var(--line-soft);
}
.erow {
  display: grid;
  grid-template-columns: minmax(140px, 0.9fr) 1.4fr 0.8fr;
  gap: 10px 16px;
  padding: 10px 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  align-items: baseline;
}
.erow:first-child { border-top: 0; }
.erow-club { font-weight: 700; color: var(--ink); }
.erow-name a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--brass); }
.erow-name a:hover { color: var(--brass-deep); }
.erow-meta { color: var(--muted); font-size: 13px; text-align: right; }
@media (max-width: 700px) {
  .erow { grid-template-columns: 1fr; gap: 2px; padding: 12px 14px; }
  .erow-meta { text-align: left; }
}


/* Magazine issue */
main { flex: 1; width: 100%; }
.folio {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 18px;
}
.issue-lede { max-width: 720px; margin-bottom: 8px; }
.issue-lede .title {
  font-family: "CH Serif", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.issue-lede .lede {
  font-family: "CH Serif", Georgia, serif;
  font-size: 19px;
  line-height: 1.45;
  max-width: 640px;
  color: var(--slate);
}
.pull {
  margin: 28px 0 8px;
  padding: 8px 0 8px 22px;
  border-left: 3px solid var(--brass);
  font-family: "CH Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 720px;
}

.cover {
  position: relative;
  background: #1C1916;
  margin: 0;
}
.cover-link { display: block; position: relative; color: inherit; text-decoration: none; }
.cover img {
  width: 100%;
  height: min(78vh, 640px);
  object-fit: cover;
  object-position: center 40%;
}
.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,25,22,.18) 0%, rgba(28,25,22,.12) 40%, rgba(28,25,22,.78) 100%);
}
.cover-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  padding: 48px var(--pad) 40px;
  color: #F7F4EE;
}
.cover-copy .kicker { color: #E4C98A; }
.cover-copy h1 {
  font-family: "CH Serif", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 76px);
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin: 0 0 10px;
  max-width: 16ch;
}
.cover-deck {
  margin: 0;
  font-size: 16px;
  color: #E8E2D6;
  max-width: 40ch;
}
.cover-go {
  margin: 16px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #E4C98A;
}

.cover-track {
  position: relative;
  height: min(78vh, 640px);
}
.cover[aria-roledescription="carousel"] .cover-link {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.cover[aria-roledescription="carousel"] .cover-link.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.cover[aria-roledescription="carousel"] img {
  height: 100%;
}
.cover-live {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cover-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: none;
  border: 0;
  color: #F7F4EE;
  font-family: "CH Serif", Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  padding: 10px 12px;
  cursor: pointer;
  opacity: 0.72;
}
.cover-arrow:hover,
.cover-arrow:focus-visible {
  opacity: 1;
  color: #E4C98A;
}
.cover-prev { left: 6px; }
.cover-next { right: 6px; }
.cover-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}
.cover-dots button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}
.cover-dots button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  border: 1px solid #E4C98A;
  background: transparent;
}
.cover-dots button[aria-current="true"]::after {
  background: #E4C98A;
}
.cover[aria-roledescription="carousel"] .cover-copy {
  padding-bottom: 58px;
}

.depts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 36px 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dept {
  padding: 22px 20px 20px;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.dept:last-child { border-right: 0; }
.dept:hover { background: var(--wash); }
.dept .num {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--brass);
  margin-bottom: 8px;
}
.dept h3 {
  font-size: 26px;
  margin: 0 0 8px;
  line-height: 1.1;
}
.dept p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.4;
  flex: 1;
}
.dept .go {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brass-deep);
}

.well-dek {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 14px;
}
.egallery.well {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ecard.large { grid-column: span 2; }
.ecard.large .thumb { height: 280px; }
.egallery.well .ecard .thumb { height: 188px; }
.egallery.well .ecard.large .thumb { height: 280px; }
.ecard h3 {
  font-family: "CH Serif", Georgia, serif;
  font-size: 20px;
}

.event-hero {
  margin: 0 0 18px;
  background: #ddd;
}
.event-hero img {
  width: 100%;
  height: min(56vh, 460px);
  object-fit: cover;
}
.event-hero figcaption {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0 0;
}
.photos.event-stills {
  padding: 0;
  margin: 0 0 22px;
}

.from-week { margin-top: 40px; }
.from-week .strip-head { margin-bottom: 14px; }
.recap-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.recap-tile {
  background: var(--card);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}
.recap-tile .thumb { height: 160px; overflow: hidden; background: var(--wash); }
.recap-tile .thumb img { width: 100%; height: 100%; object-fit: cover; }
.recap-tile .body { padding: 14px 16px 16px; }
.recap-tile h3 { font-size: 20px; margin: 0 0 8px; }
.recap-tile .quote {
  font-family: "CH Serif", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 10px;
}
.recap-tile .by { margin: 0; font-size: 12px; color: var(--muted); }
.recap-tile .meta {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
}
.recap-tile .theme-line {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.recap-tile h3 a { text-decoration: none; }
.recap-tile h3 a:hover { color: var(--brass-deep); }
.recap-tile.has-photo .thumb { height: 180px; }
.recap-tile.no-photo {
  background: var(--wash);
}
.recap-tile { scroll-margin-top: 88px; }

.board-recaps { margin-bottom: 28px; }
.board-recaps .recap-row {
  grid-template-columns: repeat(3, 1fr);
}
.board-recaps .recap-tile.has-photo .thumb { height: 200px; }

@media (max-width: 1100px) {
  .depts { grid-template-columns: 1fr 1fr; }
  .dept { border-bottom: 1px solid var(--line-soft); }
  .egallery.well { grid-template-columns: 1fr 1fr; }
  .ecard.large { grid-column: span 1; }
  .egallery.well .ecard.large .thumb,
  .ecard.large .thumb { height: 220px; }
  .recap-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .cover img { height: min(70vh, 480px); }
  .cover-track { height: min(70vh, 480px); }
  .cover-copy h1 { max-width: none; }
  .cover-arrow { font-size: 36px; }
  .depts { grid-template-columns: 1fr; }
  .dept { border-right: 0; }
}
@media (max-width: 560px) {
  .egallery.well,
  .recap-row { grid-template-columns: 1fr; }
  .cover img { height: 420px; }
  .cover-track { height: 420px; }
  .cover-arrow { font-size: 32px; padding: 8px 6px; }
  .pull { font-size: 20px; }
}

/* Event magazine feature */
.event-hero.bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 4px;
  margin-bottom: 22px;
  background: #1C1916;
}
.event-hero.bleed img {
  width: 100%;
  height: min(62vh, 540px);
  object-fit: cover;
  object-position: center 40%;
}
.event-hero.bleed figcaption {
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
  padding: 10px var(--pad) 0;
  color: var(--muted);
}
.event-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.event-facts div {
  padding: 12px 18px 14px;
  min-width: 140px;
  border-right: 1px solid var(--line-soft);
}
.event-facts dt {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 4px;
}
.event-facts dd {
  margin: 0;
  font-family: "CH Serif", Georgia, serif;
  font-size: 17px;
  color: var(--ink);
}
.photos.event-stills figure.logo {
  height: 96px;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photos.event-stills figure.logo img {
  object-fit: contain;
  max-height: 80px;
  width: auto;
  padding: 8px;
}
.event-recap {
  margin: 18px 0 22px;
  padding: 16px 18px 14px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--brass);
}
.event-recap .kicker { margin-bottom: 8px; }
.event-recap blockquote {
  font-family: "CH Serif", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 10px;
}
.event-recap p { margin: 0 0 10px; }
.event-recap .by { margin: 0; font-size: 12px; color: var(--muted); }
.event-recap .recap-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 10px 0 12px;
}
.event-recap .recap-photos figure {
  margin: 0;
  height: 120px;
  overflow: hidden;
  background: var(--wash);
}
.event-recap .recap-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-related { margin: 28px 0 8px; }
.event-related h2 { font-size: 20px; margin: 0 0 8px; }
.event-related ul { list-style: none; margin: 0; padding: 0; }
.event-related li {
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
}
@media (max-width: 560px) {
  .event-hero.bleed img { height: 280px; }
  .event-recap .recap-photos { grid-template-columns: 1fr 1fr; }
}


/* Insights + services */
.insights-rail { margin: 28px 0 8px; }
.insights-rail .strip-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
}
.insights-rail h2 { font-size: 24px; margin: 0; }
.insights-home {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}
.insight-lead {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 22px 22px 18px;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}
.insight-lead:hover { border-color: var(--brass); }
.insight-lead h3 {
  font-size: 28px;
  margin: 0 0 10px;
  line-height: 1.12;
}
.insight-lead p { margin: 0; color: var(--slate); font-size: 15px; line-height: 1.45; flex: 1; }
.insight-lead .go {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brass-deep);
}
.insight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.insight-list li { border-bottom: 1px solid var(--line-soft); }
.insight-list a {
  display: block;
  padding: 12px 4px 12px 0;
  text-decoration: none;
  color: inherit;
}
.insight-list a:hover .t { color: var(--brass-deep); }
.insight-list .kicker { margin: 0 0 4px; }
.insight-list .t {
  display: block;
  font-family: "CH Serif", Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
}
.work-with {
  background: var(--ink);
  color: #F7F4EE;
  padding: 22px 20px 18px;
}
.work-with .kicker { color: #E4C98A; }
.work-with h3 {
  color: #F7F4EE;
  font-size: 24px;
  margin: 0 0 8px;
  line-height: 1.15;
}
.work-with p { margin: 0 0 16px; color: #E8E2D6; font-size: 14.5px; }
.work-with .cta-row { margin-top: 0; }
.work-with .link { color: #E4C98A; border-bottom-color: #E4C98A; }

.igrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.icard {
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 22px 22px 18px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.icard:hover { border-color: var(--brass); }
.icard h2 { font-size: 26px; margin: 0 0 8px; line-height: 1.15; }
.icard p { margin: 0; color: var(--slate); font-size: 15px; flex: 1; }
.icard .go {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brass-deep);
}

.insight { max-width: 720px; }
.insight-mast { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.insight-mast .lede {
  font-family: "CH Serif", Georgia, serif;
  font-size: 20px;
  max-width: 40em;
}
.byline {
  margin: 14px 0 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.insight-body { color: var(--slate); font-size: 17px; line-height: 1.6; }
.insight-body p { margin: 0 0 1em; }
.insight-body h2 {
  font-size: 24px;
  margin: 1.6em 0 0.5em;
  line-height: 1.2;
}
.insight-body ul, .insight-body ol { margin: 0 0 1.1em; padding-left: 1.2em; }
.insight-body li { margin: 0 0 0.45em; }
.insight-field, .insight-more, .event-insights {
  margin: 28px 0 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.insight-field h2, .insight-more h2, .event-insights h2 {
  font-size: 20px;
  margin: 0 0 8px;
}
.insight-field ul, .insight-more ul, .event-insights ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.insight-field li, .insight-more li, .event-insights li {
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
}
.insight-cta {
  margin: 28px 0 0;
  padding: 16px 18px;
  background: var(--wash);
  border-left: 3px solid var(--brass);
  font-size: 15px;
  color: var(--ink);
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0 28px;
}
.svc {
  background: var(--card);
  border: 1px solid var(--line-soft);
  padding: 22px 22px 18px;
}
.svc h2 { font-size: 26px; margin: 0 0 8px; line-height: 1.15; }
.svc p { margin: 0 0 10px; color: var(--slate); font-size: 15px; }
.svc p:last-child { margin-bottom: 0; }
.work-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--ink);
  color: #F7F4EE;
  padding: 28px 28px 24px;
  margin: 8px 0 18px;
}
.work-band h2 { color: #F7F4EE; font-size: 30px; margin: 0 0 8px; }
.work-band p { margin: 0; color: #E8E2D6; max-width: 36em; }
.work-band .kicker { color: #E4C98A; }
.work-band .btn.ghost { color: #F7F4EE; border-color: #F7F4EE; }
.work-band .btn.ghost:hover { background: #F7F4EE; color: var(--ink); }

@media (max-width: 1100px) {
  .insights-home { grid-template-columns: 1fr 1fr; }
  .work-with { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .insights-home, .igrid, .svc-grid, .work-band { grid-template-columns: 1fr; }
  .work-band { flex-direction: column; align-items: flex-start; }
}
