/* ═══════════════════════════════════════════════════════════════
   Insurance Advantage of Ocala
   Palette drawn from Marion County pasture: live oak, limestone,
   Florida sun. Signature element: the four-board fence.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --oak:       #1B3A2F;   /* deep live-oak green — dark panels */
  --oak-deep:  #12211B;   /* ink */
  --pasture:   #3E6B54;   /* mid green */
  --limestone: #F4F6F2;   /* page ground */
  --board:     #FFFFFF;   /* fence board */
  --sun:       #E9A527;   /* the only accent */
  --sun-warm:  #F5C25E;
  --muted:     #6E7F74;
  --muted-lt:  #A9BCB0;   /* muted on dark */
  --hair:      #D7DED8;   /* hairline on light */

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1140px;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --sec-y: clamp(4.5rem, 9vw, 8rem);
  --r: 4px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--limestone);
  color: var(--oak-deep);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 0;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1rem; text-wrap: pretty; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--sun); color: var(--oak-deep);
  padding: 0.7rem 1.2rem; font-weight: 700;
  border-radius: 0 0 var(--r) var(--r);
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

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

/* ── Eyebrow ──────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun);
  margin: 0 0 1.1rem;
}
.eyebrow-dark { color: var(--pasture); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
              border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-sun {
  background: var(--sun);
  color: var(--oak-deep);
  border-color: var(--sun);
}
.btn-sun:hover { background: var(--sun-warm); border-color: var(--sun-warm); }

.btn-ghost {
  background: transparent;
  color: var(--limestone);
  border-color: rgba(244, 246, 242, 0.35);
}
.btn-ghost:hover {
  border-color: var(--limestone);
  background: rgba(244, 246, 242, 0.08);
}

.btn-block { width: 100%; }

/* ═══ HEADER ══════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--oak);
  transition: box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.site-header.is-stuck {
  box-shadow: 0 2px 24px rgba(18, 33, 27, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--limestone);
}
.brand-mark { display: block; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.9rem);
}
.nav > a {
  color: var(--limestone);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.18s var(--ease);
}
.nav > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s var(--ease);
}
.nav > a:hover::after { transform: scaleX(1); }

.nav-call {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  background: var(--sun);
  color: var(--oak-deep) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--r);
  font-weight: 700;
  transition: background-color 0.18s var(--ease);
}
.nav-call::after { display: none; }
.nav-call:hover { background: var(--sun-warm); }
.nav-call-label {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}
.nav-call-num { font-size: 0.95rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.6rem;
  cursor: pointer;
}
.nav-toggle-bars { display: block; width: 26px; }
.nav-toggle-bars i {
  display: block;
  height: 2px;
  background: var(--limestone);
  margin: 5px 0;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ THE FENCE — signature element ═══════════════════════════ */
.fence {
  position: relative;
  height: 78px;
  margin-top: -1px;
  background: var(--oak);
  overflow: hidden;
}
.fence .board {
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background: var(--board);
  opacity: 0.9;
}
.fence .board:nth-child(1) { top: 10px; }
.fence .board:nth-child(2) { top: 29px; }
.fence .board:nth-child(3) { top: 48px; }
.fence .board:nth-child(4) { top: 67px; }

.fence .posts {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    var(--board) 0 7px,
    transparent 7px 168px
  );
  opacity: 0.9;
}

/* the fence on the light ground: it "stands on" the limestone */
.hero .fence { background: linear-gradient(to bottom, var(--oak) 0 62px, var(--limestone) 62px 100%); }
.hero .fence .board:nth-child(4) { top: 67px; background: var(--pasture); }
.hero .fence .posts {
  background-image: repeating-linear-gradient(
    to right,
    var(--board) 0 7px,
    transparent 7px 168px
  );
}

/* inverted: dark panel sitting above the light ground */
.fence-inverse { background: linear-gradient(to bottom, var(--oak) 0 62px, var(--limestone) 62px 100%); }

