:root {
  /* Palette D — More black (Brian locked 2026-09-23) */
  --ink: #0A0A0A;
  --muted: #5c5c5c;
  --paper: #F5F2EC;
  --white: #ffffff;
  --line: #e4e0d8;
  --band: #0A0A0A;
  --forest: #1B3D32; /* thin accent only — not a fill */
  --accent: #0A0A0A; /* primary fills = ink/black */
  --accent-2: #C4A265; /* brass */
  --shadow: 0 20px 50px rgba(10, 10, 10, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 7vw;
  background: var(--band);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.logo {
  display: flex; gap: 10px; align-items: center;
  text-decoration: none; font-weight: 700; letter-spacing: .04em;
  padding: 4px 0;
}
.logo-mark {
  width: auto; height: 40px; max-width: 220px;
  display: block; object-fit: contain;
}
.logo-text em {
  display: block; font-style: normal; font-weight: 500;
  font-size: 11px; color: rgba(255,255,255,.62); letter-spacing: .12em;
}
.nav nav { display: flex; gap: 22px; align-items: center; font-size: 14px; }
.nav nav a { text-decoration: none; color: rgba(255,255,255,.88); }
.nav nav a:hover { color: #fff; }
.nav .menu { display: none; background: none; border: 0; font-size: 22px; cursor: pointer; color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 20px; text-decoration: none; border-radius: 999px;
  font-weight: 600; font-size: 14px; border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { filter: brightness(1.12); }
.btn-ghost { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn-nav { background: var(--accent-2); color: var(--ink); padding: 8px 14px; }
.btn-nav:hover { filter: brightness(1.05); }
.btn.full { width: 100%; }

.hero {
  padding: 64px 7vw 48px;
  background: linear-gradient(180deg, var(--paper) 0%, #ffffff 72%);
}
.hero-inner { max-width: 880px; margin-bottom: 36px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em; font-size: 12px;
  color: var(--accent-2); font-weight: 700; margin: 0 0 12px;
}
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15; margin: 0 0 16px;
}
h1 { font-size: clamp(36px, 5vw, 62px); }
.lede { font-size: 18px; color: var(--muted); max-width: 720px; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }

/* Full-width video under headline — poster fills until mp4 lands */
.hero-video {
  margin: 0 0 40px;
  width: 100%;
}
.hero-video-frame {
  position: relative;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--ink);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.hero-video video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  background: transparent;
  border: 0;
  aspect-ratio: auto;
  object-fit: cover;
}
.hero-video.is-poster-only video {
  pointer-events: none;
}
.hero-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(220px, 70%);
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(10, 10, 10, 0.78);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  backdrop-filter: blur(4px);
}
.hero-play[hidden] { display: none !important; }
.hero-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--accent-2);
  margin-left: 2px;
}
.hero-play-label { white-space: nowrap; }
.hero-video figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  max-width: 760px;
}

/* Owner card with real Brian + Jami photo */
.owner-card {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 28px;
  align-items: stretch;
  background: var(--ink);
  color: white;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 920px;
}
.owner-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.owner-copy { padding: 32px 32px 32px 8px; align-self: center; }
.owner-card h2 { color: white; margin-bottom: 6px; }
.owner-role { margin: 0 0 8px; color: #cfcfcf; }
.card-kicker {
  text-transform: uppercase; letter-spacing: .14em; font-size: 11px;
  color: var(--accent-2); margin: 0 0 8px;
}
.phone {
  display: block; font-size: 28px; font-weight: 700;
  text-decoration: none; margin: 16px 0; color: white;
}
.fine { font-size: 13px; color: #cfcfcf; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 12px 7vw 64px;
}
.stats div { border-top: 2px solid var(--ink); padding-top: 16px; }
.stats strong { display: block; font-size: 22px; }
.stats span { color: var(--muted); font-size: 14px; }

.section { padding: 72px 7vw; }
.section.alt { background: var(--paper); }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 44px); }
.section-head a { color: var(--forest); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
#why .grid-3 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 article {
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
}
.alt .grid-3 article { border: 0; box-shadow: var(--shadow); }
.tag {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--forest); margin: 0 0 10px;
}
.path-fitcoin .path-logo {
  display: block; max-width: 160px; height: auto; margin: 0 0 12px;
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 7vw 72px;
}
blockquote {
  margin: 0; padding: 28px; background: var(--paper); font-size: 20px;
  font-family: "Playfair Display", Georgia, serif;
}
blockquote cite {
  display: block; margin-top: 16px;
  font-family: Inter, sans-serif; font-size: 13px;
  color: var(--muted); font-style: normal;
}

.checks { columns: 2; padding: 0; list-style: none; margin: 0; }
.checks li {
  break-inside: avoid; margin: 0 0 14px;
  padding-left: 28px; position: relative;
}
.checks li:before {
  content: "✓"; position: absolute; left: 0;
  color: var(--forest); font-weight: 700;
}

.tour {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; background: var(--band); color: white;
}
.tour .eyebrow { color: var(--accent-2); }
.tour .forest-cue { color: var(--forest); font-size: 13px; letter-spacing: .04em; }
.tour p { max-width: 640px; color: rgba(255,255,255,.78); }
.tour-copy { flex: 1; }
.tour-visual {
  display: flex; flex-direction: column; align-items: stretch;
  gap: 16px; min-width: min(280px, 100%);
}
.showroom-logo {
  display: inline-block;
  margin: 8px 0 18px;
  background: rgba(255,255,255,.96);
  padding: 14px 18px;
  border-radius: 8px;
  line-height: 0;
}
.showroom-logo img {
  display: block;
  height: 96px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.showroom-photo {
  margin: 0;
  aspect-ratio: 16 / 9;
  min-width: 220px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: #000;
}
.showroom-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showroom-iguide {
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.showroom-iguide:hover { color: #fff; }

.apply form { display: grid; gap: 16px; max-width: 640px; }
label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; }
input, select, textarea {
  font: inherit; padding: 12px 14px;
  border: 1px solid var(--line); background: white;
}
.field-helper {
  margin: -6px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

footer {
  padding: 40px 7vw 28px;
  background: var(--ink); color: #ddd;
  display: grid; gap: 16px;
}
footer a { color: white; margin-right: 16px; text-decoration: underline; text-underline-offset: 3px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 0; }
.legal { font-size: 12px; color: #9a9a9a; }

@media (max-width: 900px) {
  .nav nav { display: none; }
  .nav nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; right: 7vw;
    background: #111; padding: 16px;
    border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow);
  }
  .nav nav.open a { color: #fff; }
  .nav .menu { display: block; }
  .logo-mark { height: 36px; max-width: 180px; }
  .stats, .quotes, #why .grid-3, .grid-3, .tour {
    grid-template-columns: 1fr; display: grid;
  }
  .owner-card {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .owner-photo {
    min-height: 280px;
    max-height: 420px;
  }
  .owner-copy { padding: 28px; }
  .checks { columns: 1; }
  .hero, .section, .stats, .quotes { padding-left: 6vw; padding-right: 6vw; }
  .tour { text-align: left; }
  .hero-actions .btn { width: 100%; }
}

.owner-team { margin: 0 0 12px; font-size: 14px; color: #cfcfcf; }

.form-thanks {
  max-width: 640px;
  margin-top: 8px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.form-thanks-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  margin: 0 0 10px;
}
.form-thanks p { margin: 0 0 8px; color: var(--muted); }
.form-thanks a { color: var(--forest); font-weight: 600; }
.office-phone { margin: 10px 0 0; }
.office-phone a { color: white; text-decoration: underline; text-underline-offset: 3px; }
