/* ============================================================
   Big Star General Contracting — Site Design System
   Tacoma to the Eastside · Veteran-Owned · Two-decade résumé
   Charcoal / red / yellow palette inherited from Joel's house
   ============================================================ */

:root {
  --ink: #0E0F12;
  --ink-deep: #000000;
  --ink-warm: #1F2024;
  --paper: #F4F1EA;
  --paper-warm: #EFEAE0;
  --rule: #2A2A30;
  --rule-light: #D4CDBE;
  --rule-soft: #DDD6C7;
  --red: #C8302C;
  --red-deep: #A52320;
  --yellow: #F2C522;
  --yellow-bright: #FFD534;
  --text-on-dark: #F4EFE3;
  --text-on-dark-muted: rgba(244,239,227,0.82);
  --text-on-dark-tertiary: rgba(244,239,227,0.62);
  --display: 'Archivo Black', 'Arial Black', sans-serif;
  --display-secondary: 'Archivo', 'Arial', sans-serif;
  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text-on-dark);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ─── BRAND BANNER (Joel's actual logo at hero scale, runs across the top) ─── */
.brand-banner {
  background: var(--ink-deep);
  padding: 24px 24px 18px;
  text-align: center;
  display: block;
  text-decoration: none;
  color: inherit;
}
.brand-banner-logo {
  height: clamp(120px, 20vw, 240px);
  width: auto;
  display: block;
  margin: 0 auto;
  max-width: 92%;
}
.brand-banner-sub {
  font-family: var(--display-secondary);
  font-size: clamp(9px, 1.2vw, 12px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-on-dark-tertiary);
  font-weight: 600;
  margin-top: 14px;
}

/* ─── HEADER (sits below the brand banner) ─── */
header.site {
  background: var(--ink-deep);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-mark-img {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(242, 197, 34, 0.08);
  border: 1px solid rgba(242, 197, 34, 0.4);
  color: var(--yellow);
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
nav.primary {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav.primary a {
  font-family: var(--display-secondary);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  font-weight: 600;
  transition: color 0.2s;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
nav.primary a:hover, nav.primary a.current {
  color: var(--text-on-dark);
  border-bottom-color: var(--yellow);
}
nav.primary a.cta {
  color: var(--ink-deep);
  background: var(--yellow);
  padding: 11px 22px;
  letter-spacing: 0.14em;
  font-weight: 700;
  border-bottom: 0;
}
nav.primary a.cta:hover { background: var(--yellow-bright); border-bottom: 0; }

/* ─── MOBILE MENU ─── */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--text-on-dark);
  width: 48px;
  height: 48px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.menu-toggle svg { width: 22px; height: 22px; }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink-deep);
  z-index: 200;
  padding: 24px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}
.mobile-menu-veteran {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(242, 197, 34, 0.08);
  border: 1px solid rgba(242, 197, 34, 0.4);
  color: var(--yellow);
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.mobile-menu-close {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--text-on-dark);
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu nav a {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu nav a.cta { color: var(--yellow); }
.mobile-menu-meta {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.mobile-menu-meta-item {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-on-dark-muted);
  margin-bottom: 8px;
  font-weight: 300;
}
.mobile-menu-meta-item strong {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 400;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 48px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--yellow);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text-on-dark);
  max-width: 880px;
  margin-bottom: 36px;
}
.hero-headline em { font-style: italic; font-weight: 600; color: var(--red); }
.hero-subhead {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-on-dark-muted);
  font-weight: 500;
  line-height: 1.4;
  max-width: 640px;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 760px;
}
.hero-meta-item {
  font-family: var(--display-secondary);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-tertiary);
  font-weight: 600;
}
.hero-meta-item strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-on-dark);
  margin-bottom: 6px;
}

/* ─── HERO BUTTONS ─── */
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink-deep);
  padding: 16px 32px;
  font-family: var(--display-secondary);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.2s;
  border: 0;
  cursor: pointer;
}
.btn-primary:hover { background: var(--yellow-bright); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-on-dark);
  padding: 16px 32px;
  font-family: var(--display-secondary);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s;
  border: 1px solid var(--text-on-dark-tertiary);
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); }

