/* ==========================================================================
   Right by Me AC
   --------------------------------------------------------------------------
   Palette rules that must not be broken:
     - NAVY carries every piece of body text. Cyan, green and amber are
       SURFACE colours only. Bright cyan on white is ~2:1 contrast and kelly
       green is ~2.7:1 - both fail the 4.5:1 minimum for body copy.
     - --teal-text and --green-text are the darkened variants for any place a
       brand colour must appear AS TEXT (links, small labels).
     - Text on amber or green fills is ALWAYS navy, never white.
     - Never encode meaning in green alone. Deuteranopia flattens green toward
       grey, so pair it with an icon or a word.
     - Red is reserved for the emergency band. Using it anywhere else makes it
       stop meaning anything.
   The warm sand ground (--bg) is deliberate: the same three brand colours on
   pure white read like a tech company. On warm off-white they read local.
   ========================================================================== */

:root {
  --cyan:       #0E9BB5;
  --green:      #57B336;
  --navy:       #16294F;
  --amber:      #E39B2C;
  --red:        #C63A2A;

  --teal-text:  #0A6E7E;
  --green-text: #2E6B2A;

  --bg:         #F8F5EF;
  --surface:    #FFFFFF;
  --surface-2:  #F1EDE4;
  --ink:        #16294F;
  --ink-soft:   #4A4742;
  --line:       #DDD6C9;

  --wrap: 1180px;
  --r: 12px;
  --r-lg: 18px;
  --shadow: 0 1px 2px rgba(22,41,79,.06), 0 8px 24px rgba(22,41,79,.07);
  --shadow-lg: 0 2px 4px rgba(22,41,79,.08), 0 18px 48px rgba(22,41,79,.12);

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-text); }
a:hover { color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3 { line-height: 1.18; letter-spacing: -0.015em; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.16rem; font-weight: 700; }
p  { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.sr-only, .skip:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip:focus {
  position: fixed; top: 8px; left: 8px; z-index: 999; width: auto; height: auto;
  clip: auto; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.small { font-size: .88rem; color: var(--ink-soft); }
.hp { display: none !important; }

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  padding: .72em 1.35em; border-radius: 999px; border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: .92em 1.7em; font-size: 1.06rem; }

/* Amber is the primary CTA: it is the heating half of HVAC, it sits opposite
   cyan on the wheel so it pops, and it stays warm without shouting like red. */
.btn-call { background: var(--amber); color: var(--navy); box-shadow: var(--shadow); }
.btn-call:hover { background: #d18f21; color: var(--navy); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }

/* ------------------------------------------------------------------- header */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,245,239,.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-inner {
  display: flex; align-items: center; gap: 16px;
  min-height: 74px; flex-wrap: wrap;
}
.brand { flex: 0 0 auto; margin-right: auto; }
.brand img { width: 190px; height: auto; }

.nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav a {
  display: block; padding: .45em .7em; border-radius: 8px;
  color: var(--navy); text-decoration: none; font-weight: 600; font-size: .95rem;
}
.nav a:hover { background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--teal-text); box-shadow: inset 0 -3px 0 var(--cyan); }

.navtoggle { display: none; }
.head-call { flex: 0 0 auto; }

@media (max-width: 1080px) {
  .brand img { width: 160px; }
  .nav a { font-size: .9rem; padding: .45em .5em; }
}
@media (max-width: 900px) {
  .navtoggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; order: 3;
    background: var(--surface); border: 2px solid var(--navy); border-radius: 10px; cursor: pointer;
  }
  .navtoggle-bar, .navtoggle-bar::before, .navtoggle-bar::after {
    content: ""; display: block; width: 20px; height: 2.5px;
    background: var(--navy); border-radius: 2px; position: relative;
  }
  .navtoggle-bar::before { position: absolute; top: -6px; }
  .navtoggle-bar::after  { position: absolute; top: 6px; }
  .head-call { order: 2; padding: .6em 1em; font-size: .95rem; }
  .navwrap { order: 4; flex-basis: 100%; display: none; }
  .navwrap.open { display: block; }
  .nav ul { flex-direction: column; padding-bottom: 12px; }
  .nav a { padding: .7em .6em; border-bottom: 1px solid var(--line); border-radius: 0; }
}
@media (max-width: 420px) {
  .brand img { width: 132px; }
  .head-call { font-size: .85rem; padding: .55em .8em; }
}

/* -------------------------------------------------------------- breadcrumbs */
.crumbs { background: var(--surface-2); border-bottom: 1px solid var(--line); font-size: .86rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4em; list-style: none; margin: 0; padding: 10px 0; }
.crumbs li + li::before { content: "/"; margin-right: .4em; color: var(--ink-soft); }
.crumbs a { color: var(--teal-text); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink-soft); }

