/* ==========================================================================
   Til' Dark Roofing and Sheet Metal - preview build by NH Media Web.

   The key: a metal roof at the end of the day. The ground is a deep Vermont
   dusk navy, the signal colour is the last of the sun on a seam, and the
   recurring device is THE SEAM ITSELF - a run of fine vertical ribs that
   textures every dark band, heads every card, and stands under every section
   label. Corners are cut short rather than rounded, because sheet metal is
   folded and sheared, not moulded.
   ========================================================================== */

@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin-var.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream:   #F6F3ED;
  --cream-2: #EDE8DE;
  --cream-3: #E1DACB;
  --rule:    #D2CBBA;

  --ink:     #16202B;
  --ink-2:   #414E5B;
  --ink-3:   #5C6975;

  --night:   #0D1B2A;
  --night-2: #142A3D;
  --night-3: #081420;

  --ember:   #F4821F;
  --ember-d: #9E4C05;
  --ember-l: #FFA95C;
  --zinc:    #93A3B3;
  --zinc-l:  #CBD6DF;

  --on-dark:   #E4E9EE;
  --on-dark-2: #B9C4CF;

  --display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --sans: "Manrope", "Segoe UI", Helvetica, Arial, sans-serif;

  --shell: 1220px;
  --pad: clamp(20px, 5vw, 44px);
  --r: 5px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--ember-d); }
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
  border-radius: 2px;
}

.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;
}

/* The skip link floats over whatever the page happens to be showing, so it
   carries a two-colour ring that reads on any ground it can cross. */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 70;
  background: var(--night); color: #fff; padding: 13px 22px;
  font-family: var(--display); font-weight: 700; letter-spacing: .02em;
}
.skip:focus { left: 0; }
.skip:focus-visible {
  outline: 3px solid var(--cream); outline-offset: 3px;
  box-shadow: 0 0 0 3px var(--night);
}

/* --------------------------------------------------------- type primitives */

h1, h2, h3 { font-family: var(--display); font-weight: 700; margin: 0; letter-spacing: -.012em; }

.h2 {
  font-size: clamp(33px, 4.3vw, 52px);
  line-height: 1.03;
  font-variation-settings: "wdth" 88;
  margin-bottom: 18px;
}
.h3 {
  font-size: 22px;
  line-height: 1.18;
  font-variation-settings: "wdth" 92;
}

.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 700;
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ember-d); margin: 0 0 16px;
}
.label::before {
  content: ""; width: 26px; height: 10px; flex: none;
  background: repeating-linear-gradient(90deg, currentColor 0 2px, transparent 2px 6px);
}
.label-d { color: var(--ember-l); }

.lede {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
}
.lede-d { color: var(--on-dark-2); }

