/* ===========================================================================
   MASON WORX LLC — Exterior Property Services · Homer, Georgia
   ---------------------------------------------------------------------------
   One stylesheet. No frameworks, no utility soup, no scroll libraries.

   Palette is derived from the logo (black bed, bright green shield, silver
   wordmark). The three measured logo hexes are the spine of the token set:
       #187818  strongest saturated green  -> primary / buttons / highlights
       #186018  mid green                  -> rules, gradients, hover
       #184818  darkest green              -> rich green backgrounds
   Everything else is a neutral (bone paper, near-black ink) or a tint of the
   same 120deg hue.

   Contents
     01  tokens
     02  reset + base
     03  type scale
     04  layout primitives (wrap, band, split, head)
     05  buttons, pills, links
     06  header + mobile sheet
     07  hero
     08  run strip
     09  credential strip
     10  numbered service blocks
     11  media frames + own photo + photo break
     12  reviews rail
     13  the flier (document card)
     14  gallery
     15  season grid
     16  process steps
     17  service area
     18  FAQ
     19  quote + forms
     20  page hero (inner pages) + prose
     21  footer + sticky call bar
     22  motion, reveal, reduced motion
     23  utilities + print
   ========================================================================= */

/* ── 01 · tokens ────────────────────────────────────────────────────────── */
:root {
  /* the logo greens, verbatim */
  --g-hi:      #187818;   /* strongest saturated — primary */
  --g-mid:     #186018;   /* mid — rules, gradients */
  --g-deep:    #184818;   /* darkest — rich backgrounds */
  /* tints of the same hue, for legibility on ink */
  --g-bright:  #2ECC2E;
  --g-glow:    #57E257;
  --g-wash:    #E4EFE1;
  --g-wash-2:  #D6E7D2;

  /* neutrals */
  --ink:       #070B07;
  --ink-2:     #0C120C;
  --ink-3:     #121A12;
  --paper:     #F1F3EE;
  --paper-2:   #E7EBE2;
  --bone:      #F7F9F5;
  --text:      #131A13;
  --text-2:    #4A554A;
  --text-3:    #6B776A;
  --on-ink:    #EDF2EA;
  --on-ink-2:  #A9B6A7;
  --on-ink-3:  #7E8B7D;

  --line:      rgba(19, 26, 19, .14);
  --line-2:    rgba(19, 26, 19, .28);
  --line-ink:  rgba(237, 242, 234, .16);
  --line-ink-2:rgba(237, 242, 234, .32);

  /* type */
  --display: 'Archivo Black', 'Arial Black', 'Helvetica Neue', Impact, sans-serif;
  --body:    'Chivo', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* rhythm */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 44px; --s8: 60px; --s9: 84px; --s10: 112px;

  --pad:   20px;
  --maxw:  1240px;
  --maxn:  820px;

  --ease:   cubic-bezier(.22, .61, .36, 1);
  --ease-2: cubic-bezier(.16, .84, .44, 1);

  --hdr-h: 68px;
}

@media (min-width: 760px) {
  :root { --pad: 32px; --hdr-h: 76px; }
}
@media (min-width: 1100px) {
  :root { --pad: 48px; --hdr-h: 84px; }
}

/* ── 02 · reset + base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: .001em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; border: 0; background: var(--paper-2); }

button, input, select, textarea { font: inherit; color: inherit; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--g-hi);
  outline-offset: 3px;
  border-radius: 2px;
}
.ink :focus-visible, .hero :focus-visible, .ftr :focus-visible,
.sheet :focus-visible, .hdr :focus-visible {
  outline-color: var(--g-bright);
}

::selection { background: var(--g-hi); color: #fff; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--on-ink);
  padding: 12px 18px;
  font-weight: 700;
}
.skip:focus { left: 8px; top: 8px; }

/* ── 03 · type scale ────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;           /* Archivo Black ships one weight */
  letter-spacing: -.018em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(38px, 10.4vw, 78px); letter-spacing: -.028em; }
h2 { font-size: clamp(29px, 6.6vw, 50px);  letter-spacing: -.024em; }
h3 { font-size: clamp(20px, 3.7vw, 27px);  letter-spacing: -.018em; line-height: 1.12; }
h4 { font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }

p { margin: 0 0 var(--s4); }
p:last-child { margin-bottom: 0; }

.accent { color: var(--g-hi); }
.ink .accent, .hero .accent, .ftr .accent { color: var(--g-bright); }

.kicker {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--g-mid);
  margin: 0 0 var(--s3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--g-hi);
  flex: none;
}
.ink .kicker, .hero .kicker { color: var(--g-glow); }
.ink .kicker::before, .hero .kicker::before { background: var(--g-bright); }

.lede {
  font-size: clamp(17px, 2.5vw, 20px);
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
}
.ink .lede { color: var(--on-ink); }

.fine { font-size: 13.5px; color: var(--text-3); line-height: 1.5; }
.ink .fine { color: var(--on-ink-3); }

/* ── 04 · layout primitives ─────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.wrap-n { max-width: calc(var(--maxn) + var(--pad) * 2); }

.band {
  padding-block: var(--s9);
  position: relative;
}
.band-tight { padding-block: var(--s8); }
.band-flush { padding-block: 0; }

@media (min-width: 900px) {
  .band { padding-block: var(--s10); }
  .band-tight { padding-block: var(--s9); }
}

.ink {
  background: var(--ink);
  color: var(--on-ink);
}
.ink h1, .ink h2, .ink h3 { color: var(--bone); }
.ink p { color: var(--on-ink-2); }

.paper-2 { background: var(--paper-2); }

.green {
  background:
    radial-gradient(120% 130% at 12% 0%, rgba(24,120,24,.42) 0%, rgba(24,72,24,0) 62%),
    var(--g-deep);
  color: var(--on-ink);
}
.green h2, .green h3 { color: #fff; }
.green p { color: rgba(255,255,255,.82); }

.head { max-width: 44ch; margin-bottom: var(--s7); }
.head p { color: var(--text-2); }
.ink .head p { color: var(--on-ink-2); }

.split { display: grid; gap: var(--s7); }
@media (min-width: 940px) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: clamp(48px, 6vw, 90px);
    align-items: center;
  }
  .split-flip .split-copy { order: 2; }
}

/* hairline rules — the connective tissue instead of card borders */
.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}
.ink .rule { background: var(--line-ink); }

/* ── 05 · buttons, pills, links ─────────────────────────────────────────── */
.btn {
  --btn-bg: var(--g-hi);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 24px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bg);
  border-radius: 2px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .015em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .22s var(--ease), border-color .22s var(--ease),
              color .22s var(--ease), transform .16s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { --btn-bg: var(--g-mid); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-g {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line-2);
}
.btn-g:hover { --btn-bg: transparent; border-color: var(--g-hi); color: var(--g-hi); }

.ink .btn-g, .hero .btn-g, .ftr .btn-g, .sheet .btn-g, .callbar .btn-g {
  --btn-fg: var(--bone);
  border-color: var(--line-ink-2);
}
.ink .btn-g:hover, .hero .btn-g:hover, .ftr .btn-g:hover,
.sheet .btn-g:hover, .callbar .btn-g:hover {
  border-color: var(--g-bright);
  color: var(--g-bright);
}

.btn-sm { min-height: 44px; padding: 0 16px; font-size: 14.5px; }
.btn-full { width: 100%; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 400px) {
  .cta-row { gap: 10px; }
  .cta-row .btn { flex: 1 1 100%; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 7px 15px 7px 13px;
  border: 1px solid var(--line-ink-2);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--on-ink);
  background: rgba(7, 11, 7, .42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--g-bright);
  box-shadow: 0 0 0 4px rgba(46, 204, 46, .2);
  flex: none;
}

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: var(--g-mid);
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: gap .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.tlink .ar { transition: transform .24s var(--ease); }
.tlink:hover { gap: 12px; border-bottom-color: var(--g-hi); color: var(--g-hi); }
.tlink:hover .ar { transform: translateX(3px); }
.ink .tlink, .green .tlink { color: var(--g-bright); }
.ink .tlink:hover, .green .tlink:hover { border-bottom-color: var(--g-bright); color: var(--g-glow); }

/* ── 06 · header + mobile sheet ─────────────────────────────────────────── */
.hdr {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--ink);
  border-bottom: 1px solid var(--line-ink);
  transition: transform .3s var(--ease);
}
.hdr.up { transform: translateY(-100%); }
.hdr.solid { box-shadow: 0 12px 34px rgba(0, 0, 0, .28); }