/* --------------------------------------------------------------------- hero */
.hero {
  background:
    radial-gradient(1100px 460px at 88% -12%, rgba(14,155,181,.16), transparent 60%),
    radial-gradient(760px 380px at 4% 8%, rgba(87,179,54,.13), transparent 62%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid; grid-template-columns: 1.06fr .94fr; gap: 48px; align-items: center;
  padding-block: clamp(40px, 6vw, 76px);
}
.kicker {
  display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal-text);
  background: rgba(14,155,181,.12); padding: .42em .85em; border-radius: 999px; margin: 0 0 1em;
}
.lede { font-size: clamp(1.05rem, 1.9vw, 1.22rem); color: var(--ink-soft); max-width: 60ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.6em; }
.hero-note {
  margin-top: 1.4em; font-size: .95rem; color: var(--ink-soft);
  padding-left: 14px; border-left: 4px solid var(--green);
}
.hero-img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-media { order: -1; }
}

.page-head { padding-block: clamp(34px, 5vw, 60px); border-bottom: 1px solid var(--line); }

/* ------------------------------------------------------------------ sections */
section > .wrap { padding-block: clamp(38px, 5.5vw, 72px); }
.band { background: var(--surface); border-block: 1px solid var(--line); }
.band-quiet { background: var(--surface-2); border-block: 1px solid var(--line); }
.sec-lede { font-size: 1.06rem; color: var(--ink-soft); max-width: 68ch; margin-bottom: 1.8em; }

/* -------------------------------------------------------------------- trust */
.trust { background: var(--navy); color: #fff; }
.trust .wrap { padding-block: clamp(30px, 4vw, 48px); }
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 26px; list-style: none; margin: 0; padding: 0;
}
.trust-grid li { display: flex; flex-direction: column; gap: .4em; }
.trust-grid strong {
  font-size: 1.02rem; color: #fff;
  padding-bottom: .35em; border-bottom: 3px solid var(--green); align-self: flex-start;
}
.trust-grid span { font-size: .93rem; color: #C9D3E4; line-height: 1.6; }

/* ------------------------------------------------------------ service cards */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 20px; }
.svc-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.band .svc-card { background: var(--bg); }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--cyan); }
.svc-card h3 { color: var(--navy); }
.svc-card p { color: var(--ink-soft); font-size: .96rem; margin-bottom: .8em; }
.svc-more { color: var(--teal-text); font-weight: 700; font-size: .92rem; }

/* ----------------------------------------------------------------- symptoms */
.sym-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.sym {
  background: var(--bg); border: 1px solid var(--line);
  border-left: 5px solid var(--cyan); border-radius: var(--r); padding: 22px 24px;
}
.sym h3 { color: var(--navy); margin-bottom: .4em; }
.sym p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* -------------------------------------------------------------------- split */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.split-reverse .split-media { order: 2; }
.split-media img { border-radius: var(--r-lg); box-shadow: var(--shadow); width: 100%; }
.split-note {
  font-size: .93rem; color: var(--ink-soft);
  border-left: 4px solid var(--cyan); padding-left: 14px; margin-top: 1.3em;
}
@media (max-width: 860px) {
  .split-grid { grid-template-columns: 1fr; gap: 28px; }
  .split-reverse .split-media { order: 0; }
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 780px) { .two-col { grid-template-columns: 1fr; gap: 26px; } }

