/* ===========================================================================
   A Roof Above The Rest - Charleston, West Virginia
   Preview build by NH Media Web. Self-hosted type, no external requests.
   =========================================================================== */

@font-face {
  font-family: "Antonio";
  src: url("fonts/antonio-latin-var.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("fonts/worksans-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --chalk:   #F4F2EC;
  --chalk-2: #EAE6DC;
  --chalk-3: #DCD7C9;
  --rule:    #C9C2B0;

  --ink:     #131920;
  --ink-2:   #3B4753;
  --ink-3:   #55616C;

  --slate:   #161E26;
  --slate-2: #1D2831;
  --slate-3: #10161C;
  --slate-4: #0B1015;

  --brass:   #D2A047;
  --brass-l: #EAC078;
  --brass-d: #7E5B18;

  --zinc:    #8B97A2;
  --zinc-l:  #C2CBD3;

  --on-dark:   #E5E9ED;
  --on-dark-2: #ADB7C0;

  --display: "Antonio", "Arial Narrow", Arial, sans-serif;
  --sans: "Work Sans", "Segoe UI", Helvetica, Arial, sans-serif;

  --shell: 1230px;
  --pad: clamp(20px, 5vw, 46px);
  --r: 3px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth; -webkit-text-size-adjust: 100%;
  /* the canvas beyond the body matches the footer, so a short page (the 404)
     never shows a pale strip under it */
  background: var(--slate-4);
}

body {
  margin: 0;
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
img { display: block; height: auto; }

h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -.005em; margin: 0; }
p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

::selection { background: var(--brass); color: #0E141A; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding-inline: var(--pad); }

.skip {
  position: fixed; top: 8px; left: 8px; z-index: 200;
  transform: translateY(-160%);
  background: var(--brass); color: #10161C;
  font: 600 14px/1 var(--sans); letter-spacing: .02em;
  padding: 12px 18px; border-radius: var(--r);
}
.skip:focus { transform: none; }

/* -------------------------------------------------------------- focus rings */
:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
}
.sec-light :focus-visible, .call :focus-visible { outline-color: var(--brass-d); }

/* Fixed and floating children of body cross every ground on the page, so they
   carry two rings: one dark, one light. One of the two always reads. */
.fab:focus-visible, .skip:focus-visible {
  outline: 3px solid var(--chalk);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px #0B1015;
}

/* ================================================================== BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: .015em; line-height: 1;
  padding: 16px 24px; border-radius: var(--r);
  text-decoration: none; border: 1px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-solid { background: var(--brass); color: #14100A; border-color: var(--brass); }
.btn-solid:hover { background: var(--brass-l); border-color: var(--brass-l); }
.btn-ghost { color: var(--on-dark); border-color: rgba(210,160,71,.55); }
.btn-ghost:hover { border-color: var(--brass); background: rgba(210,160,71,.12); }
.btn-lg { font-size: 16.5px; padding: 19px 30px; }

/* ========================================================= PREVIEW BANNER */
.pbar { background: #0A0E13; color: #D5DCE2; border-bottom: 1px solid #222D37; }
.pbar-in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px 26px; padding-block: 13px;
}
.pbar-txt { margin: 0; font-size: 13.5px; line-height: 1.55; max-width: 62ch; color: #C3CCD4; }
.pbar-acts { margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; }
.pbar-btn {
  display: inline-block;
  font-family: var(--sans); font-weight: 600; font-size: 13.5px; line-height: 1;
  letter-spacing: .015em; padding: 12px 20px; border-radius: var(--r);
  background: var(--brass); color: #14100A; text-decoration: none;
  border: 1px solid var(--brass);
}
.pbar-btn:hover { background: var(--brass-l); border-color: var(--brass-l); }
.pbar-mail { font-size: 13.5px; color: #A9B4BD; text-decoration: underline; text-underline-offset: 3px; }
.pbar-mail:hover { color: var(--brass-l); }

/* ================================================================= MASTHEAD */
.mast {
  position: sticky; top: 0; z-index: 90;
  background: rgba(11,16,21,.94);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid #202A34;
}
.mast-in { display: flex; align-items: center; gap: 22px; padding-block: 13px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; margin-right: auto; }
.brand-mark { width: 52px; height: 52px; flex: none; }
.brand-txt { display: block; }
.brand-name {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 25px; line-height: 1; letter-spacing: .005em; color: #F1F4F7;
}
.brand-sub {
  display: block; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--zinc); margin-top: 5px;
}
.nav { display: flex; gap: 26px; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: #C6CFD7; text-decoration: none;
  padding-block: 6px; border-bottom: 2px solid transparent;
}
.nav a:hover { color: #fff; border-bottom-color: var(--brass); }
.mast-call { flex: none; }

.burger {
  display: none; width: 46px; height: 42px; background: none;
  border: 1px solid #2C3944; border-radius: var(--r); cursor: pointer;
  padding: 0; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.burger span { display: block; width: 20px; height: 2px; background: #D3DBE1; }

/* ===================================================================== HERO */
.hero {
  position: relative; overflow: hidden;
  min-height: 86vh; display: flex; flex-direction: column; justify-content: flex-end;
  background: #0F151B;
}
.hero-img {
  position: absolute; inset: -3%;
  background: #0F151B url("assets/img/stock-hero-roofline.jpg") 54% 40% / cover no-repeat;
  animation: drift 34s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to   { transform: scale(1.10) translate3d(-1.2%, -1.4%, 0); }
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(101deg,
    rgba(9,13,18,.95) 0%, rgba(9,13,18,.90) 36%, rgba(9,13,18,.58) 62%, rgba(9,13,18,.26) 100%);
}
.hero-veil-b {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,13,18,.94) 0%, rgba(9,13,18,.25) 30%, rgba(9,13,18,0) 55%);
}
.hero-in {
  position: relative;
  display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 34px;
  padding-top: clamp(90px, 15vh, 168px); padding-bottom: 40px;
}
.hero-copy { max-width: 20ch; max-width: min(100%, 660px); }
.hero-h {
  font-size: clamp(42px, 8.2vw, 92px);
  line-height: .96; letter-spacing: -.01em; color: #FFFFFF;
  margin: 16px 0 22px;
}
.hero-h .w { display: inline-block; }
.hero-p { font-size: clamp(16.5px, 2vw, 19px); color: #E4EAEF; max-width: 48ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }
.gap-top { margin-top: 26px; }

.hero-card {
  position: relative; margin: 0 0 6px;
  display: flex; align-items: center; gap: 16px;
  background: rgba(12,17,23,.80);
  border: 1px solid rgba(210,160,71,.42); border-left: 3px solid var(--brass);
  padding: 16px 22px; border-radius: var(--r);
}
.hero-card-n {
  font-family: var(--display); font-weight: 700; font-size: 44px; line-height: .9; color: #FFFFFF;
}
.hero-card-b { display: block; }
.hero-card-k { display: block; font-size: 13px; color: var(--zinc-l); margin-top: 3px; }
.stars { display: flex; gap: 2px; color: var(--brass); margin: 0; }
.stars svg { display: block; }

.hero-tags {
  position: relative; margin: 0; padding: 0; list-style: none;
  border-top: 1px solid rgba(210,160,71,.28);
  background: rgba(9,13,18,.6);
}
.hero-tags {
  display: flex; flex-wrap: wrap;
  padding-inline: max(var(--pad), calc((100% - var(--shell)) / 2 + var(--pad)));
}
.hero-tags li {
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--zinc-l); padding: 15px 18px 15px 0;
}
.hero-tags li:not(:last-child)::after {
  content: ""; display: inline-block; vertical-align: middle;
  width: 3px; height: 3px; border-radius: 50%; background: var(--brass);
  margin-left: 18px;
}

/* ================================================================= SECTIONS */
.sec { padding-block: clamp(62px, 9vw, 118px); position: relative; }
.sec-dark { background: var(--slate); color: var(--on-dark); }
.sec-deep { background: var(--slate-2); color: var(--on-dark); }
.sec-deepest { background: var(--slate-3); color: var(--on-dark); }
.sec-light { background: var(--chalk); color: var(--ink); }

/* Shingle courses: a faint texture on the dark grounds, offset row to row. */
.coursed::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(to bottom, rgba(255,255,255,.016) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(to right, rgba(255,255,255,.009) 0 1px, transparent 1px 84px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.08));
}
.coursed > * { position: relative; }

.lab {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  margin: 0 0 18px;
}
.lab .peak { flex: none; color: var(--brass); }
.lab-d { color: var(--brass-l); }
.lab-l { color: var(--brass-d); }
.lab-l .peak { color: var(--brass-d); }

.sec-head { max-width: 44ch; }
.sec-h {
  font-size: clamp(31px, 4.4vw, 54px); line-height: 1.04; letter-spacing: -.012em;
  margin: 0 0 18px;
}
.sec-dark .sec-h, .sec-deep .sec-h, .sec-deepest .sec-h { color: #FFFFFF; }
.sec-lede { font-size: 18px; color: var(--on-dark-2); max-width: 58ch; }
.sec-light .sec-lede { color: var(--ink-2); }

/* ================================================================ THE WORK */
.work-grid {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px; margin-top: clamp(38px, 5vw, 58px);
}
.card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r); overflow: hidden;
}
.card-feat { grid-column: span 7; border-top: 3px solid var(--brass); }
.card-a { grid-column: span 5; }
.card-b { grid-column: span 4; }
.card-c { grid-column: span 4; }
.slot-card { grid-column: span 4; }

.card-fig { margin: 0; position: relative; }
.card-fig img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #0F151B; }
.card-fig-dia { background: #141C24; padding: 0; }
.dia { display: block; width: 100%; height: auto; }
.dia-key {
  margin: 0; padding: 16px 22px 18px; list-style: none;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid; gap: 7px;
}
.dia-key li {
  font-size: 13.5px; line-height: 1.45; color: var(--on-dark-2);
  display: flex; align-items: baseline; gap: 10px;
}
.dia-key span {
  flex: none; width: 19px; height: 19px; border-radius: 50%;
  background: var(--brass); color: #14100A;
  font-size: 11.5px; font-weight: 700; line-height: 19px; text-align: center;
  transform: translateY(2px);
}
.cap {
  font-size: 12px; color: var(--zinc); letter-spacing: .02em;
  padding: 9px 16px 0; margin: 0;
}
.cap-note { display: block; color: var(--brass-l); margin-top: 5px; line-height: 1.5; }
.cap-l { color: var(--ink-3); }

.card-body { padding: 20px 24px 26px; }
.card h3 {
  font-size: 25px; line-height: 1.08; color: #FFFFFF; margin: 0 0 10px; letter-spacing: 0;
}
.card p { font-size: 16px; color: var(--on-dark-2); margin: 0; }
.card-feat .card-body { padding: 24px 28px 30px; }
.card-feat h3 { font-size: 32px; }
.card-feat p { font-size: 17px; }

/* ===================================================== PREVIEW FURNITURE SLOTS */
.slot {
  border: 1px dashed rgba(210,160,71,.55);
  background: rgba(210,160,71,.055);
  border-radius: var(--r);
  padding: 22px 24px;
}
.slot p { font-size: 15px; color: var(--on-dark-2); margin-bottom: .85em; }
.slot p:last-child { margin-bottom: 0; }
.slot .slot-h {
  font-family: var(--display); font-weight: 700; font-size: 22px; line-height: 1.12;
  color: var(--brass-l); letter-spacing: .005em; margin-bottom: 12px;
}
.slot .slot-k {
  font-size: 12.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--brass); margin-bottom: .7em;
}
.slot-card { align-self: stretch; }
.slot-wide { margin-top: 22px; }
.sec-story .slot { max-width: 78ch; margin-inline: auto; }

/* ============================================================ WHERE IT LETS GO */
.lets-in {
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 5vw, 66px); align-items: stretch;
}
.lets-fig { margin: 0; display: flex; flex-direction: column; }
.lets-fig img {
  width: 100%; flex: 1 1 auto; min-height: 480px; object-fit: cover;
  border-radius: var(--r); background: var(--chalk-3);
}
.lets-list { margin: 40px 0 0; padding: 0; list-style: none; counter-reset: none; }
.lets-list li {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 20px;
  padding: 26px 0; border-top: 1px solid var(--rule);
}
.lets-n {
  font-family: var(--display); font-weight: 700; font-size: 40px; line-height: .9;
  color: var(--brass-d);
}
.lets-list h3 { font-size: 25px; line-height: 1.1; margin: 0 0 7px; }
.lets-list p { font-size: 16.5px; color: var(--ink-2); margin: 0; }

