:root {
  --ink: #102827;
  --muted: #5f716f;
  --forest: #123c3a;
  --forest-2: #1e5651;
  --forest-3: #2d6e68;
  --gold: #cf8f2e;
  --gold-soft: #edbd65;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(18,60,58,.14);
  --shadow: 0 24px 60px rgba(16,40,39,.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: min(1160px, calc(100% - 40px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--white); padding: 12px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }
.container { width: var(--container); margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 800; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; letter-spacing: -.025em; margin: 0; }
h1 { font-size: clamp(3.1rem, 6vw, 6.2rem); }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
p { margin: 0; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--muted); max-width: 760px; }
.section { padding: 108px 0; }
.section-head { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr); gap: 56px; align-items: end; margin-bottom: 52px; }
.section-head h2 { max-width: 650px; }
.section-head .lead { justify-self: end; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; background: rgba(255,253,248,.9); backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: .25s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(16,40,39,.06); }
.navbar { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 250px; }
.brand img { width: 78px; height: 58px; object-fit: contain; flex: 0 0 auto; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; }
.brand-copy span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-weight: 700; font-size: .92rem; color: #314947; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--gold); transition: right .2s ease; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 999px; background: transparent; display: grid; place-items: center; color: var(--forest); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 20px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; font-size: .93rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--forest); box-shadow: 0 12px 26px rgba(18,60,58,.18); }
.btn-primary:hover { background: var(--forest-2); }
.btn-gold { color: #263632; background: var(--gold-soft); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.65); }
.menu-toggle { display: none; }
.hero { min-height: 820px; padding: 168px 0 92px; position: relative; overflow: hidden; background:
  radial-gradient(circle at 15% 20%, rgba(237,189,101,.16), transparent 28%),
  linear-gradient(180deg, var(--paper), #f4efe4); }
.hero::after { content: ""; position: absolute; width: 580px; height: 580px; border-radius: 50%; right: -320px; bottom: -290px; border: 1px solid rgba(18,60,58,.12); box-shadow: 0 0 0 70px rgba(18,60,58,.025), 0 0 0 140px rgba(18,60,58,.02); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr); align-items: center; gap: 54px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin: 20px 0 24px; max-width: 780px; }
.hero h1 em { color: var(--forest-2); font-style: normal; }
.hero .lead { font-size: clamp(1.15rem, 1.8vw, 1.35rem); max-width: 670px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { display: flex; gap: 12px; align-items: center; margin-top: 32px; color: var(--muted); font-size: .9rem; }
.hero-note span:first-child { width: 32px; height: 1px; background: var(--gold); }
.hero-art { position: relative; z-index: 2; }
.hero-art img { width: 100%; filter: drop-shadow(0 34px 48px rgba(18,60,58,.14)); }
.stats-strip { position: relative; margin-top: -30px; z-index: 3; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow); overflow: hidden; }
.stat { padding: 28px 30px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 2.4rem; color: var(--forest); line-height: 1; }
.stat span { display: block; color: var(--muted); font-size: .84rem; margin-top: 9px; }
.story-grid { display: grid; grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr); gap: 80px; align-items: start; }
.story-card { position: sticky; top: 118px; background: var(--forest); color: var(--white); padding: 46px; border-radius: var(--radius-lg); min-height: 480px; overflow: hidden; }
.story-card::after { content: "1948"; position: absolute; right: -16px; bottom: -36px; color: rgba(255,255,255,.07); font-family: Georgia, serif; font-size: 9rem; font-weight: 700; }
.story-card .eyebrow { color: var(--gold-soft); }
.story-card h2 { margin: 20px 0 24px; }
.story-card p { color: rgba(255,255,255,.74); font-size: 1.04rem; }
.timeline { position: relative; padding-left: 42px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 10px; bottom: 10px; width: 1px; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 42px 30px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ""; position: absolute; left: -39px; top: 7px; width: 18px; height: 18px; border-radius: 50%; background: var(--paper); border: 5px solid var(--gold); box-shadow: 0 0 0 6px var(--paper); }
.timeline-item time { color: var(--gold); font-weight: 900; letter-spacing: .08em; }
.timeline-item h3 { margin: 6px 0 9px; }
.timeline-item p { color: var(--muted); max-width: 680px; }
.mission { background: var(--cream); }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar { padding: 30px; border-radius: var(--radius-md); background: rgba(255,255,255,.72); border: 1px solid rgba(18,60,58,.1); min-height: 280px; transition: transform .2s ease, background .2s ease; }
.pillar:hover { transform: translateY(-5px); background: var(--white); }
.pillar-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: var(--forest); color: var(--gold-soft); margin-bottom: 24px; }
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--muted); font-size: .95rem; }
.fields { background: var(--forest); color: var(--white); }
.fields .section-head .lead { color: rgba(255,255,255,.68); }
.fields .eyebrow { color: var(--gold-soft); }
.field-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.field-card { position: relative; min-height: 480px; padding: 34px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.14); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); }
.field-card::before { content: ""; position: absolute; inset: 0; opacity: .9; }
.field-card.brazil::before { background: radial-gradient(circle at 70% 15%, rgba(237,189,101,.4), transparent 26%), linear-gradient(140deg, rgba(45,110,104,.62), transparent 60%); }
.field-card.guinea::before { background: radial-gradient(circle at 65% 20%, rgba(222,137,68,.45), transparent 27%), linear-gradient(140deg, rgba(116,75,38,.42), transparent 60%); }
.field-card.moz::before { background: radial-gradient(circle at 70% 18%, rgba(119,178,156,.43), transparent 27%), linear-gradient(140deg, rgba(45,110,104,.4), transparent 60%); }
.country-mark { position: absolute; right: 28px; top: 24px; font-size: 5.2rem; line-height: 1; opacity: .12; font-family: Georgia, serif; font-weight: 700; }
.field-content { position: relative; z-index: 2; }
.field-card h3 { font-size: 2.2rem; margin: 10px 0 14px; }
.field-card p { color: rgba(255,255,255,.72); }
.mini-stats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.mini-stats span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); padding: 8px 11px; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.project-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.project-feature { background: var(--cream); border-radius: var(--radius-lg); padding: 48px; min-height: 500px; display: flex; flex-direction: column; justify-content: space-between; }
.project-feature .project-number { color: var(--gold); font-family: Georgia, serif; font-size: 7rem; line-height: 1; opacity: .75; }
.project-feature h3 { font-size: clamp(2.2rem, 4vw, 4rem); margin: 18px 0; max-width: 620px; }
.project-feature p { color: var(--muted); max-width: 650px; }
.project-list { display: grid; gap: 18px; }
.project-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; background: var(--white); display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.project-card .project-icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; color: var(--forest); background: var(--cream); font-weight: 900; }
.project-card h3 { font-size: 1.38rem; margin-bottom: 8px; }
.project-card p { color: var(--muted); font-size: .92rem; }
.impact { background: linear-gradient(180deg, #f1eadc, #fffdf8); }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.impact-card { padding: 36px; border-radius: var(--radius-md); background: rgba(255,255,255,.82); border: 1px solid var(--line); }
.impact-card strong { font-family: Georgia, serif; font-size: 3.6rem; line-height: 1; color: var(--forest); }
.impact-card h3 { margin: 15px 0 10px; font-size: 1.45rem; }
.impact-card p { color: var(--muted); font-size: .9rem; }
.data-note { margin-top: 22px; color: var(--muted); font-size: .82rem; }
.transparency-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: center; }
.document-panel { background: var(--forest); color: var(--white); border-radius: var(--radius-lg); padding: 42px; position: relative; overflow: hidden; }
.document-panel::after { content: "PDF"; position: absolute; right: -12px; bottom: -54px; font-family: Georgia, serif; font-size: 9rem; opacity: .06; }
.document-panel h3 { margin: 18px 0 14px; }
.document-panel p { color: rgba(255,255,255,.7); margin-bottom: 28px; }
.document-panel .btn { position: relative; z-index: 2; }
.check-list { display: grid; gap: 18px; }
.check-item { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.check { width: 28px; height: 28px; border-radius: 999px; background: var(--cream); color: var(--forest); display: grid; place-items: center; font-weight: 900; }
.check-item h3 { font-family: inherit; letter-spacing: 0; font-size: 1.05rem; margin-bottom: 4px; }
.check-item p { color: var(--muted); font-size: .92rem; }
.cta { padding-top: 30px; }
.cta-card { border-radius: 38px; padding: 76px; color: var(--white); background:
  radial-gradient(circle at 85% 15%, rgba(237,189,101,.32), transparent 25%),
  linear-gradient(135deg, #123c3a, #1e5651); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 44px; align-items: center; overflow: hidden; position: relative; }
.cta-card::after { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); right: -100px; bottom: -160px; box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.02); }
.cta-card h2 { margin: 14px 0 18px; max-width: 780px; }
.cta-card p { color: rgba(255,255,255,.72); max-width: 700px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; min-width: 210px; position: relative; z-index: 2; }
.contact { padding-bottom: 74px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 34px; background: var(--white); }
.contact-card h3 { margin-bottom: 12px; }
.contact-card p { color: var(--muted); }
.contact-lines { display: grid; gap: 14px; margin-top: 24px; }
.contact-line { display: flex; align-items: center; gap: 12px; }
.contact-line span:first-child { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--cream); color: var(--forest); }
.copy-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.site-footer { background: #0e2d2b; color: var(--white); padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr .7fr; gap: 56px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { color: rgba(255,255,255,.62); margin-top: 18px; max-width: 500px; }
.footer-title { font-weight: 900; color: var(--gold-soft); text-transform: uppercase; font-size: .74rem; letter-spacing: .12em; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; color: rgba(255,255,255,.72); font-size: .92rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding-top: 24px; color: rgba(255,255,255,.52); font-size: .78rem; }
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); z-index: 200; background: #0e2d2b; color: #fff; padding: 12px 18px; border-radius: 999px; opacity: 0; pointer-events: none; transition: .25s ease; box-shadow: var(--shadow); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
body.dark { --ink: #eef4f1; --muted: #b9c8c4; --paper: #0b2422; --white: #12312e; --cream: #102f2c; --line: rgba(255,255,255,.12); --shadow: 0 24px 60px rgba(0,0,0,.26); }
body.dark .site-header { background: rgba(11,36,34,.88); }
body.dark .nav-links a, body.dark .brand-copy span { color: #c4d2cf; }
body.dark .hero { background: radial-gradient(circle at 15% 20%, rgba(237,189,101,.12), transparent 28%), linear-gradient(180deg, #0b2422, #102f2c); }
body.dark .btn-ghost { background: rgba(255,255,255,.04); }
body.dark .mission, body.dark .impact { background: #102f2c; }
body.dark .pillar { background: rgba(255,255,255,.035); }
body.dark .project-feature, body.dark .project-card, body.dark .impact-card, body.dark .contact-card { background: #12312e; }
body.dark .timeline-item::before { background: #0b2422; box-shadow: 0 0 0 6px #0b2422; }
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; }
  .nav-links.open { position: fixed; inset: 84px 0 0; background: var(--paper); display: flex; flex-direction: column; align-items: flex-start; padding: 40px 28px; gap: 26px; font-size: 1.25rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-art { max-width: 720px; margin: 0 auto; }
  .hero { padding-bottom: 130px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .story-grid { grid-template-columns: 1fr; gap: 52px; }
  .story-card { position: relative; top: 0; min-height: auto; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .field-grid { grid-template-columns: 1fr; }
  .field-card { min-height: 360px; }
  .project-layout { grid-template-columns: 1fr; }
  .transparency-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .brand { min-width: auto; }
  .brand img { width: 68px; height: 52px; }
  :root { --container: min(100% - 28px, 1160px); }
  .section { padding: 78px 0; }
  .section-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 36px; }
  .section-head .lead { justify-self: auto; }
  .brand-copy span { display: none; }
  .header-actions .btn { display: none; }
  .navbar { min-height: 74px; }
  .nav-links.open { inset: 74px 0 0; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero h1 { font-size: clamp(2.9rem, 14vw, 4.5rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-art { margin-top: 24px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .story-card { padding: 34px 28px; }
  .timeline { padding-left: 30px; }
  .timeline-item { padding-left: 22px; }
  .timeline-item::before { left: -30px; }
  .pillars, .impact-grid { grid-template-columns: 1fr; }
  .project-feature { padding: 34px 28px; min-height: 430px; }
  .project-feature .project-number { font-size: 5rem; }
  .cta-card { padding: 48px 28px; grid-template-columns: 1fr; border-radius: 26px; }
  .cta-actions { min-width: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
@media print {
  .skip-link, .menu-toggle, .theme-toggle, .toast { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .site-header { position: relative !important; background: var(--paper) !important; }
  .hero { min-height: auto !important; padding-top: 70px !important; }
  .section { break-inside: avoid; }
}

.project-link { display: inline-flex; margin-top: 14px; color: var(--forest-2); font-weight: 800; font-size: .88rem; }
.project-link:hover, .project-link:focus-visible { text-decoration: underline; text-underline-offset: 4px; }
.cta-ghost { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.07); }
.pix-modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s ease; }
.pix-modal.open { opacity: 1; visibility: visible; }
.pix-modal-backdrop { position: absolute; inset: 0; background: rgba(5,20,20,.78); backdrop-filter: blur(8px); }
.pix-dialog { position: relative; z-index: 1; width: min(520px, 100%); max-height: calc(100vh - 40px); overflow: auto; background: var(--paper); color: var(--ink); border: 1px solid var(--line); border-radius: 28px; padding: 42px; box-shadow: 0 30px 90px rgba(0,0,0,.32); text-align: center; }
.pix-dialog .eyebrow { justify-content: center; }
.pix-dialog h2 { margin: 16px 0 14px; font-size: clamp(2.2rem, 7vw, 3.5rem); }
.pix-dialog > p { color: var(--muted); }
.pix-close { position: absolute; right: 16px; top: 14px; width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--ink); font-size: 1.8rem; line-height: 1; }
.pix-qr-wrap { width: min(310px, 82vw); aspect-ratio: 1; margin: 28px auto 16px; background: #fff; border-radius: 20px; padding: 18px; border: 1px solid rgba(0,0,0,.08); box-shadow: 0 16px 40px rgba(16,40,39,.12); display: grid; place-items: center; }
.pix-qr-wrap img { width: 100%; height: 100%; object-fit: contain; image-rendering: pixelated; }
.pix-note { font-size: .84rem; }
.pix-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
body.modal-open { overflow: hidden; }
body.dark .pix-dialog { background: #102f2c; }
body.dark .project-link { color: var(--gold-soft); }
@media (max-width: 520px) {
  .pix-dialog { padding: 36px 22px 26px; border-radius: 22px; }
  .pix-qr-wrap { width: min(280px, 78vw); padding: 12px; }
  .pix-actions { flex-direction: column; }
}


/* v2.2 | logo horizontal oficial sem slogan */
.brand { display: inline-flex; align-items: center; gap: 0; min-width: auto; }
.brand img { width: min(360px, 38vw); height: auto; object-fit: contain; flex: 0 0 auto; }
.brand-copy { display: none !important; }
body.dark .nav-links a { color: #c4d2cf; }
@media (max-width: 1040px) {
  .brand img { width: min(300px, 40vw); height: auto; }
}
@media (max-width: 720px) {
  .brand img { width: min(220px, 52vw); height: auto; }
}


/* v3 | ajuste de escala e contraste da marca institucional */
.site-header .brand img { width: 220px; height: auto; }
.site-footer .footer-brand .brand {
  display: inline-flex;
  background: rgba(255,255,255,.98);
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.site-footer .footer-brand .brand img { width: 260px; height: auto; }
.site-footer .footer-brand p { margin-top: 20px; }
@media (max-width: 1040px) {
  .site-header .brand img { width: 190px; }
  .site-footer .footer-brand .brand img { width: 220px; }
}
@media (max-width: 720px) {
  .site-header .brand img { width: 160px; }
  .site-footer .footer-brand .brand { padding: 10px 12px; border-radius: 14px; }
  .site-footer .footer-brand .brand img { width: 180px; }
}