p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  font-variation-settings: "wdth" 94;
  letter-spacing: .015em;
  padding: 14px 26px; border-radius: var(--r);
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
}
.btn-lg { font-size: 18px; padding: 17px 32px; }
.btn-ember { background: var(--ember); color: #14202B; }
.btn-ember:hover { background: #FF9333; transform: translateY(-2px); }
.btn-line { border-color: var(--rule); color: var(--ink); background: transparent; }
.btn-line:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-line-d { border-color: rgba(246,243,237,.38); color: var(--cream); }
.btn-line-d:hover { border-color: var(--cream); transform: translateY(-2px); }

/* ----------------------------------------------------------- preview banner */

.pbar { background: var(--night-3); color: #DCE3EA; font-size: 14.5px; }
.pbar-in {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
}
.pbar-txt { margin: 0; max-width: 70ch; line-height: 1.5; }
.pbar-acts { margin: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.pbar-btn {
  display: inline-block;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  background: var(--ember); color: #14202B; text-decoration: none;
  padding: 9px 19px; border-radius: var(--r); white-space: nowrap;
}
.pbar-btn:hover { background: #FF9333; }
.pbar-mail { color: #DCE3EA; white-space: nowrap; }

/* ----------------------------------------------------------------- masthead */

.mast {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  position: relative; z-index: 30;
}
.mast-in {
  display: flex; align-items: center; gap: 20px;
  min-height: 86px; padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.brand-mark { width: 54px; height: 54px; flex: none; }
.brand-name {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 23px; line-height: 1.02; letter-spacing: -.014em;
  font-variation-settings: "wdth" 90;
}
.brand-sub {
  display: block; font-size: 11px; letter-spacing: .17em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 5px; font-weight: 700;
}
.nav { margin-left: auto; display: flex; gap: 26px; }
.nav a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15.5px;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--ember); }
.mast-call { flex: none; }

.burger {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  width: 46px; height: 40px; padding: 8px;
}
.burger span { display: block; height: 2px; background: var(--ink); margin: 6px 0; }

/* --------------------------------------------------------------------- hero */

.hero {
  position: relative; overflow: hidden; background: var(--night);
  color: var(--cream);
  min-height: min(86vh, 760px);
  display: flex; align-items: flex-end;
}
.hero::before {
  content: ""; position: absolute; inset: -4%;
  background: url("assets/img/stock-barn-seam.jpg") 62% 40% / cover no-repeat;
  animation: drift 32s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(99deg, rgba(7,15,24,.965) 0%, rgba(7,15,24,.935) 38%, rgba(7,15,24,.60) 66%, rgba(7,15,24,.26) 100%),
    linear-gradient(to top, rgba(7,15,24,.78), rgba(7,15,24,0) 46%);
}
@keyframes drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.10) translate3d(-1.6%, -1.2%, 0); }
}

.hero-in { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 74px; }
.hero-copy { max-width: 720px; }

.hero-eyebrow {
  font-family: var(--display); font-weight: 700; font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ember-l);
  margin: 0 0 20px;
}
.hero-h {
  font-size: clamp(41px, 6.4vw, 74px);
  line-height: 1.0;
  letter-spacing: -.022em;
  font-variation-settings: "wdth" 86;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero-h .w { display: inline-block; }
.hero-h .lit { color: var(--ember-l); }
.hero-lede {
  font-size: clamp(18px, 2vw, 21px); line-height: 1.58;
  color: #DBE2E9; max-width: 55ch; margin: 0 0 28px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 0 0 28px; }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: 8px 30px; margin: 0;
  font-size: 15.5px; color: #B6C2CE;
}
.hero-facts strong { color: var(--cream); font-weight: 700; }

.hero-credit {
  position: absolute; right: var(--pad); bottom: 10px; z-index: 2;
  margin: 0; font-size: 11.5px; letter-spacing: .04em; color: rgba(228,233,238,.62);
}

.score {
  display: inline-flex; align-items: center; gap: 15px;
  background: rgba(246,243,237,.10);
  border: 1px solid rgba(246,243,237,.26);
  border-radius: var(--r); padding: 10px 22px 10px 16px; margin: 0 0 26px;
}
.score-n {
  font-family: var(--display); font-weight: 800; font-size: 31px; line-height: 1;
  font-variation-settings: "wdth" 92; color: var(--cream);
}
.score-t { font-size: 14.5px; line-height: 1.35; color: #C6D0DA; }
.score-t b { display: block; color: var(--cream); font-weight: 700; }
.stars { color: #F2B33C; letter-spacing: .12em; margin: 0; font-size: 15px; }

/* JS-gated load animation for the headline words */
.js .hero-h .w { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2,.7,.3,1) forwards; }
.js .hero-lede, .js .score, .js .hero-cta, .js .hero-facts {
  opacity: 0; animation: rise .8s cubic-bezier(.2,.7,.3,1) forwards;
}
.js .hero-lede { animation-delay: .40s; }
.js .score { animation-delay: .52s; }
.js .hero-cta { animation-delay: .62s; }
.js .hero-facts { animation-delay: .72s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.js .hero-h .w:nth-child(1) { animation-delay: 0.080s; }
.js .hero-h .w:nth-child(2) { animation-delay: 0.125s; }
.js .hero-h .w:nth-child(3) { animation-delay: 0.170s; }
.js .hero-h .w:nth-child(4) { animation-delay: 0.215s; }
.js .hero-h .w:nth-child(5) { animation-delay: 0.260s; }
.js .hero-h .w:nth-child(6) { animation-delay: 0.305s; }
.js .hero-h .w:nth-child(7) { animation-delay: 0.350s; }
.js .hero-h .w:nth-child(8) { animation-delay: 0.395s; }
.js .hero-h .w:nth-child(9) { animation-delay: 0.440s; }
.js .hero-h .w:nth-child(10) { animation-delay: 0.485s; }
.js .hero-h .w:nth-child(11) { animation-delay: 0.530s; }
.js .hero-h .w:nth-child(12) { animation-delay: 0.575s; }

/* ------------------------------------------------ the seam texture, shared */

.ribbed { position: relative; }
.ribbed::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg,
    rgba(203,214,223,.055) 0 1px, transparent 1px 5px, rgba(8,20,32,.5) 5px 6px, transparent 6px 34px);
}
.ribbed > * { position: relative; z-index: 1; }

/* --------------------------------------------------------------- proof band */

.proof { background: var(--night-2); color: var(--cream); }
.proof-in {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  padding-top: 0; padding-bottom: 0;
}
.pf { padding: 34px 30px 34px 0; }
.pf + .pf { border-left: 1px solid rgba(246,243,237,.16); padding-left: 34px; }
.pf-k {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(27px, 3vw, 37px); line-height: 1.04; letter-spacing: -.018em;
  font-variation-settings: "wdth" 90; margin: 0 0 8px; color: var(--cream);
}
.pf-s {
  font-size: 12.5px; letter-spacing: .17em; text-transform: uppercase;
  color: var(--ember-l); margin: 0 0 10px; font-weight: 700; font-family: var(--display);
}
.pf p { color: var(--on-dark-2); font-size: 15.5px; line-height: 1.55; margin: 0; }

/* ------------------------------------------------------------------ section */

.sec { padding: clamp(62px, 8vw, 106px) 0; }
.sec-head { max-width: 62ch; margin-bottom: clamp(34px, 4vw, 52px); }

.paper-2 { background: var(--cream-2); }

/* ------------------------------------------------------------------- cards */

.svc {
  background: #FCFAF6;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 28px 28px 30px;
  position: relative;
}
.paper-2 .svc { background: var(--cream); }
.svc::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--ember) 0 3px, rgba(244,130,31,.22) 3px 10px);
}
.svc h3 { margin: 0 0 12px; }
.svc p { color: var(--ink-2); font-size: 16.5px; line-height: 1.6; margin: 0; }
.svc .svc-p2 { margin-top: 14px; }
.svc-tag {
  display: inline-block; font-family: var(--display); font-weight: 700;
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ember-d); margin: 0 0 10px;
}
.svc-feature { display: flex; flex-direction: column; }
.svc-feature .h3 { font-size: 27px; }
.svc-feature > p { margin-bottom: 24px; }
.shot-in { margin-top: auto; }

