/*
Theme Name: Lands Excavation
Description: Editorial-rugged design for L & S Excavation — cream paper, ink, ochre.
Version: 2.0
Author: local
*/

/* Self-hosted Archivo 900 (latin) for the LCP headline. Local copy prevents
   the FOUT/CLS that comes from waiting on Google's fonts.gstatic.com edge. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('assets/fonts/archivo-900-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* { text-wrap: balance !important; }

:root {
  --bg:           #ffffff;
  --paper:        #f7f5ef;
  --ink:          #15120c;
  --ink-2:        #2a261d;
  --muted:        #6b6357;
  --rule:         rgba(21,18,12,0.14);
  --rule-strong:  rgba(21,18,12,0.85);
  --accent:       #c89324;
  --accent-hot:   #d8a02d;
  --accent-ink:   #1a1305;
  --dirt:         #5b4527;
  --concrete:    #b8b0a1;
  --shadow:       0 1px 0 rgba(0,0,0,0.04), 0 30px 60px -30px rgba(21,18,12,0.18);
  --max:          1320px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.narrow { font-family: 'Archivo Narrow', 'Archivo', sans-serif; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.wrap, .container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.hairline { height: 1px; background: var(--rule); width: 100%; }

.section-head { display: grid; grid-template-columns: 1fr; gap: 18px; padding: 88px 0 36px; }
.section-head .eyebrow {
  display: inline-flex; gap: 10px; align-items: center;
  color: var(--ink-2);
}
.section-head .eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--rule-strong);
}
.section-head h2 {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em; line-height: 0.98;
  margin: 0; max-width: 18ch;
  text-wrap: balance;
}
.section-head .lede { color: var(--muted); max-width: 56ch; font-size: 17px; margin: 0; }

/* ---------------- Top bar ---------------- */
.site-header.topbar {
  position: sticky; top: 0; z-index: 150;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.site-header.topbar .brand { position: relative; z-index: 160; }
.topbar-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
  height: 88px;
  position: relative; /* needed for the overflowing logo */
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; letter-spacing: -0.01em;
}
.brand-mark {
  width: 156px; height: 156px;
  display: grid; place-items: center;
  flex: 0 0 156px;
  transition: width .3s ease, height .3s ease, flex-basis .3s ease, margin .3s ease;
  /* shift up + let the big logo overflow the header band slightly */
  margin: -15px 0 -27px 0;
}
body.is-scrolled .brand-mark { margin: 0 !important; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-text {
  font-size: 15px; line-height: 1;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  transition: max-width .35s ease, opacity .35s ease .05s, margin-left .35s ease;
  margin-left: 0;
}
.brand-text small { display: block; color: var(--muted); font-weight: 500; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px; }

/* Scrolled state: shrink logo, show text */
body.is-scrolled .brand-mark { width: 40px; height: 40px; flex-basis: 40px; }
body.is-scrolled .brand-text { max-width: 260px; opacity: 1; margin-left: 4px; }
body.is-scrolled .site-header.topbar { box-shadow: 0 1px 0 var(--rule); }
body:not(.is-scrolled) .site-header.topbar { padding: 6px 0; }
body:not(.is-scrolled) .topbar-inner { height: 100px; }

.nav-primary { display: flex; justify-content: center; flex: 1; }
.nav-primary > ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 28px; }
.nav-primary ul { list-style: none; }
.nav-primary li { position: relative; }
.nav-primary a {
  position: relative;
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2); padding: 6px 0;
  letter-spacing: 0;
  text-transform: none;
  border: 0;
}
.nav-primary a::before {
  display: none !important;
}
.nav-primary a:hover { color: var(--ink); text-decoration: none; }
.nav-primary a:hover::before,
.nav-primary li.current a::before { opacity: 1; }
.nav-primary li.current a { color: var(--ink); font-weight: 600; }

/* Dropdowns */
.nav-primary .has-dd { position: relative; }
.nav-primary .caret { font-size: 9px; margin-left: 4px; transition: transform .15s; }
.nav-primary .has-dd:hover .caret { transform: translateY(1px); color: var(--accent); }
.nav-primary .dd {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--rule-strong);
  border-radius: 6px;
  padding: 18px;
  min-width: 320px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .15s, visibility .15s, transform .15s;
  z-index: 100;
}
.nav-primary .has-dd:hover .dd,
.nav-primary .has-dd:focus-within .dd {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dd-wide { min-width: 620px; }
.dd-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.dd-grid a {
  display: flex; align-items: baseline; gap: 12px;
  padding: 8px 10px; border-radius: 4px;
  color: var(--ink-2); font-size: 13.5px;
  transition: background .12s, color .12s;
}
.dd-grid a:hover { background: var(--paper); color: var(--ink); text-decoration: none; }
.dd-num {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--accent); letter-spacing: 0.06em;
  flex: 0 0 22px;
}
.dd-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; }
.dd-col h5 {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  margin: 0 0 8px;
  padding-bottom: 6px; border-bottom: 1px solid var(--rule);
}
.dd-col ul { list-style: none; padding: 0; margin: 0; }
.dd-col li a {
  display: block; padding: 6px 0;
  color: var(--ink-2); font-size: 13.5px;
}
.dd-col li a::before { content: none; }
.dd-col li a:hover { color: var(--ink); text-decoration: none; }
.dd-foot {
  display: block; margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); text-align: right;
  font-weight: 500;
}
.dd-foot:hover { color: var(--ink); text-decoration: none; }

/* ============ Mega menu (rebuild) ============ */
.nav-primary .has-mega { position: static; }
/* Match padding with regular nav items so all top-level items align vertically */
.nav-primary .has-mega > a { padding: 6px 0; }
/* Make every top-level anchor (with and without caret) share the same baseline */
.nav-primary > ul > li > a { line-height: 1; }

.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule-strong);
  box-shadow: 0 24px 48px -24px rgba(21,18,12,0.22);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .9s;
  z-index: 90;
}
.has-mega.is-open > .mega,
.has-mega:focus-within > .mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear 0s;
}
.mega__inner {
  max-width: none;        /* full viewport width */
  margin: 0;
  padding: 36px 56px 40px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.mega--narrow .mega__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
}
.mega__col { min-width: 0; }
.mega__col h6 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}

/* Services list — 2 explicit columns */
.mega__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 24px; row-gap: 2px;
}
.mega__list--compact { grid-template-columns: minmax(0, 1fr); }
.mega__list li { min-width: 0; }
.mega__list a {
  display: flex; gap: 12px; align-items: baseline;
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--ink-2);
  font-size: 14.5px;
  text-decoration: none;
  transition: background .12s, color .12s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega__list a:hover { background: var(--paper); color: var(--ink); text-decoration: none; }
.mega__num {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  color: var(--accent); letter-spacing: 0.06em;
  flex: 0 0 22px;
}

/* Feature column */
.mega__col--feature { display: flex; flex-direction: column; gap: 14px; }
.mega__feature {
  position: relative;
  display: block;
  min-height: 220px;
  background-size: cover; background-position: center;
  background-color: var(--ink);
  border-radius: 6px; overflow: hidden;
  text-decoration: none;
}
.mega__feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,14,22,0.1) 0%, rgba(8,14,22,0.75) 100%);
}
.mega__feature-text {
  position: absolute; left: 16px; bottom: 14px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px;
  color: #fff;
  z-index: 2;
}
.mega__cta {
  display: inline-block;
  padding: 12px 18px;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  font-weight: 700; font-size: 13.5px;
  text-align: center;
  text-decoration: none;
}
.mega__cta:hover { background: var(--accent); color: var(--accent-ink); text-decoration: none; }
.mega__cta--block { display: block; }

/* Blog post tiles inside mega */
.mega__posts { display: grid; gap: 14px; }
.mega__post {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 12px;
  text-decoration: none;
  align-items: start;
}
.mega__post:hover { text-decoration: none; }
.mega__post-img {
  width: 80px; height: 60px;
  border-radius: 4px;
  background-size: cover; background-position: center;
  background-color: var(--paper);
}
.mega__post-meta {
  display: block;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.mega__post-title {
  display: block;
  margin-top: 4px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px;
  line-height: 1.25; color: var(--ink);
}
.mega__post:hover .mega__post-title { color: var(--accent); }

@media (max-width: 1100px) {
  .mega { display: none; }
}

/* ============ Mega menu — 4-column rebuild (mega4__*) ============ */
.mega__inner.mega4 {
  /* whenever a 4-col layout is used, switch grid template */
  display: grid;
  grid-template-columns:
    minmax(220px, 1.1fr)
    minmax(260px, 1.5fr)
    minmax(220px, 1fr)
    minmax(220px, 1fr);
  gap: 48px;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 56px 44px;
}
.mega__inner.mega4 > .mega4__col { min-width: 0; display: flex; flex-direction: column; }
.mega4__col { min-width: 0; }
.mega4__col-h6 {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}

/* Intro column */
.mega4__col--intro { padding-right: 8px; }
.mega4__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
}
.mega4__title {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 8px 0 12px;
  color: var(--ink);
}
.mega4__copy {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 18px;
  max-width: 32ch;
}
.mega4__seeall {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  width: fit-content;
}
.mega4__seeall:hover { color: var(--accent); text-decoration: none; }

