/* =====================================================================
   Mr Clean Cleaners - preview build by NH Media Web
   The register: a fresh-pressed shirt. Laundered whites and a blued
   linen for the light grounds, deep press navy for the dark ones, a
   confident steam blue accent, and a claim-ticket amber held back for
   the award and the mark.
   Archivo carries the structure. Source Serif 4 carries the human
   voice: the reviews, the pull quote, the award plate.
   The house ornament is the CREASE: a hairline of light sitting on a
   heavier line, the way a pressed fold catches the light.
   No external requests. No inline styles anywhere.
   ===================================================================== */

@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: 'Source Serif 4';
  src: url('fonts/sourceserif4-latin-var.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink:      #0D2131;   /* masthead, the same-day band, the footer */
  --ink-2:    #0A1A27;   /* visit */
  --ink-3:    #123049;   /* the award band, the preview banner */

  --starch:   #FBFCFD;   /* the lightest ground */
  --linen:    #EDF2F5;   /* the blued second ground */
  --linen-2:  #E3EBF0;   /* the third */
  --card:     #FFFFFF;

  --text:     #12212D;
  --muted:    #435668;
  --faint:    #566A7B;
  --rule:     #D3DEE5;
  --rule-2:   #C4D2DC;

  --blue:     #0B5E8A;   /* accent text and fills on light grounds */
  --blue-d:   #084965;   /* hover */
  --blue-l:   #7BCDF0;   /* accent text on dark grounds */
  --steam:    #A9D8EE;   /* decoration on dark grounds */

  --dim:      #C3D3DE;   /* body text on dark grounds */
  --dim-2:    #9FB3C1;   /* faint text on dark grounds */
  --line-d:   rgba(169, 216, 238, 0.24);

  --ticket:   #E9A93C;   /* the claim ticket: the award, the mark's hook */
  --ticket-l: #F6C879;
  --ticket-d: #7C5304;   /* amber that is legible as text on light grounds */

  --sans:  'Archivo', 'Segoe UI', Helvetica, Arial, sans-serif;
  --serif: 'Source Serif 4', 'Iowan Old Style', Georgia, serif;

  --shell: 1220px;
  --gut: 30px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--starch);
  color: var(--text);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.72;
  font-variation-settings: 'wdth' 100;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1 0 auto; }

img { max-width: 100%; display: block; }

a { color: var(--blue); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.dark a:focus-visible,
.dark button:focus-visible { outline-color: var(--blue-l); }

.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: 60;
  background: var(--ink); color: var(--starch);
  padding: 14px 22px; font-weight: 700; text-decoration: none;
}
.skip:focus { left: 0; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* ---------------------------------------------- the crease ornament -- */

.crease {
  display: block;
  width: 30px;
  height: 3px;
  background: linear-gradient(180deg, var(--blue-l) 0 1px, var(--blue) 1px 3px);
}
.crease-d {
  background: linear-gradient(180deg, var(--starch) 0 1px, var(--blue-l) 1px 3px);
}
.crease-t {
  background: linear-gradient(180deg, var(--ticket-l) 0 1px, var(--ticket) 1px 3px);
}

/* --------------------------------------------------- shared type ----- */

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
}
.label::before {
  content: "";
  width: 30px; height: 3px; flex: none;
  background: linear-gradient(180deg, var(--blue-l) 0 1px, var(--blue) 1px 3px);
}
.label-d { color: var(--blue-l); }
.label-d::before {
  background: linear-gradient(180deg, var(--starch) 0 1px, var(--blue-l) 1px 3px);
}

.h2 {
  font-family: var(--sans);
  font-variation-settings: 'wdth' 92;
  font-weight: 700;
  font-size: clamp(31px, 4.1vw, 52px);
  line-height: 1.08;
  letter-spacing: -.022em;
  margin: 0 0 18px;
  color: var(--text);
  text-wrap: balance;
}
.h2-d { color: var(--starch); }

.lede {
  margin: 0;
  max-width: 60ch;
  font-size: 19px;
  color: var(--muted);
}
.lede-d { color: var(--dim); }

/* ------------------------------------------------------- buttons ----- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 3px;
  font-family: var(--sans);
  font-variation-settings: 'wdth' 96;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .01em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-lg { padding: 17px 30px; font-size: 17px; }

.btn-blue { background: var(--blue); color: var(--starch); }
.btn-blue:hover { background: var(--blue-d); }

.btn-line {
  background: transparent;
  color: var(--blue);
  border-color: var(--rule-2);
}
.btn-line:hover { border-color: var(--blue); background: rgba(11, 94, 138, .06); }

.btn-ghost {
  background: transparent;
  color: var(--starch);
  border-color: rgba(169, 216, 238, .45);
}
.btn-ghost:hover { background: var(--starch); color: var(--ink); border-color: var(--starch); }

.btn-ticket { background: var(--ticket); color: #23180A; }
.btn-ticket:hover { background: var(--ticket-l); }

/* ------------------------------------------ the preview banner ------- */

