/* Perry's Tree Service - preview build by NH Media Web.
   One stylesheet, self-hosted fonts, no libraries, no external requests. */

/* ------------------------------------------------------------------ fonts */
@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-latin-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('fonts/newsreader-latin-var.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------------ tokens */
:root {
  --ink: #12241C;          /* deep forest, the darkest ground */
  --ink-2: #172C22;        /* the adjacent dark section, one value up */
  --ink-3: #0D1A14;        /* footer */
  --paper: #F6F2E7;
  --paper-2: #EDE7D8;
  --amber: #E8A033;
  --amber-deep: #8A5307;   /* amber that carries text weight on cream */
  --leaf: #7FAE5C;
  --leaf-deep: #3F6631;

  --on-dark: #F3EEE0;
  --on-dark-soft: #C6CFBB;
  --on-paper: #16281E;
  --on-paper-soft: #4C5A4C;

  --line-dark: rgba(243, 238, 224, .16);
  --line-paper: rgba(22, 40, 30, .14);

  --f-disp: 'Archivo', 'Arial Narrow', Arial, sans-serif;
  --f-text: 'Newsreader', Georgia, 'Times New Roman', serif;
  --f-ui: 'Archivo', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --shell: 1180px;
  --pad: clamp(20px, 5vw, 44px);
}

/* ------------------------------------------------------------------- base */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--on-paper);
  font-family: var(--f-ui);
  font-size: 17.5px;
  line-height: 1.72;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

p { margin: 0 0 1.05em; }

h1, h2, h3 { margin: 0; font-family: var(--f-disp); font-weight: 800; line-height: 1.03; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 90;
  background: var(--amber); color: var(--ink);
  padding: 12px 20px; font-weight: 700; text-decoration: none;
}
.skip:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
}
.dark :focus-visible, .hero :focus-visible, .foot :focus-visible, .pbar :focus-visible {
  outline-color: var(--amber);
}

/* --------------------------------------------------------- shared pieces */
.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-ui); font-size: 13px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber-deep);
  margin: 0 0 18px;
}
.label::before {
  content: ''; width: 30px; height: 2px; background: var(--amber); display: block;
}
.label-d { color: var(--amber); }

.h2 {
  font-size: clamp(31px, 4.4vw, 52px);
  font-stretch: 84%;
  letter-spacing: -.012em;
  max-width: 18ch;
}
.sec-head .h2, .rev-head .h2 { max-width: 20ch; }

.h3 {
  font-size: 22px;
  font-stretch: 88%;
  letter-spacing: -.005em;
  margin-bottom: .5em;
}

.lede {
  font-family: var(--f-text);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.62;
  color: var(--on-paper-soft);
  max-width: 56ch;
  margin-top: 18px;
}
.dark .lede, .lede-d { color: var(--on-dark-soft); }

.gap-top { margin-top: 54px; }

.btn {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 15px; font-weight: 700; letter-spacing: .02em;
  padding: 14px 24px;
  border-radius: 3px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.btn-lg { font-size: 17px; padding: 17px 30px; }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: #F3B24F; transform: translateY(-2px); }
.btn-line { border-color: rgba(243, 238, 224, .45); color: var(--on-dark); }
.btn-line:hover { border-color: var(--amber); color: var(--amber); }

.arrow { font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--amber); }
.arrow::after { content: ' \203A'; }
.arrow:hover { color: var(--amber-deep); }

.stars { color: var(--amber); letter-spacing: .14em; margin: 0; }

/* bracket chips: the loud, deliberate placeholders */
.chip {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 12.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--amber-deep);
  border: 1.5px dashed rgba(138, 83, 7, .55);
  border-radius: 3px;
  padding: 3px 9px;
  text-decoration: none;
  white-space: nowrap;
}
.chip:hover { background: rgba(232, 160, 51, .14); }
.chip-d { color: var(--amber); border-color: rgba(232, 160, 51, .55); }
.chip-d:hover { background: rgba(232, 160, 51, .12); }

