/* RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #202943;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F4F7FA;
  color: #202943;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  box-sizing: border-box;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #202943;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #9FC6E9;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
ul, ol {
  margin-left: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #202943;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* BRAND & UI VARIABLES */
:root {
  --primary: #202943;
  --secondary: #9FC6E9;
  --accent: #E6EEFB;
  --text: #202943;
  --heading: #202943;
  --white: #fff;
  --shadow: 0 8px 24px rgba(32,41,67,0.08), 0 1.5px 7px rgba(32,41,67,0.04);
  --shadow-card: 0 4px 12px rgba(32,41,67,0.11);
  --radius: 16px;
  --radius-btn: 32px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* GENERAL LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.main, main {
  flex: 1 1 auto;
}

/* HEADER & NAVIGATION */
header {
  background: var(--primary);
  color: var(--white);
  width: 100%;
  box-shadow: 0 2px 16px 0 rgba(32,41,67, 0.08);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 0;
}
header img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: var(--radius-btn);
  transition: background 0.2s, color 0.2s;
  position: relative;
}
nav a:not(.cta-primary):hover, nav a:not(.cta-primary):focus {
  background: var(--secondary);
  color: var(--primary);
}
.cta-primary {
  background: var(--secondary);
  color: var(--primary) !important;
  font-weight: 800;
  border-radius: var(--radius-btn);
  padding: 10px 24px;
  box-shadow: 0 3px 22px rgba(159,198,233,0.08);
  margin-left: 0.5rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--white);
  color: var(--primary) !important;
  box-shadow: 0 6px 32px rgba(159,198,233,0.15);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  padding: 10px 16px;
  margin-left: 22px;
  box-shadow: 0 2px 8px rgba(32,41,67,0.06);
  z-index: 99;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--white);
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #202943F4;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.82,-0.01,.23,.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.5rem;
  color: var(--secondary);
  background: none;
  margin: 24px 24px 0 18px;
  align-self: flex-end;
}
.mobile-menu nav.mobile-nav {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--white);
  padding: 8px 0;
  border-radius: 0;
  background: none;
  margin-bottom: 8px;
  display: inline-block;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
}
@media (max-width: 1000px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* MAIN SECTIONS */
main {
  padding-bottom: 60px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow-x: hidden;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px rgba(32,41,67,0.16);
  transform: translateY(-3px) scale(1.01);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9FBFD;
  color: var(--primary);
  border-left: 6px solid var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 1.5px 7px rgba(32,41,67,0.06);
  font-size: 1.1rem;
  margin-bottom: 24px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 0;
  font-family: var(--font-body);
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 0.98rem;
  font-weight: 700;
  margin-left: auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPECIAL GRIDS FOR PAGES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 22px;
}
.feature-grid > div {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 1.5px 8px rgba(159,198,233,0.10);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 220px;
  min-width: 260px;
  max-width: 32%;
  transition: box-shadow 0.21s, background 0.23s;
}
.feature-grid > div:hover {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 8px 32px 0 rgba(159,198,233,0.17);
}
.feature-grid img {
  height: 48px;
  margin-bottom: 12px;
}

.tips-grid > div {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 18px;
  margin-bottom: 18px;
  flex: 1 1 180px;
  min-width: 230px;
  max-width: 221px;
  transition: box-shadow 0.18s;
  font-size: 1.04em;
}
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.case-study, .composition-tip, .community-highlight, .call-for-participation, .affiliate-tip, .upcoming-events, .tour-dates {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 28px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
.composition-tip ul, .insider-tips ul {
  margin-top: 8px;
}

.locations-overview, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}
.locations-overview ul, .workshop-list ul {
  flex: 1 1 200px;
  min-width: 220px;
  padding: 0;
  margin-bottom: 8px;
}
.insider-tips, .tour-dates {
  margin-top: 8px;
}

.project-summary {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 16px 22px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}
.community-spotlight, .community-highlight {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
  color: var(--primary);
}

.team-profile {
  background: #E6EEFB;
  border-left: 5px solid var(--secondary);
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 1.5px 8px rgba(159,198,233,0.08);
  font-size: 1.05em;
}
.workflow-diagram {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 16px 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}
.tools-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.affiliate-tip {
  margin-top: 10px;
  background: #fffbec;
  color: #926606;
}
.company-details {
  margin-bottom: 12px;
}
.location-map {
  margin-bottom: 10px;
}
.data-request-form, .contact-for-privacy {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 1.07em;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

/* FOOTER LAYOUT */
footer {
  background: var(--primary);
  color: #fff;
  padding: 64px 0 38px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 22px;
  justify-content: flex-start;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  opacity: 0.9;
  padding: 4px 12px;
  border-radius: 6px;
  transition: background 0.22s, color 0.22s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.footer-contacts {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 6px;
}
.footer-contacts img {
  width: 46px;
  height: 46px;
}
.footer-contacts div {
  font-size: 0.99rem;
  opacity: 0.85;
  color: var(--accent);
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.footer-social img {
  width: 32px;
  height: 32px;
  filter: contrast(1.2) brightness(1.08);
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: saturate(2) brightness(1.3) drop-shadow(0 2px 8px #9FC6E9AA);
}
.newsletter-signup {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  border-radius: var(--radius-btn);
  padding: 10px 26px;
  box-shadow: 0 1.5px 8px rgba(159,198,233,0.11);
  font-size: 1.08rem;
  display: inline-block;
  margin-bottom: 12px;
}
.newsletter-signup b {
  color: var(--primary);
}
.copyright {
  opacity: 0.65;
  font-size: 0.98rem;
  margin-top: 16px;
  text-align: left;
}

/* BUTTONS */
button, .button {
  font-family: var(--font-display);
  padding: 11px 32px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-btn);
  box-shadow: 0 4px 12px rgba(32,41,67,0.09);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.06rem;
  transition: background 0.23s, color 0.23s, transform 0.18s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-1.5px) scale(1.02);
  box-shadow: 0 8px 32px rgba(32,41,67,0.20);
}

/* SPACING & WHITE SPACE */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .testimonial-card, .case-study, .composition-tip, .community-highlight, .call-for-participation, .project-summary, .affiliate-tip, .workflow-diagram, .data-request-form, .contact-for-privacy, .upcoming-events, .newsletter-signup, .community-spotlight, .feature-grid > div {
  margin-bottom: 20px;
}

.contact-options, .company-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}
.contact-options > div {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  min-width: 210px;
  box-shadow: 0 1.5px 8px rgba(159,198,233,0.10);
}
.contact-options img {
  width: 24px; height: 24px;
}

/* TYPOGRAPHY SCALE/MICRO-HIERARCHY */
h1 { font-size: 2.5rem; letter-spacing: 0.7px; }
h2 { font-size: 2rem; font-weight: 800; letter-spacing: 0.5px; }
h3 { font-size: 1.3rem; font-weight: 800; letter-spacing: 0.2px; }
h4 { font-size: 1.15rem; font-weight: 700; }
p, li, span {
  font-size: 1.03rem;
}

/* HOVER & INTERACTION */
.card, .feature-grid > div, .tips-grid > div, .testimonial-card, .case-study, .community-highlight, .project-summary, .composition-tip, .newsletter-signup {
  transition: box-shadow 0.18s, background 0.20s, transform 0.16s;
}
.card:hover, .feature-grid > div:hover, .tips-grid > div:hover, .testimonial-card:hover, .case-study:hover {
  box-shadow: 0 8px 32px rgba(32,41,67,0.16);
  transform: translateY(-3px) scale(1.012);
}

/* RESPONSIVE (Mobile-first) */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 100vw;
  }
  header .container {
    padding: 12px 8px;
  }
  section {
    margin-bottom: 34px;
    padding: 26px 8px;
    border-radius: 13px;
  }
  .feature-grid, .card-container, .content-grid, .tips-grid, .locations-overview, .workshop-list, .contact-options {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .tips-grid > div, .card {
    min-width: 95%;
    max-width: 100%;
    margin-bottom: 14px;
    padding: 18px 12px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 14px 8px;
  }
  .footer-contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .footer-social {
    gap: 14px;
    margin-bottom: 8px;
  }
  .newsletter-signup {
    padding: 8px 12px;
    font-size: 1.01rem;
    margin-bottom: 6px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.19rem; }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    font-size: 1.01rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .location-map img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .footer-contacts img {
    width: 34px;
    height: 34px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 22px 18px;
  box-shadow: 0 -4px 22px 0 rgba(32,41,67, 0.09);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-size: 1.04rem;
  animation: cookieSlideIn 0.7s cubic-bezier(.65,.01,.37,1.01);
}
@keyframes cookieSlideIn {
  from {transform: translateY(120%);} to {transform: translateY(0);}
}
.cookie-banner .cookie-banner-message {
  flex: 2 0 220px;
  font-size: 1.07rem;
  margin-right: 0;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button, .cookie-banner .button {
  padding: 9px 28px;
  border-radius: var(--radius-btn);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 2px;
  box-shadow: var(--shadow-card);
}
.cookie-banner .accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .reject {
  background: #e95555;
  color: #fff;
}
.cookie-banner .settings {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner button:hover, .cookie-banner .button:hover {
  filter: brightness(1.1) contrast(1.1);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 6px 16px 6px;
    font-size: 0.99rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    bottom: 0;
  }
  .cookie-banner .cookie-banner-actions {
    gap: 7px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  z-index: 99999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,41,67,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.26s;
}
.cookie-modal.open { pointer-events: all; opacity: 1; }
.cookie-modal .modal-content {
  background: #fff;
  color: var(--primary);
  border-radius: 20px;
  max-width: 380px;
  width: 95vw;
  padding: 32px 24px 24px 24px;
  position: relative;
  box-shadow: 0 9px 45px rgba(32,41,67,0.19);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: popfade 0.37s;
}
@keyframes popfade { from{ transform: scale(0.88) translateY(48px); opacity:0;} to{transform:scale(1) translateY(0); opacity:1;}}
.cookie-modal h3 {
  font-size: 1.25rem;
  font-family: var(--font-display);
  margin-bottom: 14px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent);
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 1.07rem;
}
.cookie-category .toggle {
  margin-left: 10px;
}
.cookie-category.essential {
  opacity: 0.7;
  background: #D7E9F5;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 14px; top: 12px;
  background: none;
  font-size: 1.6rem;
  color: var(--secondary);
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .cookie-actions .accept-all,
.cookie-modal .cookie-actions .reject-all {
  padding: 9px 22px;
  border-radius: var(--radius-btn);
}
.cookie-modal .cookie-actions .accept-all {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-modal .cookie-actions .reject-all {
  background: #e95555;
  color: #fff;
}
/* Toggle Switch Style */
input[type="checkbox"].toggle {
  width: 40px;
  height: 22px;
  border-radius: 22px;
  background: #e5e5e9;
  position: relative;
  appearance: none;
  outline: none;
  transition: background 0.2s;
  cursor: pointer;
}
input[type="checkbox"].toggle:checked {
  background: var(--secondary);
}
input[type="checkbox"].toggle::after {
  content: '';
  display: block;
  position: absolute;
  top: 3px; left: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s, background 0.22s;
}
input[type="checkbox"].toggle:checked::after {
  left: 20px;
  background: var(--primary);
}

/* UTILITY */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 8px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mt-lg { margin-top: 32px !important; }
.mb-lg { margin-bottom: 32px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-bold { font-weight: 800 !important; }

/* OVERRIDES FOR HIGH CONTRAST IN TESTIMONIALS */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  background: #F9FBFD !important;
  color: #202943 !important;
}

/* FORM FIELD (for contacts, only visual) */
input, textarea {
  font-size: 1.12rem;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--secondary);
  background: #f7fbff;
  margin-bottom: 13px;
  width: 100%;
  transition: border .13s, box-shadow .18s;
}
input:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(159,198,233,0.13);
  outline: none;
}

/* GEOMETRIC DECORATIVE SHAPES */
.geoshape-1, .geoshape-2 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.13;
  /* For future: SVG background geometric overlays */
}

/* HIGH CONTRAST and MODERN BOLD LOOKS*/
body, section, .footer-nav a, header, .feature-grid>div, .card, .newsletter-signup, .cta-primary {
  font-family: var(--font-body);
}
.feature-grid>div, .card, .testimonial-card, .tips-grid>div, .newsletter-signup {
  font-family: var(--font-display);
}

/* SMALL SCREEN FIXES */
@media (max-width: 400px) {
  h1 { font-size: 1.12rem; }
  h2 { font-size: 0.99rem; }
}