/* ─── SECTIONS ─── */
.section-light {
  background: var(--paper);
  color: var(--ink);
}
.section-dark {
  background: var(--ink);
  color: var(--text-on-dark);
}
.section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 48px;
}
.section-eyebrow {
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-deep);
  font-weight: 700;
  margin-bottom: 24px;
}
.section-dark .section-eyebrow { color: var(--yellow); }
.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.005em;
  margin-bottom: 36px;
  max-width: 980px;
  text-transform: uppercase;
  color: var(--ink);
}
.section-dark .section-title { color: var(--text-on-dark); }
.section-title .accent { color: var(--red); }
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  color: inherit;
}
.section-lede {
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
  line-height: 1.45;
  max-width: 760px;
  color: rgba(31,32,36,0.82);
  margin-bottom: 64px;
  font-weight: 500;
}
.section-dark .section-lede { color: var(--text-on-dark-muted); }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-light);
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}
.service {
  background: var(--paper);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
  cursor: pointer;
  min-height: 300px;
  text-decoration: none;
  color: var(--ink);
}
.service:hover { background: var(--paper-warm); }
.service-number {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(31,32,36,0.35);
  margin-bottom: 24px;
}
.service-title {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.0;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.service-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(31,32,36,0.7);
  font-weight: 300;
  margin-bottom: 28px;
  flex: 1;
}
.service-link {
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-deep);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.service-link::after { content: "→"; font-size: 14px; transition: transform 0.2s; }
.service:hover .service-link::after { transform: translateX(4px); }

/* ─── RESUME BAND ─── */
.resume-band {
  background: var(--ink-deep);
  padding: 96px 48px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.resume-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 96px;
  align-items: start;
}
.resume-label {
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
}
.resume-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-on-dark);
  margin-top: 22px;
  letter-spacing: -0.01em;
}
.resume-headline em { font-style: italic; color: var(--red); font-weight: 600; }
.resume-body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.6;
  color: rgba(244,239,227,0.88);
  font-weight: 500;
  margin-bottom: 24px;
}
.resume-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.resume-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: baseline;
}
.resume-years {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}
.resume-project {
  font-family: var(--display);
  font-size: 18px;
  color: var(--text-on-dark);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.resume-project span {
  display: block;
  font-size: 13px;
  color: var(--text-on-dark-muted);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 8px;
  line-height: 1.5;
}

/* ─── AGENTS BAND ─── */
.agents-band {
  background: var(--paper);
  color: var(--ink);
  padding: 120px 48px;
  border-top: 8px solid var(--red);
}
.agents-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.agents-eyebrow {
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red-deep);
  font-weight: 700;
  margin-bottom: 28px;
}
.agents-headline {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 36px;
  text-transform: uppercase;
}
.agents-headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--red-deep);
}
.agents-body {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
  color: rgba(31,32,36,0.85);
  max-width: 800px;
  margin: 0 auto 48px;
  font-weight: 500;
}
.agents-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink-deep);
  color: var(--text-on-dark);
  padding: 18px 36px;
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.2s;
}
.agents-cta:hover { background: var(--red-deep); }

/* ─── CONSULTATION BAND (the $300 paid discovery) ─── */
.consultation-band {
  background: var(--ink);
  padding: 120px 48px;
  border-top: 1px solid var(--rule);
}
.consultation-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.consultation-headline {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.0;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.consultation-headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--red);
}
.consultation-body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-on-dark-muted);
  margin-bottom: 24px;
  font-weight: 500;
}
.consultation-mechanic {
  background: var(--ink-deep);
  border-left: 3px solid var(--yellow);
  padding: 24px 28px;
  margin: 32px 0;
}
.consultation-mechanic-label {
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 12px;
}
.consultation-mechanic-text {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-on-dark);
  font-weight: 500;
}
.consultation-mechanic-text strong {
  font-weight: 700;
  color: var(--yellow);
}