/* the no-photo tile: a run of black rubber membrane, drawn not photographed */
.rubber-tile {
  height: 118px; margin: 2px 0 20px; border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.25)),
    repeating-linear-gradient(90deg, #2A3038 0 62px, #232930 62px 64px, #1A1F25 64px 66px, #2A3038 66px 128px);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.35);
}

.work-grid { display: grid; grid-template-columns: 1.28fr 1fr 1fr; gap: 20px; }
.svc-feature { grid-column: 1; grid-row: 1 / span 2; }
.work-grid > .svc:nth-of-type(2) { grid-column: 2; grid-row: 1; }
.work-grid > .svc:nth-of-type(3) { grid-column: 3; grid-row: 1; }
.w-shot { grid-column: 2 / span 2; grid-row: 2; }
.work-grid > .svc:nth-of-type(4) { grid-column: 1; grid-row: 3; }
.work-grid > .svc:nth-of-type(5) { grid-column: 2; grid-row: 3; }
.work-grid > .svc:nth-of-type(6) { grid-column: 3; grid-row: 3; }

/* -------------------------------------------------------------- photographs */

.shot { margin: 0; }
.frame {
  position: relative; overflow: hidden; border-radius: 3px;
  background: var(--cream-3);
}
.frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(22,32,43,.14);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-wide { aspect-ratio: 16 / 7; }
.frame-tall { aspect-ratio: 4 / 5; }
.shot-in .frame { aspect-ratio: 4 / 3; }
.cap { margin-top: 11px; font-size: 13.5px; line-height: 1.5; color: var(--ink-3); }
.cap-note { display: block; margin-top: 3px; }
.cap-d { color: #9DAAB6; }

/* ------------------------------------------------------------ standing seam */

.seam { background: var(--night); color: var(--cream); position: relative; overflow: hidden; }
.seam::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(93deg,
    rgba(203,214,223,.06) 0 1px, transparent 1px 4px, rgba(5,12,20,.55) 4px 5px, transparent 5px 46px);
}
.seam-in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
.seam .h2 { color: var(--cream); }

