/* ==========================================================================
   OpenGrants Portal — consulting funnel
   Tokens mirror the opengrants.io design system (BaseLayout.css) so this
   page is visually continuous with the marketing site.
   ========================================================================== */

@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("/assets/fonts/Ubuntu-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ubuntu";
  src: url("/assets/fonts/Ubuntu-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* brand palette */
  --og-teal: #29a79f;
  --og-blue: #4a86e8;
  --og-navy: #2470b3;
  --og-mint: #00cc99;
  --og-navy-dark: #0d2a43;
  --og-teal-dark: #145450;
  --og-teal-light: #c2f0ed;
  --og-teal-soft: #e1f8f6;
  --og-mint-light: #b3ffec;
  --og-white: #fff;
  --og-gray-50: #f7fafa;
  --og-gray-100: #eef3f3;
  --og-gray-200: #d6dede;
  --og-gray-600: #4a5c5a;
  --og-gray-800: #1e2d2b;

  /* roles */
  --fg-1: var(--og-navy-dark);
  --fg-2: var(--og-gray-800);
  --fg-3: var(--og-gray-600);
  --fg-accent: var(--og-teal);
  --bg-page: var(--og-white);
  --bg-alt: var(--og-gray-50);
  --bg-plate: var(--og-gray-100);
  --border-1: var(--og-gray-200);

  /* type */
  --font-display: "Ubuntu", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-hero-h1: clamp(2.1rem, 5.2vw, 3.5rem);
  --fs-section-h2: clamp(1.55rem, 3vw, 2.15rem);
  --fs-h3: 1.15rem;
  --fs-subtitle: clamp(1.05rem, 2vw, 1.22rem);
  --fs-body: 1rem;
  --fs-small: 0.9375rem;
  --fs-label: 0.8125rem;
  --fs-button: 0.9375rem;
  --fw-semi: 600;
  --fw-bold: 700;
  --lh-tight: 1.12;
  --lh-snug: 1.28;
  --lh-body: 1.65;

  /* space + shape */
  --content-max: 1120px;
  --space-section: clamp(3.5rem, 7vw, 6rem);
  --space-container: clamp(1.15rem, 4vw, 2rem);
  --radius-card: 12px;
  --radius-btn: 0px;
  --shadow-btn: 0 4px 14px #00cc994d;
  --shadow-btn-hover: 0 6px 20px #00cc9966;
  --grad-hero: radial-gradient(ellipse 60% 50% at 8% 92%, #00cc9914, transparent 70%),
    radial-gradient(ellipse 50% 60% at 88% 15%, #4a86e812, transparent 70%),
    linear-gradient(180deg, var(--og-teal-soft), var(--og-white));
  --grad-cta: linear-gradient(135deg, var(--og-navy-dark) 0%, var(--og-teal-dark) 100%);
  --t-default: 0.2s ease;
  --t-hover: transform 0.15s ease, box-shadow 0.15s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--fg-2);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--fg-1);
  margin: 0;
  line-height: var(--lh-snug);
  font-weight: 700;
  letter-spacing: -0.015em;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--og-navy); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--og-teal); }

img { max-width: 100%; height: auto; display: block; }

:focus-visible {
  outline: 3px solid var(--og-navy);
  outline-offset: 2px;
}

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

.section { padding-block: var(--space-section); }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--border-1); }

.section-title {
  font-size: var(--fs-section-h2);
  max-width: 22ch;
}
.section-intro {
  margin-top: 0.9rem;
  max-width: 62ch;
  font-size: var(--fs-subtitle);
  color: var(--fg-3);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--og-navy-dark);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; color: #fff; }