/* -------------------------------------------------------------------- lists */
.ticks, .checklist { padding-left: 0; margin: 0 0 1em; }
.ticks { list-style: none; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: .78em; font-size: .98rem; }
/* Icon + colour, never colour alone. */
.ticks li::before {
  content: "\2713"; position: absolute; left: 0; top: -1px;
  color: var(--green-text); font-weight: 900; font-size: 1.05rem;
}
.trust .ticks li::before, .callout-red .ticks li::before { color: inherit; }
.callout-red .ticks li::before { content: "\2192"; }
.checklist { padding-left: 22px; }
.checklist li { margin-bottom: .9em; }

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: .6em 0 0; }
.chip-list li {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .35em .95em; font-size: .89rem; color: var(--ink-soft);
}
.band .chip-list li { background: var(--bg); }

/* -------------------------------------------------------------------- steps */
.steps { display: grid; gap: 22px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-n {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: var(--cyan); color: #fff; font-weight: 800; font-size: 1.15rem;
  display: grid; place-items: center;
}
.step h3 { margin-bottom: .3em; }
.step p { color: var(--ink-soft); font-size: .97rem; margin-bottom: .5em; }

/* ------------------------------------------------------------------ pricing */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }
.pricebox {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow);
}
.pricebox h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: .8em; }
.ptable { width: 100%; border-collapse: collapse; }
.ptable th, .ptable td { text-align: left; padding: .62em 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.ptable th { font-weight: 600; color: var(--ink-soft); padding-right: 14px; }
.ptable td { text-align: right; font-weight: 700; color: var(--navy); white-space: nowrap; }
.ptable tr:last-child th, .ptable tr:last-child td { border-bottom: 0; }
.pnote { font-size: .87rem; color: var(--ink-soft); margin: 1em 0 0; font-style: italic; }

.ptable-wide { background: var(--surface); border-radius: var(--r); overflow: hidden; }
.ptable-wide thead th { background: var(--navy); color: #fff; padding: .8em 1em; font-weight: 700; }
.ptable-wide tbody th, .ptable-wide tbody td { padding: .8em 1em; text-align: left; white-space: normal; }
.ptable-wide tbody td { font-weight: 600; }

/* -------------------------------------------------------------------- plans */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; margin-bottom: 1.8em; }
.plan {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow);
}
.plan-feature { border: 2px solid var(--cyan); box-shadow: var(--shadow-lg); }
.plan h3 { color: var(--navy); }
.plan-price { font-size: 2.5rem; font-weight: 800; color: var(--navy); margin: .1em 0 0; line-height: 1; }
.plan-price span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.plan-alt { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.2em; }

