:root {
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 72px);
  --tone-82: color-mix(in srgb, var(--color-text) 82%, transparent);
  --tone-78: color-mix(in srgb, var(--color-text) 78%, transparent);
  --tone-70: color-mix(in srgb, var(--color-text) 70%, transparent);
  --tone-60: color-mix(in srgb, var(--color-text) 60%, transparent);
  --hairline: color-mix(in srgb, var(--color-text) 8%, transparent);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body { text-wrap: pretty; }
a:hover { color: var(--color-accent-700); }

.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--color-accent); color: var(--color-bg);
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 12px 20px; text-decoration: none;
}
.skip-link:focus { left: 0; color: var(--color-bg); }

.container { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-bottom: 88px; }
.section--home { padding-bottom: 96px; }
.section--tight { padding-bottom: 40px; }

.hero { padding-block: 96px 72px; }
.page-head { padding-block: 80px 56px; }
.page-head--tight { padding-bottom: 48px; }

.eyebrow {
  display: block; font-size: 13px; line-height: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600; color: var(--color-accent-700); margin: 0 0 12px;
}
.hero .eyebrow { line-height: 17px; }
.label {
  display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600; color: var(--tone-70); margin-bottom: 14px;
}
.rule { height: 1px; border: 0; margin: 0 0 40px; background: var(--color-divider); }
.rule--tight { margin-bottom: 24px; }
.rule--flush { margin-bottom: 8px; }

.h-hero,
.h-page {
  font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.01em;
  text-transform: uppercase; line-height: 1.04; text-wrap: balance;
  margin: 0 0 0 -0.052em;
}
.h-hero { font-size: clamp(36px, 5.3vw, 73px); max-width: 26ch; }
.h-page { font-size: clamp(38px, 5.2vw, 68px); max-width: 22ch; }
.h-page--wide { max-width: 24ch; }
.h-page--narrow { max-width: 20ch; }
.h-hero > span { display: block; }

.h-split, .h-row, .h-band, .h-card {
  font-family: var(--font-heading); font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase; margin: 0;
}
.h-split { font-size: clamp(28px, 3.2vw, 36px); line-height: 1.08; }
.h-row { font-size: clamp(26px, 3vw, 34px); line-height: 1.08; }
.h-band { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.1; }
.h-card { font-size: 23px; line-height: 24px; }
.h-card--sm { font-size: 21px; }
.h-card--lg { font-size: 24px; }

.lede { font-size: 17px; line-height: 26px; max-width: 60ch; margin: 36px 0 0; color: var(--tone-82); }
.page-head .lede { margin-top: 32px; }
.lede--narrow { max-width: 58ch; }
.prose { font-size: 16px; line-height: 24px; margin: 18px 0 0; color: var(--tone-78); }
.prose--wide { max-width: 58ch; }
.prose--split { max-width: 50ch; margin-top: 20px; }
.prose--row { max-width: 44ch; }
.card-text { font-size: 15px; line-height: 24px; margin: 14px 0 0; color: var(--tone-78); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min, 290px)), 1fr));
  gap: var(--gap, clamp(28px, 3.4vw, 44px));
}
.grid--markets { --min: 290px; --gap: clamp(28px, 3.4vw, 48px); }
.grid--split { --min: 320px; gap: 24px clamp(28px, 5vw, 80px); align-items: center; }
.grid--intro { --min: 300px; gap: 24px clamp(28px, 5vw, 80px); margin-top: 36px; }
.grid--values { --min: 250px; }
.grid--quotes { --min: 280px; }
.grid--photos { --min: 260px; }
.grid--methods { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 3.4vw, 44px); }
.grid--contact { --min: 330px; --gap: clamp(32px, 4vw, 64px); align-items: start; }

.card { padding: 24px; }
.card--roomy { padding: 28px 24px; }

.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.actions .btn { padding: 12px 22px; letter-spacing: 0.05em; text-transform: uppercase; }
.actions--tight { margin-top: 28px; }
.actions--tight .btn { padding: 11px 22px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--color-bg); border-bottom: 1px solid var(--color-divider);
}
.site-nav {
  max-width: var(--wrap); margin-inline: auto;
  padding: 14px var(--gutter); position: relative; gap: 0;
}
.brand {
  text-decoration: none; color: inherit; margin-right: auto;
  display: flex; flex-direction: column; gap: 1px; line-height: 1;
}
.brand:hover { color: inherit; }
.brand-name {
  font-family: var(--font-heading); font-weight: 600; font-size: 21px;
  letter-spacing: 0.01em; text-transform: uppercase;
}
.brand-sub {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tone-60); white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: var(--font-heading); font-weight: 600; font-size: 15px;
  letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; color: inherit;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--color-accent-700); }