.ticks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 14px; align-items: flex-start; color: var(--on-dark-2); font-size: 16.5px; }
.tick {
  flex: none; width: 22px; height: 22px; margin-top: 4px;
  background: rgba(244,130,31,.16); border: 1px solid rgba(255,169,92,.55);
  position: relative; border-radius: 2px;
}
.tick::after {
  content: ""; position: absolute; left: 7.5px; top: 3.5px;
  width: 5px; height: 10px; border: 2px solid var(--ember-l);
  border-top: 0; border-left: 0; transform: rotate(42deg);
}

.pull {
  margin: 30px 0 0; padding: 26px 28px;
  background: rgba(246,243,237,.06);
  border: 1px solid rgba(246,243,237,.16);
  border-left: 4px solid var(--ember);
  border-radius: var(--r);
}
.pull blockquote { margin: 0 0 12px; }
.pull blockquote p {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(18px, 2.1vw, 22px); line-height: 1.48; color: var(--cream);
  margin: 0;
}
.pull figcaption { font-size: 14.5px; color: var(--on-dark-2); }

/* ----------------------------------------------------------------- reviews */

.rev { background: var(--night-3); color: var(--cream); position: relative; }
.rev::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg,
    rgba(203,214,223,.05) 0 1px, transparent 1px 4px, rgba(3,9,15,.6) 4px 5px, transparent 5px 52px);
}
.rev > .shell { position: relative; z-index: 1; }
.rev-head { text-align: center; max-width: 30ch; margin: 0 auto clamp(34px, 4vw, 52px); }
.rev-head .h2 { color: var(--cream); margin-bottom: 0; }
.label-c { justify-content: center; }

.scores { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-bottom: clamp(36px, 4vw, 52px); }
.sc {
  background: rgba(246,243,237,.055); border: 1px solid rgba(246,243,237,.18);
  border-radius: var(--r); padding: 24px 30px; text-align: center;
  flex: 0 1 320px; min-width: 236px;
}
.sc-n {
  font-family: var(--display); font-weight: 800; font-size: 52px; line-height: 1;
  letter-spacing: -.026em; font-variation-settings: "wdth" 92; margin: 0 0 6px;
}
.sc .stars { margin-bottom: 10px; font-size: 16px; }
.sc-t { margin: 0; font-size: 14.5px; color: var(--on-dark-2); line-height: 1.45; }
.sc-t b { display: block; color: var(--cream); font-weight: 700; font-size: 15.5px; }