/* -------------------------------------------------------- preview banner */
.pbar { background: var(--ink-3); color: var(--on-dark); }
.pbar-in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 10px 26px; padding-top: 12px; padding-bottom: 12px;
}
.pbar-txt { margin: 0; font-size: 14px; line-height: 1.5; color: var(--on-dark-soft); max-width: 62ch; }
.pbar-acts { margin: 0; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.pbar-btn {
  display: inline-block;
  font-family: var(--f-ui); font-size: 14px; font-weight: 700; letter-spacing: .02em;
  background: var(--amber); color: var(--ink);
  padding: 10px 18px; border-radius: 3px; text-decoration: none; border: 0;
  white-space: nowrap;
}
.pbar-btn:hover { background: #F3B24F; }
.pbar-mail { font-size: 14px; color: var(--on-dark-soft); }

/* ---------------------------------------------------------------- masthead */
.mast {
  position: sticky; top: 0; z-index: 60;
  background: rgba(18, 36, 28, .96);
  border-bottom: 1px solid var(--line-dark);
  color: var(--on-dark);
}
.mast-in {
  display: flex; align-items: center; gap: 22px;
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; margin-right: auto; }
.brand-mark { width: 46px; height: 46px; border-radius: 9px; }
.brand-txt { display: block; }
.brand-name {
  display: block; font-family: var(--f-disp); font-weight: 800; font-stretch: 86%;
  font-size: 21px; line-height: 1.1; letter-spacing: -.01em;
}
.brand-sub {
  display: block; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--on-dark-soft); margin-top: 3px;
}
.nav { display: flex; gap: 26px; }
.nav a {
  font-size: 15px; font-weight: 600; text-decoration: none; color: var(--on-dark-soft);
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--on-dark); border-bottom-color: var(--amber); }
.mast-call { white-space: nowrap; }
.burger {
  display: none; width: 44px; height: 40px; background: none; cursor: pointer;
  border: 1px solid var(--line-dark); border-radius: 4px; padding: 9px 10px;
}
.burger span { display: block; height: 2px; background: var(--on-dark); margin: 4px 0; }

