/*
Theme Name: Invisible Advantage
Theme URI: https://invisibleadvantage.co
Author: Bronwyn Parrott
Author URI: https://invisibleadvantage.co
Description: Executive and Operational Support — Invisible Advantage by Bronwyn Parrott
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: invisible-advantage
Tags: business, consulting, executive, minimal
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Palette — warm off-white, deep ink, sage accent */
  --ink:          #1A1A18;
  --ink-soft:     #2E2E2B;
  --ink-muted:    #6B6B66;
  --ink-faint:    #A8A8A2;
  --surface:      #F7F5F0;
  --surface-warm: #EEEAE2;
  --surface-card: #FAFAF7;
  --accent:       #4A5E52;       /* deep sage green */
  --accent-light: #7A9485;
  --accent-pale:  #E8EDE9;
  --rule:         rgba(26,26,24,0.10);
  --rule-strong:  rgba(26,26,24,0.18);
  --white:        #FFFFFF;

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:   'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --max:         1080px;
  --max-narrow:  720px;
  --pad-x:       clamp(24px, 5vw, 64px);
  --section-gap: clamp(80px, 10vw, 140px);
  --radius:      6px;
  --radius-lg:   14px;

  /* Motion */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.0, 0, 0.2, 1);
  --dur-fast:    0.18s;
  --dur-med:     0.38s;
  --dur-slow:    0.65s;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-sans); letter-spacing: 0; }

p { color: var(--ink-soft); line-height: 1.78; margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
}
blockquote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container--narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--section-gap) 0; }
.section--alt { background: var(--surface-warm); }
.section--dark {
  background: var(--ink);
  color: var(--surface);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--surface); }
.section--dark p { color: rgba(247,245,240,0.72); }
.section--accent { background: var(--accent); }
.section--accent h2,
.section--accent h3,
.section--accent p { color: var(--white); }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--dur-med) var(--ease), padding var(--dur-med) var(--ease), border-color var(--dur-med);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom-color: var(--rule);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.site-logo small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  transition: color var(--dur-fast);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: 12px; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all var(--dur-fast);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all var(--dur-med) var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--surface);
}
.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(26,26,24,0.18);
}
.btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: #3d5045;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(74,94,82,0.25);
}
.btn-ghost {
  color: var(--ink-muted);
  border: 1.5px solid var(--rule-strong);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse 80% 80% at 80% 30%, var(--accent-pale) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--accent);
  display: block;
}
.hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ink-faint), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: 56px;
}
.section-header .eyebrow { margin-bottom: 16px; display: block; }
.section-header h2 { margin-bottom: 20px; }
.section-header p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 560px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered p { margin: 0 auto; }

/* ============================================
   EXPERIENCE / PAIN POINTS
   ============================================ */
.experience-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}
.experience-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.experience-item:last-child { border-bottom: none; }
.experience-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 10px;
}
.experience-item p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* Pull quote */
.pull-quote {
  background: var(--surface-warm);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 36px 40px;
  margin: 48px 0;
}
.pull-quote p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   APPROACH — PILLARS
   ============================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar-card {
  background: var(--surface-card);
  padding: 40px 36px;
  transition: background var(--dur-fast);
}
.pillar-card:hover { background: var(--white); }
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.pillar-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}
.pillar-card p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   OUTCOMES
   ============================================ */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.outcome-card {
  padding: 36px 32px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  transition: all var(--dur-med) var(--ease);
}
.outcome-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(26,26,24,0.07);
}
.outcome-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}
.outcome-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}
.outcome-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.68;
  margin: 0;
}

/* ============================================
   WHAT CHANGES — BEFORE/AFTER LIST
   ============================================ */
.changes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.change-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.change-item:last-child { border-bottom: none; }
.change-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-pale);
  border: 1.5px solid var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.8rem;
  color: var(--accent);
}
.change-content strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.change-content p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.65;
}

/* ============================================
   PRICING TIERS
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.pricing-card {
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--surface-card);
  transition: all var(--dur-med) var(--ease);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 16px 48px rgba(26,26,24,0.08);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 8px 40px rgba(74,94,82,0.12);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-muted);
  font-family: var(--font-sans);
}
.pricing-hours {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.pricing-desc {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin: 0;
}
.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--ink-muted);
  padding: 20px;
  background: var(--surface-warm);
  border-radius: var(--radius);
  border: 1px solid var(--rule);
}

/* ============================================
   NEXT STEPS / DISCOVERY
   ============================================ */
.discovery-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.discovery-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.discovery-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.discovery-point:last-child { border-bottom: none; }
.dp-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 2px;
}
.discovery-point p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--rule-strong);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,94,82,0.12);
}
input::placeholder, textarea::placeholder { color: var(--ink-faint); }
textarea { resize: vertical; min-height: 120px; }

/* Captcha */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1.5px solid var(--rule-strong);
  border-radius: var(--radius);
  margin-bottom: 24px;
  transition: border-color var(--dur-fast);
}
.captcha-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.captcha-row label {
  margin: 0;
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink-soft);
  cursor: pointer;
}
.captcha-row.verified { border-color: var(--accent); }

#form-message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
#form-message.success {
  background: rgba(74,94,82,0.08);
  border: 1px solid rgba(74,94,82,0.3);
  color: var(--accent);
}
#form-message.error {
  background: rgba(180,60,60,0.06);
  border: 1px solid rgba(180,60,60,0.25);
  color: #b43c3c;
}
.form-submit .btn { width: 100%; justify-content: center; font-size: 0.9rem; padding: 16px; }
.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-top: 16px;
}
.form-privacy a { color: var(--ink-muted); text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  padding: 56px 0 36px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247,245,240,0.1);
  margin-bottom: 32px;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand .site-logo { color: var(--surface); }
.footer-brand .site-logo small { color: rgba(247,245,240,0.45); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(247,245,240,0.5);
  margin-top: 12px;
  max-width: 300px;
  line-height: 1.65;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(247,245,240,0.5);
  transition: color var(--dur-fast);
}
.footer-links a:hover { color: var(--surface); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(247,245,240,0.35);
  margin: 0;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: clamp(120px, 15vw, 180px) 0 clamp(60px, 8vw, 100px);
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
}
.page-hero .eyebrow { margin-bottom: 16px; display: block; }
.page-hero h1 { max-width: 640px; margin-bottom: 20px; }
.page-hero .lead {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 520px;
  line-height: 1.72;
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 24px 0;
  border-radius: 2px;
}
.divider.centered { margin: 24px auto; }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================
   WORDPRESS CONTENT STYLES
   ============================================ */
.entry-content h2 { margin: 2em 0 0.75em; }
.entry-content h3 { margin: 1.75em 0 0.6em; }
.entry-content p  { margin-bottom: 1.4em; }
.entry-content ul,
.entry-content ol { padding-left: 1.4em; margin-bottom: 1.4em; }
.entry-content ul li { list-style: disc; margin-bottom: 0.4em; }
.entry-content ol li { list-style: decimal; margin-bottom: 0.4em; }
.entry-content a   { color: var(--accent); text-decoration: underline; }
.entry-content blockquote { margin: 2em 0; }
.wp-post-image { border-radius: var(--radius-lg); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(247,245,240,0.98);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
    backdrop-filter: blur(12px);
  }
  .nav-links.open a { font-size: 1.3rem; color: var(--ink); }
  .discovery-wrap { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 640px) {
  :root { --section-gap: 64px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Screen reader */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