.quotes { columns: 2; column-gap: 22px; }
.quote {
  break-inside: avoid; margin: 0 0 22px;
  background: rgba(246,243,237,.05); border: 1px solid rgba(246,243,237,.14);
  border-radius: var(--r); padding: 26px 26px 24px;
  display: inline-block; width: 100%;
}
.quote blockquote { margin: 0 0 14px; }
.quote blockquote p { margin: 0; color: #DDE4EB; font-size: 16.5px; line-height: 1.6; }
.quote figcaption { font-size: 14px; color: #A5B1BD; }
.q-src { color: var(--ember-l); }

.keys {
  margin-top: clamp(28px, 4vw, 42px);
  background: rgba(246,243,237,.05); border: 1px solid rgba(246,243,237,.14);
  border-radius: var(--r); padding: 28px 30px;
}
.keys-h {
  font-family: var(--display); font-weight: 700; font-size: 20px; margin: 0 0 18px;
  font-variation-settings: "wdth" 92;
}
.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: 9px;
  background: rgba(246,243,237,.07); border: 1px solid rgba(246,243,237,.18);
  border-radius: var(--r); padding: 7px 8px 7px 15px; font-size: 15px; color: #DDE4EB;
}
.key-n {
  background: var(--ember); color: #14202B; border-radius: 3px;
  min-width: 26px; text-align: center; font-weight: 800; font-size: 13.5px; padding: 2px 8px;
  font-family: var(--display);
}
.src { margin: 0; font-size: 13.5px; color: #93A0AC; }

/* ------------------------------------------------------------ preview slots */

.slot {
  border: 2px dashed var(--rule); border-radius: var(--r);
  padding: 28px 30px; background: rgba(210,203,186,.18);
}
.slot-h {
  font-family: var(--display); font-weight: 700; font-size: 21px;
  color: var(--ink); margin: 0 0 6px; line-height: 1.22;
  font-variation-settings: "wdth" 92;
}
.slot-k {
  font-family: var(--display); font-weight: 700; font-size: 15px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ember-d);
  margin: 0 0 14px;
}
.slot p { color: var(--ink-2); font-size: 16px; line-height: 1.6; }
.slot-d { border-color: rgba(246,243,237,.32); background: rgba(246,243,237,.05); }
.slot-d .slot-h { color: var(--cream); }
.slot-d .slot-k { color: var(--ember-l); }
.slot-d p { color: var(--on-dark-2); }
.slot-list { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.slot-list li {
  border: 1px dashed var(--rule); border-radius: 3px; padding: 6px 14px;
  font-size: 14.5px; color: var(--ink-2); background: var(--cream);
}
.story-slot { max-width: 78ch; }

.chip {
  display: inline-block; border: 1px dashed var(--ember-d); color: var(--ember-d);
  border-radius: 3px; padding: 1px 10px; font-size: 12.5px; font-weight: 700;
  letter-spacing: .07em; text-decoration: none; white-space: nowrap;
  font-family: var(--display);
}
.chip-d { border-color: var(--ember-l); color: var(--ember-l); }
.hero-facts .chip-d, .facts .chip-d { vertical-align: 1px; }

/* ------------------------------------------------------------ service area */

.area-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 54px); align-items: start; }
.towns { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; }
.towns li {
  font-family: var(--display); font-weight: 700; font-size: 19px;
  font-variation-settings: "wdth" 94;
  padding: 13px 0 13px 20px; border-bottom: 1px solid var(--rule); position: relative;
}
.towns li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 14px;
  background: repeating-linear-gradient(90deg, var(--ember) 0 2px, transparent 2px 4px);
}

/* ------------------------------------------------------------------- hours */

.week { list-style: none; margin: 0; padding: 0; max-width: 560px; }
.day {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 14px 4px; border-bottom: 1px solid var(--rule);
}
.day:first-child { border-top: 1px solid var(--rule); }
.day-k { font-family: var(--display); font-weight: 700; font-size: 17px; font-variation-settings: "wdth" 94; }
.day-v { color: var(--ink-2); }
.day-off .day-v { color: var(--ink-3); }
.hours-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 54px); align-items: start; }

/* ----------------------------------------------------------------- contact */

.contact { background: var(--night); color: var(--cream); position: relative; overflow: hidden; }
.contact::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg,
    rgba(203,214,223,.05) 0 1px, transparent 1px 4px, rgba(5,12,20,.5) 4px 5px, transparent 5px 46px);
}
.contact-in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 62px); align-items: start;
}
.contact-tel {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(34px, 4.4vw, 54px); line-height: 1.02; letter-spacing: -.026em;
  font-variation-settings: "wdth" 90; margin: 0 0 18px;
}
.contact-tel a { color: var(--cream); text-decoration: none; }
.contact-tel a:hover { color: var(--ember-l); }