/* List column */
.mega4__col--list {}
.mega4__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  padding-inline-start: 0 !important;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 16px; row-gap: 2px;
}
/* Kill list-item markers / indents on every list inside any mega panel */
.mega ul, .mega ol {
  list-style: none !important;
  padding-inline-start: 0 !important;
  margin: 0 !important;
}
.mega li {
  display: block !important;          /* drop list-item, no marker box at all */
  list-style: none !important;
  list-style-type: none !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.mega li::marker { content: "" !important; display: none !important; }
.mega li::before { content: none !important; display: none !important; }
.mega4__col--areas .mega4__list {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 14px; row-gap: 0;
  margin-bottom: 14px;
}
.mega4__col--areas .mega4__col-h6:not(:first-child) { margin-top: 6px; }
.mega4__list li { min-width: 0; list-style: none; }
.mega4__list a {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 6px;
  border-radius: 4px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  transition: background .12s, color .12s;
  min-width: 0;
}
.mega4__list a > span {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.mega4__list a i { margin-top: 2px; }
.mega4__list a:hover { background: var(--paper); color: var(--ink); text-decoration: none; }
.mega4__list a:hover i { color: var(--accent-hot); }
.mega4__list a i {
  color: var(--accent);
  font-size: 13px;
  width: 18px; text-align: center;
  flex: 0 0 18px;
  transition: color .12s;
}
.mega4__list--posts {
  grid-template-columns: minmax(0, 1fr);
  row-gap: 2px;
}
.mega4__list--posts a {
  flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 10px 8px; white-space: normal;
}
.mega4__post-line-title {
  font-family: 'Archivo', sans-serif; font-weight: 600;
  font-size: 14px; color: var(--ink); line-height: 1.3;
  white-space: normal;
}
.mega4__post-line-meta {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}

/* Feature column (photo card) */
.mega4__col--feature {}
.mega4__card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 240px;
  border-radius: 6px; overflow: hidden;
  background-color: var(--ink);
  background-size: cover; background-position: center;
  text-decoration: none;
  transition: transform .25s ease;
}
/* Gate the URL fetch: only computes background-image when the mega is open
   (hover or .is-open). Without this gate, visibility:hidden mega cards still
   trigger image requests on every page load. */
.has-mega:hover .mega4__card,
.has-mega.is-open .mega4__card,
.has-mega:focus-within .mega4__card {
  background-image: linear-gradient(180deg, rgba(8,14,22,0) 30%, rgba(8,14,22,0.85) 100%), var(--mega-bg);
}
.mega4__card:hover { transform: translateY(-2px); text-decoration: none; }
.mega4__card-label {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: -0.005em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Post card column (text only) */
.mega4__col--post {}
.mega4__post {
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none;
  border-radius: 8px;
  padding: 22px 24px 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: border-color .15s, transform .2s, background .15s;
  position: relative;
}
.mega4__post::before {
  content: ""; position: absolute; left: 0; top: 22px; bottom: 22px;
  width: 3px; background: var(--accent); opacity: 0;
  transition: opacity .15s;
  border-radius: 0 2px 2px 0;
}
.mega4__post:hover {
  border-color: var(--rule-strong);
  background: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.mega4__post:hover::before { opacity: 1; }
.mega4__post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}
.mega4__post-tag {
  display: inline-block;
  padding: 3px 8px;
  margin-left: 6px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.mega4__post-title {
  display: block;
  font-family: 'Archivo Narrow', sans-serif; font-weight: 700;
  font-size: 17px; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--ink);
}
.mega4__post-excerpt {
  display: block;
  font-size: 13px; line-height: 1.5;
  color: var(--ink-2);
  margin-top: 2px;
}
.mega4__post-cta {
  display: block; margin-top: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.mega4__post:hover .mega4__post-title { color: var(--accent); }

@media (max-width: 1180px) {
  .mega__inner.mega4 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 32px;
    padding: 32px 40px 36px;
  }
  .mega__inner.mega4 > .mega4__col--post { display: none; }
}

/* Footer larger logo + show brand-text fully */
.site-footer .brand .brand-mark { width: 96px; height: 96px; flex-basis: 96px; }
.site-footer .brand .brand-text { max-width: 320px; opacity: 1; margin-left: 12px; }
.site-footer .brand .brand-text small { color: rgba(244,239,228,0.55); }

.top-cta { display: flex; align-items: center; gap: 14px; }
.top-cta .phone {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  font-weight: 500; letter-spacing: 0;
  color: var(--ink-2);
}
.top-cta .phone:hover { color: var(--ink); text-decoration: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 44px; padding: 0 22px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  line-height: 1; box-sizing: border-box;
  font-size: 13.5px; font-weight: 600;
  transition: transform .15s ease, background .2s ease;
  border: 2px solid transparent;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); background: #000; text-decoration: none; }
.btn.accent { background: var(--accent); color: var(--accent-ink); }
.btn.accent:hover { background: var(--accent-hot); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translate(2px,-2px); }

/* .btn.tn modifier intentionally a no-op now — buttons stay pill-shape. */
.btn.tn { /* no-op */ }

/* Hide old socials block in header */
.socials { display: none; }

/* Topbar contact-pair: icon-only, no pill background */
.contact-pair--topbar { gap: 14px; align-items: center; }
.contact-pair--topbar .contact-pair__btn {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--ink);
  box-shadow: none !important;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .15s, color .15s, background .15s;
}
.contact-pair--topbar .contact-pair__btn:hover {
  transform: translateY(-1px);
  background: rgba(21,18,12,0.05) !important;
}
.contact-pair--topbar .contact-pair__lbl { display: none; }
.contact-pair--topbar .contact-pair__btn i { font-size: 18px; line-height: 1; }
.contact-pair--topbar .contact-pair__btn--text   i { color: #2bb673; } /* SMS green */
.contact-pair--topbar .contact-pair__btn--call   i { color: var(--accent); }
.contact-pair--topbar .contact-pair__btn--wa     i { color: #25D366; }
.contact-pair--topbar .contact-pair__btn--text:hover   i { color: #1d8d56; }
.contact-pair--topbar .contact-pair__btn--call:hover   i { color: var(--accent-hot); }
.contact-pair--topbar .contact-pair__btn--wa:hover     i { color: #1eb958; }

/* ---------------- Hero ---------------- */
.hero { position: relative; padding: 32px 0 0; background: var(--bg); min-height: 0; display: block; }
.hero--cine { background: none; padding: 32px 0 0; min-height: 0; }

/* Ken Burns hero (homepage) */
.hero--kb {
  padding: 0; color: #fff; background: var(--ink); position: relative; overflow: hidden;
  /* Hero + ticker must fit in one viewport — subtract the sticky topbar height. */
  height: calc(100vh - 113px);
  max-height: calc(100vh - 113px);
  display: flex; flex-direction: column;
}
.hero--kb .hero-kb__inner {
  flex: 1 1 auto;
  min-height: 0;
  display: flex; align-items: stretch;
  overflow: hidden;
}
.hero--kb .hero-kb__inner > .hero-grid {
  width: 100%;
  align-self: stretch;
  align-items: center;
  padding: 20px 0;
}
.hero--kb .billboard { flex: 0 0 110px; }
@media (max-width: 880px) {
  .hero--kb { height: auto; max-height: none; }
  .hero--kb .billboard { flex: 0 0 auto; }
  .hero--kb .hero-kb__inner > .hero-grid { padding: 60px 0 80px; }
}
@media (max-width: 640px) {
  .hero--kb .hero-kb__inner > .hero-grid { padding: 80px 0 96px; }
}

/* Two-tone "best of the best" tagline inside hero-card */
.hero-tagline-bold {
  margin: 14px 0 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.05;
  display: flex; flex-wrap: wrap; gap: 0 8px;
}
.hero-tagline-bold .gold  { color: var(--accent); }
.hero-tagline-bold .white { color: #fff; }
.hero-kb__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-kb__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  will-change: transform, opacity;
  animation: kb-cycle 32s infinite ease-in-out;
}
/* First slide is a <picture> with <img> inside so the browser treats it as the LCP candidate. */
.hero-kb__slide--first { display: block; opacity: 1; }
.hero-kb__slide--first img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
/* Slide 0 uses a variant keyframe that starts at opacity 1 — without this the
   0%→6% fade-in pushes the LCP measurement back ~2s in Lighthouse. */
.hero-kb__slide--0 { animation-name: kb-cycle-first; animation-delay: 0s; }
.hero-kb__slide--1 { animation-delay: 8s;  }
.hero-kb__slide--2 { animation-delay: 16s; }
.hero-kb__slide--3 { animation-delay: 24s; }
@keyframes kb-cycle {
  0%   { opacity: 0; transform: scale(1.04) translate(0,    0); }
  6%   { opacity: 1; transform: scale(1.06) translate(-0.5%, -0.5%); }
  25%  { opacity: 1; transform: scale(1.12) translate(-1.5%, -1%); }
  31%  { opacity: 0; transform: scale(1.14) translate(-2%,   -1.2%); }
  100% { opacity: 0; transform: scale(1.04) translate(0,    0); }
}
@keyframes kb-cycle-first {
  0%   { opacity: 1; transform: scale(1.04) translate(0,    0); }
  19%  { opacity: 1; transform: scale(1.12) translate(-1.5%, -1%); }
  25%  { opacity: 0; transform: scale(1.14) translate(-2%,   -1.2%); }
  100% { opacity: 0; transform: scale(1.04) translate(0,    0); }
}
.hero-kb__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 80% at 28% 55%, rgba(8,14,22,0.85) 0%, rgba(8,14,22,0.55) 40%, rgba(8,14,22,0.25) 70%, transparent 100%),
    linear-gradient(180deg, rgba(8,14,22,0.65) 0%, rgba(8,14,22,0.45) 35%, rgba(8,14,22,0.85) 100%);
  pointer-events: none;
}
.hero-kb__inner {
  position: relative; z-index: 2;
  padding: 88px 32px 56px;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-kb__inner .hero-grid { padding-bottom: 0; }
.hero--kb h1.headline { color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.hero--kb h1.headline .accent-word { color: var(--accent-hot); }
.hero--kb h1.headline .underline::after { background: var(--accent-hot); }
.hero--kb .hero-right p { color: rgba(255,255,255,0.88); }
.hero--kb .ghost-phone { color: #fff; border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); backdrop-filter: blur(4px); }
.hero--kb .ghost-phone:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero--kb .btn.tn::after { background: rgba(255,255,255,0.18); }
.hero--kb .billboard { position: relative; z-index: 2; }
.hero-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 26px;
  color: var(--muted);
  gap: 16px; flex-wrap: wrap;
}
.hero-meta .pill {
  display: inline-flex; gap: 8px; align-items: center;
  border: 1px solid var(--rule); padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.4);
}
.hero-meta .pill .live {
  width: 7px; height: 7px; border-radius: 50%; background: #18a657;
  box-shadow: 0 0 0 3px rgba(24,166,87,0.18);
}
.hero-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 56px;
  align-items: end;
  padding: 40px 0 64px;
}
.hero-right {
  align-self: end;
}
h1.headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 0;
  color: var(--ink);
  display: block;
  align-self: center;
}
h1.headline .line {
  display: block;
  white-space: nowrap;
}
h1.headline .accent-word {
  font-style: normal; font-weight: 900;
  color: var(--dirt);
  font-family: 'Archivo', sans-serif;
}
h1.headline .underline {
  position: relative; display: inline-block; padding: 0 0.05em;
}
h1.headline .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em;
  height: 0.14em; background: var(--accent);
  transform: skewX(-12deg);
}
.hero-right { padding-bottom: 12px; }
.hero-right p {
  font-size: 18px; line-height: 1.55; color: var(--ink-2);
  margin: 0 0 18px;
  max-width: 42ch;
}
.hero-right p:last-of-type { margin-bottom: 0; }
.hero-card {
  position: relative;
  margin-bottom: 24px;
  padding: 22px 24px;
  background: rgba(8,14,22,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.55);
}
.hero--kb .hero-card p { color: rgba(255,255,255,0.92); }
.hero-right .hero-tagline {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 20px; line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 30ch;
  margin-bottom: 14px;
}
.hero--kb .hero-right .hero-tagline { color: #fff; }
.hero--kb .hero-right .hero-tagline::before {
  content: ""; display: block;
  width: 36px; height: 2px;
  background: var(--accent);
  margin-bottom: 12px;
}
.hero-actions { display: flex; flex-wrap: nowrap; gap: 10px; align-items: center; }
.hero-actions--in-card { margin-top: 18px; }
.hero-actions .btn { flex: 0 0 auto; white-space: nowrap; }
/* In the hero, contact-pair becomes compact icon-only circles so all 4 buttons fit one line */
.hero-actions .contact-pair { gap: 8px; flex: 0 0 auto; }
.hero-actions .contact-pair__btn {
  width: 44px; height: 44px; padding: 0 !important;
  border-radius: 50%;
  justify-content: center;
}
.hero-actions .contact-pair__lbl { display: none !important; }
.hero-actions .contact-pair__btn i { font-size: 16px; }
@media (max-width: 640px) {
  .hero-actions { flex-wrap: wrap; }
}
.ghost-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  border: 1px solid var(--rule-strong); height: 40px; padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
}
.ghost-phone:hover { background: var(--ink); color: var(--paper); text-decoration: none; }

/* Text + Call paired CTAs */
.contact-pair {
  display: inline-flex; gap: 10px; flex-wrap: wrap;
}
.contact-pair__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 18px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  text-decoration: none;
  line-height: 1;
  border: 1.5px solid;
  box-sizing: border-box;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.contact-pair__btn i { font-size: 14px; line-height: 1; }
@media (max-width: 720px) {
  .contact-pair__btn { padding: 12px; width: 44px; height: 44px; justify-content: center; }
  .contact-pair__lbl { display: none; }
  .contact-pair__btn i { font-size: 16px; }
}
.contact-pair__btn--wa {
  border-color: #25D366; background: #25D366; color: #0a3d1f;
}
.contact-pair__btn--wa:hover { background: #1eb957; border-color: #1eb957; }
.contact-pair--on-dark .contact-pair__btn--wa { color: #061a0c; }
.contact-pair--on-ochre .contact-pair__btn--wa { color: #0a3d1f; }
.contact-pair__btn:hover { transform: translateY(-2px); text-decoration: none; }
.contact-pair__btn--text {
  border-color: var(--ink); background: transparent; color: var(--ink);
}
.contact-pair__btn--text:hover { background: var(--ink); color: var(--paper); }
.contact-pair__btn--call {
  border-color: var(--accent); background: var(--accent); color: var(--accent-ink);
}
.contact-pair__btn--call:hover { background: var(--accent-hot); border-color: var(--accent-hot); }
.contact-pair__label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.7;
}
.contact-pair__num {
  font-weight: 700; font-size: 14px; letter-spacing: -0.005em;
}

/* Variant for dark backgrounds */
.contact-pair--on-dark .contact-pair__btn--text {
  border-color: rgba(244,239,228,0.55); color: #fff;
}
.contact-pair--on-dark .contact-pair__btn--text:hover { background: #fff; color: var(--ink); border-color: #fff; }
/* Variant for the ochre CTA section */
.contact-pair--on-ochre .contact-pair__btn--text {
  border-color: var(--accent-ink); color: var(--accent-ink);
}
.contact-pair--on-ochre .contact-pair__btn--text:hover { background: var(--accent-ink); color: var(--accent); }
.contact-pair--on-ochre .contact-pair__btn--call {
  border-color: var(--ink); background: var(--ink); color: var(--paper);
}
.contact-pair--on-ochre .contact-pair__btn--call:hover { background: #000; border-color: #000; }

/* Compact variant for the topbar */
.contact-pair--topbar .contact-pair__btn { padding: 6px 14px; }
.contact-pair--topbar .contact-pair__label { display: none; }
.contact-pair--topbar .contact-pair__num { font-size: 13px; }

/* Hero billboard */
.billboard {
  position: relative;
  margin-top: 12px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  height: 110px;
  overflow: hidden;
  background: var(--ink);
}
.billboard .ticker {
  position: absolute; inset: 0;
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  will-change: transform;
  padding-left: 32px;
}
/* Alternate accent/white phrases across the marquee.
   Markup pattern is word, star, word, star, ... so words sit at positions
   1, 3, 5, 7 → alternate via 4n+1 (accent) and 4n+3 (white). */
.billboard .ticker > span:nth-child(4n+1) { color: var(--accent); }
.billboard .ticker > span:nth-child(4n+3) { color: #fff; }
.billboard .ticker .star {
  display: inline-block;
  width: 0.45em; height: 0.45em;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transform: translateY(-0.04em);
  opacity: 0.65;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.billboard .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink), transparent 6%, transparent 94%, var(--ink));
  pointer-events: none;
}

/* ---------------- Stats ---------------- */
.stats {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: 26px 28px;
  border-left: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
  min-height: 0; justify-content: center;
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .n {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 64px; letter-spacing: -0.04em; line-height: 1;
}
.stat .n sup { font-size: 0.45em; vertical-align: super; margin-left: 3px; color: var(--accent); }
.stat .l {
  color: var(--muted); font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------------- Services ---------------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-strong);
  border-left: 1px solid var(--rule-strong);
}
.service {
  border-right: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  padding: 28px 26px 22px;
  background: var(--paper);
  position: relative; overflow: hidden;
  transition: background .25s, color .25s;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--ink);
}
.service:hover { background: var(--ink); color: var(--paper); text-decoration: none; }
.service:hover .service-num { color: var(--accent); }
.service:hover .service-cta { color: var(--accent); }
.service:hover .service-illus { opacity: 1; transform: translate(-6px,-6px); color: var(--accent); }
.service:hover p { color: rgba(244,239,228,0.7); }
.service-top { display: flex; justify-content: space-between; align-items: flex-start; }
.service-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 0.08em;
  transition: color .2s;
}
.service h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 24px; letter-spacing: -0.025em;
  line-height: 1.08; margin: 22px 0 10px; max-width: 16ch;
}
.service p { margin: 0; color: var(--muted); font-size: 14.5px; max-width: 32ch; }
.service-cta {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600;
  transition: color .2s;
}
.service-illus {
  position: absolute; top: 20px; right: 22px;
  width: 56px; height: 56px;
  opacity: 0.55; transition: opacity .25s, transform .25s, color .25s;
  color: var(--ink-2);
}

.also {
  padding: 28px 0; color: var(--muted);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: 14px;
}
.also strong { color: var(--ink); font-weight: 600; margin-right: 6px; }
.also .chip {
  display: inline-block; border: 1px solid var(--rule); padding: 4px 10px;
  border-radius: 999px; background: var(--paper);
  font-size: 12.5px;
}

/* ---------------- Process (dark) ---------------- */
.process {
  background: var(--ink);
  color: var(--paper);
  margin-top: 32px;
}
.process .wrap { padding-top: 0; padding-bottom: 0; }
.process .section-head h2 { color: var(--paper); }
.process .section-head .eyebrow { color: var(--accent); }
.process .section-head .eyebrow::before { background: var(--accent); }
.process .section-head .lede { color: rgba(244,239,228,0.6); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(244,239,228,0.18);
  margin-top: 24px;
  padding-bottom: 88px;
}
.step {
  padding: 28px 22px 0 0;
  border-right: 1px solid rgba(244,239,228,0.12);
  position: relative;
}
.step:last-child { border-right: 0; }
.step { padding: 32px 26px 0 32px; }
.step:first-child { padding-left: 0; }
.step .n {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 80px;
  color: var(--accent); letter-spacing: -0.04em; line-height: 1;
}
.step h4 { margin: 24px 0 8px; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--paper); }
.step p { margin: 0; color: rgba(244,239,228,0.65); font-size: 14.5px; max-width: 26ch; }