.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  min-height: var(--hdr-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}
/* THE LOGO — a black-bedded PNG. `screen` melts the bed and its vignette into
   the near-black bar with no plate, no box, no visible edge. */
.brand-logo {
  height: 46px;
  width: auto;
  mix-blend-mode: screen;
  background: transparent;
  flex: none;
}
@media (min-width: 760px) { .brand-logo { height: 52px; } }

.brand-wm {
  display: none;
  line-height: 1;
}
@media (min-width: 480px) { .brand-wm { display: block; } }
.brand-1 {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -.02em;
  color: var(--bone);
}
.brand-2 {
  display: block;
  margin-top: 4px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--g-bright);
}

.nav {
  display: none;
  align-items: center;
  gap: 3px;
  margin-inline: auto;
}
.nav a {
  display: inline-block;
  padding: 9px 11px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--on-ink-2);
  border-radius: 2px;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav a:hover { color: var(--bone); background: rgba(237, 242, 234, .07); }
.nav a[aria-current="page"] { color: var(--g-bright); }
@media (min-width: 1120px) { .nav { display: flex; } }

.hdr-right { display: flex; align-items: center; gap: 10px; flex: none; }
.hdr-cta { display: none; }
@media (min-width: 620px) { .hdr-cta { display: inline-flex; } }

.burger {
  width: 46px; height: 46px;
  display: grid;
  place-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--line-ink-2);
  border-radius: 2px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--bone);
  transition: transform .2s var(--ease);
}
.burger:hover { border-color: var(--g-bright); }
@media (min-width: 1120px) { .burger { display: none; } }

.sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--ink);
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.sheet.open { visibility: visible; opacity: 1; transform: none; }
.sheet-top { display: flex; align-items: center; justify-content: space-between; }
.sheet-x {
  width: 46px; height: 46px;
  background: none;
  border: 1px solid var(--line-ink-2);
  border-radius: 2px;
  color: var(--bone);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.sheet-x:hover { border-color: var(--g-bright); color: var(--g-bright); }
.sheet nav { display: flex; flex-direction: column; }
.sheet nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-ink);
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -.02em;
  color: var(--bone);
  text-decoration: none;
}
.sheet nav a em {
  font-family: var(--body);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g-bright);
}
.sheet nav a:hover { color: var(--g-bright); }
.sheet-foot { display: grid; gap: 10px; margin-top: auto; padding-top: var(--s5); }

/* ── 07 · hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--on-ink);
  min-height: clamp(600px, 92svh, 940px);
  display: flex;
  align-items: center;
  padding-block: var(--s9) var(--s8);
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.hero-media video { position: absolute; inset: 0; }
/* the poster still sits underneath — content never waits on the loop */
.hero-media img { animation: kb 34s var(--ease) infinite alternate; }

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(118% 84% at 50% 30%,
      rgba(4, 7, 4, .94) 0%,
      rgba(4, 7, 4, .84) 30%,
      rgba(4, 7, 4, .60) 58%,
      rgba(4, 7, 4, .74) 100%),
    linear-gradient(to bottom,
      rgba(7, 11, 7, .72) 0%,
      rgba(7, 11, 7, .18) 34%,
      rgba(7, 11, 7, .52) 74%,
      rgba(7, 11, 7, .95) 100%);
}

.hero-in { position: relative; }
.hero-block {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s5);
}

.hero-logo {
  height: 112px;
  width: auto;
  mix-blend-mode: screen;
  background: transparent;
}
@media (min-width: 760px) { .hero-logo { height: 138px; } }

.hero-block h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero-block h1 .accent { display: block; color: var(--g-bright); }

.hero-sub {
  max-width: 34ch;
  margin: 0;
  font-size: clamp(16px, 2.5vw, 19px);
  line-height: 1.5;
  color: rgba(237, 242, 234, .9);
}

.hero-trust {
  list-style: none;
  margin: var(--s2) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(237, 242, 234, .82);
}
.hero-trust svg { width: 15px; height: 15px; color: var(--g-bright); flex: none; }