.facts { list-style: none; margin: 28px 0 0; padding: 0; }
.facts li {
  display: flex; gap: 18px; padding: 13px 0;
  border-bottom: 1px solid rgba(246,243,237,.15); font-size: 16px;
}
.facts-k {
  flex: none; width: 116px; color: #94A1AE; font-size: 13px; letter-spacing: .09em;
  text-transform: uppercase; padding-top: 3px; font-family: var(--display); font-weight: 700;
}
.facts-v { color: #DDE4EB; }
.facts-v a { color: var(--ember-l); }

/* --------------------------------------------------------- the request form */

.rq {
  background: rgba(246,243,237,.055); border: 1px solid rgba(246,243,237,.18);
  border-radius: var(--r); padding: 30px 32px 32px;
}
.rq-h { color: var(--cream); margin: 0 0 10px; font-size: 25px; }
.rq-note { color: var(--on-dark-2); font-size: 15px; margin: 0 0 24px; }
.rq-fs { border: 0; padding: 0; margin: 0; min-width: 0; }
.fld { margin-bottom: 16px; }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fld label, .chk label { display: block; font-size: 13.5px; font-weight: 700; color: #B4C0CC; margin-bottom: 6px; letter-spacing: .02em; }
.fld input, .fld select, .fld textarea {
  width: 100%; font: inherit; font-size: 16px;
  background: rgba(8,20,32,.55); color: var(--cream);
  border: 1px dashed rgba(246,243,237,.30); border-radius: 3px;
  padding: 11px 13px;
}
.fld textarea { resize: vertical; min-height: 108px; }
.chk { display: flex; align-items: center; gap: 10px; margin: 4px 0 22px; }
.chk input { width: 18px; height: 18px; flex: none; }
.chk label { margin: 0; }
.rq-fs:disabled { opacity: 1; }
.rq-fs:disabled .fld input, .rq-fs:disabled .fld select, .rq-fs:disabled .fld textarea { color: #7E8B98; }
.rq-send {
  width: 100%; background: transparent; color: #8C99A6;
  border: 2px dashed rgba(246,243,237,.28);
}
.rq-send:hover { background: transparent; transform: none; }
.rq-off {
  margin: 16px 0 0; font-size: 14px; color: #A5B1BD;
  border-top: 1px dashed rgba(246,243,237,.22); padding-top: 14px;
}

/* ------------------------------------------------------------------ closer */

.closer {
  position: relative; overflow: hidden; background: var(--night-3);
  color: var(--cream); text-align: center;
  padding: clamp(64px, 8vw, 108px) 0 clamp(74px, 8vw, 116px);
}
.closer::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/img/stock-dusk-gable.jpg") 34% 44% / cover no-repeat;
}
.closer::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,13,21,.70), rgba(6,13,21,.86));
}
.closer-in { position: relative; z-index: 2; }
.closer-lead {
  font-family: var(--display); font-weight: 700; font-variation-settings: "wdth" 88;
  font-size: clamp(24px, 3vw, 36px); line-height: 1.12; letter-spacing: -.014em;
  margin: 0 auto 22px; max-width: 22ch;
}
.closer-tel {
  font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 90;
  font-size: clamp(40px, 7vw, 84px); line-height: 1; letter-spacing: -.03em; margin: 0 0 16px;
}
.closer-tel a { color: var(--ember); text-decoration: none; }
.closer-tel a:hover { color: var(--ember-l); }
.closer-sub { margin: 0; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; color: #A5B1BD; font-weight: 700; }
.closer-credit {
  position: absolute; right: var(--pad); bottom: 10px; z-index: 2;
  margin: 0; font-size: 11.5px; letter-spacing: .04em; color: rgba(228,233,238,.55);
}

/* ----------------------------------------------------- about this preview */

.preview { background: var(--cream-3); border-top: 1px solid var(--rule); }
.about-preview { max-width: 74ch; padding: clamp(44px, 6vw, 70px) 0; }
.ap-h {
  font-family: var(--display); font-weight: 700; font-size: 26px; margin: 0 0 20px;
  font-variation-settings: "wdth" 92;
}
.about-preview p { color: var(--ink-2); font-size: 16.5px; }
.ap-cta { margin-top: 26px; }
.about-preview .pbar-btn { font-size: 16px; padding: 13px 26px; }

/* ------------------------------------------------------------------ footer */

.foot { background: var(--night); color: var(--on-dark-2); padding-top: 56px; }
.foot-in {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 34px;
  padding-bottom: 42px;
}
.foot-name {
  font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--cream);
  margin: 16px 0 8px; font-variation-settings: "wdth" 90; line-height: 1.15;
}
.foot-addr { margin: 0; font-size: 15.5px; line-height: 1.6; }
.foot-k {
  font-family: var(--display); font-weight: 700; font-size: 12.5px; letter-spacing: .17em;
  text-transform: uppercase; color: var(--ember-l); margin: 0 0 14px;
}
.foot-col a, .foot-col p { display: block; color: var(--on-dark-2); text-decoration: none; font-size: 15.5px; margin: 0 0 9px; }
.foot-col a:hover { color: var(--cream); }
.foot-col .chip { display: inline-block; width: auto; margin: 0; }
.foot-bar { border-top: 1px solid rgba(246,243,237,.15); padding-top: 20px; padding-bottom: 24px; }
.foot-slim { padding-top: 0; }
.foot-slim .foot-bar { border-top: 0; padding-top: 26px; }
.foot-bar p { margin: 0; font-size: 14px; }