.nav-phone {
  font-family: var(--font-heading); font-weight: 600; font-size: 15px;
  letter-spacing: 0.03em; text-decoration: none;
  color: var(--color-accent-700); margin-left: 26px; white-space: nowrap;
}
.nav-cta { margin-left: 14px; white-space: nowrap; letter-spacing: 0.05em; text-transform: uppercase; }
.nav-burger { display: none; margin-left: 10px; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-links[data-open] {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; z-index: 40;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-bg); border-bottom: 1px solid var(--color-divider);
  }
  .nav-links[data-open] > a { padding: 15px var(--gutter); border-top: 1px solid var(--color-divider); }
  .nav-burger { display: inline-flex; }
}

@media (max-width: 620px) {
  .nav-cta { display: none; }
  .nav-phone { margin-left: 16px; font-size: 14px; }
}

@media (max-width: 400px) {
  .site-nav { padding-inline: 20px; }
  .brand-sub { letter-spacing: 0.12em; }
}

@media (max-width: 1000px) {
  .h-hero, .h-page { margin-left: 0; max-width: none; }
  .h-hero > span { display: inline; }
}

@media (max-width: 700px) {
  .hero { padding-block: 48px; }
  .hero .lede { font-size: 16px; line-height: 25px; margin-top: 24px; }
  .hero .actions { margin-top: 26px; }
  .hero .actions > .btn { flex: 1 1 100%; }
}

@media (max-width: 660px) {
  .grid--methods { grid-template-columns: minmax(0, 1fr); }
}

.figure-photo { aspect-ratio: 16 / 10; position: relative; }
.figure-photo--4x3 { aspect-ratio: 4 / 3; }
.figure-photo img { width: 100%; height: 100%; object-fit: cover; }

.panel { padding: 28px 24px; }
.panel > .prose:first-of-type { margin-top: 0; margin-bottom: 24px; max-width: 62ch; }

.county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1px; background: var(--color-divider); border: 1px solid var(--color-divider);
}
.county-grid > div { background: var(--color-bg); padding: 16px 18px; }
.county-grid span {
  font-family: var(--font-heading); font-weight: 600; font-size: 18px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

.pullquote { max-width: 40ch; }
.pullquote blockquote {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(26px, 2.8vw, 36px); line-height: 1.28; letter-spacing: 0; margin: 0;
}
.pullquote figcaption { font-size: 15px; line-height: 24px; margin: 32px 0 0; color: var(--tone-70); }

.band { border-top: 1px solid var(--color-divider); }
.band > .container { padding-block: 64px; }

.market-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 12px clamp(28px, 4vw, 72px);
  padding: 40px 0; border-bottom: 1px solid var(--color-divider);
}
.seg { flex-wrap: wrap; }

@media (max-width: 720px) {
  .seg { border: 0; gap: 8px; }
  .seg-opt { border: 1px solid var(--color-divider); }
  .seg-opt + .seg-opt { border-left: 1px solid var(--color-divider); }
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips .tag { padding: 5px 11px; }

.log-head {
  display: flex; flex-wrap: wrap; align-items: stretch;
  border-bottom: 1px solid var(--color-divider);
}
.log-head span {
  padding: 12px 24px; font-size: 13px; line-height: 24px;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}
.log-head .log-title { flex: 1; min-width: 16ch; }
.log-head .log-count { border-left: 1px solid var(--color-divider); white-space: nowrap; color: var(--tone-70); }
.log-scroll { overflow-x: auto; }
.log-scroll:focus-visible { outline-offset: -2px; }
.log-table { min-width: 880px; }
.log-table th { padding: 12px 16px; font-size: 12px; font-weight: 600; }
.log-table th:first-child { padding-left: 24px; }
.log-table th:last-child { padding-right: 24px; }
.log-table td { padding: 14px 16px; border-bottom: 1px solid var(--hairline); }
.log-table td:first-child { padding-left: 24px; }
.log-table td:last-child { padding-right: 24px; }
.log-table .col-no { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--color-accent-700); }
.log-table .col-project { font-size: 15px; line-height: 22px; }
.log-table .col-sector {
  font-family: var(--font-heading); font-weight: 600; font-size: 15px;
  letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap;
}
.log-table .col-location { font-size: 14px; line-height: 22px; white-space: nowrap; color: var(--tone-78); }
.log-table .col-size,
.log-table .col-duration {
  font-family: var(--font-heading); font-weight: 600; font-size: 17px;
  letter-spacing: 0.02em; white-space: nowrap;
}
.log-table .col-delivery { font-size: 14px; line-height: 22px; color: var(--tone-78); }
.log-note {
  margin: 0; padding: 12px 24px; border-top: 1px solid var(--color-divider);
  font-size: 13px; line-height: 24px; color: var(--tone-70);
}