.pbar {
  background: var(--ink-3);
  color: var(--dim);
  font-size: 14.5px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(169, 216, 238, .18);
}
.pbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 34px;
  flex-wrap: wrap;
  padding-top: 13px;
  padding-bottom: 13px;
}
.pbar-txt { margin: 0; max-width: 68ch; }
.pbar-acts { margin: 0; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.pbar-btn {
  display: inline-block;
  background: var(--ticket);
  color: #23180A;
  padding: 9px 17px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}
.pbar-btn:hover { background: var(--ticket-l); }
.pbar-mail { color: var(--steam); font-weight: 600; white-space: nowrap; }

/* ---------------------------------------------------- masthead ------- */

.mast {
  background: var(--ink);
  border-bottom: 1px solid rgba(169, 216, 238, .16);
}
.mast-in {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark { width: 48px; height: 48px; flex: none; }
.brand-name {
  display: block;
  font-variation-settings: 'wdth' 94;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -.012em;
  color: var(--starch);
}
.brand-sub {
  display: block;
  margin-top: 5px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--dim-2);
}

.nav { display: flex; gap: 26px; }
.nav a {
  color: var(--dim);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--starch); border-bottom-color: var(--blue-l); }

.burger {
  display: none;
  width: 46px; height: 42px;
  background: transparent;
  border: 1px solid rgba(169, 216, 238, .35);
  border-radius: 3px;
  cursor: pointer;
  padding: 11px 10px;
}
.burger span {
  display: block; height: 2px; background: var(--steam); margin: 0 0 5px;
}
.burger span:last-child { margin-bottom: 0; }

/* -------------------------------------------------------- hero ------- */

.hero {
  background: var(--starch);
  padding: 78px 0 84px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(96% 74% at 12% 0%, rgba(11, 94, 138, .07), transparent 62%);
  pointer-events: none;
}
.hero-in {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 62px;
  align-items: center;
}

.hero-eyebrow {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-h {
  font-variation-settings: 'wdth' 90;
  font-weight: 800;
  font-size: clamp(40px, 5.9vw, 74px);
  line-height: 1.02;
  letter-spacing: -.031em;
  margin: 0 0 24px;
  color: var(--text);
  text-wrap: balance;
}
.hero-h .hl { color: var(--blue); white-space: nowrap; }

.hero-lede {
  margin: 0 0 28px;
  max-width: 46ch;
  font-size: 19.5px;
  color: var(--muted);
}

.trust {
  display: flex;
  align-items: baseline;
  gap: 11px;
  margin: 0 0 30px;
  padding: 0 0 26px;
  border-bottom: 1px solid var(--rule);
  max-width: 46ch;
  flex-wrap: wrap;
}
.trust-score {
  font-variation-settings: 'wdth' 88;
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--text);
}
.trust-star { color: var(--ticket-d); font-size: 21px; line-height: 1; }
.trust-txt { font-size: 15.5px; font-weight: 600; color: var(--muted); }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 0 0 26px; }

.hero-where { margin: 0; font-size: 16px; color: var(--muted); }
.hero-where strong { color: var(--text); font-weight: 700; }
.hero-where a { font-weight: 700; text-decoration: none; }
.hero-where a:hover { text-decoration: underline; }

.frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(158deg, #DCE6ED, #C6D5E0);
  border-radius: 4px;
}
.frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-fig { margin: 0; }
.hero-fig .frame { box-shadow: 0 26px 60px -30px rgba(13, 33, 49, .55); }

.cap {
  margin: 14px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--faint);
}
.cap-src { display: block; }
.cap-note { display: block; margin-top: 5px; }
.cap-d { color: var(--dim-2); }

/* ------------------------------------------------- the same day ------ */

.dark { position: relative; }
.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(169, 216, 238, .085) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.dark > .shell { position: relative; }

.same {
  background: var(--ink);
  color: var(--dim);
  padding: 84px 0 88px;
}
.same-in {
  display: grid;
  grid-template-columns: 1fr .84fr;
  gap: 56px;
  align-items: center;
}