.hero-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, transparent, var(--g-bright));
  transform: translateX(-50%);
  opacity: .8;
  animation: cue 2.6s var(--ease) infinite;
}

@keyframes kb {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to   { transform: scale(1.09) translate3d(0, -1.4%, 0); }
}
@keyframes cue {
  0%, 100% { transform: translate(-50%, 0); opacity: .25; }
  50%      { transform: translate(-50%, 8px); opacity: .9; }
}

/* ── 08 · run strip ─────────────────────────────────────────────────────── */
.run {
  background: var(--g-deep);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.run-in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 14px;
  padding-block: 18px;
  font-family: var(--display);
  font-size: clamp(13px, 2.9vw, 17px);
  letter-spacing: -.01em;
}
.run-in a {
  color: #fff;
  text-decoration: none;
  padding-block: 5px;
  border-bottom: 2px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.run-in a:hover { color: var(--g-glow); border-bottom-color: var(--g-glow); }
.run-in .slash { color: rgba(255,255,255,.34); font-family: var(--body); font-weight: 700; }

/* ── 09 · credential strip ──────────────────────────────────────────────── */
.strip { background: var(--bone); border-block: 1px solid var(--line); }
.strip .wrap { padding-block: var(--s7); }
.strip-in {
  display: grid;
  gap: 1px;
  background: var(--line);
}
@media (min-width: 700px) { .strip-in { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .strip-in { grid-template-columns: repeat(4, 1fr); } }

.strip-i {
  background: var(--bone);
  padding: var(--s5) 0;
  display: grid;
  gap: 7px;
  align-content: start;
}
@media (min-width: 700px) {
  .strip-i { padding: var(--s4) var(--s5); }
  .strip-i:first-child { padding-left: 0; }
}
.strip-i svg { width: 22px; height: 22px; color: var(--g-hi); }
.strip-i b {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -.02em;
}
.strip-i span { font-size: 14.5px; line-height: 1.5; color: var(--text-2); }

/* ── 10 · numbered service blocks ───────────────────────────────────────── */
.blocks { display: grid; gap: 0; }

.block {
  display: grid;
  gap: var(--s5);
  padding-block: var(--s7);
  border-top: 1px solid var(--line-ink);
  align-items: center;
}
.block:first-child { border-top: 0; padding-top: 0; }
.block:last-child { padding-bottom: 0; }

@media (min-width: 940px) {
  .block {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.14fr);
    gap: clamp(40px, 5vw, 76px);
    padding-block: var(--s8);
  }
  .block:nth-child(even) .block-copy { order: 2; }
}

.block-copy { position: relative; }
.block-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(44px, 12vw, 78px);
  line-height: .82;
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(46, 204, 46, .46);
  margin-bottom: var(--s3);
}
.block-copy h3 { margin-bottom: var(--s3); font-size: clamp(24px, 5vw, 36px); }
.block-copy p { max-width: 46ch; }

.block-tags {
  list-style: none;
  margin: var(--s4) 0 var(--s5);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 8px;
}
.block-tags li {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--on-ink-2);
  padding: 5px 11px;
  border: 1px solid var(--line-ink-2);
  border-radius: 999px;
}

/* ── 11 · media frames + own photo + photo break ────────────────────────── */
/* Frameless by policy: no card chrome around a photograph. The only thing a
   picture gets is its aspect ratio and, at most, a hairline underline. */
.frame {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.ink .frame, .green .frame { background: var(--ink-3); }

.f-16x9 { aspect-ratio: 16 / 9; }
.f-4x3  { aspect-ratio: 4 / 3; }
.f-3x2  { aspect-ratio: 3 / 2; }
.f-1x1  { aspect-ratio: 1 / 1; }
.f-4x5  { aspect-ratio: 4 / 5; }
.f-3x4  { aspect-ratio: 3 / 4; }

.frame img { transition: transform .7s var(--ease-2); }
a:hover > .frame img,
.block:hover .block-media .frame img { transform: scale(1.035); }

/* offset photo pair — the intro composition */
.stack { position: relative; padding-bottom: 52px; padding-right: 42px; }
.stack .a { width: 100%; }
.stack .b {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  max-width: 230px;
  outline: 6px solid var(--paper);
}
.paper-2 .stack .b { outline-color: var(--paper-2); }
.stack .tag {
  position: absolute;
  left: 0;
  bottom: 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
}
@media (min-width: 940px) {
  .stack { padding-bottom: 64px; padding-right: 56px; }
}

.own figure { margin: 0; }
.own figcaption {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--on-ink-3);
}