.consultation-card {
  background: var(--ink-deep);
  border: 1px solid var(--rule);
  padding: 48px 40px;
}
.consultation-card-eyebrow {
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 16px;
}
.consultation-card-price {
  font-family: var(--display);
  font-size: 64px;
  color: var(--text-on-dark);
  line-height: 1;
  margin-bottom: 12px;
}
.consultation-card-price-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text-on-dark-muted);
  margin-bottom: 32px;
  font-weight: 500;
}
.consultation-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  border-top: 1px solid var(--rule);
}
.consultation-card li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-on-dark-muted);
  font-weight: 400;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.consultation-card li::before {
  content: "→";
  color: var(--yellow);
  font-weight: 600;
  flex-shrink: 0;
}
.consultation-card .btn-primary {
  width: 100%;
  text-align: center;
}

/* ─── CONTACT BAND ─── */
.contact-band {
  background: var(--ink-deep);
  padding: 120px 48px;
  border-top: 1px solid var(--rule);
}
.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-headline {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.0;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.contact-headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--red);
}
.contact-body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  margin-bottom: 32px;
  font-weight: 500;
}
.contact-direct {
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
.contact-direct-label {
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-tertiary);
  margin-bottom: 12px;
  font-weight: 700;
}
.contact-phone {
  font-family: var(--display);
  font-size: 32px;
  color: var(--text-on-dark);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.contact-form {
  background: var(--ink);
  border: 1px solid var(--rule);
  padding: 48px;
}
.form-row { margin-bottom: 24px; }
.form-label {
  font-family: var(--display-secondary);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 8px;
  display: block;
  font-weight: 700;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  color: var(--text-on-dark);
  font-family: var(--sans);
  font-size: 15px;
  padding: 8px 0 12px;
  font-weight: 300;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: 0;
  border-bottom-color: var(--yellow);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  background: var(--red);
  color: white;
  border: 0;
  padding: 16px 36px;
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s;
  margin-top: 16px;
}
.form-submit:hover { background: var(--red-deep); }

/* ─── PAGE SHELL (interior pages) ─── */
.page-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 96px 48px;
}
.page-eyebrow {
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 24px;
}
.page-title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.005em;
  color: var(--text-on-dark);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.page-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--red);
}
.page-lede {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-on-dark-muted);
  margin-bottom: 56px;
}
.page-body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-on-dark);
  font-weight: 500;
}
.page-body h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 56px 0 20px;
  color: var(--text-on-dark);
  letter-spacing: -0.005em;
}
.page-body h2 em { font-family: var(--serif); font-style: italic; text-transform: none; }
.page-body h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 40px 0 16px;
  color: var(--text-on-dark);
}
.page-body p { margin-bottom: 24px; }
.page-body ul, .page-body ol {
  margin: 0 0 24px 24px;
}
.page-body li { margin-bottom: 10px; }
.page-body strong { font-weight: 700; color: var(--text-on-dark); }
.page-body em { font-style: italic; }
.page-body a {
  color: var(--yellow);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
}
.page-body a:hover { border-bottom-color: var(--yellow); }

/* Service page hero */
.service-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.service-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 100%);
}
.service-hero-content {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 48px;
  width: 100%;
}
.service-hero .page-title { color: var(--text-on-dark); }

/* Service page detail callout */
.detail-callout {
  background: var(--ink-deep);
  border-left: 4px solid var(--yellow);
  padding: 32px 36px;
  margin: 40px 0;
}
.detail-callout-label {
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 16px;
}
.detail-callout-text {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-on-dark);
  font-weight: 500;
}
.detail-callout-text strong { color: var(--yellow); font-weight: 700; }

/* Calendly embed container */
.calendly-inline-widget {
  min-height: 700px;
  width: 100%;
}