.decal {
  margin: 26px 0 30px;
  padding: 22px 26px 24px;
  border: 2px solid rgba(169, 216, 238, .34);
  border-radius: 3px;
  text-align: center;
}
.decal-h {
  margin: 0;
  font-variation-settings: 'wdth' 86;
  font-weight: 800;
  font-size: clamp(21px, 2.7vw, 31px);
  line-height: 1.16;
  letter-spacing: .045em;
  text-transform: uppercase;
  color: var(--starch);
}
.decal-s {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--steam);
}

.clocks {
  list-style: none;
  margin: 54px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.clocks li { padding: 20px 0 0; border-top: 2px solid var(--line-d); }
.clock-k {
  display: block;
  margin-bottom: 8px;
  font-variation-settings: 'wdth' 86;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.06;
  letter-spacing: -.022em;
  color: var(--blue-l);
}
.clock-v { margin: 0; font-size: 16.5px; color: var(--dim); }

.same-fig { margin: 0; }
.same-fig .frame { box-shadow: 0 26px 60px -32px rgba(0, 0, 0, .85); }

/* --------------------------------------------------- what we clean --- */

.work { background: var(--linen); padding: 86px 0 92px; }
.work-head { max-width: 640px; margin-bottom: 46px; }

.svc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 22px;
}

.card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-ph { background: linear-gradient(158deg, #DCE6ED, #C6D5E0); }
.card-ph img { width: 100%; height: 100%; object-fit: cover; }
.card-b { padding: 26px 26px 28px; }
.card-k {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
}
.card-h {
  margin: 0 0 10px;
  font-variation-settings: 'wdth' 94;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.14;
  letter-spacing: -.018em;
  color: var(--text);
}
.card-p { margin: 0; font-size: 16.5px; line-height: 1.66; color: var(--muted); }
.card-cap {
  margin: 0;
  padding: 0 26px 22px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--faint);
}

.card-lead { grid-column: span 2; grid-row: span 2; }
.card-lead .card-ph { flex: none; aspect-ratio: 4 / 3; }
.card-lead .card-h { font-size: clamp(28px, 3vw, 36px); }
.card-lead .card-p { font-size: 18px; max-width: 46ch; }

.card-plate {
  background: var(--ink-3);
  border-color: rgba(169, 216, 238, .26);
  justify-content: center;
}
.card-plate .card-b { padding: 30px 26px; }
.card-plate .card-k { color: var(--steam); }
.card-plate .card-h { color: var(--starch); }
.card-plate .card-p { color: var(--dim); }
.card-plate .crease { margin-bottom: 18px; }

/* -------------------------------------------- honesty slot ----------- */

.slot {
  border: 2px dashed var(--rule-2);
  border-radius: 4px;
  background: rgba(11, 94, 138, .045);
  padding: 28px 30px 30px;
}
.slot-band { grid-column: 1 / -1; margin-top: 6px; }
.slot-k {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--ticket-d);
}
.slot p { margin: 0 0 12px; font-size: 16.5px; line-height: 1.68; color: var(--muted); max-width: 74ch; }
.slot p:last-child { margin-bottom: 0; }

/* --------------------------------------------------- the streak ------ */

.honor {
  background: var(--ink-3);
  color: var(--dim);
  padding: 88px 0 92px;
}
.honor-in { display: flex; flex-direction: column; align-items: center; text-align: center; }