/* the mid-page photo moment */
.break {
  position: relative;
  isolation: isolate;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-block: var(--s9) var(--s8);
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.break-media { position: absolute; inset: 0; z-index: -2; }
.break-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kb 40s var(--ease) infinite alternate;
}
.break::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top,
    rgba(7, 11, 7, .94) 0%,
    rgba(7, 11, 7, .62) 42%,
    rgba(7, 11, 7, .30) 76%,
    rgba(7, 11, 7, .58) 100%);
}
.break-in { max-width: 720px; }
.break-in h2 { color: #fff; margin-bottom: var(--s4); }
.break-in p { color: rgba(237, 242, 234, .88); max-width: 48ch; }

/* ── 12 · reviews rail ──────────────────────────────────────────────────── */
.revs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s5);
  margin-bottom: var(--s6);
}
.rail-ctl { display: none; gap: 8px; flex: none; }
@media (min-width: 760px) { .rail-ctl { display: flex; } }
.rail-ctl button {
  width: 46px; height: 46px;
  display: grid;
  place-content: center;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.rail-ctl button svg { width: 18px; height: 18px; }
.rail-ctl button:hover { border-color: var(--g-hi); color: var(--g-hi); }

.revs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(268px, 84%);
  gap: 1px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  padding-bottom: 6px;
  background: var(--line);
}
@media (min-width: 700px)  { .revs { grid-auto-columns: minmax(300px, 46%); } }
@media (min-width: 1040px) { .revs { grid-auto-columns: minmax(320px, 31.4%); } }

.rev {
  scroll-snap-align: start;
  margin: 0;
  padding: var(--s5) var(--s5) var(--s5) 0;
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.paper-2 .rev { background: var(--paper); }
@media (min-width: 700px) { .rev { padding-left: var(--s5); } }
@media (min-width: 700px) { .rev:first-child { padding-left: 0; } }

.stars { display: flex; gap: 3px; }
.stars svg { width: 15px; height: 15px; color: var(--g-hi); }

.rev blockquote {
  margin: 0;
  font-size: 15.8px;
  line-height: 1.58;
  color: var(--text);
}
.rev cite {
  margin-top: auto;
  padding-top: var(--s3);
  font-style: normal;
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rev cite .g {
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-3);
}

.revs-note {
  margin-top: var(--s4);
  font-size: 13px;
  color: var(--text-3);
}

/* ── 13 · the flier (document, not a photograph) ────────────────────────── */
.flier-grid { display: grid; gap: var(--s7); align-items: center; }
@media (min-width: 940px) {
  .flier-grid { grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); gap: clamp(44px, 6vw, 84px); }
}
.flier-shot {
  position: relative;
  display: grid;
  place-items: center;
  padding: var(--s5) 0;
}
.flier-shot::before {
  content: "";
  position: absolute;
  inset: -6%;
  background: radial-gradient(58% 52% at 50% 48%, rgba(24,120,24,.34) 0%, rgba(24,120,24,0) 70%);
  pointer-events: none;
}
/* c_limit + contain: a document is never cropped and never boxed */
.flier-shot img {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.flier-list {
  list-style: none;
  margin: var(--s5) 0 var(--s6);
  padding: 0;
  display: grid;
  gap: 0;
}
.flier-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-ink);
  font-size: 15.5px;
  color: var(--on-ink-2);
}
.flier-list li:first-child { border-top: 1px solid var(--line-ink); }
.flier-list b {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: -.01em;
  color: var(--bone);
  min-width: 148px;
  flex: none;
}