/* -------------------------------------------------------------------- hero */
.hero { background: var(--ink); color: var(--on-dark); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: stretch;
}
.hero-copy {
  display: flex; align-items: center;
  padding: clamp(46px, 6vw, 88px) var(--pad) clamp(46px, 6vw, 88px)
           max(var(--pad), calc((100vw - var(--shell)) / 2 + var(--pad)));
  background-image: radial-gradient(rgba(243, 238, 224, .05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.hero-copy-in { max-width: 620px; min-width: 0; }
.hero-eyebrow {
  font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--amber); margin: 0 0 22px;
}
.hero-h {
  font-size: clamp(40px, 6.1vw, 72px);
  font-stretch: 80%;
  letter-spacing: -.02em;
  line-height: .99;
  margin-bottom: 26px;
}
.hero-h .w { display: inline-block; }
.hero-h .lit { color: var(--amber); }
.hero-lede {
  font-family: var(--f-text);
  font-size: clamp(18px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--on-dark-soft);
  max-width: 50ch;
}
.score { display: flex; align-items: center; gap: 16px; margin: 30px 0 32px; }
.score-n {
  font-family: var(--f-disp); font-weight: 800; font-stretch: 82%;
  font-size: 56px; line-height: 1; color: var(--amber);
}
.score-t { display: block; font-size: 14px; line-height: 1.5; color: var(--on-dark-soft); }
.score-t .stars { display: block; font-size: 15px; }
.score-t b { display: block; color: var(--on-dark); font-size: 15px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 0; }

.hero-shot { position: relative; margin: 0; min-height: 340px; }
.hero-shot img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 45%; }
.cap {
  font-family: var(--f-ui);
  font-size: 13px; line-height: 1.55; color: var(--on-paper-soft);
  margin: 12px 2px 0;
}
.cap-src { display: block; color: var(--on-paper-soft); }
.dark .cap, .cap-d { color: var(--on-dark-soft); }
.dark .cap-src { color: var(--on-dark-soft); }
.cap-hero {
  position: absolute; left: 0; right: 0; bottom: 0; margin: 0;
  background: linear-gradient(to top,
    rgba(13, 26, 20, .96) 0%, rgba(13, 26, 20, .94) 64%, rgba(13, 26, 20, 0) 100%);
  color: var(--on-dark-soft);
  font-size: 12.5px;
  /* the call button floats over the lower right corner, so the text stops short of it */
  padding: 80px 96px 18px 26px;
}
.cap-note { display: block; margin-top: 4px; }

/* ------------------------------------------------------------------- proof */
.proof { background: var(--paper-2); border-bottom: 1px solid var(--line-paper); }
.proof-in {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px;
  padding-top: 54px; padding-bottom: 54px;
}
.pf p { margin: 0; }
.pf p:last-child { font-size: 16px; color: var(--on-paper-soft); margin-top: 10px; }
.pf-s {
  font-size: 12.5px; letter-spacing: .17em; text-transform: uppercase;
  color: var(--amber-deep); font-weight: 700;
}
.pf-k {
  font-family: var(--f-disp); font-weight: 800; font-stretch: 84%;
  font-size: clamp(27px, 3vw, 34px); line-height: 1.08; margin-top: 8px !important;
  letter-spacing: -.01em;
}
.pf .chip { margin-top: 8px; }

/* --------------------------------------------------------------- sections */
.sec { padding: clamp(64px, 8vw, 108px) 0; }
.dark {
  background: var(--ink); color: var(--on-dark);
  background-image: radial-gradient(rgba(243, 238, 224, .05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.rev { background-color: var(--ink-2); }
.sec-head { margin-bottom: 52px; }

/* ---------------------------------------------------------------- the work */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(268px, auto);
  gap: 26px;
  align-items: stretch;
}
.svc {
  border: 1px solid var(--line-dark);
  background: rgba(243, 238, 224, .04);
  border-radius: 4px;
  padding: 30px 28px 26px;
  position: relative;
}
.svc::before {
  content: ''; position: absolute; left: 0; top: 26px; width: 3px; height: 34px;
  background: var(--amber);
}
.svc p { margin: 0 0 .9em; font-size: 16.5px; color: var(--on-dark-soft); }
.svc p:last-child { margin-bottom: 0; }
.svc-lead { grid-column: span 2; }
.svc-lead .h3 { font-size: 30px; }
.svc-lead p { font-size: 18px; }

.shot { margin: 0; display: flex; flex-direction: column; }
.frame { overflow: hidden; border-radius: 4px; background: var(--leaf-deep); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.work-grid .shot { min-height: 268px; }
.work-grid .frame { flex: 1 1 0; min-height: 0; }
.pos-high img { object-position: 50% 26%; }
.shot:hover .frame img { transform: scale(1.03); }
.about-shot { margin-top: 30px; max-width: 420px; }
.about-shot .frame { aspect-ratio: 5 / 4; }

/* --------------------------------------------------------------- the cats */
.cats { background: var(--paper); }
.cats-in {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(34px, 5vw, 70px); align-items: center;
}
.cats-copy p { max-width: 54ch; }
.cats-copy .h2 { max-width: 15ch; }
.cats-copy > p:not(.lede):not(.cats-link) {
  font-family: var(--f-text); font-size: 18.5px; line-height: 1.68;
}
.cats-link { margin-top: 26px; }
.cats-shot .frame { aspect-ratio: 4 / 3; }

/* ------------------------------------------------------------------ reviews */
.rev-head { margin-bottom: 44px; }
.scores {
  display: flex; align-items: center; flex-wrap: wrap; gap: 26px 40px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 30px 0; margin-bottom: 46px;
}
.sc { display: flex; align-items: center; gap: 18px; }
.sc-n {
  font-family: var(--f-disp); font-weight: 800; font-stretch: 80%;
  font-size: 72px; line-height: .9; color: var(--amber); margin: 0;
}
.sc .stars { font-size: 19px; }
.sc-t { margin: 0; font-size: 14px; color: var(--on-dark-soft); }
.sc-t b { display: block; font-size: 17px; color: var(--on-dark); }
.sc-note {
  margin: 0; font-family: var(--f-text); font-size: 19px; color: var(--on-dark-soft);
}

.quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.quote {
  margin: 0; padding: 32px 30px;
  border: 1px solid var(--line-dark);
  background: rgba(243, 238, 224, .04);
  border-radius: 4px;
}
.quote blockquote { margin: 16px 0 18px; }
.quote blockquote p {
  margin: 0; font-family: var(--f-text); font-size: 19px; line-height: 1.62;
  color: var(--on-dark);
}
.quote figcaption { font-size: 14.5px; font-weight: 700; }
.q-src { font-weight: 400; color: var(--on-dark-soft); }
.reply {
  margin-top: 22px; padding: 16px 18px 6px;
  border-left: 3px solid var(--amber);
  background: rgba(232, 160, 51, .07);
  border-radius: 0 4px 4px 0;
}
.reply-k {
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber); font-weight: 700; margin-bottom: 6px;
}
.reply p { font-size: 16px; color: var(--on-dark-soft); }

.keys {
  margin-top: 40px; padding: 30px 30px 24px;
  border: 1px dashed var(--line-dark); border-radius: 4px;
}
.keys-h {
  font-family: var(--f-disp); font-weight: 800; font-stretch: 88%; font-size: 20px;
  margin-bottom: 18px;
}
.key-l { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.key-l li {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-dark); border-radius: 999px;
  padding: 7px 8px 7px 16px; font-size: 15px;
}
.key-n {
  font-family: var(--f-disp); font-weight: 800; font-size: 14px;
  background: var(--amber); color: var(--ink);
  border-radius: 999px; padding: 2px 10px;
}
.src { margin: 0; font-size: 13px; color: var(--on-dark-soft); }

/* ------------------------------------------------------------------- about */
.about { background: var(--paper-2); }
.about-in {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 64px); align-items: start;
}

/* ---------------------------------------------------------------- contact */
.contact-in {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 5vw, 62px); align-items: start;
}
.call-k {
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 4px;
}
.call-n { margin: 0 0 30px; }
.call-n a {
  font-family: var(--f-disp); font-weight: 800; font-stretch: 82%;
  font-size: clamp(34px, 4.4vw, 46px); line-height: 1; letter-spacing: -.015em;
  text-decoration: none;
}
.call-n a:hover { color: var(--amber); }

.facts, .week { list-style: none; margin: 0 0 30px; padding: 0; }
.facts li, .day {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 11px 0; border-bottom: 1px solid var(--line-dark);
  font-size: 15.5px;
}
.facts-k, .day-k { color: var(--on-dark-soft); }
.facts-v, .day-v { text-align: right; font-weight: 600; }
.week-h {
  font-family: var(--f-disp); font-weight: 800; font-stretch: 88%; font-size: 20px;
  margin-bottom: 6px;
}

/* the estimate request */
.est {
  border: 1px solid var(--line-dark);
  background: rgba(243, 238, 224, .04);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 38px);
}
.est-h {
  font-family: var(--f-disp); font-weight: 800; font-stretch: 86%; font-size: 26px;
  margin-bottom: 8px;
}
.est-sub { font-size: 16px; color: var(--on-dark-soft); margin-bottom: 26px; max-width: 52ch; }
.row { margin-bottom: 18px; }
.row.two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.row label {
  display: block; font-size: 13px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 7px;
}
.row input, .row select, .row textarea {
  width: 100%; font-family: var(--f-ui); font-size: 16px;
  color: var(--on-dark);
  background: rgba(13, 26, 20, .5);
  border: 1.5px dashed rgba(243, 238, 224, .28);
  border-radius: 3px; padding: 12px 14px;
}
.row textarea { resize: vertical; min-height: 120px; }
.row input:disabled, .row select:disabled, .row textarea:disabled {
  color: #8FA197; cursor: not-allowed;
}
.hint { font-size: 13.5px; color: var(--on-dark-soft); margin: 8px 0 0; }
.est-acts { margin: 24px 0 0; }
.btn-off {
  font-family: var(--f-ui); font-size: 16px; font-weight: 700;
  background: none; color: #8FA197;
  border: 2px dashed rgba(143, 161, 151, .65);
  border-radius: 3px; padding: 15px 28px; cursor: not-allowed;
}
.est-note {
  font-size: 14px; margin: 20px 0 0; padding: 14px 16px;
  border: 1.5px dashed rgba(232, 160, 51, .42);
  border-radius: 4px;
  background: rgba(232, 160, 51, .06);
  color: var(--on-dark-soft);
}