/* ----------------------------------------------------------------- callouts */
.callout { border-radius: var(--r-lg); padding: 26px 28px; margin: 1.5em 0; }
.callout > :last-child { margin-bottom: 0; }
.callout h2 { font-size: 1.4rem; }
.callout h3 { margin-bottom: .6em; }
.callout-cyan  { background: rgba(14,155,181,.10); border: 1px solid rgba(14,155,181,.35); }
.callout-amber { background: rgba(227,155,44,.13); border: 1px solid rgba(227,155,44,.42); }
.callout-green { background: rgba(87,179,54,.11); border: 1px solid rgba(87,179,54,.38); }
.callout-red   { background: rgba(198,58,42,.09); border: 1px solid rgba(198,58,42,.32); }
.callout-red h3 { color: #9A2E20; }
.callout-green h3 { color: var(--green-text); }

/* -------------------------------------------------------------------- areas */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.area-grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.area-card {
  display: block; text-decoration: none; color: inherit; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
  transition: transform .14s ease, box-shadow .14s ease;
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.area-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.area-card h2, .area-card h3 { margin: 20px 22px .35em; color: var(--navy); }
.area-card p { margin: 0 22px; color: var(--ink-soft); font-size: .94rem; }
.area-card .svc-more { display: block; margin: .9em 22px 22px; }
.area-more { margin-top: 26px; }

/* --------------------------------------------------------------------- team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.team-card { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-card figcaption { padding: 20px 22px 24px; }
.team-card h3 { margin-bottom: .1em; }
.team-role { color: var(--teal-text); font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .6em; }
.team-card p:last-child { color: var(--ink-soft); font-size: .93rem; margin: 0; }

.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 22px; }
.cred { background: var(--bg); border: 1px solid var(--line); border-top: 4px solid var(--green); border-radius: var(--r); padding: 22px 24px; }
.cred h3 { color: var(--navy); }
.cred p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ------------------------------------------------------------------ reviews */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review {
  margin: 0; background: var(--surface); border: 1px solid var(--line);
  border-left: 5px solid var(--amber); border-radius: var(--r); padding: 24px 26px;
}
.review p { font-size: 1rem; color: var(--ink); }
.review cite { font-style: normal; font-weight: 700; color: var(--ink-soft); font-size: .9rem; }
.review-placeholder { border-left-style: dashed; opacity: .8; }
.review-placeholder p { color: var(--ink-soft); font-style: italic; }

/* ---------------------------------------------------------------------- FAQ */
.faq { background: var(--surface); border-block: 1px solid var(--line); }
.faq-list { display: grid; gap: 12px; max-width: 900px; }
.faq-item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--cyan); flex: 0 0 auto; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:hover { background: var(--surface-2); }
.faq-a { padding: 0 22px 20px; color: var(--ink-soft); font-size: .97rem; }
.faq-a > :last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------ contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 34px; } }
.contact-phone {
  display: block; text-decoration: none; background: var(--navy); color: #fff;
  border-radius: var(--r-lg); padding: 26px 28px; margin-bottom: 24px; box-shadow: var(--shadow);
}
.contact-phone span { display: block; font-size: .88rem; text-transform: uppercase; letter-spacing: .09em; color: #A9BCDB; }
.contact-phone strong { display: block; font-size: clamp(1.7rem, 4vw, 2.3rem); line-height: 1.2; margin-top: .18em; }
.contact-phone:hover { background: #1D3665; color: #fff; }
.contact-facts { list-style: none; padding: 0; margin: 0 0 1.5em; }
.contact-facts li { padding: .62em 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.contact-facts strong { display: inline-block; min-width: 118px; color: var(--navy); }

.lead-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow); }
.fld { margin-bottom: 16px; }
.fld label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .35em; color: var(--navy); }
.fld .opt { font-weight: 400; color: var(--ink-soft); }
.fld input, .fld select, .fld textarea {
  width: 100%; font: inherit; font-size: 1rem; padding: .68em .85em;
  border: 2px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--ink);
}
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--cyan); outline: none; box-shadow: 0 0 0 3px rgba(14,155,181,.18); }
.form-note { font-size: .9rem; color: var(--ink-soft); margin: 1em 0 0; }
.form-disabled { margin-top: 0; }

/* --------------------------------------------------------------- CTA bands */
.cta-band { background: var(--cyan); color: #fff; }
.cta-band.cta-emergency { background: var(--navy); }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap; padding-block: clamp(34px, 4.5vw, 52px);
}
.cta-inner h2 { color: #fff; margin-bottom: .25em; }
.cta-inner p { color: rgba(255,255,255,.9); margin: 0; max-width: 54ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.75); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--navy); }

/* ------------------------------------------------------------------- footer */
.site-foot { background: var(--navy); color: #C9D3E4; }
.foot-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 38px;
  padding-block: clamp(40px, 5vw, 62px);
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-col h2 { font-size: .84rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 1em; }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: .58em; font-size: .94rem; }
.foot-col a { color: #C9D3E4; text-decoration: none; }
.foot-col a:hover { color: #fff; text-decoration: underline; }
.foot-brand img { width: 170px; margin-bottom: 14px; }
.foot-tag { font-weight: 700; color: #fff; font-size: 1.05rem; margin-bottom: .8em; }
.foot-lic { font-size: .85rem; line-height: 1.5; }
.lic-no { color: #fff; font-weight: 700; }
.foot-phone { font-size: 1.28rem; font-weight: 800; color: #fff !important; }
.foot-hours { color: #9FB0CC; font-size: .88rem; margin-top: .4em; }
.foot-legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.14); padding-block: 22px;
  font-size: .85rem; color: #9FB0CC;
}
.foot-legal p { margin: 0; }

/* -------------------------------------------------------------------- print */
@media print {
  .site-head, .cta-band, .navtoggle, .hero-actions { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
  .site-foot { background: #fff; color: #000; border-top: 2px solid #000; }
  .foot-col a, .foot-phone, .foot-tag { color: #000 !important; }
}