/* ── 14 · gallery ───────────────────────────────────────────────────────── */
.gal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: var(--s6);
}
@media (min-width: 720px)  { .gal { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1060px) { .gal { grid-template-columns: repeat(4, 1fr); } }

.gal a {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink-3);
  text-decoration: none;
}
.gal a.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gal img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-2), filter .4s var(--ease);
}
.gal a:hover img { transform: scale(1.05); }
.gal a::after {
  content: attr(data-label);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 14px 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, rgba(7,11,7,.86), rgba(7,11,7,0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.gal a:hover::after,
.gal a:focus-visible::after { opacity: 1; transform: none; }

/* ── 15 · season grid ───────────────────────────────────────────────────── */
.year {
  display: grid;
  gap: 1px;
  background: var(--line-ink);
  border-block: 1px solid var(--line-ink);
}
@media (min-width: 620px)  { .year { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .year { grid-template-columns: repeat(4, 1fr); } }

.season {
  background: var(--ink);
  padding: var(--s5) 0;
  display: grid;
  gap: 8px;
  align-content: start;
}
@media (min-width: 620px) {
  .season { padding: var(--s6) var(--s5); }
  .season:first-child { padding-left: 0; }
}
.s-name {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--g-bright);
}
.season h3 { font-size: 20px; color: var(--bone); }
.season p { font-size: 14.5px; line-height: 1.55; margin: 0; }

/* ── 16 · process ───────────────────────────────────────────────────────── */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: step;
}
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
}
.step {
  display: flex;
  gap: var(--s4);
  padding: var(--s5) 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.paper-2 .step { background: var(--paper-2); }
.step:first-child { border-top: 0; }
@media (min-width: 900px) {
  .step {
    flex-direction: column;
    gap: var(--s3);
    padding: var(--s6) var(--s5) var(--s6) 0;
    border-top: 0;
  }
  .step + .step { padding-left: var(--s5); }
}
.step .n {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--g-hi);
  flex: none;
  min-width: 42px;
}
.step h3 { font-size: 18px; margin-bottom: 5px; }
.step p { font-size: 14.8px; line-height: 1.55; color: var(--text-2); margin: 0; }

/* ── 17 · service area ──────────────────────────────────────────────────── */
.towns {
  list-style: none;
  margin: var(--s5) 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 8px;
}
.towns li {
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 13px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text-2);
}
.towns li.home {
  background: var(--g-hi);
  border-color: var(--g-hi);
  color: #fff;
}

.facts { list-style: none; margin: var(--s5) 0; padding: 0; display: grid; gap: 0; }
.facts li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  line-height: 1.5;
}
.facts li:first-child { border-top: 1px solid var(--line); }
.facts svg { width: 19px; height: 19px; color: var(--g-hi); flex: none; margin-top: 3px; }
.facts b { font-weight: 700; }
.ink .facts li, .green .facts li { border-color: var(--line-ink); color: var(--on-ink-2); }
.ink .facts li:first-child, .green .facts li:first-child { border-top-color: var(--line-ink); }
.ink .facts svg, .green .facts svg { color: var(--g-bright); }
.ink .facts b, .green .facts b { color: var(--bone); }

/* ── 18 · FAQ ───────────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s4);
  padding: 19px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(16.5px, 3.1vw, 19px);
  letter-spacing: -.017em;
  line-height: 1.26;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 15px; height: 15px;
  flex: none;
  margin-top: 5px;
  background: currentColor;
  transition: transform .24s var(--ease);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.6' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.6' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center / contain no-repeat;
  color: var(--g-hi);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--g-mid); }
.faq details p {
  margin: 0;
  padding: 0 0 20px;
  max-width: 62ch;
  font-size: 15.5px;
  color: var(--text-2);
}

/* ── 19 · quote + forms ─────────────────────────────────────────────────── */
.quote {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--on-ink);
  overflow: hidden;
}
.quote-media { position: absolute; inset: 0; z-index: -2; }
.quote-media img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.quote::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(90% 70% at 78% 20%, rgba(24,120,24,.30) 0%, rgba(24,72,24,0) 62%),
    linear-gradient(to bottom, rgba(7,11,7,.93), rgba(7,11,7,.97));
}
.quote-grid { display: grid; gap: var(--s7); }
@media (min-width: 980px) {
  .quote-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: clamp(44px, 5.5vw, 82px);
    align-items: start;
  }
}
.quote-aside h2 { color: #fff; margin-bottom: var(--s4); }

.callcard {
  display: grid;
  gap: 5px;
  padding: var(--s5) 0;
  margin-top: var(--s5);
  border-block: 1px solid var(--line-ink);
}
.callcard .lbl {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--g-bright);
}
.callcard .tel {
  font-family: var(--display);
  font-size: clamp(28px, 7vw, 42px);
  letter-spacing: -.03em;
  color: #fff;
  text-decoration: none;
  line-height: 1.05;
}
.callcard .tel:hover { color: var(--g-bright); }
.callcard .mail {
  font-size: 15px;
  color: var(--on-ink-2);
  text-decoration: none;
  word-break: break-all;
}
.callcard .mail:hover { color: var(--g-bright); }