/* --------------------------------------------------- furniture (preview) */
.slot {
  border: 2px dashed rgba(138, 83, 7, .42);
  border-radius: 5px;
  background: rgba(232, 160, 51, .07);
  padding: clamp(22px, 3vw, 34px);
}
.slot p:last-child { margin-bottom: 0; }
.slot-h {
  font-size: 12.5px; letter-spacing: .17em; text-transform: uppercase;
  font-weight: 700; color: var(--amber-deep); margin-bottom: 10px;
}
.slot-k {
  font-family: var(--f-disp); font-weight: 800; font-stretch: 86%;
  font-size: clamp(20px, 2.4vw, 25px); line-height: 1.15; margin-bottom: 16px;
  color: var(--on-paper);
}
.slot, .slot p { font-size: 16px; }
.slot-list { margin: 0 0 16px; padding-left: 20px; }
.slot-list li { margin-bottom: 4px; }
.dark .slot, .slot-d {
  border-color: rgba(232, 160, 51, .42);
  background: rgba(232, 160, 51, .06);
}
.dark .slot-h, .slot-d .slot-h { color: var(--amber); }
.dark .slot-k, .slot-d .slot-k { color: var(--on-dark); }
.dark .slot, .dark .slot p, .slot-d, .slot-d p { color: var(--on-dark-soft); }
.dark .slot strong, .slot-d strong { color: var(--on-dark); }