/* ---------------- Photos bento ---------------- */
.photos-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.photos-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 180px);
  gap: 14px;
  padding-bottom: 64px;
}
.photo {
  position: relative; overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: transform .25s ease;
}
.photo:hover { transform: translateY(-2px); text-decoration: none; }
.photo .ph-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  background-size: cover; background-position: center;
}
.photo .ph-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,18,12,0) 50%, rgba(21,18,12,0.55) 100%);
}
.photo .ph-label {
  position: absolute; left: 10px; bottom: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  color: var(--ink); background: rgba(244,239,228,0.9);
  padding: 4px 8px; border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.photo .ph-id {
  position: absolute; right: 10px; top: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--paper);
  background: rgba(21,18,12,0.55);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.06em;
}
.p1 { grid-column: 1 / 8;  grid-row: 1 / 3; }
.p2 { grid-column: 8 / 13; grid-row: 1 / 2; }
.p3 { grid-column: 8 / 13; grid-row: 2 / 3; }
.p4 { grid-column: 1 / 5;  grid-row: 3 / 5; }
.p5 { grid-column: 5 / 9;  grid-row: 3 / 5; }
.p6 { grid-column: 9 / 13; grid-row: 3 / 4; }
.p7 { grid-column: 9 / 13; grid-row: 4 / 5; }

/* ---------------- Service areas ---------------- */
.areas-section { background: var(--paper); border-top: 1px solid var(--rule); }
.areas-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px;
  padding-bottom: 24px;
  align-items: start;
}
.areas-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule-strong);
}
.area {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--rule);
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 600; font-size: 22px; letter-spacing: -0.01em;
  transition: padding .2s, color .2s;
  color: var(--ink);
}
.area:hover { padding-left: 28px; color: var(--ink); text-decoration: none; }
.area .st {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); font-weight: 500; letter-spacing: 0.08em;
  margin-left: 18px;
}
/* Vertical divider lives on the 2nd column (every even-indexed item). The
   left padding (18px) is now consistent across every cell so col 1 and col 2
   line up visually. */
.area:nth-child(2n) { border-left: 1px solid var(--rule); }

/* Full-width grid beneath the primary areas grid + map */
.areas-extra {
  margin-top: 6px; padding-top: 6px;
  border-top: 1px solid var(--rule);
}
.areas-list.areas-list--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
/* Reset the 2-col rule (it doesn't apply to the 4-col list). */
.areas-list.areas-list--wide .area:nth-child(2n) { border-left: 0; }
/* Then add the divider only on items that aren't first in their visual row. */
.areas-list.areas-list--wide .area:not(:nth-child(4n+1)) {
  border-left: 1px solid var(--rule);
}
@media (max-width: 1024px) {
  .areas-list.areas-list--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .areas-list.areas-list--wide .area:not(:nth-child(4n+1)) { border-left: 0; }
  .areas-list.areas-list--wide .area:nth-child(2n) { border-left: 1px solid var(--rule); }
}
@media (max-width: 640px) {
  .areas-list.areas-list--wide { grid-template-columns: 1fr; }
  .areas-list.areas-list--wide .area:nth-child(2n) { border-left: 0; }
}