.formwrap {
  background: rgba(237, 242, 234, .045);
  border: 1px solid var(--line-ink);
  border-radius: 2px;
  padding: var(--s5);
}
@media (min-width: 700px) { .formwrap { padding: var(--s6); } }
.formwrap h3 { color: var(--bone); margin-bottom: 5px; }
.formwrap .sub { font-size: 14.5px; color: var(--on-ink-2); margin-bottom: var(--s5); }

.form-grid { display: grid; gap: var(--s4); }
.f-2 { display: grid; gap: var(--s4); }
@media (min-width: 560px) { .f-2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 7px; }
.field label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-ink-2);
}
.field .req { color: var(--g-bright); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  background: rgba(7, 11, 7, .55);
  border: 1px solid var(--line-ink-2);
  border-radius: 2px;
  color: var(--bone);
  font-size: 16px;      /* 16px keeps iOS from zooming the page on focus */
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; line-height: 1.55; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23A9B6A7' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 42px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--on-ink-3); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--g-bright);
  background: rgba(7, 11, 7, .78);
  outline: none;
}
.field select option { background: var(--ink-2); color: var(--bone); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-msg {
  margin: var(--s4) 0 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--on-ink-2);
  min-height: 1px;
}
.form-msg.ok  { color: var(--g-glow); font-weight: 600; }
.form-msg.err { color: #FF9B8A; font-weight: 600; }
.form-fine { margin-top: var(--s3); font-size: 13px; color: var(--on-ink-3); }
.paper-2 .form-fine, .band .form-fine { color: var(--text-3); }

/* ── 20 · inner page hero + prose ───────────────────────────────────────── */
.phero {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--on-ink);
  padding-block: var(--s8);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.phero-media { position: absolute; inset: 0; z-index: -2; }
.phero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kb 40s var(--ease) infinite alternate;
}
.phero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top,
    rgba(7,11,7,.95) 0%, rgba(7,11,7,.66) 46%, rgba(7,11,7,.42) 100%);
}
.phero-in { max-width: 780px; }
.phero h1 {
  font-size: clamp(33px, 8vw, 62px);
  color: #fff;
  margin-bottom: var(--s4);
}
.phero p { color: rgba(237, 242, 234, .88); max-width: 46ch; }
.phero .cta-row { margin-top: var(--s5); }

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: var(--s4);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-ink-3);
}
.crumb a { color: var(--g-bright); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

.prose { max-width: 66ch; }
.prose h2 { margin-block: var(--s7) var(--s4); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-block: var(--s6) var(--s3); }
.prose p { color: var(--text-2); }
.prose ul { margin: var(--s4) 0; padding-left: 0; list-style: none; }
.prose ul li {
  position: relative;
  padding: 9px 0 9px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  color: var(--text-2);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 19px;
  width: 9px; height: 2px;
  background: var(--g-hi);
}

.cols { display: grid; gap: var(--s6); }
@media (min-width: 800px) { .cols { grid-template-columns: 1fr 1fr; gap: var(--s7); } }

/* small service index cards — hairline rows, no boxes */
.svc-rows { border-top: 1px solid var(--line); }
.svc-row {
  display: grid;
  gap: var(--s4);
  padding-block: var(--s6);
  border-bottom: 1px solid var(--line);
  align-items: center;
  text-decoration: none;
}
@media (min-width: 760px) {
  .svc-row { grid-template-columns: 96px minmax(0, 1fr) minmax(0, 300px); gap: var(--s6); }
}
.svc-row .idx {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--g-hi);
}
.svc-row h3 { margin-bottom: 7px; transition: color .2s var(--ease); }
.svc-row p { font-size: 15px; color: var(--text-2); margin: 0; max-width: 52ch; }
.svc-row .frame { aspect-ratio: 3 / 2; }
.svc-row:hover h3 { color: var(--g-hi); }