/* -------------------------------------------------- about this preview */
.preview { background: var(--ink-3); color: var(--on-dark-soft); }
.about-preview {
  padding: clamp(44px, 6vw, 72px) 0;
  max-width: 74ch;
}
.ap-h {
  font-family: var(--f-disp); font-weight: 800; font-stretch: 88%; font-size: 24px;
  color: var(--on-dark); margin-bottom: 20px;
}
.about-preview p { font-size: 16px; }
.ap-cta { margin-top: 26px; }

/* ------------------------------------------------------------------ footer */
.foot { background: var(--ink); color: var(--on-dark-soft); border-top: 1px solid var(--line-dark); }
.foot-in {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px;
  padding-top: 58px; padding-bottom: 44px;
}
.foot-in p { margin: 0 0 6px; font-size: 15px; }
.foot-name {
  font-family: var(--f-disp); font-weight: 800; font-stretch: 86%; font-size: 21px;
  color: var(--on-dark); margin-top: 16px !important;
}
.foot-col a { display: block; font-size: 15px; text-decoration: none; margin-bottom: 6px; }
.foot-col a:hover { color: var(--amber); }
.foot-k {
  font-size: 12px; letter-spacing: .17em; text-transform: uppercase;
  color: var(--on-dark); font-weight: 700; margin-bottom: 14px !important;
}
.foot-bar {
  border-top: 1px solid var(--line-dark);
  padding-top: 20px; padding-bottom: 26px;
}
.foot-bar p { margin: 0; font-size: 13.5px; }