.map {
  position: relative;
  aspect-ratio: 4/3;
  min-height: 460px;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  overflow: hidden;
}
.map .topo {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, transparent 60px, rgba(91,69,39,0.06) 61px 62px, transparent 63px),
    radial-gradient(circle at 30% 40%, transparent 90px, rgba(91,69,39,0.06) 91px 92px, transparent 93px),
    radial-gradient(circle at 30% 40%, transparent 130px, rgba(91,69,39,0.05) 131px 132px, transparent 133px),
    radial-gradient(circle at 30% 40%, transparent 180px, rgba(91,69,39,0.04) 181px 182px, transparent 183px),
    radial-gradient(circle at 30% 40%, transparent 240px, rgba(91,69,39,0.03) 241px 242px, transparent 243px),
    repeating-linear-gradient(0deg, rgba(91,69,39,0.04) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(91,69,39,0.04) 0 1px, transparent 1px 36px);
}
.map .river { position: absolute; inset: 0; pointer-events: none; }
.pin {
  position: absolute; transform: translate(-50%,-100%);
  display: flex; flex-direction: column; align-items: center;
}
.pin .head { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid var(--ink); }
.pin .label {
  margin-top: 6px; font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  background: var(--paper); padding: 3px 6px; border: 1px solid var(--rule);
  color: var(--ink); white-space: nowrap;
}
.pin.main .head { width: 14px; height: 14px; background: var(--accent); box-shadow: 0 0 0 6px rgba(200,147,36,0.25); }
.pin.main .label { font-weight: 600; }

/* ---------------- FAQ ---------------- */
.faq {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.faq-list { padding-bottom: 64px; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 26px 4px; text-align: left; gap: 24px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600; font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: padding .2s;
  list-style: none;
  cursor: pointer;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { padding-left: 14px; }
.faq-q .plus {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--rule-strong);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform .25s, background .2s, color .2s;
  font-size: 18px; line-height: 1;
}
details[open] .faq-q .plus { background: var(--ink); color: var(--accent); transform: rotate(45deg); border-color: var(--ink); }
.faq-a-inner {
  padding: 0 4px 28px;
  max-width: 64ch; font-size: 16.5px; line-height: 1.6;
  color: var(--ink-2);
}

/* ---------------- Final CTA ---------------- */
.section-cta-final {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 88px 0;
  position: relative; overflow: hidden;
}
.section-cta-final::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0 24px, transparent 24px 48px);
  opacity: 0.4;
}
.section-cta-final .wrap { position: relative; }
.section-cta-final .eyebrow { color: rgba(26,19,5,0.65); display: inline-flex; gap: 10px; align-items: center; }
.section-cta-final .eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-cta-final h2 {
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: clamp(56px, 9vw, 132px);
  letter-spacing: -0.045em; line-height: 0.9;
  margin: 18px 0 28px; max-width: 14ch; text-wrap: balance;
  color: var(--accent-ink);
}
.section-cta-final .row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.section-cta-final .btn { background: var(--ink); color: var(--paper); }
.section-cta-final .btn:hover { background: #000; }
.section-cta-final .ghost-phone { border-color: var(--accent-ink); color: var(--accent-ink); }
.section-cta-final .ghost-phone:hover { background: var(--ink); color: var(--accent); border-color: var(--ink); }
.section-cta-final .ml-auto { margin-left: auto; }
.cta-promises {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--accent-ink);
  line-height: 1.4;
}
.cta-promises .dot {
  display: inline-block;
  margin: 0 8px;
  color: var(--accent-ink);
  opacity: 0.45;
  font-weight: 400;
}
@media (max-width: 880px) {
  .cta-promises { font-size: 14px; }
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--ink); color: rgba(244,239,228,0.75);
  padding: 56px 0 32px;
  text-align: left;
}
.footer-grid {
  max-width: none;
  margin: 0;
  padding: 0 50px 48px;
  display: grid; grid-template-columns: 1.4fr 0.8fr 1.2fr 1.2fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(244,239,228,0.18);
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer .brand-text { color: var(--paper); }
.site-footer .brand-text small { color: rgba(244,239,228,0.6); }
.site-footer h3 {
  margin: 0 0 14px; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(244,239,228,0.55);
  font-weight: 500;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; }
.site-footer ul a { color: rgba(244,239,228,0.85); }
.site-footer ul a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  max-width: none;
  margin: 0;
  padding: 24px 50px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(244,239,228,0.5);
  flex-wrap: wrap; gap: 12px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(244,239,228,0.2);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 600;
  color: rgba(244,239,228,0.85);
}
.footer-social a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); text-decoration: none; }

/* ---------------- Other pages — minimal style ---------------- */
section { padding: 56px 0; }
.hero { padding: 32px 0 0; }
.hero--home, .hero--contact {
  background: var(--bg);
  min-height: 320px;
  padding: 60px 0 30px;
  display: flex; align-items: center; justify-content: center;
}
.hero--about {
  background-image: linear-gradient(rgba(21,18,12,0.35), rgba(21,18,12,0.55)), url("assets/img/about-hero.jpg");
  background-size: cover;
  background-position: center 40%;
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.hero__logo img { width: 70vw; max-width: 720px; height: auto; }
.hero__title-overlay {
  color: var(--paper);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 34px);
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.section-truck { background: var(--bg); padding-top: 0; }
.section-truck img { width: 100%; max-width: 920px; margin: 0 auto; border-radius: 2px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.about-grid .col img { border: 1px solid var(--rule); background: var(--paper); }
.about-grid ul { list-style: none; padding: 0; margin: 0; }
.about-grid li {
  padding: 12px 4px; border-bottom: 1px solid var(--rule);
  font-family: 'Archivo Narrow', sans-serif; font-weight: 600;
  font-size: 19px; letter-spacing: -0.01em;
}
.about-paragraph { margin-top: 20px; max-width: 520px; font-size: 16px; color: var(--ink-2); }
.about-fb { margin-top: 16px; font-weight: 700; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.about-fb a { color: var(--accent); text-decoration: underline; }

.info-bar { background: var(--paper); padding: 36px 0; text-align: center; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.info-bar .row { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.info-bar .hours { font-family: 'Archivo Narrow', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.info-bar .addr { font-size: 14px; color: var(--muted); }
.info-bar .phone { margin-top: 14px; font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--ink-2); }
.info-bar .phone a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--accent); }
.info-bar .icon { display: block; margin: 6px auto; font-size: 18px; color: var(--muted); }

/* Photos page (separate from homepage bento) */
.gallery-wrap { background: var(--ink); padding: 30px 0 80px; min-height: 80vh; color: var(--paper); }
.gallery-wrap h1, .gallery-wrap h2 { color: var(--paper); margin: 0; }
.gallery-wrap h1 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.03em; padding: 30px 0 6px; }
.gallery-wrap h2 { font-size: 18px; font-weight: 500; padding-bottom: 4px; color: var(--accent); }
.gallery-wrap .note { color: rgba(244,239,228,0.55); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery a { display: block; aspect-ratio: 1/1; overflow: hidden; background: #000; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.gallery a:hover img { transform: scale(1.05); }

.videos-wrap { background: var(--ink); padding: 30px 0 80px; min-height: 80vh; color: var(--paper); }
.videos-wrap h1 { color: var(--paper); margin: 30px 0 24px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.03em; }
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video-card { background: #000; position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 4px; }
.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-intro { text-align: center; padding: 50px 0 30px; }
.contact-intro h1 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.03em; margin: 0 0 14px; color: var(--ink); }
.contact-intro .phone-line { color: var(--accent); font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-intro .phone-line a { color: var(--ink); border-bottom: 1px solid var(--accent); }

.contact-form-section {
  background: var(--ink);
  padding: 70px 0 80px;
  color: var(--paper);
}
.contact-form-section h2 { text-align: center; color: var(--paper); margin: 0 0 6px; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.03em; }
.contact-form-section .sub { text-align: center; color: rgba(244,239,228,0.55); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 28px; }
.contact-form { max-width: 620px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea {
  width: 100%;
  background: rgba(244,239,228,0.06);
  border: 1px solid rgba(244,239,228,0.18);
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--paper);
  border-radius: 4px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(244,239,228,0.4); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  grid-column: 1 / -1;
  justify-self: center;
  background: var(--accent);
  border: 0;
  color: var(--accent-ink);
  padding: 12px 40px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  border-radius: 999px;
  transition: background .15s;
}
.contact-form button:hover { background: var(--accent-hot); }
.contact-form .msg { grid-column: 1/-1; padding: 10px 0; color: var(--accent); }

/* ---------------- Page hero (sub pages) ---------------- */
.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--rule);
}
.page-hero .eyebrow { display: inline-flex; gap: 10px; align-items: center; color: var(--ink-2); }
.page-hero .eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--rule-strong); }
.page-hero h1 {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(36px, 5.5vw, 80px);
  letter-spacing: -0.035em; line-height: 0.98;
  margin: 16px 0 18px; text-wrap: balance;
  max-width: 20ch;
  color: var(--ink);
}
.page-hero .lede {
  max-width: 64ch; color: var(--ink-2); font-size: 18px;
  margin: 0;
}
.page-hero .crumbs {
  margin-top: 18px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.page-hero .crumbs a { color: var(--ink-2); border-bottom: 1px solid var(--rule); }
.page-hero .crumbs a:hover { color: var(--ink); border-color: var(--ink); text-decoration: none; }

/* ---------------- Long-form body (pillar / location) ---------------- */
.lf {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 64px;
  padding: 56px 0 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.lf-main { max-width: 70ch; }
.lf-main h2 {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -0.025em;
  line-height: 1.1; margin: 48px 0 14px; color: var(--ink);
  text-wrap: balance;
}
.lf-main h2:first-child { margin-top: 0; }
.lf-main h3 {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 20px; letter-spacing: -0.01em;
  margin: 28px 0 8px; color: var(--ink);
}
.lf-main p { color: var(--ink-2); font-size: 16.5px; line-height: 1.65; margin: 0 0 16px; }
.lf-main ul, .lf-main ol {
  margin: 0 0 16px; padding-left: 0; list-style: none;
}
.lf-main ul li, .lf-main ol li {
  position: relative; padding: 8px 0 8px 26px;
  border-bottom: 1px solid var(--rule);
  font-size: 16px; color: var(--ink-2); line-height: 1.55;
}
.lf-main ul li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 12px; height: 1px; background: var(--accent);
}
.lf-main ol { counter-reset: lf; }
.lf-main ol li::before {
  counter-increment: lf;
  content: counter(lf, decimal-leading-zero);
  position: absolute; left: 0; top: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--accent); font-weight: 600;
  letter-spacing: 0.05em;
}
.lf-main strong { color: var(--ink); }
.lf-main a { color: var(--ink); border-bottom: 1px solid var(--accent); }
.lf-main a:hover { color: var(--accent); text-decoration: none; }

/* Long-form inline photos */
.lf-photo-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin: 28px 0 32px;
}
.lf-photo-strip a {
  display: block; aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border-radius: 6px; border: 1px solid var(--rule);
  transition: transform .25s;
}
.lf-photo-strip a:hover { transform: translateY(-2px); }
.lf-photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin: 14px 0 32px;
}
.lf-photo-grid a {
  display: block; aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border-radius: 6px; border: 1px solid var(--rule);
  transition: transform .25s;
}
.lf-photo-grid a:hover { transform: translateY(-2px); }
.lf-photo-grid--lg { grid-template-columns: repeat(4, 1fr); }
/* Tile anchors that wrap a real <img> instead of using background-image. */
.lf-photo-tile { position: relative; overflow: hidden; aspect-ratio: 4/3; border-radius: 6px; border: 1px solid var(--rule); display: block; transition: transform .25s; }
.lf-photo-tile:hover { transform: translateY(-2px); }
.lf-photo-tile img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@media (max-width: 720px) {
  .lf-photo-strip { grid-template-columns: 1fr 1fr; }
  .lf-photo-grid--lg { grid-template-columns: repeat(2, 1fr); }
}