/* ================================================================== REVIEWS */
.rev-grid {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px; margin-top: clamp(38px, 5vw, 58px);
}
.score {
  grid-column: span 4;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09);
  border-top: 3px solid var(--brass);
  border-radius: var(--r); padding: 30px 26px;
  display: flex; flex-direction: column; justify-content: center;
}
.score-n {
  font-family: var(--display); font-weight: 700; font-size: 74px; line-height: .86;
  color: #FFFFFF; margin: 0 0 12px;
}
.score .stars { margin-bottom: 14px; }
.score-k { font-size: 15px; color: var(--on-dark); margin: 0 0 3px; }
.score-s { font-size: 13px; color: var(--zinc); margin: 0; letter-spacing: .04em; }

.quote {
  position: relative; margin: 0;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r); padding: 30px 30px 26px;
}
.quote-a, .quote-b { grid-column: span 8; }
.quote-mark {
  position: absolute; top: 6px; right: 22px;
  font-family: var(--display); font-size: 92px; line-height: 1;
  color: rgba(210,160,71,.22);
}
.quote-stars { display: flex; gap: 3px; color: var(--brass); margin: 0 0 16px; }
.quote-stars svg { display: block; }
.quote blockquote { margin: 0; }
.quote blockquote p {
  font-size: 17.5px; line-height: 1.68; color: var(--on-dark); margin: 0;
  max-width: 62ch;
}
.quote figcaption { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; }
.quote-who {
  font-family: var(--display); font-weight: 700; font-size: 20px; color: #FFFFFF; letter-spacing: .01em;
}
.quote-src { font-size: 12.5px; color: var(--zinc); letter-spacing: .05em; }