/* ------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-small);
  line-height: 1;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-default), color var(--t-default),
    box-shadow var(--t-default), border-color var(--t-default);
}
.btn--primary {
  background: var(--og-mint);
  color: var(--og-navy-dark);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  background: #00e0a8;
  color: var(--og-navy-dark);
  box-shadow: var(--shadow-btn-hover);
}
.btn--ghost {
  background: transparent;
  color: var(--og-navy-dark);
  border-color: var(--og-navy-dark);
}
.btn--ghost:hover { background: var(--og-navy-dark); color: #fff; }
.btn--on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--on-dark:hover { background: #fff; color: var(--og-navy-dark); border-color: #fff; }
.btn--wide { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.note {
  font-size: var(--fs-label);
  color: var(--fg-3);
  margin-top: 0.85rem;
}

/* --------------------------------------------------------------- hero -- */
.hero {
  background: var(--grad-hero);
  border-bottom: 1px solid var(--border-1);
  padding-block: clamp(3.25rem, 7vw, 5.5rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.hero h1 {
  font-size: var(--fs-hero-h1);
  line-height: var(--lh-tight);
  max-width: 15ch;
}
.hero__sub {
  margin-top: 1.35rem;
  font-size: var(--fs-subtitle);
  color: var(--fg-3);
  max-width: 46ch;
}

/* signature element: the division-of-labor ledger */
.ledger {
  background: #fff;
  border: 1px solid var(--border-1);
  border-top: 3px solid var(--og-teal);
  padding: 1.75rem;
}
.ledger__head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h3);
  color: var(--fg-1);
  margin: 0 0 1.1rem;
}
.ledger__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border-1);
  font-size: var(--fs-small);
}
.ledger__row span:first-child { color: var(--fg-3); }
.ledger__row span:last-child { color: var(--fg-1); font-weight: 700; }
.ledger__key {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: var(--fs-label);
  color: var(--fg-3);
  padding-bottom: 0.5rem;
}
.ledger__foot {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-1);
  font-size: var(--fs-label);
  color: var(--fg-3);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.25rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--og-teal-light);
  font-size: var(--fs-label);
  color: var(--fg-3);
}
.facts b { color: var(--fg-1); font-weight: 700; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 18ch; }
}