/* TOC / sidebar */
.lf-side {
  position: sticky; top: 96px;
  align-self: start;
  display: grid; gap: 24px;
}
.lf-toc {
  border: 1px solid var(--rule);
  padding: 22px;
  background: var(--paper);
  border-radius: 4px;
}
.lf-toc h3 {
  margin: 0 0 14px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace; color: var(--muted); font-weight: 500;
}
.lf-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.lf-toc li { padding: 6px 0; border-bottom: 1px dashed var(--rule); }
.lf-toc li:last-child { border-bottom: 0; }
.lf-toc a {
  display: flex; gap: 10px; align-items: baseline;
  font-size: 13.5px; color: var(--ink-2);
}
.lf-toc a:hover { color: var(--ink); text-decoration: none; }
.lf-toc a::before {
  counter-increment: toc;
  content: counter(toc, decimal-leading-zero);
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--accent); letter-spacing: 0.06em;
  flex: 0 0 22px;
}
.lf-cta {
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  padding: 22px;
  border-radius: 4px;
}
.lf-cta .kicker { color: rgba(244,239,228,0.7); margin-bottom: 8px; display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.lf-cta h3 { margin: 0 0 14px; font-size: 22px; letter-spacing: -0.015em; color: var(--paper); }
.lf-cta .btn { width: 100%; justify-content: center; background: var(--accent); color: var(--accent-ink); margin-bottom: 8px; }
.lf-cta .btn:hover { background: var(--accent-hot); }
.lf-cta .phone {
  display: block; text-align: center;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: rgba(244,239,228,0.8);
}
.lf-cta .phone:hover { color: var(--accent); text-decoration: none; }

@media (max-width: 1024px) {
  .lf { grid-template-columns: 1fr; gap: 32px; }
  .lf-side { position: static; }
}

/* ---------------- Tile grids (hubs) ---------------- */
.tile-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-strong);
  border-left: 1px solid var(--rule-strong);
}
.tile-grid > a {
  border-right: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  padding: 28px 26px 22px;
  background: var(--paper);
  position: relative; overflow: hidden;
  transition: background .25s, color .25s;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--ink);
  text-decoration: none;
}
.tile-grid > a:hover { background: var(--ink); color: var(--paper); text-decoration: none; }
.tile-grid > a:hover .num, .tile-grid > a:hover .cta { color: var(--accent); }
.tile-grid > a:hover p { color: rgba(244,239,228,0.7); }
.tile-grid .num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 0.08em; transition: color .2s;
}
.tile-grid h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 26px; letter-spacing: -0.025em;
  line-height: 1.08; margin: 16px 0 8px; max-width: 16ch;
}
.tile-grid p { margin: 0; color: var(--muted); font-size: 14.5px; max-width: 36ch; }
.tile-grid .cta {
  margin-top: 18px; font-size: 13.5px; font-weight: 600;
  display: inline-flex; gap: 8px; align-items: center; transition: color .2s;
}
.tile-grid .state {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tile-grid { grid-template-columns: 1fr; }
}

/* ---------------- Photos page gallery (full, refreshed) ---------------- */
.gallery-wrap { background: var(--paper); border-top: 1px solid var(--rule); }
.gallery-wrap .container { padding-top: 32px; padding-bottom: 80px; }
.gallery-wrap h1, .gallery-wrap h2 { color: var(--ink); }
.gallery-wrap h1 { margin: 0 0 6px; }
.gallery-wrap h2 { color: var(--accent); font-size: 18px; font-weight: 600; margin: 0 0 22px; }
.gallery-wrap .note { color: var(--muted); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 22px; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery a { display: block; aspect-ratio: 1/1; overflow: hidden; background: var(--ink); border: 1px solid var(--rule); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.gallery a:hover img { transform: scale(1.05); }
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------------- TikTok-style vertical reel ---------------- */
.tt-reel-section {
  background: var(--ink);
  border-top: 1px solid var(--rule);
  padding: 32px 0;
}
.tt-reel-section--light { background: var(--paper); }
.tt-reel-section--light .section-head h2 { color: var(--ink); }
.tt-reel-section--light .section-head .lede { color: var(--ink-2); }
.tt-reel-section--light .section-head .eyebrow { color: var(--ink-2); }
.tt-reel-section--light .section-head .eyebrow::before { background: var(--rule-strong); }

/* Gold eyebrow variant — use on dark sections or anywhere you want the accent treatment */
.eyebrow.eyebrow--gold { color: var(--accent) !important; }
.eyebrow.eyebrow--gold::before { background: var(--accent) !important; }

/* Mega blog "Latest field note" + "Featured" + "Also worth reading" col-h6 — gold variant */
.mega4__col--post .mega4__col-h6,
.mega4__col--post + .mega4__col--post .mega4__col-h6 {
  color: var(--accent);
}

/* More breathing room on the post cards under those headers */
.mega4__col--post .mega4__post {
  padding: 24px 26px 24px;
}
.mega4__col--post .mega4__post::before {
  top: 24px; bottom: 24px;
}
.tt-reel {
  height: 80vh;
  max-height: 720px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}
.tt-reel::-webkit-scrollbar { width: 6px; }
.tt-reel::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.tt-reel__slide {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: 80vh;
  max-height: 720px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  position: relative;
  padding: 16px;
}
.tt-reel__frame {
  width: min(420px, 80%);
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.7);
  position: relative;
}
.tt-reel__frame iframe {
  position: absolute; inset: -16% 0;       /* over-crop top/bottom to hide title bar + suggested-videos overlay */
  width: 100%; height: 132%;
  border: 0;
  pointer-events: none;                     /* taps go to our overlay button, not YouTube chrome */
}
.tt-reel__thumb { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.tt-reel__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* swallow the iframe area so YT chrome stays inert */
.tt-reel__cover {
  position: absolute; inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: 2;
}
/* round, ochre unmute button */
.tt-reel__sound {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(8,14,22,0.65);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .15s, color .15s, transform .12s;
}
.tt-reel__sound:hover { background: var(--accent); color: var(--ink); transform: scale(1.04); }
.tt-reel__sound.is-muted { box-shadow: 0 0 0 0 rgba(200,147,36,0); }
.tt-reel__sound:not(.is-muted) { background: var(--accent); color: var(--ink); }
.tt-reel__meta {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  width: min(420px, 80%);
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(8,14,22,0) 0%, rgba(8,14,22,0.55) 30%, rgba(8,14,22,0.85) 100%);
  border-radius: 0 0 14px 14px;
  color: #fff;
  pointer-events: none;
}
.tt-reel__brand { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.tt-reel__caption { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; margin-top: 2px; }
.tt-reel__date { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.tt-reel__cta {
  pointer-events: auto;
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* Homepage embed: infinite, side-to-side auto-scrolling marquee of vertical reels */
.tt-reel--row {
  display: flex;
  gap: 18px;
  height: 540px; max-height: none;
  padding: 8px 0;
  overflow: hidden;
  scroll-snap-type: none;
  align-items: center;
  position: relative;
  width: 100%;
  --reel-speed: 60s;
  /* fade out the edges so the marquee loop seam isn't obvious */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.tt-reel--row > .tt-reel__track {
  display: flex; gap: 18px;
  animation: tt-marquee var(--reel-speed) linear infinite;
  will-change: transform;
}
.tt-reel--row:hover > .tt-reel__track { animation-play-state: paused; }
.tt-reel--row .tt-reel__slide {
  height: 100%; max-height: none;
  width: 300px; flex: 0 0 300px;
  scroll-snap-align: none;
  padding: 0;
  position: relative;
}
.tt-reel--row .tt-reel__frame { width: 100%; height: 100%; aspect-ratio: 9/16; }
.tt-reel--row .tt-reel__meta {
  /* keep meta anchored to its own frame, not the outer slide */
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 0;
  width: 100%;
}
@keyframes tt-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 720px) {
  .tt-reel__frame { width: 92%; }
  .tt-reel__meta  { width: 92%; }
}

/* ---------------- Videos page (refreshed) ---------------- */
.videos-wrap { background: var(--bg); border-top: 1px solid var(--rule); }
.videos-wrap .container { padding-top: 32px; padding-bottom: 80px; }
.videos-wrap h1 { color: var(--ink); margin: 0 0 22px; }
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video-card { background: var(--ink); position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 4px; }
.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 880px) { .videos { grid-template-columns: 1fr; } }

/* ---------------- Contact page (refreshed) ---------------- */
.contact-wrap { padding: 56px 0 80px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.contact-grid h2 {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 30px; letter-spacing: -0.02em; margin: 0 0 16px;
}
.contact-form-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-v2 .full { grid-column: 1 / -1; }
.contact-form-v2 input, .contact-form-v2 textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-size: 15px; font-family: inherit; color: var(--ink);
  border-radius: 4px;
}
.contact-form-v2 input::placeholder, .contact-form-v2 textarea::placeholder { color: var(--muted); }
.contact-form-v2 input:focus, .contact-form-v2 textarea:focus { outline: none; border-color: var(--accent); }
.contact-form-v2 textarea { min-height: 160px; resize: vertical; }
.contact-form-v2 button {
  grid-column: 1 / -1;
  justify-self: start;
  background: var(--ink); color: var(--paper);
  border: 0; padding: 14px 28px;
  cursor: pointer; font: inherit; font-weight: 600;
  border-radius: 999px;
  transition: background .15s;
}
.contact-form-v2 button:hover { background: #000; }
.contact-form-v2 .msg {
  grid-column: 1/-1; padding: 12px 14px;
  background: var(--paper); border: 1px solid var(--rule); border-radius: 4px;
  color: var(--ink); font-size: 14.5px;
}
.contact-side { font-size: 15.5px; color: var(--ink-2); line-height: 1.6; }
.contact-side dl { margin: 0; display: grid; grid-template-columns: 1fr 2fr; gap: 12px 24px; }
.contact-side dt { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.contact-side dd { margin: 0; color: var(--ink); }
.contact-side dd a { color: var(--ink); border-bottom: 1px solid var(--accent); }
.contact-side dd a:hover { color: var(--accent); text-decoration: none; }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-v2 { grid-template-columns: 1fr; }
}

/* ---------------- Blog ---------------- */
.blog-featured {
  display: block;
  margin: 0 0 36px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover; background-position: center;
  background-color: var(--ink);
  color: #fff;
  text-decoration: none;
  min-height: 340px;
  transition: transform .2s ease;
}
.blog-featured:hover { transform: translateY(-2px); text-decoration: none; }
.blog-featured__inner {
  padding: 56px 48px;
  max-width: 720px;
}
.blog-featured__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.blog-featured__title {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: #fff;
}
.blog-featured__excerpt {
  margin: 0 0 18px;
  color: rgba(244,239,228,0.85);
  font-size: 16px; line-height: 1.55;
  max-width: 60ch;
}
.blog-featured__cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
}

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.blog-card__img {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  background-color: var(--paper);
}
.blog-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card__meta {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.blog-card__title {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 21px; letter-spacing: -0.02em; line-height: 1.2;
  margin: 0;
}
.blog-card__excerpt { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.blog-card__cta {
  margin-top: auto; padding-top: 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
}
.blog-pager {
  margin-top: 40px;
  display: flex; gap: 8px; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
}
.blog-pager .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border: 1px solid var(--rule); border-radius: 999px;
  color: var(--ink); text-decoration: none;
}
.blog-pager .page-numbers.current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.blog-pager .page-numbers:hover { border-color: var(--accent); text-decoration: none; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---------------- Mapbox ---------------- */
.lsx-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 360px;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  overflow: hidden;
}
.lsx-map.lsx-map--banner {
  aspect-ratio: auto;
  height: 60vh;
  min-height: 480px;
  border-radius: 0;
  border-left: 0; border-right: 0;
}
.lsx-map__el { position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.lsx-map__el.mapboxgl-map { width: 100% !important; height: 100% !important; }
.lsx-map__el .mapboxgl-canvas { width: 100% !important; height: 100% !important; }
.lsx-map__overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8,14,22,0.35), transparent 30%, transparent 70%, rgba(8,14,22,0.45));
}
.lsx-map__corner {
  position: absolute; padding: 8px 12px;
  background: rgba(8,14,22,0.65);
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 4px;
  pointer-events: none;
}
.lsx-map__corner--tl { top: 14px; left: 14px; }
.lsx-map__corner--br { bottom: 14px; right: 14px; }
/* Marker wrapper: zero-size element pinned exactly to the geo point.
   Children are absolutely positioned around that point so the dot stays
   anchored regardless of label width or map rotation. */
.lsx-marker-wrap {
  position: relative;
  width: 0; height: 0;
  pointer-events: none;
}
.lsx-marker {
  position: absolute;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(200,147,36,0.2), 0 2px 6px rgba(0,0,0,0.3);
  cursor: pointer;
  pointer-events: auto;
  box-sizing: border-box;
}
.lsx-marker--main {
  width: 22px; height: 22px;
  box-shadow: 0 0 0 8px rgba(200,147,36,0.28), 0 2px 12px rgba(0,0,0,0.4);
  animation: lsx-pulse 2.4s ease-out infinite;
}
.lsx-marker--town {
  width: 8px; height: 8px;
  background: rgba(244,239,228,0.92);
  border: 1.5px solid rgba(21,18,12,0.85);
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.lsx-marker-wrap.is-town:hover .lsx-marker--town {
  background: var(--accent);
  border-color: #fff;
}
@keyframes lsx-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(200,147,36,0.55), 0 2px 12px rgba(0,0,0,0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(200,147,36,0),    0 2px 12px rgba(0,0,0,0.4); }
  100% { box-shadow: 0 0 0 0   rgba(200,147,36,0),    0 2px 12px rgba(0,0,0,0.4); }
}
.lsx-marker-label {
  position: absolute;
  left: 0; top: 0;
  transform: translate(-50%, calc(-100% - 18px));
  white-space: nowrap;
  background: #fff;
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.35);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 5;
}
.lsx-marker-wrap:hover .lsx-marker-label,
.lsx-marker-wrap.is-main .lsx-marker-label {
  opacity: 1;
}
.lsx-marker-wrap.is-main .lsx-marker-label {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.mapboxgl-ctrl-bottom-right, .mapboxgl-ctrl-bottom-left { display: none !important; }
/* Make sure mapbox's own marker container doesn't fight our zero-size wrap */
.mapboxgl-marker { will-change: transform; }

/* ---------------- Chat widget ---------------- */
.lsx-wrap {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 72px 0;
}
.lsx-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}
.lsx-head .eyebrow { display: inline-flex; gap: 10px; align-items: center; color: var(--ink-2); }
.lsx-head .eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--rule-strong); }
.lsx-head h2 {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.03em; line-height: 1.02;
  margin: 14px 0 12px;
  color: var(--ink);
  text-wrap: balance;
}
.lsx-head .lede {
  color: var(--ink-2); font-size: 16.5px; line-height: 1.55;
  margin: 0 auto; max-width: 56ch;
}