.plate {
  width: 100%;
  max-width: 640px;
  padding: 40px 30px 34px;
  border: 1px solid var(--ticket);
  border-radius: 3px;
  position: relative;
  background: rgba(233, 169, 60, .05);
}
.plate::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(233, 169, 60, .34);
  pointer-events: none;
}
.plate-rule {
  display: block;
  width: 84px; height: 1px;
  margin: 0 auto;
  color: var(--ticket);
  background-image: repeating-linear-gradient(90deg, currentColor 0 6px, transparent 6px 11px);
}
.plate-h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -.014em;
  margin: 24px 0 14px;
  color: var(--starch);
}
.plate-src {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--ticket-l);
}
.years {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.years li {
  font-variation-settings: 'wdth' 88;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: .01em;
  color: var(--ticket-l);
  padding: 9px 18px;
  border: 1px solid rgba(233, 169, 60, .42);
  border-radius: 3px;
}
.honor-say {
  max-width: 54ch;
  margin: 38px 0 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.62;
  color: var(--dim);
}
.honor-long {
  margin: 22px 0 0;
  font-size: 16px;
  color: var(--dim-2);
}

/* ------------------------------------------------------ reviews ------ */

.words { background: var(--starch); padding: 86px 0 92px; }
.words-head {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.score { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.score-n {
  font-variation-settings: 'wdth' 86;
  font-weight: 800;
  font-size: clamp(62px, 8vw, 92px);
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--text);
}
.score-star { color: var(--ticket-d); font-size: 30px; line-height: 1; }
.score-t { margin: 0; font-size: 17px; font-weight: 600; color: var(--muted); max-width: 20ch; }

.quotes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: start;
  gap: 22px;
}
.quote { grid-column: span 2; }
.quote-wide { grid-column: span 3; }

.quote {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
}
.quote-lead {
  grid-column: span 6;
  background: var(--ink);
  border-color: var(--ink);
  padding: 44px 46px 42px;
  display: grid;
  grid-template-columns: 1.7fr .72fr;
  grid-template-rows: auto auto;
  column-gap: 50px;
}
.quote-lead .stars { grid-column: 1; grid-row: 1; }
.quote-lead blockquote { grid-column: 1; grid-row: 2; }
.quote-lead figcaption {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  margin: 0;
  padding: 0 0 0 42px;
  border-top: none;
  border-left: 1px solid rgba(169, 216, 238, .3);
}
.stars { margin: 0 0 16px; color: var(--ticket-d); font-size: 17px; letter-spacing: .16em; line-height: 1; }
.quote-lead .stars { color: var(--ticket); font-size: 19px; }

.quote blockquote { margin: 0; }
.quote blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 17.5px;
  line-height: 1.66;
  color: var(--text);
}
.quote-lead blockquote p {
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.46;
  color: var(--starch);
  letter-spacing: -.008em;
}
.quote figcaption {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}
.quote-lead figcaption { color: var(--starch); font-size: 17px; }
.q-src {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--faint);
}
.quote-lead .q-src { color: var(--steam); }

.themes {
  margin-top: 34px;
  background: var(--linen);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 30px 32px 28px;
}
.themes-h {
  margin: 0 0 6px;
  font-variation-settings: 'wdth' 94;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.012em;
  color: var(--text);
}
.theme-l {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.theme-l li {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: 3px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.theme-n {
  font-variation-settings: 'wdth' 90;
  font-weight: 800;
  font-size: 15px;
  color: var(--blue);
}
.src {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--faint);
}

/* -------------------------------------------------------- visit ------ */

.visit {
  background: var(--ink-2);
  color: var(--dim);
  padding: 86px 0 92px;
}
.visit-in {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 56px;
  align-items: start;
}

.addr {
  margin: 26px 0 22px;
  font-variation-settings: 'wdth' 96;
  font-weight: 700;
  font-size: clamp(21px, 2.4vw, 27px);
  line-height: 1.34;
  letter-spacing: -.012em;
  color: var(--starch);
}
.reach { list-style: none; margin: 0 0 28px; padding: 0; }
.reach li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid var(--line-d);
  font-size: 17px;
}
.reach li:last-child { border-bottom: 1px solid var(--line-d); }
.reach-k {
  flex: none;
  width: 92px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim-2);
}
.reach a { color: var(--blue-l); text-decoration: none; font-weight: 700; }
.reach a:hover { text-decoration: underline; }
.visit-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 0; }

.hrs {
  background: rgba(169, 216, 238, .06);
  border: 1px solid var(--line-d);
  border-radius: 4px;
  padding: 26px 28px 24px;
}
.hrs-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 14px;
  font-variation-settings: 'wdth' 94;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.012em;
  color: var(--starch);
}
.chip {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ticket-l);
  border: 1px dashed rgba(233, 169, 60, .6);
  border-radius: 3px;
  padding: 5px 11px;
  white-space: nowrap;
}
.hrs dl { margin: 0; }
.hrs-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-top: 1px solid var(--line-d);
}
.hrs-row:last-child { border-bottom: 1px solid var(--line-d); }
.hrs dt { font-size: 16px; color: var(--dim); }
.hrs dd { margin: 0; font-size: 16px; font-weight: 700; color: var(--starch); }
.hrs-row-off dd { color: var(--dim-2); font-weight: 600; }
.drop-note {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.66;
  color: var(--dim);
}
.hours-note {
  margin: 18px 0 0;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--dim-2);
  border-left: 2px dashed rgba(233, 169, 60, .5);
  padding-left: 16px;
}

/* ------------------------------------------- about this preview ------ */