/* ----------------------------------------------------------- argument -- */
.argument {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.argument__body p { max-width: 66ch; }
.argument__body p + p { margin-top: 1.1rem; }
.pullquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.4;
  color: var(--og-teal-dark);
  border-left: 3px solid var(--og-mint);
  padding-left: 1.25rem;
  margin: 1.75rem 0 0;
  max-width: 46ch;
}
@media (max-width: 880px) {
  .argument { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------- included -- */
.included {
  margin-top: 2.75rem;
  border-top: 1px solid var(--border-1);
}
.item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(1rem, 4vw, 3rem);
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border-1);
}
.item h3 { font-size: var(--fs-h3); font-weight: 700; }
.item p { color: var(--fg-3); font-size: var(--fs-small); max-width: 68ch; }
@media (max-width: 720px) {
  .item { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ---------------------------------------------------------- the month -- */
.month {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.week { border-top: 3px solid var(--og-teal-light); padding-top: 1.1rem; }
.week:first-child { border-top-color: var(--og-mint); }
.week__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-label);
  color: var(--og-teal-dark);
  letter-spacing: 0.02em;
}
.week h3 { font-size: 1.05rem; margin: 0.35rem 0 0.5rem; }
.week p { font-size: var(--fs-small); color: var(--fg-3); }
@media (max-width: 880px) {
  .month { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.5rem; }
}
@media (max-width: 520px) {
  .month { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------- fit -- */
.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2.5rem;
}
.fit__col h3 {
  font-size: var(--fs-h3);
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--og-navy-dark);
  margin-bottom: 1rem;
}
.fit__col--no h3 { border-bottom-color: var(--og-gray-200); color: var(--fg-3); }
.fit ul { list-style: none; margin: 0; padding: 0; }
.fit li {
  font-size: var(--fs-small);
  padding: 0.6rem 0 0.6rem 1.5rem;
  position: relative;
  color: var(--fg-2);
  border-bottom: 1px solid var(--border-1);
}
.fit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 8px;
  height: 8px;
  background: var(--og-mint);
}
.fit__col--no li { color: var(--fg-3); }
.fit__col--no li::before { background: var(--og-gray-200); }
@media (max-width: 720px) {
  .fit { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------- pricing -- */
.pricing { background: var(--grad-cta); color: #fff; }
.pricing h2 { color: #fff; }
.pricing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.pricing p { color: rgba(255, 255, 255, 0.82); }
.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.price span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-small);
  color: var(--og-mint-light);
  margin-top: 0.6rem;
  letter-spacing: 0;
}
.price-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.price-card ul { list-style: none; margin: 1.5rem 0 1.75rem; padding: 0; }
.price-card li {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.price-card li:first-child { border-top: 0; }
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  background: var(--og-mint);
}
.price-card .btn + .btn { margin-top: 0.75rem; }
.price-card .note { color: rgba(255, 255, 255, 0.6); text-align: center; }
@media (max-width: 880px) {
  .pricing__grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------- faq -- */
.faq { margin-top: 2.5rem; max-width: 78ch; }
.faq details {
  border-top: 1px solid var(--border-1);
  padding: 0.35rem 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--border-1); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2.5rem 1.1rem 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--fg-1);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 1.55rem;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--og-teal);
  border-bottom: 2px solid var(--og-teal);
  transform: rotate(45deg);
  transition: transform var(--t-default);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p {
  padding: 0 2.5rem 1.25rem 0;
  color: var(--fg-3);
  font-size: var(--fs-small);
  max-width: 70ch;
}

/* ---------------------------------------------------------------- form -- */
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form-panel {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 700;
  color: var(--fg-1);
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--fg-2);
  background: var(--og-gray-50);
  border: 1px solid var(--border-1);
  border-radius: 4px;
  padding: 0.8rem 0.9rem;
  transition: border-color var(--t-default), background var(--t-default);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--og-teal);
}
.field textarea { min-height: 118px; resize: vertical; }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hp { position: absolute; left: -9999px; }
@media (max-width: 880px) {
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .field-pair { grid-template-columns: 1fr; gap: 0; }
}

/* ------------------------------------------------------- single reveal -- */
/* One orchestrated page-load moment, hero only. */
.reveal { opacity: 0; transform: translateY(10px); animation: rise 0.6s ease forwards; }
.reveal--2 { animation-delay: 0.09s; }
.reveal--3 { animation-delay: 0.18s; }
.reveal--4 { animation-delay: 0.27s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; animation: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ------------------------------------------------------- simple pages -- */
.simple {
  min-height: 62vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
}
.simple h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); max-width: 18ch; }
.simple p { margin-top: 1.15rem; max-width: 56ch; color: var(--fg-3); font-size: var(--fs-subtitle); }
.next-steps {
  margin-top: 2.25rem;
  border-top: 1px solid var(--border-1);
  max-width: 62ch;
}
.next-steps li {
  list-style: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-1);
  font-size: var(--fs-small);
}
.next-steps ul { margin: 0; padding: 0; }

/* ----------------------------------------------------------- utilities -- */
/* Small, named helpers so no inline style attributes are needed
   (keeps a strict Content-Security-Policy possible). */
.u-lede { margin-top: 1rem; max-width: 52ch; }
.u-price-block { margin-top: 2rem; }
.footer__mission { max-width: 34ch; color: rgba(255, 255, 255, 0.66); }
.footer__cta { margin-top: 1.25rem; }
.footer__legal--bare { margin-top: 0; border-top: 0; padding-top: 0; }
.simple__inner { padding-block: clamp(3rem, 7vw, 5rem); }

/* Stacked CTAs read cleaner at phone widths than two ragged widths. */
@media (max-width: 520px) {
  .btn-row { flex-direction: column; gap: 0.75rem; }
  .btn-row .btn { width: 100%; }
  .facts { gap: 0.65rem 1.5rem; }
}