.lsx-stage {
  margin: 0 auto;
  max-width: 980px;
}
.lsx-chat {
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  height: 540px;
  overflow: hidden;
}
.lsx-chat__head {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 20px;
}
.lsx-chat__title {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 16px; letter-spacing: -0.01em;
}
.lsx-chat__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #18a657;
  box-shadow: 0 0 0 4px rgba(24,166,87,0.18);
}
.lsx-chat__sub {
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(244,239,228,0.55);
}
.lsx-chat__log {
  flex: 1; overflow-y: auto;
  padding: 18px 18px 6px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg);
  scrollbar-width: thin;
}
.lsx-chat__log::-webkit-scrollbar { width: 8px; }
.lsx-chat__log::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 4px; }

.lsx-msg { display: flex; }
.lsx-msg--user { justify-content: flex-end; }
.lsx-msg--assistant { justify-content: flex-start; }
.lsx-bubble {
  max-width: 82%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.lsx-msg--user .lsx-bubble {
  background: var(--ink); color: var(--paper);
  border-bottom-right-radius: 4px;
}
.lsx-msg--assistant .lsx-bubble {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
  border-bottom-left-radius: 4px;
}

.lsx-typing { padding: 14px 16px; display: inline-flex; gap: 5px; }
.lsx-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted);
  animation: lsx-blink 1.2s infinite both;
}
.lsx-typing span:nth-child(2) { animation-delay: .2s; }
.lsx-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes lsx-blink {
  0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

.lsx-chat__form {
  display: flex; align-items: flex-end; gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid var(--rule);
}
.lsx-chat__input {
  flex: 1; resize: none;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 16px;     /* >=16px stops iOS Safari from zooming on focus */
  color: var(--ink);
  background: var(--bg);
  min-height: 40px;
  max-height: 180px;
}
@media (max-width: 880px) {
  .lsx-chat__input { font-size: 16px; }
}
.lsx-chat__input:focus { outline: none; border-color: var(--accent); }
.lsx-chat__input:disabled { opacity: 0.6; }
.lsx-chat__send {
  height: 44px; width: 44px; padding: 0;
  background: var(--ink); color: var(--paper);
  border: 0; border-radius: 999px;
  font: inherit; font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, transform .1s, color .15s;
  flex: 0 0 44px;
}
.lsx-chat__send svg { width: 18px; height: 18px; display: block; }
.lsx-chat__send:hover:not(:disabled) { background: var(--accent); color: var(--accent-ink); transform: translateY(-1px); }
.lsx-chat__send:disabled { opacity: 0.4; cursor: not-allowed; }
.lsx-chat__footnote {
  padding: 6px 14px 10px;
  background: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.lsx-chat--done .lsx-chat__head { background: var(--accent); color: var(--accent-ink); }
.lsx-chat--done .lsx-chat__sub { color: rgba(26,19,5,0.6); }
.lsx-chat--done .lsx-chat__dot { background: var(--accent-ink); box-shadow: 0 0 0 4px rgba(0,0,0,0.1); }
.lsx-submitted {
  display: flex; gap: 14px; align-items: flex-start;
  margin: 16px 0 4px;
  padding: 14px 16px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 10px;
  border: 1px solid var(--ink);
}
.lsx-submitted__check {
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  font-weight: 700; flex: 0 0 26px;
}
.lsx-submitted__title {
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: -0.01em;
}
.lsx-submitted__sub { font-size: 13.5px; margin-top: 2px; color: var(--accent-ink); }

@media (max-width: 880px) {
  .lsx-wrap { padding: 48px 0; }
  .lsx-chat { height: 70vh; min-height: 460px; }
}

/* ---------------- Mobile menu burger + drawer ---------------- */
.mobile-burger {
  display: none;
  width: 56px; height: 56px;
  border: 1px solid var(--ink); border-radius: 999px;
  background: transparent; cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
  margin-left: 8px;
}
.mobile-burger:hover { background: var(--ink); }
.mobile-burger:hover span { background: var(--accent); }
.mobile-burger span {
  display: block; width: 26px; height: 2px;
  background: var(--ink); transition: transform .25s, opacity .25s, background .15s;
  border-radius: 1px;
}
.lsx-mmenu {
  position: fixed; inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  overflow-y: auto;
}
.lsx-mmenu.is-open { opacity: 1; pointer-events: auto; }
.lsx-mmenu__inner {
  max-width: 600px; margin: 0 auto;
  padding: 28px 24px 40px;
  display: flex; flex-direction: column; min-height: 100%;
}
.lsx-mmenu__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(244,239,228,0.12);
}
.lsx-mmenu__head .brand-mark {
  width: 48px !important; height: 48px !important; flex-basis: 48px !important;
  margin: 0 !important;
}
.lsx-mmenu__head .brand-text {
  color: #fff !important; font-size: 14px;
  max-width: 220px !important; opacity: 1 !important; margin-left: 10px !important;
}
.lsx-mmenu__head .brand-text small { color: rgba(244,239,228,0.6) !important; }
.lsx-mmenu__close {
  width: 42px; height: 42px; border-radius: 999px;
  background: rgba(244,239,228,0.08);
  border: 1px solid rgba(244,239,228,0.18);
  color: var(--paper); cursor: pointer;
  font-size: 22px; line-height: 1;
}
.lsx-mmenu__close:hover { background: rgba(244,239,228,0.16); }

.lsx-mmenu__nav { padding: 28px 0; flex: 1; display: flex; flex-direction: column; }
.lsx-mmenu__nav > a,
.lsx-mmenu__group > summary {
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 28px; letter-spacing: -0.02em;
  color: var(--paper);
  padding: 16px 0;
  border-bottom: 1px solid rgba(244,239,228,0.1);
  text-decoration: none;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; list-style: none;
  transform: translateY(14px); opacity: 0;
  transition: transform .45s cubic-bezier(.18,.7,.2,1), opacity .45s, color .2s;
  transition-delay: var(--d, 0ms);
}
.lsx-mmenu__nav > a:hover,
.lsx-mmenu__group > summary:hover { color: var(--accent); }
.lsx-mmenu.is-open .lsx-mmenu__nav > a,
.lsx-mmenu.is-open .lsx-mmenu__group > summary { transform: translateY(0); opacity: 1; }
.lsx-mmenu__group { border: 0; }
.lsx-mmenu__group summary::-webkit-details-marker { display: none; }
.lsx-mmenu__group .caret { font-size: 18px; transition: transform .25s; color: var(--accent); }
.lsx-mmenu__group[open] .caret { transform: rotate(180deg); }
.lsx-mmenu__sub {
  display: flex; flex-direction: column;
  padding: 4px 0 12px;
}
.lsx-mmenu__sub a {
  color: rgba(244,239,228,0.72);
  font-family: 'Archivo Narrow', 'Archivo', sans-serif;
  font-weight: 600; font-size: 18px;
  padding: 8px 0; padding-left: 18px;
  border-bottom: 1px solid rgba(244,239,228,0.06);
  text-decoration: none;
  position: relative;
}
.lsx-mmenu__sub a::before {
  content: ""; position: absolute;
  left: 0; top: 50%; width: 8px; height: 1px;
  background: var(--accent);
}
.lsx-mmenu__sub a:hover { color: var(--accent); }

.lsx-mmenu__foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(244,239,228,0.12);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.lsx-mmenu__phone {
  font-family: 'JetBrains Mono', monospace; font-size: 14px;
  color: var(--accent); text-decoration: none;
}
.lsx-mmenu__foot .btn { padding: 0 18px; height: 44px; }

/* Show burger on small screens, hide nav + phone + cta */
@media (max-width: 980px) {
  .mobile-burger { display: inline-flex; }
  .nav-primary { display: none; }
  .top-cta .phone { display: none; }
  .top-cta__btn { display: none; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--rule); }
  .stat:nth-child(n+3) { border-top: 1px solid var(--rule); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(n+3) { border-top: 1px solid rgba(244,239,228,0.12); padding-top: 28px; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* ---------------- Guides ---------------- */
.guide-hero { padding: 64px 0 24px; background: var(--paper); border-bottom: 1px solid var(--rule); }
.guide-hero__h1 {
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: clamp(34px, 5vw, 64px); line-height: 1.02;
  letter-spacing: -0.03em; margin: 12px 0 14px;
  color: var(--ink);
}
.guide-hero__sub {
  font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55;
  color: var(--ink-2);
  max-width: 64ch; margin: 0 0 18px;
}

.guide-body { padding: 56px 0 96px; }
.guide-grid {
  display: grid; grid-template-columns: 220px minmax(0, 1fr);
  gap: 64px; align-items: start;
}
.guide-toc {
  position: sticky; top: 120px;
  align-self: start;
}
.guide-toc__h6 {
  display: block; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--rule);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.guide-toc__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 4px;
}
.guide-toc__list a {
  display: grid; grid-template-columns: 32px 1fr; gap: 10px;
  padding: 8px 4px;
  color: var(--ink-2); font-size: 14px;
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: color .15s, border-color .15s, background .15s;
}
.guide-toc__list a:hover { color: var(--ink); }
.guide-toc__list a.is-current {
  border-left-color: var(--accent);
  color: var(--ink); font-weight: 600;
  background: rgba(200,147,36,0.06);
}
.guide-toc__num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.06em; color: var(--accent); padding-top: 2px;
}
.guide-toc__cta { margin-top: 18px; }
.guide-toc__cta .btn { width: 100%; justify-content: center; }

.guide-main { min-width: 0; }
.guide-intro {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: clamp(18px, 1.6vw, 21px); line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.guide-intro p { margin: 0 0 18px; }

.guide-chapter {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 120px;
}
.guide-chapter:first-of-type { border-top: 0; padding-top: 0; }
.guide-chapter__head {
  display: grid; grid-template-columns: 64px 1fr; gap: 18px;
  align-items: start; margin-bottom: 18px;
}
.guide-chapter__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px; font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.guide-chapter__h2 {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.02em; line-height: 1.1;
  color: var(--ink); margin: 0;
}
.guide-chapter__body {
  font-size: 16px; line-height: 1.7; color: var(--ink-2);
}
.guide-chapter__body p { margin: 0 0 16px; }
.guide-chapter__body h3 {
  font-family: 'Archivo Narrow', sans-serif; font-weight: 700;
  font-size: 19px; letter-spacing: -0.005em;
  color: var(--ink); margin: 28px 0 10px;
}
.guide-chapter__body ul, .guide-chapter__body ol {
  margin: 0 0 18px; padding-left: 22px;
}
.guide-chapter__body ul li, .guide-chapter__body ol li { margin: 6px 0; }
.guide-chapter__body strong { color: var(--ink); }
.guide-chapter__body code {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  background: var(--paper); padding: 2px 6px; border-radius: 3px;
}

/* Callout-style chapter (e.g., "Rule of thumb") */
.guide-chapter--callout {
  background: var(--ink); color: #fff;
  padding: 28px 32px; margin: 24px 0;
  border-radius: 8px; border-top: 0;
}
.guide-chapter--callout .guide-chapter__num { color: var(--accent); }
.guide-chapter--callout .guide-chapter__h2 { color: #fff; }
.guide-chapter--callout .guide-chapter__body { color: rgba(255,255,255,0.88); }
.guide-chapter--callout .guide-chapter__body strong { color: #fff; }

@media (max-width: 960px) {
  .guide-grid { grid-template-columns: 1fr; gap: 32px; }
  .guide-toc { position: static; }
}

/* Guides hub grid */
.guides-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.guide-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  text-decoration: none;
  transition: transform .2s, border-color .15s, background .15s;
  position: relative; overflow: hidden;
}
.guide-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--accent); opacity: 0; transition: opacity .15s;
}
.guide-card:hover { transform: translateY(-3px); border-color: var(--rule-strong); text-decoration: none; background: #fff; }
.guide-card:hover::before { opacity: 1; }
.guide-card__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.guide-card__title {
  font-family: 'Archivo Narrow', sans-serif; font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.015em;
  line-height: 1.15; color: var(--ink); margin: 0;
}
.guide-card__blurb {
  font-size: 15px; line-height: 1.55; color: var(--ink-2);
  margin: 0;
}
.guide-card__cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .guides-grid { grid-template-columns: 1fr; }
}

/* ---------------- Hero banner (pillars, locations, guides) ---------------- */
.hero-banner {
  position: relative;
  min-height: clamp(360px, 52vh, 560px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
  color: #fff;
}
.hero-banner__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-banner__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-banner__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(21,18,12,0.30) 0%, rgba(21,18,12,0.55) 60%, rgba(21,18,12,0.78) 100%),
    linear-gradient(90deg, rgba(21,18,12,0.42) 0%, rgba(21,18,12,0) 60%);
}
.hero-banner__inner {
  position: relative; z-index: 2;
  padding: 56px 0 44px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-banner__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent) !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-banner__eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: var(--accent);
}
.hero-banner__h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  max-width: 22ch;
}
.hero-banner__lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0 0 18px;
  max-width: 56ch;
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}
.hero-banner__crumbs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-banner__crumbs a {
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.hero-banner__crumbs a:hover { color: var(--accent); border-bottom-color: var(--accent); text-decoration: none; }
@media (max-width: 720px) {
  .hero-banner { min-height: clamp(320px, 60vh, 440px); }
  .hero-banner__inner { padding: 40px 0 32px; }
}

/* ---------------- Reviews / testimonials ---------------- */
.reviews {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 72px 0 80px;
}
.reviews .section-head { padding: 0 0 32px; }
.reviews-stars {
  color: var(--accent);
  font-size: 17px;
  letter-spacing: 2px;
  margin-right: 6px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: border-color .15s, transform .2s;
}
.review-card:hover { border-color: var(--rule-strong); transform: translateY(-2px); }
.review-card::before {
  content: "\201C";
  position: absolute; top: 8px; right: 18px;
  font-family: 'Archivo', serif;
  font-size: 72px; font-weight: 900;
  color: var(--rule);
  line-height: 1;
  pointer-events: none;
}
.review-card__stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
}
.review-card__quote {
  margin: 0;
  font-size: 15px; line-height: 1.55;
  color: var(--ink);
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 500;
}
.review-card__author {
  margin-top: auto;
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 14.5px; letter-spacing: -0.005em;
  color: var(--ink);
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.review-card__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.05em;
  color: var(--muted);
}
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .reviews-grid { grid-template-columns: 1fr; } }

