/* WIN Landscaping — built from the approved Claude design.
   Palette and type lifted directly from "Win Landscaping Website.dc.html". */

:root {
  --bark: #2C231B;      /* page background */
  --bark-deep: #231B14; /* inputs, mobile band */
  --panel: #3A2E24;     /* cards on dark */
  --cream: #F1E9DA;     /* primary text on dark */
  --sand: #E4D5BE;      /* accent light */
  --rust: #A94B2E;      /* primary action */
  --ochre: #D8892F;
  --sage: #7C8C6B;

  --display: 'Archivo', system-ui, sans-serif;
  --body: 'Instrument Sans', system-ui, sans-serif;

  --shell: 1400px;
  --gutter: 48px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bark);
  color: var(--cream);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--rust); text-decoration: none; }
a:hover { color: var(--sand); }

img { max-width: 100%; display: block; }

button { font: inherit; }

:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--sand); color: var(--bark); padding: 14px 20px;
  font-family: var(--display); font-weight: 800; letter-spacing: .14em; font-size: 12px;
}
.skip:focus { left: 12px; top: 12px; }

.shell { max-width: var(--shell); margin: 0 auto; padding-inline: var(--gutter); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

@keyframes rise    { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fadein  { from { opacity: 0; } to { opacity: 1; } }
@keyframes kenburns{ from { transform: scale(1.02); } to { transform: scale(1.14); } }
@keyframes ticker  { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------- typography */
.eyebrow {
  font-family: var(--display); font-size: 12px; font-weight: 700;
  letter-spacing: .3em; color: var(--sand); margin: 0;
}
.h-hero {
  margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(37px, 10.4vw, 132px); line-height: .84;
  letter-spacing: -.05em; text-transform: uppercase;
}
.h-page {
  margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(34px, 9vw, 110px); line-height: .86;
  letter-spacing: -.05em; text-transform: uppercase;
}
.h-section {
  margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(30px, 6.6vw, 76px); line-height: .9;
  letter-spacing: -.045em; text-transform: uppercase;
}
.lede {
  margin: 0; font-family: var(--display); font-weight: 700;
  font-size: clamp(26px, 3.2vw, 44px); line-height: 1.16;
  letter-spacing: -.03em; text-wrap: pretty;
}

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 13px; font-weight: 800; letter-spacing: .14em;
  border: 0; border-radius: 2px; padding: 20px 36px; cursor: pointer;
  transition: background .25s, color .25s, transform .25s, border-color .25s;
  white-space: nowrap; text-align: center;
}
.btn--primary { background: var(--rust); color: var(--cream); }
.btn--primary:hover { background: var(--sand); color: var(--bark); transform: translateY(-2px); }
.btn--sand { background: var(--sand); color: var(--bark); }
.btn--sand:hover { background: var(--cream); transform: translateY(-2px); }
.btn--dark { background: var(--bark); color: var(--cream); }
.btn--dark:hover { background: var(--rust); }
.btn--ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(241,233,218,.4);
}
.btn--ghost:hover { background: var(--cream); color: var(--bark); border-color: var(--cream); }
.btn--sm { padding: 16px 28px; font-size: 12px; }

/* ---------------------------------------------------------------- header */
.masthead {
  position: sticky; top: 0; z-index: 40;
  background: rgba(44,35,27,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(241,233,218,.12);
}
.masthead__inner {
  max-width: var(--shell); margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.brand { display: flex; align-items: center; gap: 14px; background: none; border: 0; padding: 0; cursor: pointer; color: inherit; }
.brand__mark { width: 64px; height: 64px; flex: none; }
.brand__name { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.brand__win {
  font-family: var(--display); font-size: 22px; font-weight: 900;
  letter-spacing: -.04em; line-height: .9;
}
.brand__sub {
  font-family: var(--display); font-size: 8px; font-weight: 600;
  letter-spacing: .3em; color: rgba(241,233,218,.55);
}

.mainnav { display: flex; align-items: center; gap: 2px; }
.navlink {
  font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .14em;
  background: transparent; color: var(--cream); border: 0; border-radius: 2px;
  padding: 12px 16px; cursor: pointer; transition: color .2s, background .2s;
}
.navlink:hover { color: var(--sand); }
.navlink[aria-current="page"] { background: rgba(241,233,218,.1); color: var(--sand); }

.masthead__actions { display: flex; align-items: center; gap: 12px; flex: none; }
.masthead__tel {
  font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .06em;
  color: var(--cream); white-space: nowrap;
}
.masthead__tel:hover { color: var(--sand); }
.masthead__cta { padding: 15px 22px; font-size: 12px; }

.navtoggle {
  display: none; width: 46px; height: 46px; flex: none;
  background: var(--ochre); border: 0; border-radius: 2px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.navtoggle span { width: 18px; height: 2px; background: var(--bark); display: block; }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; height: 760px; overflow: hidden; background: var(--bark); }
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; animation: kenburns 22s ease-out both;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(44,35,27,.92) 0%, rgba(44,35,27,.66) 45%, rgba(44,35,27,.25) 100%);
}
.hero__body {
  position: relative; max-width: var(--shell); margin: 0 auto;
  padding: 0 var(--gutter); height: 100%;
  display: flex; flex-direction: column; justify-content: center; gap: 34px;
}
.hero__body > * { animation: rise .8s cubic-bezier(.2,.7,.2,1) both; }
.hero__body > *:nth-child(2) { animation-delay: .08s; }
.hero__body > *:nth-child(3) { animation-delay: .18s; }
.hero__body > *:nth-child(4) { animation-delay: .26s; }
.hero__sub {
  margin: 0; max-width: 520px; font-size: 20px; line-height: 1.5;
  color: rgba(241,233,218,.78); text-wrap: pretty;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.factbar {
  position: absolute; left: 0; right: 0; bottom: 0;
  border-top: 1px solid rgba(241,233,218,.16);
  background: rgba(44,35,27,.55); backdrop-filter: blur(6px);
}
.factbar__inner {
  max-width: var(--shell); margin: 0 auto; padding: 22px var(--gutter);
  display: flex; gap: 64px; align-items: center; flex-wrap: wrap;
}
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact__k {
  font-family: var(--display); font-size: clamp(15px, 1.7vw, 24px);
  font-weight: 900; letter-spacing: -.03em;
}
.fact__l { font-size: 12px; letter-spacing: .16em; color: rgba(241,233,218,.5); }
.fact--end { margin-left: auto; }
.fact--end .fact__k { color: var(--sand); }

/* ---------------------------------------------------------------- ticker */
.ticker { background: var(--rust); overflow: hidden; padding: 16px 0; }
.ticker__track { display: flex; width: max-content; animation: ticker 34s linear infinite; }
.ticker__track span {
  font-family: var(--display); font-size: 15px; font-weight: 800; letter-spacing: .18em;
  color: var(--cream); white-space: nowrap; padding-right: 24px;
}

/* ---------------------------------------------------------------- sections */
.band { padding: 120px var(--gutter); }
.band--light { background: var(--cream); color: var(--bark); }
.band--sand { background: var(--sand); color: var(--bark); }
.band--rust { background: var(--rust); }
.band--dark { background: var(--bark); }
.band__inner { max-width: var(--shell); margin: 0 auto; }

.intro { display: flex; flex-direction: column; gap: 80px; }
.intro__cols {
  display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 56px; align-items: start;
}
.pillar {
  display: flex; flex-direction: column; gap: 16px;
  border-top: 2px solid var(--bark); padding-top: 22px;
}
.pillar h2 {
  margin: 0; font-family: var(--display); font-size: 15px; font-weight: 800; letter-spacing: .2em;
}
.pillar p { margin: 0; font-size: 16px; line-height: 1.65; color: rgba(44,35,27,.72); text-wrap: pretty; }
.pillar .btn { align-self: flex-start; margin-top: 6px; }
.intro__shot { border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; }
.intro__shot img { width: 100%; height: 100%; object-fit: cover; }

.sechead {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap;
}
.sechead__text { display: flex; flex-direction: column; gap: 18px; }
.sechead__aside { margin: 0; max-width: 360px; font-size: 16px; line-height: 1.6; color: rgba(241,233,218,.6); }

.routes { display: flex; flex-direction: column; gap: 56px; }
.routes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.route {
  cursor: pointer; background: var(--panel); color: var(--cream);
  border: 1px solid rgba(241,233,218,.1); border-radius: 4px; overflow: hidden;
  transition: transform .3s, border-color .3s; text-align: left; padding: 0; font: inherit;
  display: flex; flex-direction: column;
}
.route:hover { transform: translateY(-6px); border-color: var(--sand); }
.route__shot { aspect-ratio: 3/2; overflow: hidden; }
.route__shot img { width: 100%; height: 100%; object-fit: cover; }
.route__body { padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.route__name {
  font-family: var(--display); font-size: 26px; font-weight: 800;
  letter-spacing: -.02em; text-transform: uppercase;
}
.route__desc { font-size: 15px; line-height: 1.6; color: rgba(241,233,218,.6); }

.workpeek { display: flex; flex-direction: column; gap: 48px; }
.workpeek__head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  border-bottom: 2px solid var(--bark); padding-bottom: 24px; flex-wrap: wrap;
}
.workpeek__grid {
  display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: auto auto; gap: 20px;
}
.workpeek__grid figure { margin: 0; border-radius: 4px; overflow: hidden; }
.workpeek__grid figure:first-child { grid-row: span 2; aspect-ratio: 4/3.4; }
.workpeek__grid figure:not(:first-child) { aspect-ratio: 4/3; }
.workpeek__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.workpeek__grid figure:hover img { transform: scale(1.04); }

.quote { background: var(--bark); }
.quote__grid { display: grid; grid-template-columns: 1fr 1fr; }
.quote__body {
  padding: 120px 64px 120px var(--gutter);
  display: flex; flex-direction: column; gap: 36px; justify-content: center;
  max-width: 760px; margin-left: auto; width: 100%;
}
.quote blockquote {
  margin: 0; font-family: var(--display); font-size: clamp(26px, 3vw, 40px);
  line-height: 1.16; font-weight: 700; letter-spacing: -.03em; text-wrap: pretty;
}
.quote cite {
  font-family: var(--display); font-size: 13px; font-weight: 700; font-style: normal;
  letter-spacing: .22em; color: rgba(241,233,218,.55);
}
.quote__shot { min-height: 560px; overflow: hidden; }
.quote__shot img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------- contact block */
.contact-band { position: relative; overflow: hidden; background: var(--rust); padding: 130px var(--gutter); }
.contact-grid {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 64px; align-items: start;
}
.contact-copy { display: flex; flex-direction: column; gap: 28px; }
.contact-copy p { margin: 0; font-size: 19px; line-height: 1.55; color: rgba(241,233,218,.85); max-width: 520px; text-wrap: pretty; }

.deets { display: flex; flex-direction: column; border-top: 1px solid rgba(241,233,218,.3); max-width: 520px; }
.deet {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(241,233,218,.3);
  color: var(--cream); font-family: var(--display); font-weight: 700; font-size: 20px;
}
.deet:last-child { border-bottom: 0; }
a.deet:hover { color: var(--bark); }
.deet__tag { font-size: 10px; letter-spacing: .2em; color: rgba(241,233,218,.65); flex: none; }
.deet__val { overflow-wrap: anywhere; }

/* ---------------------------------------------------------------- form */
.formcard { background: var(--bark); border-radius: 4px; padding: 40px; }
.formcard--contact { background: var(--panel); border: 1px solid rgba(241,233,218,.12); padding: 44px; }

.leadform { display: flex; flex-direction: column; gap: 26px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: var(--display); font-size: 10px; font-weight: 800;
  letter-spacing: .2em; color: rgba(241,233,218,.5);
}
.field input, .field textarea {
  background: var(--bark-deep); border: 1px solid rgba(241,233,218,.18); border-radius: 2px;
  color: var(--cream); font-family: var(--body); font-size: 16px; padding: 15px;
  width: 100%; transition: border-color .2s;
}
.formcard--contact .field input, .formcard--contact .field textarea { background: var(--bark); }
.field input:focus, .field textarea:focus { border-color: var(--sand); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: rgba(241,233,218,.35); }
.field textarea { resize: vertical; min-height: 92px; }
.fieldgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--display); font-size: 11px; font-weight: 800; letter-spacing: .14em;
  padding: 13px 18px; border-radius: 2px; cursor: pointer; transition: all .2s;
  background: transparent; color: rgba(241,233,218,.7);
  border: 1px solid rgba(241,233,218,.22);
}
.chip:hover { border-color: var(--sand); color: var(--cream); }
.chip[aria-pressed="true"] { background: var(--rust); color: var(--cream); border-color: var(--rust); }
.formcard--contact .chip[aria-pressed="true"] { background: var(--rust); }

.formerror {
  margin: 0; font-size: 14px; color: #FFB4A2; line-height: 1.5;
}
.formerror:empty { display: none; }

.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #FFB4A2; }

.sent { display: flex; flex-direction: column; gap: 18px; padding: 40px 0; align-items: flex-start; }
.sent h3 {
  margin: 0; font-family: var(--display); font-size: clamp(26px, 6vw, 44px);
  font-weight: 900; letter-spacing: -.04em; line-height: .92; text-transform: uppercase;
}
.sent p { margin: 0; font-size: 16px; line-height: 1.6; color: rgba(241,233,218,.6); max-width: 400px; }
.sent .btn { background: transparent; color: var(--cream); border: 1px solid rgba(241,233,218,.35); margin-top: 6px; }
.sent .btn:hover { background: var(--cream); color: var(--bark); }

/* ---------------------------------------------------------------- work page */
.workhead { padding: 96px var(--gutter) 56px; }
.workhead__inner { max-width: var(--shell); margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.workhead__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; flex-wrap: wrap; }
.workhead__row p { margin: 0; max-width: 380px; font-size: 17px; line-height: 1.6; color: rgba(241,233,218,.6); text-wrap: pretty; }

.filters {
  display: flex; gap: 10px; border-top: 1px solid rgba(241,233,218,.14);
  padding-top: 28px; flex-wrap: wrap; align-items: center;
}
.filter {
  font-family: var(--display); font-size: 11px; font-weight: 800; letter-spacing: .16em;
  padding: 13px 20px; border-radius: 2px; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  background: transparent; color: rgba(241,233,218,.7); border: 1px solid rgba(241,233,218,.22);
}
.filter:hover { border-color: var(--sand); color: var(--cream); }
.filter[aria-pressed="true"] { background: var(--sand); color: var(--bark); border-color: var(--sand); }
.filters__count {
  margin-left: auto; font-family: var(--display); font-size: 12px; font-weight: 700;
  letter-spacing: .16em; color: rgba(241,233,218,.45);
}

.grid-work {
  max-width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  padding: 0 var(--gutter) 120px;
}
.project { display: flex; flex-direction: column; animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
.project[hidden] { display: none; }
.project__frame {
  position: relative; overflow: hidden; border-radius: 4px; background: var(--panel);
}
.project__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.project:hover .project__frame img { transform: scale(1.05); }
.project__tag {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .18em;
  background: rgba(44,35,27,.75); color: var(--sand); padding: 8px 12px; border-radius: 2px;
}
.project__meta {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 18px 2px 0;
}
.project__title {
  font-family: var(--display); font-size: 22px; font-weight: 800;
  letter-spacing: -.02em; text-transform: uppercase;
}
.project__place { font-size: 13px; letter-spacing: .12em; color: rgba(241,233,218,.45); white-space: nowrap; }
.project__note { margin: 8px 2px 0; font-size: 15px; line-height: 1.6; color: rgba(241,233,218,.55); max-width: 520px; }

.endcap {
  display: flex; justify-content: space-between; align-items: center; gap: 48px; flex-wrap: wrap;
}
.endcap h2 { max-width: 700px; }

/* ---------------------------------------------------------------- services */
.svc-hero { position: relative; height: 480px; overflow: hidden; }
.svc-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-hero__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(44,35,27,.9), rgba(44,35,27,.4)); }
.svc-hero__body {
  position: relative; max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter);
  height: 100%; display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.svc-hero__body h1 { max-width: 900px; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc {
  background: var(--bark); color: var(--cream); border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc__shot { aspect-ratio: 16/10; overflow: hidden; }
.svc__shot img { width: 100%; height: 100%; object-fit: cover; }
.svc__body { padding: 34px; display: flex; flex-direction: column; gap: 22px; }
.svc__name {
  font-family: var(--display); font-size: 24px; font-weight: 800;
  letter-spacing: -.02em; text-transform: uppercase;
}
.svc ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.svc li {
  font-size: 15px; color: rgba(241,233,218,.72);
  border-bottom: 1px solid rgba(241,233,218,.12); padding-bottom: 12px;
}
.svc li:last-child { border-bottom: 0; padding-bottom: 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { border-top: 2px solid var(--rust); padding-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.step__n {
  font-family: var(--display); font-size: 52px; font-weight: 900;
  letter-spacing: -.04em; color: var(--rust); line-height: .9;
}
.step:last-child .step__n { color: var(--sand); }
.step__t {
  font-family: var(--display); font-size: 20px; font-weight: 800;
  letter-spacing: .02em; text-transform: uppercase;
}
.step__d { font-size: 16px; line-height: 1.6; color: rgba(241,233,218,.6); }

.cta-shot { position: relative; overflow: hidden; padding: 120px var(--gutter); }
.cta-shot > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-shot__scrim { position: absolute; inset: 0; background: rgba(44,35,27,.78); }
.cta-shot__body {
  position: relative; max-width: var(--shell); margin: 0 auto;
  display: flex; flex-direction: column; align-items: flex-start; gap: 28px;
}
.cta-shot__body h2 { max-width: 820px; }
.cta-shot__body p { margin: 0; font-size: 18px; line-height: 1.6; max-width: 560px; color: rgba(241,233,218,.75); }

/* ---------------------------------------------------------------- contact page */
.contactpage {
  max-width: var(--shell); margin: 0 auto; padding: 96px var(--gutter) 120px;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: 80px; align-items: start;
}
.contactpage__aside { display: flex; flex-direction: column; gap: 44px; position: sticky; top: 120px; }
.contactpage__intro { display: flex; flex-direction: column; gap: 22px; }
.contactpage__intro p { margin: 0; font-size: 18px; line-height: 1.6; color: rgba(241,233,218,.65); max-width: 420px; text-wrap: pretty; }
.seal { width: 96px; height: 96px; }

.deets--dark { border-top-color: rgba(241,233,218,.14); }
.deets--dark .deet { border-bottom-color: rgba(241,233,218,.14); font-size: 22px; padding: 22px 0; }
.deets--dark a.deet:hover { color: var(--sand); }
.deets--dark .deet__tag { font-size: 11px; color: rgba(241,233,218,.45); }

/* ---------------------------------------------------------------- footer */
.footer {
  background: var(--bark); border-top: 1px solid rgba(241,233,218,.14);
  padding: 72px var(--gutter) 36px;
}
.footer__inner { max-width: var(--shell); margin: 0 auto; display: flex; flex-direction: column; gap: 56px; }
.footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer__brand { display: flex; flex-direction: column; gap: 20px; }
.footer__wordmark {
  font-family: var(--display); font-size: clamp(30px, 8vw, 40px); font-weight: 900;
  letter-spacing: -.045em; line-height: .9; text-transform: uppercase;
}
.footer__blurb { font-size: 14px; line-height: 1.6; color: rgba(241,233,218,.5); max-width: 280px; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__h {
  font-family: var(--display); font-size: 11px; font-weight: 800;
  letter-spacing: .2em; color: rgba(241,233,218,.45);
}
.footer__link {
  text-align: left; background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--cream); font-family: var(--body); font-size: 15px;
}
.footer__link:hover { color: var(--sand); }
.footer__col a { color: var(--cream); font-size: 15px; }
.footer__col a:hover { color: var(--sand); }
.footer__area { font-size: 15px; color: rgba(241,233,218,.5); }
.badges {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
  background: var(--cream); padding: 10px 12px; border-radius: 2px; align-self: flex-start;
}
.badges img { height: 52px; width: auto; object-fit: contain; }
.footer__legal {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid rgba(241,233,218,.12); padding-top: 26px;
  font-size: 13px; color: rgba(241,233,218,.4);
}
.footer__legal span { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------------------------------------------------------------- routing */
.page { animation: fadein .4s both; }
.page[hidden] { display: none; }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 1080px) {
  :root { --gutter: 32px; }
  .intro__cols { grid-template-columns: 1fr 1fr; }
  .intro__shot { grid-column: span 2; }
  .routes__grid, .svc-grid, .steps { grid-template-columns: 1fr; }
  .quote__grid { grid-template-columns: 1fr; }
  .quote__body { padding: 80px var(--gutter); max-width: none; }
  .quote__shot { min-height: 340px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contactpage { grid-template-columns: 1fr; gap: 48px; }
  .contactpage__aside { position: static; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .workpeek__grid { grid-template-columns: 1fr 1fr; }
  .workpeek__grid figure:first-child { grid-row: auto; aspect-ratio: 4/3; grid-column: span 2; }
}

@media (max-width: 860px) {
  .masthead__inner { padding: 12px 20px; flex-wrap: nowrap; }
  .brand__mark { width: 52px; height: 52px; }
  .mainnav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bark); border-bottom: 1px solid rgba(241,233,218,.14);
    flex-direction: column; align-items: stretch; padding: 8px;
  }
  .mainnav[data-open="true"] { display: flex; }
  .navlink { padding: 16px; text-align: left; font-size: 13px; }
  .masthead__cta { display: none; }
  .navtoggle { display: flex; }
  .masthead__tel { font-size: 12px; }

  .hero { height: auto; min-height: 560px; }
  .hero__body { padding: 96px var(--gutter) 200px; gap: 20px; }
  .hero__sub { font-size: 17px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; min-height: 52px; padding: 16px 24px; }
  .factbar__inner { gap: 20px; padding: 18px var(--gutter); }
  .fact--end { margin-left: 0; }

  .band { padding: 72px var(--gutter); }
  .intro { gap: 40px; }
  .intro__cols { grid-template-columns: 1fr; gap: 28px; }
  .intro__shot { grid-column: auto; }
  .routes, .workpeek { gap: 32px; }
  .grid-work { grid-template-columns: 1fr; padding-bottom: 72px; }
  .workhead { padding: 64px var(--gutter) 40px; }
  .filters__count { margin-left: 0; width: 100%; }
  .svc-hero { height: 360px; }
  .contact-band { padding: 72px var(--gutter); }
  .formcard, .formcard--contact { padding: 26px; }
  .contactpage { padding: 64px var(--gutter) 80px; }
  .footer { padding: 56px var(--gutter) 28px; }
  .footer__cols { grid-template-columns: 1fr; gap: 36px; }
  .footer__legal { flex-direction: column; gap: 12px; }
  .deet { font-size: 17px; }
  .deets--dark .deet { font-size: 18px; }
  .ticker__track span { font-size: 13px; letter-spacing: .16em; }
  .endcap .btn { width: 100%; }
}

@media (max-width: 420px) {
  :root { --gutter: 20px; }
  .fieldgrid { grid-template-columns: 1fr; }
  .btn { padding: 18px 22px; }
}

/* Very narrow phones. Keep tap-to-call visible; the wordmark is the thing to drop. */
@media (max-width: 360px) {
  .masthead__inner { padding: 10px 14px; gap: 8px; }
  .brand__name { display: none; }
  .brand__mark { width: 44px; height: 44px; }
  .masthead__actions { gap: 8px; }
  .masthead__tel { font-size: 13px; }
  .eyebrow { letter-spacing: .18em; }
  .deet { flex-wrap: wrap; gap: 4px; }
  .deet__tag { width: 100%; }
  .chip, .filter { padding: 11px 13px; letter-spacing: .1em; }
}

/* ---------------------------------------------------------------- legal pages */
.legal { background: var(--bark); padding: 88px var(--gutter) 96px; }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal__inner .h-page { margin-bottom: 10px; }
.legal__meta {
  font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .18em;
  color: rgba(241,233,218,.45); margin: 0 0 40px; text-transform: uppercase;
}
.legal__lede {
  font-size: 19px; line-height: 1.6; color: rgba(241,233,218,.8);
  border-left: 2px solid var(--rust); padding-left: 22px; margin: 0 0 48px; text-wrap: pretty;
}
.legal h2 {
  font-family: var(--display); font-size: 26px; font-weight: 800; letter-spacing: -.02em;
  text-transform: uppercase; margin: 48px 0 14px; padding-top: 22px;
  border-top: 1px solid rgba(241,233,218,.14);
}
.legal h3 {
  font-family: var(--display); font-size: 13px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sand); margin: 30px 0 10px;
}
.legal p { font-size: 16px; line-height: 1.7; color: rgba(241,233,218,.75); margin: 0 0 16px; text-wrap: pretty; }
.legal ul { margin: 0 0 18px; padding-left: 20px; }
.legal li { font-size: 16px; line-height: 1.7; color: rgba(241,233,218,.75); margin-bottom: 9px; }
.legal strong { color: var(--cream); }
.legal a { color: var(--sand); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--cream); }
.legal__back {
  margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(241,233,218,.14);
  font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .14em;
}
.legal__back a { text-decoration: none; }
.footer__legal a { color: rgba(241,233,218,.6); }
.footer__legal a:hover { color: var(--sand); }

/* consent note under the lead form */
.consent {
  margin: 0; font-size: 12px; line-height: 1.6; color: rgba(241,233,218,.45);
}
.consent a { color: rgba(241,233,218,.7); text-decoration: underline; text-underline-offset: 2px; }
.consent a:hover { color: var(--sand); }

@media (max-width: 860px) {
  .legal { padding: 56px var(--gutter) 64px; }
  .legal__lede { font-size: 17px; padding-left: 16px; }
  .legal h2 { font-size: 22px; margin-top: 38px; }
}
