/* Kavana Jobsite — production styles
   Dark charcoal is chrome + homepage hero only.
   Long-form (blog, KCRI, tools, legal) uses a cream well with dark text.
   Service pages may stay darker. Forms always high-contrast. */

:root {
  --ink: #1A1C1B;
  --ink-2: #384140;
  --chrome: #1A1C1B;
  --chrome-2: #222425;
  --card: #2A2C2B;
  --cream: #F4F1EA;
  --cream-2: #EBE6DC;
  --paper: #FFFCF6;
  --gold: #E8A34A;
  --gold-hover: #F2B45C;
  --line: #D4CDBF;
  --line-dark: #3A3C3B;
  --muted: #5E6260;
  --on-dark: #F4F1EA;
  --on-dark-muted: #C8C3B8;
  --focus: #065398;
  --header-h: 76px;
  --max: 1180px;
  --font: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:hover { color: var(--gold); }
button, input, select, textarea { font-family: inherit; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 1000;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 14px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

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

/* ========== HEADER (always dark) ========== */
.site-header {
  background: var(--chrome);
  color: var(--on-dark);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck { border-bottom-color: var(--line-dark); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: var(--header-h);
}
.site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.site-logo img,
.site-logo svg {
  height: 40px;
  width: auto;
  max-width: 200px;
}
.site-nav { margin-left: auto; }
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.menu > li { position: relative; }
.menu a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--on-dark);
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
}
.menu a:hover,
.menu .current-menu-item > a { color: var(--gold); }
.menu-item-has-children > a { padding-right: 28px; }
.submenu-toggle {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--on-dark);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.submenu-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}
.sub-menu {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 280px;
  background: #161817;
  border: 1px solid var(--line-dark);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  z-index: 220;
}
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu,
.menu-item-has-children.is-open > .sub-menu { display: block; }
.sub-menu a {
  padding: 8px 18px;
  font-size: 0.9rem;
  white-space: normal;
  color: var(--on-dark-muted);
}
.sub-menu a:hover { color: var(--on-dark); background: rgba(255,255,255,.04); }
.badge-new {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 1px 6px;
  border-radius: 3px;
  vertical-align: middle;
}
.header-phone {
  color: var(--gold) !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 8px;
}
.header-phone:hover { color: var(--gold-hover) !important; }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--on-dark);
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: absolute;
  left: 11px;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { content: ""; top: -6px; }
.nav-toggle span::after { content: ""; top: 6px; }

/* ========== HERO (homepage only, dark) ========== */
.hero {
  background: var(--chrome);
  color: var(--on-dark);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  min-height: min(78vh, 720px);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 48px 72px max(40px, calc((100vw - var(--max)) / 2));
  max-width: 720px;
}
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 750;
  margin: 0 0 18px;
  color: #fff;
}
.hero-lede {
  font-size: 1.125rem;
  color: var(--on-dark-muted);
  margin: 0 0 28px;
  max-width: 36ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--chrome) 0%, rgba(26,28,27,.15) 28%, transparent 55%);
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.2;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink) !important;
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-hover); color: var(--ink) !important; }
.btn-ghost {
  background: transparent;
  color: var(--on-dark) !important;
  border-color: rgba(244,241,234,.55);
}
.btn-ghost:hover { border-color: #fff; color: #fff !important; }
.btn-ink {
  background: var(--ink);
  color: var(--cream) !important;
}
.btn-ink:hover { background: #000; color: #fff !important; }

/* ========== HOME SECTIONS (light after hero) ========== */
.section { padding: 72px 0; }
.section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.section-lede {
  margin: 0 0 36px;
  color: var(--ink-2);
  max-width: 52ch;
  font-size: 1.05rem;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  color: var(--on-dark);
  border-radius: 8px;
  padding: 28px 26px 32px;
  text-decoration: none;
  display: block;
  min-height: 220px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  color: var(--on-dark);
}
.feature-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 18px;
}
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: #fff;
}
.feature-card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}
.feature-card p {
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 0.95rem;
}

.industries {
  background: var(--cream-2);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.industry-grid a {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px 18px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
}
.industry-grid a:hover {
  border-color: var(--ink-2);
  color: var(--ink);
}
.industry-grid a small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 4px;
}

.band-dark {
  background: var(--chrome);
  color: var(--on-dark);
  padding: 72px 0;
}
.band-dark h2 { color: #fff; }
.band-dark .section-lede { color: var(--on-dark-muted); }
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}
.split ul {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: var(--on-dark-muted);
}
.split li { margin: 8px 0; }
.split li strong { color: var(--on-dark); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 6px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--ink-2); font-size: 0.95rem; }

.quote-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 8px;
}
.quote-panel h2 { margin-top: 0; }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insight-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
  text-decoration: none;
  color: var(--ink);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.insight-card:hover { color: var(--ink); border-color: var(--ink-2); }
.insight-card time { color: var(--muted); font-size: 0.8rem; }
.insight-card h3 { margin: 0; font-size: 1.05rem; line-height: 1.35; }