/* Footer service-areas list: 2-column grid */
.footer-areas,
.footer-services {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 16px;
}
.footer-services li a,
.footer-areas li a {
  display: inline-block;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
}

/* Footer Guides row — full-width, just under the main 5-col grid */
.footer-guides {
  padding: 24px 50px 0;
  border-bottom: 1px solid rgba(244,239,228,0.1);
  padding-bottom: 28px;
}
.footer-guides__h6 {
  display: block; margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(244,239,228,0.55); font-weight: 500;
}
.footer-guides__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 32px;
}
.footer-guides__list a {
  color: rgba(244,239,228,0.85);
  font-size: 14px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.footer-guides__list a:hover { color: var(--accent); border-bottom-color: var(--accent); text-decoration: none; }
@media (max-width: 880px) {
  .footer-guides__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .footer-guides__list { grid-template-columns: 1fr; }
}

/* ---------------- Floating assistant launcher ---------------- */
.lsx-fab {
  position: fixed; right: 22px; bottom: 22px;
  z-index: 1000;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 22px 0 18px;
  height: 56px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 0; border-radius: 999px;
  box-shadow: 0 18px 36px -12px rgba(21,18,12,0.45), 0 0 0 6px rgba(200,147,36,0.18);
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 14.5px; letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .15s;
}
.lsx-fab:hover { transform: translateY(-2px); background: var(--accent-hot); }
.lsx-fab i { font-size: 18px; }
.lsx-fab__label { line-height: 1; }
.lsx-fab[aria-expanded="true"] { background: var(--ink); color: var(--paper); }
.lsx-fab[aria-expanded="true"] i { color: var(--accent); }

.lsx-fab-panel {
  position: fixed; right: 22px; bottom: 92px;
  z-index: 999;
  width: min(420px, calc(100vw - 44px));
  height: min(640px, calc(100vh - 140px));
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--rule-strong);
  box-shadow: 0 40px 80px -30px rgba(21,18,12,0.55), 0 8px 20px -8px rgba(21,18,12,0.25);
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0; transform: translateY(10px) scale(0.98);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
.lsx-fab-panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lsx-fab-panel__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: var(--ink);
  border-bottom: 1px solid var(--ink);
  flex: 0 0 auto;
}
.lsx-fab-panel__brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 11.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--paper);
}
.lsx-fab-panel__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #38d18a;
  box-shadow: 0 0 0 3px rgba(56,209,138,0.18);
}
.lsx-fab-panel__close {
  background: transparent;
  border: 0; color: var(--paper);
  width: 28px; height: 28px; border-radius: 50%;
  cursor: pointer; display: grid; place-items: center;
  font-size: 14px;
  transition: background .15s, color .15s;
}
.lsx-fab-panel__close:hover { background: rgba(244,239,228,0.12); color: var(--accent); }
.lsx-fab-panel__body {
  flex: 1; overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
/* Inside the FAB panel, hide the chat's own title/subtitle header — the panel itself is the surround. */
.lsx-fab-panel .lsx-chat__head { display: none !important; }
.lsx-fab-panel__body > * { flex: 1; min-height: 0; }
/* Make the embedded chat fill the FAB panel */
.lsx-fab-panel__body .lsx-chat { height: 100% !important; max-height: none !important; border: 0 !important; border-radius: 0 !important; }

@media (max-width: 520px) {
  .lsx-fab__label { display: none; }
  .lsx-fab { padding: 0; width: 56px; height: 56px; justify-content: center; }
  .lsx-fab-panel { right: 12px; bottom: 80px; width: calc(100vw - 24px); height: calc(100vh - 110px); }
}

@media (max-width: 720px) {
  .wrap, .container { padding: 0 20px; }
  .topbar-inner { grid-template-columns: 1fr auto; height: 64px; }
  .nav-primary, .top-cta .phone { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .photos-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 90px; }
  .p1, .p6, .p7 { grid-column: span 6; }
  .p2, .p3, .p4, .p5 { grid-column: span 3; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-head { padding: 64px 0 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .videos { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .loc-services { grid-template-columns: 1fr !important; }
}

/* ---------------- Inline CTA block (used inside long-form articles) ---------------- */
.lf-inline-cta {
  position: relative;
  margin: 44px 0;
  padding: 32px 36px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(21,18,12,0.45);
  isolation: isolate;
}
.lf-inline-cta__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(200,147,36,0.22) 0%, rgba(200,147,36,0) 55%),
    linear-gradient(180deg, #1c170d 0%, #15120c 100%);
}
.lf-inline-cta::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--accent);
}
.lf-inline-cta,
.lf-inline-cta * { color: #fff !important; }
.lf-inline-cta__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff !important; font-weight: 600;
}
.lf-inline-cta__h {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 8px 0 10px;
  color: #fff !important;
}
.lf-inline-cta__copy {
  margin: 0 0 22px;
  font-size: 15px; line-height: 1.6;
  color: #fff !important;
  max-width: 58ch;
}
/* The CTA button itself keeps its accent colors */
.lf-inline-cta .btn { color: var(--accent-ink) !important; }
.lf-inline-cta .btn:hover { color: var(--accent-ink) !important; }
.lf-inline-cta__row {
  display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center;
}
.lf-inline-cta__row .btn {
  background: var(--accent); color: var(--accent-ink);
}
.lf-inline-cta__row .btn:hover { background: var(--accent-hot); color: var(--accent-ink); }
.lf-inline-cta__phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}
.lf-inline-cta__phone i { color: #fff !important; }
.lf-inline-cta__phone:hover { border-bottom-color: #fff; text-decoration: none; }
@media (max-width: 640px) {
  .lf-inline-cta { padding: 26px 22px; margin: 32px 0; }
}

/* ============================================================
   Mobile pass — balance sizing, padding, and prevent overflow.
   Targets phones ≤ 640px. Tablets get a separate tweak at 880.
   ============================================================ */
@media (max-width: 880px) {
  /* NB: do NOT set overflow-x:hidden on html/body — it breaks position:sticky
     on the topbar. If real horizontal overflow appears, fix the source element. */
  .wrap { padding-left: 18px; padding-right: 18px; }

  /* Topbar: oversized logo at rest, shrinks on scroll just like desktop.
     - At rest: 112px brand-mark with the same negative-margin overflow trick;
       brand-text stays hidden so the burger has room.
     - Scrolled: 40px brand-mark, brand-text fades in, header turns into a slim bar. */
  body:not(.is-scrolled) .site-header.topbar { padding: 6px 0; }
  body:not(.is-scrolled) .topbar-inner { height: 88px; }
  body.is-scrolled .topbar-inner { height: 56px; }
  .topbar-inner { gap: 12px; }
  .brand-mark { width: 112px !important; height: 112px !important; flex-basis: 112px !important; margin: -10px 0 -22px 0 !important; }
  body.is-scrolled .brand-mark { width: 40px !important; height: 40px !important; flex-basis: 40px !important; margin: 0 !important; }
  /* Brand text hidden at rest (no room next to the big logo + burger), revealed when scrolled. */
  .brand-text { max-width: 0; opacity: 0; margin-left: 0; font-size: 13.5px; }
  body.is-scrolled .brand-text { max-width: 220px; opacity: 1; margin-left: 6px; }
  .brand-text small { display: none; }
  .top-cta { gap: 8px; }
  .mobile-burger { width: 44px; height: 44px; }

  /* Hero (front-page keyburn). */
  .hero { min-height: auto; }
  .hero--kb { padding: 56px 0 24px; }
  .hero-grid { gap: 16px; }
  h1.headline { font-size: clamp(36px, 11vw, 60px) !important; line-height: 1.02; letter-spacing: -0.035em; }
  h1.headline .line { white-space: normal; }
  .hero-tagline { font-size: 16px; line-height: 1.4; }
  .hero-tagline-bold { font-size: 18px; }
  .hero-card { padding: 18px; margin: 0; max-width: 100%; }
  .hero-actions, .hero-actions--in-card { flex-wrap: wrap; gap: 10px; }
  .hero-actions .btn, .hero-actions .contact-pair { width: 100%; }
  /* Bring the 3 contact buttons back as a real row of labeled pills (override
     the icon-only circular treatment used at desktop). */
  .hero-actions .contact-pair { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-actions .contact-pair__btn {
    width: auto !important; height: 44px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
    border-width: 1px;
  }
  .hero-actions .contact-pair__btn i { font-size: 14px; }
  .hero-actions .contact-pair__lbl { display: inline !important; opacity: 0.95; }

  /* Page hero (about/contact/etc.). */
  .page-hero { padding: 48px 0 28px; }
  .page-hero h1 { font-size: clamp(32px, 9vw, 48px); }
  .page-hero .lede { font-size: 16px; }

  /* Hero banner (pillar/location). */
  .hero-banner { min-height: clamp(260px, 44vh, 380px); }
  .hero-banner__inner { padding: 36px 0 24px; }
  .hero-banner__h1 { font-size: clamp(32px, 8.5vw, 46px) !important; line-height: 1.05; }
  .hero-banner__lede { font-size: 15.5px; }

  /* Only allow extra-long words (URLs etc.) to break — never letter-by-letter
     normal text. Setting `anywhere` on body cascades and shreds words like
     "7am-5pm" into one-character columns. */
  body { overflow-wrap: break-word; }
  h1, h2 { text-wrap: balance; }

  /* Section padding tighter. */
  section { padding-top: 36px; padding-bottom: 36px; }
  .section-head { padding: 0 0 18px; }

  /* Service grid → 2 columns on mobile (was 3 on desktop). Stats also 2-col. */
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .stat .n { font-size: clamp(30px, 9vw, 44px); letter-spacing: -0.03em; white-space: nowrap; }
  .stat { padding: 8px 12px; border-left-width: 1px; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  /* Service-card text smaller on mobile to fit the narrower column */
  .service h3 { font-size: 16px; }
  .service p  { font-size: 13.5px; line-height: 1.45; }
  .service .service-num { font-size: 11px; }

  /* Area cells: tighter rows + smaller font so two-word cities fit one line. */
  .area { padding: 14px 14px; font-size: 17px; letter-spacing: -0.015em; }
  .area .st { font-size: 10px; margin-left: 10px; }
  .area:hover, .area:hover:nth-child(2n) { padding-left: 18px; }

  /* Areas-grid: stack the location list above the map on mobile so cells
     aren't squeezed into a half-width column. */
  .areas-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .areas-section .lsx-map { min-height: 320px; }

  /* Pillar/location split layout → stacked. */
  .lf { grid-template-columns: 1fr !important; gap: 28px; }
  .lf-side { position: static !important; max-width: 100%; }

  /* Photo grids responsive. */
  .photos-grid { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; gap: 8px; }
  .photo { aspect-ratio: 4/3; min-height: 0 !important; }
  .photo.p1, .photo.p4 { grid-column: span 2; }
  .lf-photo-grid, .lf-photo-strip { grid-template-columns: 1fr 1fr !important; }

  /* Reviews, FAQ, etc. */
  .reviews-grid { grid-template-columns: 1fr !important; }
  .review-card { padding: 22px; }
  .faq-items { grid-template-columns: 1fr; }

  /* Footer: stack columns. */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .site-footer { padding-top: 48px; padding-bottom: 32px; }
  .site-footer .brand-mark { width: 64px !important; height: 64px !important; flex-basis: 64px !important; }
  .footer-guides__list { flex-direction: column; gap: 6px; }

  /* Floating chat fab smaller. */
  .lsx-fab { bottom: 14px; right: 14px; padding: 12px 16px; font-size: 13px; }
  .lsx-fab__label { display: none; }
  .lsx-fab-panel { width: calc(100vw - 24px); max-width: none; right: 12px; left: 12px; }

  /* Mega-nav uses the drawer on mobile — kill any leftover desktop rendering. */
  .nav-primary, .has-mega .mega { display: none !important; }

  /* Tap targets ≥ 44px (a11y / mobile friendliness). */
  a.btn, .btn, button, .contact-pair__btn, .nav-primary a { min-height: 44px; }
  .contact-pair__btn { padding: 10px 12px; }

  /* Contact-pair in topbar is redundant on mobile — the burger drawer has
     phone/email access. Hide it so the burger has room to render. */
  .topbar .contact-pair { display: none; }

  /* Page-hero h1s (about/contact/etc.) sometimes ship inline max-width
     constraints that overflow on small viewports — neutralize them. */
  .page-hero h1 { max-width: 100% !important; }
  .page-hero .lede { max-width: 100% !important; }
}

/* Narrow phones — slightly smaller "big" logo so it doesn't overpower a 390px viewport. */
@media (max-width: 480px) {
  .brand-mark { width: 96px !important; height: 96px !important; flex-basis: 96px !important; }
  body.is-scrolled .brand-mark { width: 40px !important; height: 40px !important; flex-basis: 40px !important; }
  body:not(.is-scrolled) .topbar-inner { height: 76px; }
  /* Brand-text never fits on narrow phones; keep it hidden in both states. */
  .brand-text, body.is-scrolled .brand-text { display: none !important; }
  .mobile-burger { width: 40px; height: 40px; }
  .mobile-burger span { width: 22px; }
}

/* Very small phones (iPhone SE class). */
@media (max-width: 380px) {
  .wrap { padding-left: 14px; padding-right: 14px; }
  h1.headline { font-size: clamp(32px, 10vw, 48px) !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .photos-grid { grid-template-columns: 1fr !important; }
  .photos-grid .photo { grid-column: span 1 !important; }
  .contact-pair { gap: 6px; }
  .contact-pair__lbl { display: none; }
}