/* ── 21 · footer + sticky call bar ──────────────────────────────────────── */
.ftr {
  background: var(--ink);
  color: var(--on-ink-2);
  padding-block: var(--s8) var(--s6);
  padding-bottom: max(var(--s6), calc(env(safe-area-inset-bottom) + 82px));
}
@media (min-width: 900px) { .ftr { padding-bottom: var(--s6); } }

.ftr-grid { display: grid; gap: var(--s6); }
@media (min-width: 640px)  { .ftr-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .ftr-grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: var(--s7); } }
.ftr p { font-size: 14.5px; color: var(--on-ink-2); max-width: 34ch; }
.ftr h4 { color: var(--bone); margin-bottom: var(--s4); }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ftr li { font-size: 14.5px; }
.ftr a { color: var(--on-ink-2); text-decoration: none; }
.ftr a:hover { color: var(--g-bright); }
.ftr-tel {
  font-family: var(--display);
  font-size: 21px !important;
  letter-spacing: -.02em;
  color: var(--bone) !important;
}
.ftr-tel:hover { color: var(--g-bright) !important; }
.ftr-base {
  margin-top: var(--s7);
  padding-top: var(--s5);
  border-top: 1px solid var(--line-ink);
  display: flex;
  flex-wrap: wrap;
  gap: 10px var(--s5);
  justify-content: space-between;
  font-size: 13px;
  color: var(--on-ink-3);
}

.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 8px;
  padding: 10px var(--pad);
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: rgba(7, 11, 7, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-ink);
  transform: translateY(110%);
  transition: transform .3s var(--ease);
}
.callbar.show { transform: none; }
.callbar .btn { min-height: 48px; padding: 0 10px; font-size: 14.5px; }
@media (min-width: 900px) { .callbar { display: none; } }
@media (max-width: 400px) {
  .callbar { padding-inline: 10px; gap: 6px; }
  .callbar .btn { padding: 0 6px; font-size: 13.5px; }
  .callbar .btn svg { width: 16px; height: 16px; }
}

/* ── 22 · motion, reveal, reduced motion ────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .62s var(--ease), transform .62s var(--ease);
}
.rv.in { opacity: 1; transform: none; }
.rv-2 { transition-delay: .09s; }
.rv-3 { transition-delay: .18s; }
.rv-4 { transition-delay: .27s; }
html:not(.js) .rv { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .rv { opacity: 1; transform: none; }
  /* the ambient loop is decoration: the poster carries the hero instead */
  .hero-media video { display: none; }
  .hero-media img, .break-media img, .phero-media img { animation: none; }
  .hero-cue { display: none; }
}

/* ── 23 · utilities ─────────────────────────────────────────────────────── */
.mt-3 { margin-top: var(--s3); }
.mt-4 { margin-top: var(--s4); }
.mt-5 { margin-top: var(--s5); }
.mt-6 { margin-top: var(--s6); }
.vh {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ── 24 · dumpster spec panel — a typographic frame where block 07 has no photo ── */
.ink .frame.spec {
  display: grid;
  align-content: end;
  gap: var(--s3);
  padding: clamp(22px, 4vw, 40px);
  background:
    radial-gradient(70% 60% at 85% 12%, rgba(46, 204, 46, .28) 0%, rgba(46, 204, 46, 0) 70%),
    linear-gradient(160deg, var(--g-deep) 0%, #0C2A0C 100%);
  color: var(--on-ink);
}
.spec-num {
  font-family: var(--display);
  font-size: clamp(88px, 22vw, 170px);
  line-height: .8;
  letter-spacing: -.05em;
  color: var(--g-bright);
}
.spec-num small {
  display: block;
  margin-top: 10px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone);
}
.spec ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 14.5px;
  color: var(--on-ink-2);
}
.spec li { display: flex; align-items: center; gap: 10px; }
.spec li::before { content: ""; width: 18px; height: 2px; background: var(--g-bright); flex: none; }

@media print {
  .hdr, .sheet, .callbar, .hero-media, .break-media, .quote-media, .hero-cue { display: none !important; }
  body { background: #fff; color: #000; }
  .ink, .green, .hero, .quote, .break { background: #fff !important; color: #000 !important; }
}