/* ========== FOOTER (always dark, original logo) ========== */
.site-footer {
  background: var(--chrome);
  color: var(--on-dark-muted);
  padding: 56px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand img,
.footer-brand svg {
  height: 44px;
  width: auto;
  max-width: 220px;
  margin-bottom: 16px;
}
.footer-brand p { margin: 0 0 8px; font-size: 0.9rem; }
.site-footer h2,
.site-footer h3 {
  color: var(--on-dark);
  font-size: 0.8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 8px; }
.site-footer a { text-decoration: none; color: var(--on-dark-muted); }
.site-footer a:hover { color: var(--gold); }
.footer-legal {
  padding-top: 22px;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
}
.footer-legal p { margin: 0; }

/* ========== LONG-FORM LIGHT WELL ========== */
body.layout-light {
  background: var(--cream);
  color: var(--ink);
}
body.layout-light .site-main { background: var(--cream); color: var(--ink); }
.page-hero-light {
  background: var(--cream);
  color: var(--ink);
  padding: 48px 0 8px;
  border-bottom: 1px solid var(--line);
}
.page-hero-light h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}
.page-hero-light .lede {
  margin: 0;
  color: var(--ink-2);
  font-size: 1.1rem;
  max-width: 60ch;
}
.content-well {
  background: var(--cream);
  color: var(--ink);
  padding: 40px 0 80px;
}
.content-well .entry-content,
body.layout-light .entry-content {
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 760px;
}
body.layout-light .entry-content h2,
body.layout-light .entry-content h3,
.content-well h2,
.content-well h3 {
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
body.layout-light .entry-content h2 { margin-top: 2.2em; }
body.layout-light .entry-content a { color: var(--focus); text-decoration: underline; }
body.layout-light .entry-content a:hover { color: var(--ink); }
body.layout-light .entry-content p,
body.layout-light .entry-content li { color: var(--ink-2); }
body.layout-light .post-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }

/* ========== SERVICE PAGES (darker, still high contrast) ========== */
body.layout-service {
  background: var(--chrome-2);
  color: var(--on-dark);
}
body.layout-service .site-main { background: var(--chrome-2); }
.page-hero {
  background: var(--chrome);
  color: var(--on-dark);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line-dark);
}
.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  color: #fff;
}
.page-hero .lede { margin: 0; color: var(--on-dark-muted); max-width: 56ch; }
body.layout-service .entry-content {
  color: var(--on-dark);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 800px;
  padding: 40px 0 72px;
}
body.layout-service .entry-content h2,
body.layout-service .entry-content h3 { color: #fff; }
body.layout-service .entry-content p,
body.layout-service .entry-content li { color: var(--on-dark-muted); }
body.layout-service .entry-content a { color: var(--gold); }
body.layout-service .entry-content a:hover { color: #fff; }

/* ========== FORMS — always high contrast ========== */
.kavana-form,
.wpcf7-form,
.quote-panel form,
.entry-content .wpcf7 {
  display: grid;
  gap: 14px;
}
.kavana-form label,
.wpcf7-form label,
.quote-panel label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
  margin-bottom: 4px;
}
body.layout-service .kavana-form label,
body.layout-service .wpcf7-form label { color: var(--on-dark); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
input[type="date"],
select,
textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: #FFFCF6 !important;
  color: #1A1C1B !important;
  border: 2px solid #384140 !important;
  border-radius: 4px;
  padding: 12px 14px !important;
  font-size: 1rem !important;
  line-height: 1.4;
  box-shadow: none !important;
  caret-color: #1A1C1B;
}
input::placeholder,
textarea::placeholder {
  color: #6B6E6C !important;
  opacity: 1;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #E8A34A !important;
  outline: 3px solid rgba(232,163,74,.35);
}
.wpcf7-submit,
.kavana-form button[type="submit"],
button[type="submit"] {
  background: var(--gold) !important;
  color: #1A1C1B !important;
  border: 0 !important;
  font-weight: 800;
  padding: 14px 22px !important;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}
.sms-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink-2);
}
body.layout-service .sms-consent { color: var(--on-dark-muted); }
.sms-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex: 0 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Paste-ready inner page modules */
.kavana-lede { font-size: 1.15rem; color: var(--ink-2); max-width: 62ch; }
body.layout-service .kavana-lede { color: var(--on-dark-muted); }
.kavana-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.kavana-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 6px;
  color: var(--ink);
}
body.layout-service .kavana-card {
  background: #2A2C2B;
  border-color: var(--line-dark);
  color: var(--on-dark);
}
.kavana-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.kavana-card p, .kavana-card li { margin: 0; font-size: 0.95rem; }
.kavana-note {
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  margin: 24px 0;
  background: rgba(232,163,74,.12);
  color: var(--ink);
}
body.layout-service .kavana-note { color: var(--on-dark); background: rgba(232,163,74,.08); }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.related-links a {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink) !important;
  background: var(--paper);
}
body.layout-service .related-links a {
  border-color: var(--line-dark);
  background: #2A2C2B;
  color: var(--on-dark) !important;
}