.chips {
  grid-column: span 4;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r); padding: 26px 24px;
}
.chips h3 { font-size: 20px; color: #FFFFFF; margin: 0 0 16px; line-height: 1.15; }
.chip-row { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chip-row li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--on-dark);
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px;
  padding: 7px 13px;
}
.chip-row li span {
  font-family: var(--display); font-weight: 700; font-size: 15px;
  color: var(--brass-l);
}
.chip-src { font-size: 12.5px; color: var(--zinc); margin: 0; line-height: 1.5; }

/* ================================================================= CTA BAND */
.call { position: relative; overflow: hidden; background: #0E141A; color: #fff; }
.call-img {
  position: absolute; inset: 0;
  background: #0E141A url("assets/img/stock-cta-turret.jpg") 74% 32% / cover no-repeat;
}
.call-veil {
  position: absolute; inset: 0;
  background: linear-gradient(96deg, rgba(9,13,18,.95) 0%, rgba(9,13,18,.86) 44%, rgba(9,13,18,.50) 100%);
}
.call-in {
  position: relative;
  display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center;
  gap: 34px; padding-block: clamp(54px, 8vw, 92px);
}
.call h2 { font-size: clamp(30px, 4.2vw, 50px); line-height: 1.05; margin: 0 0 14px; color: #fff; }
.call p { font-size: 17.5px; color: #D9DFE5; max-width: 52ch; margin: 0; }
.call-side { text-align: right; }
.call .call-side-k {
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brass-l); margin: 0 0 10px;
}
.call-num {
  font-family: var(--display); font-weight: 700; font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1; color: #fff; text-decoration: none;
  border-bottom: 3px solid var(--brass); padding-bottom: 5px;
}
.call-num:hover { color: var(--brass-l); }

/* =========================================================== ASK FOR A LOOK */
.req-in {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px); align-items: start;
}
.req-lede { font-size: 17.5px; color: var(--on-dark-2); max-width: 50ch; }
.prep { list-style: none; margin: 34px 0 0; padding: 0; }
.prep li {
  display: grid; grid-template-columns: auto minmax(0,1fr); gap: 18px;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.10);
}
.prep-n {
  font-family: var(--display); font-weight: 700; font-size: 30px; line-height: 1;
  color: var(--brass); padding-top: 3px;
}
.prep h3 { font-size: 21px; color: #FFFFFF; margin: 0 0 4px; line-height: 1.15; }
.prep p { font-size: 15.5px; color: var(--on-dark-2); margin: 0; }

.req-facts {
  margin-top: 30px; padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.10); border-left: 3px solid var(--brass);
  border-radius: var(--r);
}
.rs-k { font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--zinc); margin: 0 0 6px; }
.rs-v { margin: 0; }
.rs-v a {
  font-family: var(--display); font-weight: 700; font-size: 32px; line-height: 1;
  color: #FFFFFF; text-decoration: none; border-bottom: 2px solid var(--brass);
}
.rs-v a:hover { color: var(--brass-l); }
.req-side .slot { margin-top: 26px; }