/* --------------------------------------------------------------------- FAB */

.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--ember); color: #14202B;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(8,20,32,.42);
  text-decoration: none;
}
.fab svg { width: 26px; height: 26px; }
/* The fab is fixed to the body and floats over cream, navy and photographs
   alike, so it carries two rings: one reads on any ground it can cross. */
.fab:focus-visible {
  outline: 3px solid var(--cream); outline-offset: 4px;
  box-shadow: 0 0 0 3px var(--night), 0 10px 26px rgba(8,20,32,.42);
}

/* ----------------------------------------------------------------- reveals */

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.js .reveal-2 { transition-delay: .10s; }
.js .reveal-3 { transition-delay: .20s; }
.js .reveal.in-view { opacity: 1; transform: none; }

/* -------------------------------------------------------------- breakpoints */

@media (max-width: 1060px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
         background: var(--cream); border-bottom: 1px solid var(--rule);
         flex-direction: column; gap: 0; padding: 8px var(--pad) 20px; }
  .nav.is-open { display: flex; }
  .burger { display: block; order: 3; margin-left: 0; }
  .mast-in { flex-wrap: wrap; }
  .mast-call { order: 2; margin-left: auto; }

  .work-grid { grid-template-columns: 1fr 1fr; }
  .svc-feature { grid-column: 1; grid-row: 1 / span 2; }
  .work-grid > .svc:nth-of-type(2) { grid-column: 2; grid-row: 1; }
  .work-grid > .svc:nth-of-type(3) { grid-column: 2; grid-row: 2; }
  .w-shot { grid-column: 1 / span 2; grid-row: 3; }
  .work-grid > .svc:nth-of-type(4) { grid-column: 1; grid-row: 4; }
  .work-grid > .svc:nth-of-type(5) { grid-column: 2; grid-row: 4; }
  .work-grid > .svc:nth-of-type(6) { grid-column: 1 / span 2; grid-row: 5; }

  .seam-in, .area-in, .hours-in, .contact-in { grid-template-columns: 1fr; }
  .frame-tall { aspect-ratio: 16 / 9; }
  .foot-in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 17px; }
  .proof-in { grid-template-columns: 1fr; }
  .pf { padding: 26px 0; border-top: 1px solid rgba(246,243,237,.15); }
  .pf:first-child { border-top: 0; }
  .pf + .pf { border-left: 0; padding-left: 0; }

  .work-grid { grid-template-columns: 1fr; }
  .svc-feature, .w-shot,
  .work-grid > .svc:nth-of-type(2), .work-grid > .svc:nth-of-type(3),
  .work-grid > .svc:nth-of-type(4), .work-grid > .svc:nth-of-type(5),
  .work-grid > .svc:nth-of-type(6) { grid-column: 1; grid-row: auto; }

  .quotes { columns: 1; }
  .towns { grid-template-columns: 1fr; }
  .fld-row { grid-template-columns: 1fr; gap: 0; }
  .foot-in { grid-template-columns: 1fr; gap: 26px; }
  .facts li { flex-direction: column; gap: 3px; }
  .facts-k { width: auto; }

  .fab { display: flex; }
  .mast-call { display: none; }
  .mast-in { flex-wrap: nowrap; min-height: 72px; }
  .burger { order: 0; margin-left: auto; }
  .brand-sub-long { display: none; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-name { font-size: 21px; }
  .hero { min-height: 0; }
  .hero-in { padding-top: 74px; padding-bottom: 62px; }
  .hero-credit, .closer-credit { position: static; text-align: right; padding: 8px var(--pad) 10px; }
  .hero-credit { position: absolute; }
  .score { width: 100%; }
  .btn, .btn-lg { width: 100%; }
  .slot, .keys, .rq { padding: 24px 22px; }
  .closer-tel { font-size: clamp(34px, 11vw, 52px); }
  .fab { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::before { animation: none; transform: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero-h .w, .js .hero-lede, .js .score, .js .hero-cta, .js .hero-facts { opacity: 1; transform: none; }
}

/* ------------------------------------------------------ small utilities */

.gap-top { margin-top: 34px; }
.gap-top-s { margin-top: 22px; }
.p404 { min-height: 66vh; display: flex; align-items: center; }