/* --------------------------------------------------------------------- fab */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--amber); color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(13, 26, 20, .38);
}
.fab svg { width: 25px; height: 25px; }
.fab:hover { background: #F3B24F; }
/* A fixed element crosses light, dark and amber grounds as the page scrolls, so it
   carries two rings: a dark one against the button and a light one outside it. */
.fab:focus-visible {
  outline: 3px solid #F7F3E8;
  outline-offset: 4px;
  box-shadow: 0 0 0 3px #12241C, 0 10px 26px rgba(13, 26, 20, .38);
}
.skip:focus-visible {
  outline: 3px solid #12241C;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #F7F3E8;
}

/* --------------------------------------------------------------- 404 page */
.nf {
  min-height: 100vh; display: grid; place-items: center;
  background: var(--ink); color: var(--on-dark);
  background-image: radial-gradient(rgba(243, 238, 224, .05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.nf-in { text-align: center; padding-top: 60px; padding-bottom: 60px; }
.nf-mark { width: 76px; height: 76px; border-radius: 14px; margin: 0 auto 26px; }
.nf .label { justify-content: center; }
.nf-h {
  font-family: var(--f-disp); font-weight: 800; font-stretch: 80%;
  font-size: clamp(38px, 6vw, 64px); line-height: 1; letter-spacing: -.02em;
  margin: 0 0 20px;
}
.nf .lede { margin-left: auto; margin-right: auto; }
.nf-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ------------------------------------------------------------------ reveal */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.in-view {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s ease;
}
.js .reveal-2.in-view { transition-delay: .09s; }
.js .reveal-3.in-view { transition-delay: .18s; }

.js .hero-h .w { opacity: 0; animation: rise .62s ease forwards; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.js .hero-h .w:nth-child(1) { animation-delay: .05s; }
.js .hero-h .w:nth-child(2) { animation-delay: .10s; }
.js .hero-h .w:nth-child(3) { animation-delay: .15s; }
.js .hero-h .w:nth-child(4) { animation-delay: .20s; }
.js .hero-h .w:nth-child(5) { animation-delay: .25s; }
.js .hero-h .w:nth-child(6) { animation-delay: .34s; }
.js .hero-h .w:nth-child(7) { animation-delay: .39s; }
.js .hero-h .w:nth-child(8) { animation-delay: .44s; }
.js .hero-h .w:nth-child(9) { animation-delay: .49s; }
.js .hero-h .w:nth-child(10) { animation-delay: .54s; }
.js .hero-h .w:nth-child(11) { animation-delay: .59s; }

/* ------------------------------------------------------------- responsive */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: clamp(40px, 7vw, 64px) var(--pad); }
  .hero-shot { min-height: 0; order: -1; }
  .hero-shot img { aspect-ratio: 16 / 10; }
  .cap-hero { padding: 66px 76px 16px 20px; }
  .contact-in, .about-in, .cats-in { grid-template-columns: 1fr; }
  .foot-in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    background: var(--ink-3); border-bottom: 1px solid var(--line-dark);
    padding: 10px var(--pad) 18px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line-dark); }
  .burger { display: block; }
  .mast-in { position: relative; }
  .mast-call { display: none; }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: minmax(240px, auto); }
  .svc-lead { grid-column: span 2; }
  .proof-in { grid-template-columns: 1fr; gap: 30px; }
  .quotes { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .work-grid .shot { min-height: 0; }
  .svc-lead { grid-column: auto; }
  .work-grid .frame { aspect-ratio: 4 / 3; min-height: 0; }
  .row.two { grid-template-columns: 1fr; }
  .foot-in { grid-template-columns: 1fr; gap: 26px; }
  .pbar-in { padding-top: 14px; padding-bottom: 14px; }
  .score-n { font-size: 46px; }
  .sc-n { font-size: 58px; }
  .facts li, .day { font-size: 15px; }
  .fab { right: 14px; bottom: 14px; }
}

@media (max-width: 380px) {
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 18px; }
  .hero-cta .btn { width: 100%; text-align: center; }
}

/* ------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero-h .w { opacity: 1; animation: none; }
  .shot:hover .frame img { transform: none; }
}