/* --------------------------------------------------------------- the form */
.req-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-top: 3px solid var(--brass);
  border-radius: var(--r); padding: clamp(24px, 3vw, 34px);
}
.form-h { font-size: 28px; color: #FFFFFF; margin: 0 0 12px; line-height: 1.1; }
.req-note { font-size: 14.5px; color: var(--on-dark-2); margin-bottom: .5em; }
.req-confirm { font-size: 14.5px; color: var(--brass-l); margin-bottom: 24px; }
.f-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 0 16px; align-items: end; }
.f { margin: 0 0 16px; display: block; }
.f label {
  display: block; font-size: 13px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--zinc-l); margin-bottom: 7px;
}
.f input, .f select, .f textarea {
  width: 100%; font-family: var(--sans); font-size: 15.5px; color: #C9D2DA;
  background: rgba(10,15,20,.55);
  border: 1px dashed rgba(190,200,210,.34);
  border-radius: var(--r); padding: 13px 14px;
}
.f textarea { min-height: 132px; resize: vertical; }
.f input::placeholder { color: #7E8B95; }
.f input:disabled, .f select:disabled, .f textarea:disabled { opacity: 1; }
.f-note { font-size: 13.5px; color: var(--zinc); margin: 0 0 20px; }
.f-send {
  width: 100%; font-family: var(--sans); font-weight: 600; font-size: 16px;
  color: #B8C2CB; background: rgba(255,255,255,.05);
  border: 1px dashed rgba(190,200,210,.42); border-radius: var(--r);
  padding: 17px 20px; cursor: not-allowed;
}
.f-off {
  margin: 12px 0 0; font-size: 13px; color: var(--brass-l); text-align: center;
}

/* =================================================================== FOOTER */
.foot { background: var(--slate-4); color: var(--on-dark-2); padding-top: clamp(48px, 6vw, 76px); }
.foot-in {
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px; padding-bottom: 44px;
}
.foot-brand { display: flex; align-items: center; gap: 12px; margin: 0 0 14px; }
.foot-brand img { width: 46px; height: 46px; }
.foot-brand span {
  font-family: var(--display); font-weight: 700; font-size: 23px; color: #F1F4F7; line-height: 1;
}
.foot p { font-size: 15px; max-width: 42ch; }
.foot h2 {
  font-size: 12.5px; font-family: var(--sans); font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brass-l); margin: 0 0 14px;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot li { font-size: 15px; }
.foot a { text-decoration: none; color: var(--on-dark); border-bottom: 1px solid transparent; }
.foot a:hover { color: var(--brass-l); border-bottom-color: var(--brass); }

.about {
  border-top: 1px dashed rgba(210,160,71,.42);
  padding-top: 34px; padding-bottom: 34px;
}
.about h2 {
  font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: .005em;
  text-transform: none; color: var(--brass-l); margin: 0 0 14px;
}
.about p { font-size: 15px; color: var(--on-dark-2); max-width: 82ch; margin-bottom: 1em; }
.about .pbar-btn { margin-top: 6px; }
.about a.pbar-btn { color: #14100A; border-bottom: 1px solid var(--brass); }
.about a.pbar-btn:hover { color: #14100A; border-bottom-color: var(--brass-l); }

.bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 22px; }
.bottom p { margin: 0; font-size: 13px; color: var(--zinc); }

/* ====================================================================== FAB */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--brass); color: #14100A;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
  animation: pulse 3.4s ease-in-out infinite;
}
.fab svg { width: 25px; height: 25px; }
@keyframes pulse {
  0%, 72%, 100% { box-shadow: 0 10px 26px rgba(0,0,0,.45), 0 0 0 0 rgba(210,160,71,.5); }
  86% { box-shadow: 0 10px 26px rgba(0,0,0,.45), 0 0 0 14px rgba(210,160,71,0); }
}