/* ═══ HERO ════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--oak);
  color: var(--limestone);
  padding-top: clamp(3.5rem, 8vw, 6.5rem);
  overflow: hidden;
}
.hero-sun {
  position: absolute;
  top: -22%;
  right: -8%;
  width: min(46rem, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 165, 39, 0.20) 0%, rgba(233, 165, 39, 0.07) 42%, transparent 68%);
  pointer-events: none;
}
.hero-inner { position: relative; padding-bottom: clamp(3rem, 6vw, 5rem); }

.hero-title {
  font-size: clamp(2.7rem, 7.4vw, 5.4rem);
  font-weight: 600;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  letter-spacing: -0.028em;
  margin-bottom: 1.6rem;
  max-width: 16ch;
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: normal;
  position: relative;
  color: var(--sun);
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.06em;
  height: 0.08em;
  background: var(--sun);
  opacity: 0.32;
}

.hero-lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.62;
  color: rgba(244, 246, 242, 0.82);
  max-width: 56ch;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.6rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-trust li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-lt);
}
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 8px; height: 8px;
  background: var(--sun);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* ═══ SECTIONS ════════════════════════════════════════════════ */
.section { padding-block: var(--sec-y); }
.section.panel {
  background: var(--oak);
  color: var(--limestone);
  padding-bottom: 0;
}
.section.panel .wrap { padding-bottom: var(--sec-y); }

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 {
  font-size: clamp(1.95rem, 3.9vw, 3rem);
  margin-bottom: 1rem;
}
.section-lede {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0;
}
.panel .section-lede { color: var(--muted-lt); }

/* ── Coverage cards ───────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1.15rem;
}
.card {
  position: relative;
  background: var(--board);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: 1.75rem 1.6rem 1.5rem;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease),
              border-color 0.24s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  left: -1px; right: -1px; top: -1px;
  height: 3px;
  background: var(--sun);
  border-radius: var(--r) var(--r) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: #C3CFC6;
  box-shadow: 0 14px 34px -18px rgba(18, 33, 27, 0.4);
}
.card:hover::before { transform: scaleX(1); }
.card h3 {
  font-size: 1.28rem;
  margin-bottom: 0.6rem;
}
.card p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Why independent ──────────────────────────────────────────── */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
  gap: clamp(2rem, 4vw, 3.2rem);
}
.reason {
  padding-top: 1.5rem;
  border-top: 3px solid var(--sun);
}
.reason h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.reason p {
  margin: 0;
  color: rgba(244, 246, 242, 0.76);
  font-size: 1rem;
  line-height: 1.68;
}

/* ── Steps (a genuine sequence) ───────────────────────────────── */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  counter-reset: none;
}
.step {
  position: relative;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hair);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--sun);
  margin-bottom: 0.9rem;
  font-variant-numeric: tabular-nums;
}
.step h3 {
  font-size: 1.32rem;
  margin-bottom: 0.6rem;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.99rem;
}

/* ── About ────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.about-copy h2 {
  font-size: clamp(1.95rem, 3.6vw, 2.8rem);
  margin-bottom: 1.3rem;
}
.about-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: 1.5rem 2rem;
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--hair);
}
.facts dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pasture);
  margin-bottom: 0.4rem;
}
.facts dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 500;
}
.facts dd a { text-decoration: none; border-bottom: 1px solid var(--hair); }
.facts dd a:hover { border-color: var(--sun); }

/* the address is long — let it wrap rather than blow out the column */
.fact-email { overflow-wrap: anywhere; }
.fact-email a { font-size: 0.92rem; }

/* visible placeholders — impossible to publish by accident */
.todo {
  display: inline-block;
  background: #FFF3D6;
  border: 1px dashed var(--sun);
  color: #8A6410;
  padding: 0.1rem 0.45rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-aside { position: sticky; top: 110px; }
.quote-card {
  background: var(--oak);
  color: var(--limestone);
  border-radius: var(--r);
  padding: 2.4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}
.quote-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 34px;
  background:
    repeating-linear-gradient(to right, rgba(255,255,255,0.55) 0 5px, transparent 5px 120px),
    linear-gradient(to bottom, transparent 0 8px, rgba(255,255,255,0.55) 8px 11px, transparent 11px 21px, rgba(255,255,255,0.55) 21px 24px, transparent 24px 100%);
  opacity: 0.5;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--sun);
  margin: 0 0 0.6rem;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.45;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  margin-bottom: 1.5rem;
}
.quote-attr {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun);
  margin: 0 0 2.2rem;
}