/* ─── FOOTER ─── */
footer.colophon {
  background: var(--ink-deep);
  padding: 80px 48px 32px;
  border-top: 1px solid var(--rule);
}
.colophon-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.colophon-strap {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text-on-dark-muted);
  line-height: 1.5;
  max-width: 380px;
  margin-bottom: 32px;
  font-weight: 500;
}
.colophon-publication {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-on-dark-muted);
  border-left: 2px solid var(--yellow);
  padding-left: 16px;
  line-height: 1.55;
  font-weight: 300;
}
.colophon-publication a {
  color: var(--text-on-dark);
  border-bottom: 1px solid var(--text-on-dark-tertiary);
  padding-bottom: 1px;
  font-family: var(--display-secondary);
  font-weight: 600;
}
.colophon-col h4 {
  font-family: var(--display-secondary);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-dark-tertiary);
  margin-bottom: 18px;
  font-weight: 700;
}
.colophon-col ul { list-style: none; }
.colophon-col li {
  font-family: var(--sans);
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--text-on-dark-muted);
  font-weight: 300;
}
.colophon-col li a:hover { color: var(--text-on-dark); }
.colophon-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--display-secondary);
  font-size: 11px;
  color: var(--text-on-dark-tertiary);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.colophon-bottom strong {
  color: var(--text-on-dark-muted);
  font-weight: 700;
}
.colophon-bottom a {
  color: var(--text-on-dark-muted);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
}
.colophon-bottom .credentials {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── THANK YOU ─── */
.thankyou-shell {
  max-width: 680px;
  margin: 0 auto;
  padding: 120px 48px;
  text-align: center;
}
.thankyou-headline {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.thankyou-headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--red);
}
.thankyou-body {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  color: var(--text-on-dark-muted);
  margin-bottom: 48px;
  font-weight: 500;
  line-height: 1.5;
}

/* ─── COOKIE CONSENT BANNER ─── */
#cookieBanner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--ink-deep);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--yellow);
  z-index: 1000;
  padding: 20px 24px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.cb-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cb-text {
  flex: 1 1 320px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  font-weight: 400;
}
.cb-text strong {
  color: var(--text-on-dark);
  font-weight: 600;
}
.cb-text a {
  color: var(--yellow);
  border-bottom: 1px solid var(--rule);
}
.cb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cb-decline, .cb-accept {
  font-family: var(--display-secondary);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 11px 22px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cb-decline {
  background: transparent;
  color: var(--text-on-dark-muted);
  border: 1px solid var(--rule);
}
.cb-decline:hover { color: var(--text-on-dark); border-color: var(--text-on-dark-tertiary); }
.cb-accept {
  background: var(--yellow);
  color: var(--ink-deep);
}
.cb-accept:hover { background: var(--yellow-bright); }
@media (max-width: 600px) {
  #cookieBanner { padding: 16px; left: 8px; right: 8px; bottom: 8px; }
  .cb-actions { width: 100%; }
  .cb-decline, .cb-accept { flex: 1; padding: 12px 16px; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .header-inner { padding: 0 32px; gap: 24px; }
  nav.primary { gap: 22px; }
  nav.primary a { font-size: 11px; }
}
@media (max-width: 980px) {
  nav.primary { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-inner { padding: 0 20px; }
  .logo-mark-img { height: 48px; }
  .veteran-badge { display: none; }
  .brand-banner { padding: 18px 16px 14px; }
  .brand-banner-sub { margin-top: 10px; letter-spacing: 0.22em; }
  .hero-content { padding: 56px 20px; }
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 24px;
    max-width: 100%;
  }
  .hero-meta-item {
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hero-meta-item:last-child { border-bottom: none; padding-bottom: 0; }
  .section-inner { padding: 72px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .resume-band { padding: 64px 20px; }
  .resume-inner { grid-template-columns: 1fr; gap: 32px; }
  .resume-list li { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .agents-band { padding: 72px 20px; }
  .consultation-band { padding: 72px 20px; }
  .consultation-inner { grid-template-columns: 1fr; gap: 48px; }
  .consultation-card { padding: 36px 28px; }
  .contact-band { padding: 72px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 32px 24px; }
  .page-shell { padding: 64px 24px; }
  .service-hero-content { padding: 56px 20px; }
  footer.colophon { padding: 56px 20px 24px; }
  .colophon-inner { grid-template-columns: 1fr; gap: 32px; }
  .colophon-bottom { flex-direction: column; align-items: flex-start; gap: 12px; font-size: 10px; }
  .colophon-bottom .credentials { flex-direction: column; gap: 6px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .logo-mark-img { height: 40px; }
  .hero-headline { font-size: clamp(32px, 9vw, 44px); }
  .consultation-card-price { font-size: 48px; }
  .brand-banner { padding: 14px 12px 10px; }
  .brand-banner-sub { display: none; }
}