.quote-card { border-top: 1px solid var(--color-divider); padding-top: 24px; }
.quote-card blockquote {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 21px; line-height: 1.32; margin: 0;
}
.quote-card figcaption { font-size: 14px; line-height: 22px; margin: 20px 0 0; color: var(--tone-70); }

.list-rows { margin: 0 0 24px; padding: 0; list-style: none; border-top: 1px solid var(--color-divider); }
.list-rows li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--hairline); font-size: 15px;
}
.list-rows li:last-child { border-bottom: 0; }
.list-rows .role {
  font-family: var(--font-heading); font-weight: 600; font-size: 17px;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.list-rows .place { font-size: 13px; color: var(--tone-70); white-space: nowrap; }
.list-rows--plain li { display: block; line-height: 22px; }
.list-rows--plain li:last-child { border-bottom: 1px solid var(--hairline); }

.card p + .list-rows { margin-top: 20px; }
.card .card-text + .list-rows { margin-top: 20px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 20px; }
.field-error { display: block; font-size: 12px; line-height: 18px; margin-top: 6px; color: var(--color-accent-800); }
.form-banner {
  margin: 0; font-size: 14px; line-height: 22px;
  color: var(--color-accent-800); background: var(--color-accent-100); padding: 12px 14px;
}
.form-submit { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-submit .btn { padding: 12px 26px; letter-spacing: 0.05em; text-transform: uppercase; }
.form-note { font-size: 13px; line-height: 20px; color: var(--tone-70); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.office-address {
  font-family: var(--font-heading); font-weight: 600; font-size: 20px;
  line-height: 26px; letter-spacing: 0.02em; margin: 0 0 22px;
}
.office-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--color-divider); }
.office-list li {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 16px;
  padding: 12px 0; border-bottom: 1px solid var(--hairline); font-size: 15px;
}
.office-list .term { white-space: nowrap; }
.office-list li > :last-child { margin-left: auto; }
.office-list li:last-child { border-bottom: 0; }
.office-list .term { color: var(--tone-70); white-space: nowrap; }
.office-list a { text-decoration: none; }
.card .label--spaced { margin: 28px 0 14px; }

.success-panel { padding: 32px 28px; }
.success-panel h2 {
  font-family: var(--font-heading); font-weight: 600; font-size: 26px;
  line-height: 1.12; letter-spacing: 0.02em; text-transform: uppercase; margin: 0;
}
.success-panel .prose { max-width: 46ch; }
.success-panel .btn { margin-top: 26px; padding: 11px 22px; letter-spacing: 0.05em; text-transform: uppercase; }

.site-footer { border-top: 1px solid var(--color-divider); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 32px clamp(28px, 4vw, 64px);
  padding-block: 56px 40px;
}
.footer-grid .brand-sub { margin-top: 3px; }
.footer-blurb { font-size: 14px; line-height: 22px; margin: 18px 0 0; color: var(--tone-70); max-width: 32ch; }
.footer-links { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.footer-links a { font-size: 14px; text-decoration: none; color: inherit; }
.footer-address { font-size: 14px; line-height: 22px; margin: 0 0 10px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; font-size: 14px; }
.footer-contact a { text-decoration: none; }
.footer-legal { padding-bottom: 48px; }
.footer-legal .rule { margin-bottom: 20px; }
.footer-copy { font-size: 13px; line-height: 22px; color: var(--tone-70); }
.footer-geo { margin: 16px 0 0; font-size: 13px; line-height: 22px; color: var(--tone-60); max-width: 100ch; }