/* ── Quote form ───────────────────────────────────────────────── */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.quote-copy h2 {
  font-size: clamp(1.95rem, 3.6vw, 2.8rem);
  margin-bottom: 1.1rem;
}
.quote-copy > p { color: rgba(244, 246, 242, 0.8); font-size: 1.05rem; }

.link-sun {
  color: var(--sun);
  text-decoration: none;
  border-bottom: 2px solid rgba(233, 165, 39, 0.4);
  font-weight: 700;
  white-space: nowrap;
}
.link-sun:hover { border-color: var(--sun); }

.contact-block {
  font-style: normal;
  margin-top: 2.4rem;
  border-top: 1px solid rgba(244, 246, 242, 0.16);
}
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(244, 246, 242, 0.16);
  text-decoration: none;
  color: var(--limestone);
  overflow-wrap: anywhere;
  transition: color 0.18s var(--ease);
}
.contact-row:hover { color: var(--sun); }
.contact-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-lt);
}

.form {
  background: var(--limestone);
  border-radius: var(--r);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--oak-deep);
}
.field { margin-bottom: 1.15rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pasture);
  margin-bottom: 0.45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--oak-deep);
  background: var(--board);
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: 0.8rem 0.9rem;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field textarea { resize: vertical; min-height: 6.5rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(233, 165, 39, 0.22);
}
.field input::placeholder,
.field textarea::placeholder { color: #9FAEA4; }

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-note {
  margin: 0.9rem 0 0;
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
}

/* ═══ FOOTER ══════════════════════════════════════════════════ */
.site-footer {
  background: var(--oak-deep);
  color: var(--limestone);
  padding-block: clamp(3rem, 5vw, 4rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: start;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.footer-addr {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted-lt);
  line-height: 1.75;
  overflow-wrap: anywhere;
}
.footer-addr a { text-decoration: none; color: var(--sun); font-weight: 600; }
.footer-addr a:hover { text-decoration: underline; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-end;
}
.footer-nav a {
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--muted-lt);
  transition: color 0.18s var(--ease);
}
.footer-nav a:hover { color: var(--sun); }

.footer-legal {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(244, 246, 242, 0.13);
  font-size: 0.8rem;
  line-height: 1.7;
  color: #7E8F84;
  max-width: 78ch;
}
.copyright { display: block; margin-top: 0.8rem; }

/* ═══ REVEAL ══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ═══ RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid,
  .quote-grid { grid-template-columns: 1fr; }
  .about-aside { position: static; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 0.5rem 1.4rem; }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--oak);
    padding: 0.5rem var(--gut) 1.5rem;
    border-top: 1px solid rgba(244, 246, 242, 0.12);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }

  .nav > a {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(244, 246, 242, 0.1);
    font-size: 1.02rem;
  }
  .nav > a::after { display: none; }

  .nav-call {
    margin-top: 1.1rem;
    padding: 0.85rem 1rem !important;
    align-items: center;
    border-bottom: 0 !important;
  }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .fence, .hero .fence { height: 62px; }
  .fence .board:nth-child(1) { top: 8px; }
  .fence .board:nth-child(2) { top: 24px; }
  .fence .board:nth-child(3) { top: 40px; }
  .fence .board:nth-child(4) { top: 56px; }
  .hero .fence { background: linear-gradient(to bottom, var(--oak) 0 52px, var(--limestone) 52px 100%); }
  .fence-inverse { background: linear-gradient(to bottom, var(--oak) 0 52px, var(--limestone) 52px 100%); }
  .fence .posts, .hero .fence .posts {
    background-image: repeating-linear-gradient(to right, var(--board) 0 6px, transparent 6px 110px);
  }
}

@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
}

/* ═══ MOTION / PRINT ══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .fence, .hero-sun, .form, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .section.panel, .site-footer { background: #fff !important; color: #000 !important; }
}