.preview { background: var(--linen-2); padding: 76px 0 80px; }
.about-preview { max-width: 78ch; }
.ap-h {
  margin: 0 0 6px;
  font-variation-settings: 'wdth' 94;
  font-weight: 700;
  font-size: clamp(25px, 3vw, 33px);
  letter-spacing: -.018em;
  color: var(--text);
}
.about-preview p {
  margin: 16px 0 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ------------------------------------------------------- footer ------ */

.foot {
  background: var(--ink);
  color: var(--dim-2);
  padding: 62px 0 0;
  position: relative;
}
.foot-in {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 46px;
  position: relative;
}
.foot-brand .brand-mark { width: 52px; height: 52px; margin-bottom: 16px; }
.foot-name {
  margin: 0 0 8px;
  font-variation-settings: 'wdth' 94;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.012em;
  color: var(--starch);
}
.foot-sub { margin: 0; font-size: 15px; line-height: 1.6; color: var(--dim-2); }
.foot-k {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--steam);
}
.foot-col p { margin: 0 0 9px; font-size: 16px; }
.foot-col a { color: var(--dim); text-decoration: none; display: inline-block; padding: 2px 0; }
.foot-col a:hover { color: var(--starch); text-decoration: underline; }
.foot-bar {
  border-top: 1px solid rgba(169, 216, 238, .16);
  padding-top: 22px;
  padding-bottom: 26px;
  position: relative;
}
.foot-bar p { margin: 0; font-size: 14px; color: var(--dim-2); }

/* --------------------------------------------------------- 404 ------- */

.nf { background: var(--ink); color: var(--dim); padding: 96px 0 110px; }
.nf-code {
  margin: 0 0 10px;
  font-variation-settings: 'wdth' 86;
  font-weight: 800;
  font-size: clamp(72px, 13vw, 150px);
  line-height: .9;
  letter-spacing: -.045em;
  color: rgba(169, 216, 238, .22);
}
.nf-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 0; }

/* ------------------------------------------------------ reveals ------ */

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .62s ease, transform .62s ease;
}
.js .reveal.in-view { opacity: 1; transform: none; }
.js .reveal-2 { transition-delay: .09s; }
.js .reveal-3 { transition-delay: .18s; }
.js .reveal-4 { transition-delay: .27s; }
.js .reveal-5 { transition-delay: .36s; }
.js .reveal-6 { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* --------------------------------------------------- responsive ------ */

@media (max-width: 1060px) {
  .hero-in { grid-template-columns: 1fr .9fr; gap: 44px; }
  .same-in, .visit-in { grid-template-columns: 1fr; gap: 42px; }
  .svc { grid-template-columns: repeat(2, 1fr); }
  .card-lead { grid-column: span 2; grid-row: auto; }
  .card-lead .card-ph { min-height: 260px; }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .quote, .quote-wide { grid-column: span 1; }
  .quote-lead {
    grid-column: span 2;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .quote-lead .stars, .quote-lead blockquote { grid-column: 1; }
  .quote-lead figcaption {
    grid-column: 1;
    grid-row: auto;
    padding: 16px 0 0;
    margin-top: 22px;
    border-left: none;
    border-top: 1px solid rgba(169, 216, 238, .3);
  }
  .clocks { gap: 22px; }
  .words-head { grid-template-columns: 1fr; gap: 26px; align-items: start; }
}

@media (max-width: 900px) {
  :root { --gut: 22px; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--ink);
    border-bottom: 1px solid rgba(169, 216, 238, .2);
    flex-direction: column;
    gap: 0;
    padding: 8px var(--gut) 18px;
    z-index: 40;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid rgba(169, 216, 238, .12); }
  .burger { display: block; }
  .mast-in { position: relative; gap: 14px; }
  .mast-cta { display: none; }
  .hero-in { grid-template-columns: 1fr; gap: 38px; }
  .hero { padding: 56px 0 62px; }
  .same, .work, .honor, .words, .visit { padding: 62px 0 66px; }
  .preview { padding: 56px 0 60px; }
  .foot-in { grid-template-columns: 1fr 1fr; gap: 34px; }
  .foot-brand { grid-column: span 2; }
}

@media (max-width: 660px) {
  body { font-size: 17px; }
  .svc, .quotes { grid-template-columns: 1fr; }
  .card-lead, .quote-lead, .quote, .quote-wide, .slot-band { grid-column: span 1; }
  .clocks { grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  .quote-lead { padding: 30px 24px 28px; }
  .clock-k { width: 104px; font-size: 21px; }
  .reach li { flex-direction: column; gap: 4px; }
  .reach-k { width: auto; }
  .pbar-in { flex-direction: column; align-items: flex-start; gap: 13px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 10.5px; letter-spacing: .13em; }
  .brand-loc { display: none; }
  .foot-in { grid-template-columns: 1fr; }
  .foot-brand { grid-column: span 1; }
  .decal { padding: 18px 16px 20px; }
  .plate { padding: 30px 20px 26px; }
  .themes { padding: 24px 20px 22px; }
  .hrs { padding: 22px 20px 20px; }
  .hrs-row { flex-direction: column; gap: 2px; }
}