/* =================================================================== REVEAL */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.in-view {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
}
.js .work-grid .reveal:nth-child(2).in-view,
.js .rev-grid .reveal:nth-child(2).in-view { transition-delay: .07s; }
.js .work-grid .reveal:nth-child(3).in-view,
.js .rev-grid .reveal:nth-child(3).in-view { transition-delay: .13s; }
.js .work-grid .reveal:nth-child(4).in-view,
.js .rev-grid .reveal:nth-child(4).in-view { transition-delay: .19s; }

/* =============================================================== RESPONSIVE */
@media (max-width: 1080px) {
  .work-grid .card-feat { grid-column: span 12; }
  .work-grid .card-a { grid-column: span 12; }
  .work-grid .card-b, .work-grid .card-c { grid-column: span 6; }
  .work-grid .slot-card { grid-column: span 12; }
  .rev-grid .score { grid-column: span 5; }
  .rev-grid .chips { grid-column: span 7; }
  .rev-grid .quote-a, .rev-grid .quote-b { grid-column: span 12; }
}

@media (max-width: 980px) {
  /* On a narrow viewport the copy sits over the bright side of the gradient,
     so the veils carry more of the load. Measured on rendered pixels. */
  .hero-veil {
    background: linear-gradient(101deg,
      rgba(9,13,18,.95) 0%, rgba(9,13,18,.93) 42%, rgba(9,13,18,.86) 74%, rgba(9,13,18,.72) 100%);
  }
  .call-veil {
    background: linear-gradient(96deg, rgba(9,13,18,.95) 0%, rgba(9,13,18,.91) 50%, rgba(9,13,18,.82) 100%);
  }
  .mast-in { flex-wrap: wrap; }
  .burger { display: flex; }
  .mast-call { font-size: 14px; padding: 13px 17px; }
  .nav {
    order: 5; width: 100%; display: none; flex-direction: column; gap: 0;
    border-top: 1px solid #202A34; margin-top: 10px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 2px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav a:hover { border-bottom-color: rgba(255,255,255,.07); }
  .hero-in { grid-template-columns: minmax(0,1fr); align-items: start; }
  .hero-card { align-self: start; justify-self: start; margin-top: 8px; }
  .lets-in { grid-template-columns: minmax(0,1fr); }
  .lets-fig img { min-height: 0; aspect-ratio: 16 / 10; }
  .lets-list { margin-top: 26px; }
  .req-in { grid-template-columns: minmax(0,1fr); }
  .call-in { grid-template-columns: minmax(0,1fr); }
  .call-side { text-align: left; }
  .foot-in { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .foot-in > :first-child { grid-column: span 2; }
}

@media (max-width: 700px) {
  body { font-size: 17px; }
  .hero { min-height: 0; }
  .hero-in { padding-top: 74px; padding-bottom: 34px; }
  .hero-card { width: 100%; }
  .hero-tags li { padding: 11px 20px 11px 0; font-size: 11.5px; }
  .hero-tags li:not(:last-child)::after { display: none; }
  .work-grid .card-b, .work-grid .card-c { grid-column: span 12; }
  .rev-grid .score, .rev-grid .chips { grid-column: span 12; }
  .f-row { grid-template-columns: minmax(0,1fr); }
  .quote { padding: 26px 22px 22px; }
  .quote-mark { font-size: 68px; right: 16px; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-name { font-size: 22px; }
  .brand-sub { font-size: 10.5px; letter-spacing: .14em; }
  .mast-call { display: none; }
  .foot-in { grid-template-columns: minmax(0,1fr); }
  .foot-in > :first-child { grid-column: span 1; }
  .fab { right: 16px; bottom: 16px; }
}

@media (max-width: 430px) {
  .hero-h { font-size: 40px; }
  .dia-key { padding: 14px 18px 16px; }
  .card-body { padding: 18px 20px 22px; }
  .card-feat .card-body { padding: 20px 20px 24px; }
}

/* ========================================================== REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img { animation: none; }
  .fab { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; }
}