/* ==========================================================================
   Site chrome, ported verbatim from opengrants.io/product/
   (Astro scoping attributes removed; declarations otherwise unchanged, so the
   header and footer here match the marketing site pixel for pixel.)
   ========================================================================== */

.og-btn {
  background: var(--og-mint);
  color: var(--og-navy-dark);
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  transition: var(--t-hover);
  cursor: pointer;
  border: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  display: inline-flex;
}
.og-btn:hover {
  box-shadow: var(--shadow-btn-hover);
  color: var(--og-navy-dark);
  transform: translateY(-1px);
}

/* ------------------------------------------------------------- header -- */
.site-header {
  z-index: 50;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--og-gray-200);
  background: #ffffffe0;
  position: sticky;
  top: 0;
}
.header-inner {
  max-width: var(--content-max);
  padding: 0 var(--space-container);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  min-height: 64px;
  margin: 0 auto;
  display: flex;
}
.brand { flex: none; align-items: center; display: flex; }
.brand img { width: auto; height: 26px; display: block; }
.site-header nav { flex-wrap: wrap; align-items: center; gap: 1.75rem; display: flex; }
.site-header nav a {
  color: var(--og-gray-800);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
}
.site-header nav a:hover { color: var(--og-teal); }
.site-header nav a.active { color: var(--og-teal-dark); font-weight: 700; }
.header-cta { flex: none; align-items: center; gap: 1.25rem; display: flex; }
.login {
  color: var(--og-navy-dark);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}
.login:hover { color: var(--og-teal); }
.site-header .cta { padding: 0.6rem 1.25rem; }

@media (max-width: 860px) {
  .header-inner { gap: 0.75rem 1.5rem; padding-block: 0.75rem; }
  .site-header nav { order: 3; gap: 1.1rem; width: 100%; }
  .login { display: none; }
}

/* ------------------------------------------------------------- footer -- */
.site-footer {
  margin-top: var(--space-section);
  background: var(--og-navy-dark);
  color: #ffffffbf;
}
.footer-inner {
  max-width: var(--content-max);
  padding: clamp(3rem, 5vw, 4rem) var(--space-container) 2rem;
  margin: 0 auto;
}
.footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2.5rem; display: grid; }
.footer-logo { width: auto; height: 26px; margin-bottom: 1rem; display: block; }
.footer-tagline {
  color: #fff;
  opacity: 0.6;
  max-width: 260px;
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer-social { flex-wrap: wrap; gap: 0.6rem; display: flex; }
.footer-social a {
  color: #fffc;
  width: 36px;
  height: 36px;
  transition: background var(--t-default);
  border: 1px solid #fff3;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: inline-flex;
}
.footer-social a:hover { color: #fff; background: #ffffff1a; }
.footer-grid nav { flex-direction: column; gap: 0.6rem; display: flex; }
.footer-heading {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
}
.footer-grid nav a { color: #ffffffb3; font-size: 0.875rem; text-decoration: none; }
.footer-grid nav a:hover { color: #fff; }
.ext { opacity: 0.5; margin-right: 0.35rem; }
.footer-bottom {
  color: #ffffff80;
  border-top: 1px solid #ffffff1f;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  display: flex;
}
.footer-bottom-links { gap: 1.5rem; display: flex; }
.footer-bottom a { color: #fff9; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* Portal-only addition: the retainer's own disclosure line, kept in the
   marketing footer's visual language. */
.footer-disclosure {
  color: #ffffff80;
  font-size: 0.8125rem;
  line-height: 1.6;
  margin: 1.5rem 0 0;
  max-width: 70ch;
}
.footer-disclosure a { color: #fff9; }

/* Portal override: on opengrants.io the footer follows flowing prose, so it
   carries its own top margin. Here the last section is a full-bleed panel that
   already has section padding, and the inherited margin left a white band. */
.site-footer { margin-top: 0; }