/* Blog lists */
.post-list { display: grid; gap: 20px; }
.post-tease {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 6px;
}
.post-tease h2 { margin: 0 0 8px; font-size: 1.3rem; }
.post-tease h2 a { text-decoration: none; color: var(--ink); }
.post-tease p { margin: 0; color: var(--ink-2); }

/* 404 / search */
.utility-panel {
  max-width: 640px;
  padding: 48px 0 80px;
}

/* WP extras */
.alignwide { max-width: 100%; }
.wp-block-image img { height: auto; }
.screen-reader-text,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 48px 24px 32px; max-width: none; }
  .hero-photo { min-height: 280px; }
  .hero-photo::before {
    background: linear-gradient(0deg, var(--chrome) 0%, transparent 40%);
  }
  .feature-cards,
  .industry-grid,
  .steps,
  .insights-grid,
  .footer-grid,
  .kavana-grid,
  .split,
  .form-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #161817;
    padding: 12px 0 24px;
    border-bottom: 1px solid var(--line-dark);
  }
  .site-nav.is-open { display: block; }
  .site-nav .menu { flex-direction: column; align-items: stretch; }
  .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding-left: 12px;
  }
  .menu-item-has-children.is-open > .sub-menu { display: block; }
  .header-phone { display: none; }
  .header-inner { gap: 12px; }
}
@media (max-width: 640px) {
  .feature-cards,
  .industry-grid,
  .steps,
  .insights-grid,
  .footer-grid,
  .kavana-grid,
  .form-grid { grid-template-columns: 1fr; }
  .wrap, .wrap-narrow { width: calc(100% - 32px); }
}


/* Readability: old ACF blocks sit on light backgrounds; do not force cream/white type onto them. */
body.layout-service {
  background: #F4F1EA !important;
  color: #1A1C1B !important;
}
body.layout-service .site-main {
  background: #F4F1EA !important;
  color: #1A1C1B !important;
}
body.layout-service .entry-content,
body.layout-service .entry-content p,
body.layout-service .entry-content li,
body.layout-service .entry-content h1,
body.layout-service .entry-content h2,
body.layout-service .entry-content h3,
body.layout-light .entry-content,
body.layout-light .entry-content p,
body.layout-light .entry-content li,
.content-well,
.content-well p,
.content-well li,
.content-well h1,
.content-well h2,
.content-well h3 {
  color: #1A1C1B !important;
}
.entry-content img,
.post-thumbnail img,
article img,
.wp-block-image img {
  opacity: 1 !important;
  visibility: visible !important;
  max-width: 100%;
  height: auto;
  display: block;
}
.site-header, .site-header a, .site-footer, .site-footer a, .hero, .hero h1, .page-hero, .page-hero h1, .band-dark, .band-dark h2 {
  color: #F4F1EA;
}
.site-header a { color: #F4F1EA; }

/* Featured images */
.post-hero-image { margin: 0 0 32px; border-radius: 8px; overflow: hidden; }
.post-hero-image img { width: 100%; height: auto; display: block; }
.insights-grid img, .post-tease img, .attachment-post-thumbnail { width: 100%; height: auto; display: block; }

/* Hide leftover IM4U social proof: fake 4.8 stars, fake testimonials, invented stats. */
.rating,
.testimonials,
.about__stats {
	display: none !important;
}

/* Service pages are cream wells. Keep cards/notes light so pasted HTML is readable. */
body.layout-service .kavana-lede { color: #384140 !important; }
body.layout-service .kavana-card { background: #FFFCF6 !important; border-color: #D4CDBF !important; color: #1A1C1B !important; }
body.layout-service .kavana-card h3, body.layout-service .kavana-card p, body.layout-service .kavana-card li { color: #1A1C1B !important; }
body.layout-service .kavana-note { color: #1A1C1B !important; background: rgba(232,163,74,.12) !important; }
body.layout-service .related-links a { border-color: #D4CDBF !important; background: #FFFCF6 !important; color: #1A1C1B !important; }
body.layout-service .btn-gold { color: #1A1C1B !important; }

/* Morla hotfix: footer menus were inheriting header .menu row; ghost buttons cream-on-cream. */
.site-footer .menu,
footer .menu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.4em;
}
.site-footer .menu li,
footer .menu li {
  display: block;
  width: auto;
  white-space: normal;
}
.footer-grid,
.wrap.footer-grid,
.footer-grid > * {
  min-width: 0;
}
.btn-ghost {
  color: #1a1c1b !important;
  border-color: rgba(26, 28, 27, 0.45) !important;
}
.hero .btn-ghost,
.site-hero .btn-ghost,
.band-dark .btn-ghost,
.band-ink .btn-ghost {
  color: #f4f1ea !important;
  border-color: rgba(244, 241, 234, 0.45) !important;
}
