/* ============================================================
   VentureBuilder — site.css
   ============================================================ */

/* 1. Google Fonts
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,400&family=Josefin+Sans:wght@400;500;600;700&display=swap');

/* 2. CSS Custom Properties
   ============================================================ */
:root {
  --color-bg: #fafafa;
  --color-text: rgba(57, 56, 56, 0.5);
  --color-text-solid: #393838;
  --color-heading: #0d0c0c;
  --color-heading-h2: #f5bd24;
  --color-heading-h3: #f2b526;
  --color-accent: #318493;
  --color-muted: #a3a3a3;
  --color-header-bg: #fafafa;
  --color-footer-bg: #fafafa;
  --color-footer-text: #a3a3a3;
  --color-nav-item: rgba(0, 0, 0, 0.6);
  --color-nav-item-hover: #707070;
  --color-btn-border: #707070;
  --color-site-border: #fafafa;

  --font-body: 'Nunito Sans', sans-serif;
  --font-heading: 'Josefin Sans', sans-serif;

  --max-width: 1500px;
  --site-border: 20px;
  --breakpoint-mobile: 640px;
}

/* 3. Reset / Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8em;
  letter-spacing: 0.01em;
}

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

ul {
  list-style: none;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 4. Site Wrapper — 20px padding on desktop
   ============================================================ */
.site-wrapper {
  padding: 20px;
  min-height: 100vh;
  position: relative;
}

@media (max-width: 640px) {
  .site-wrapper {
    padding: 0;
  }
}

/* 5. Container
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 640px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* 6. Section Padding
   ============================================================ */
.section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section--image {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 640px) {
  .section--image {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* 7. Headings
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

h1 {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: -0.01em;
  color: var(--color-heading);
}

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: -0.01em;
  color: var(--color-heading-h2);
}

h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-heading-h3);
}

@media (max-width: 640px) {
  h2 {
    font-size: 28px;
  }
}

/* 8. Links
   ============================================================ */
.link,
main a:not(.btn):not(.nav-link):not(.footer-link):not(.footer-nav-link):not(.footer-social-link) {
  color: var(--color-accent);
}

/* 9. Button
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-btn-border);
  background: transparent;
  border: 2px solid var(--color-btn-border);
  border-radius: 3px;
  padding: 1em 2.5em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.btn:hover {
  background-color: var(--color-btn-border);
  color: #ffffff;
  text-decoration: none;
}

/* 10. Header
   ============================================================ */
.site-header {
  background-color: var(--color-header-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Three-column layout: left nav | logo | right nav */
.header-nav {
  flex: 1;
}

.header-nav--left {
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
}

.header-nav--right {
  display: flex;
  justify-content: flex-start;
  padding-left: 40px;
}

.header-logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.logo-img {
  width: 190px;
  height: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-nav-item);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-nav-item-hover);
  text-decoration: none;
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 16px;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-nav-item);
  transition: background-color 0.2s ease;
}

/* Mobile nav dropdown — hidden by default */
.primary-nav-mobile {
  display: none;
  background-color: var(--color-header-bg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.primary-nav-mobile.open {
  display: block;
}

.nav-list-mobile {
  display: flex;
  flex-direction: column;
  padding: 16px 20px 24px;
  gap: 0;
}

.nav-list-mobile li a {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-nav-item);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s ease;
}

.nav-list-mobile li:last-child a {
  border-bottom: none;
}

.nav-list-mobile li a:hover {
  color: var(--color-nav-item-hover);
}

/* 11. Mobile Header
   ============================================================ */
@media (max-width: 640px) {
  .header-inner {
    padding: 16px 20px;
    flex-wrap: wrap;
  }

  /* Hide desktop navs */
  .header-nav--left,
  .header-nav--right {
    display: none;
  }

  /* Logo takes all available space except the hamburger */
  .header-logo {
    flex: 1;
    justify-content: flex-start;
  }

  .logo-img {
    width: 143px;
  }

  /* Show hamburger */
  .nav-toggle {
    display: flex;
  }

  /* Mobile nav is full-width below header-inner */
  .primary-nav-mobile {
    width: 100%;
  }
}

/* 11b. Nav search
   ============================================================ */
.nav-search {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-search-input {
  width: 120px;
  padding: 4px 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-solid);
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, width 0.2s;
}
.nav-search-input:focus {
  border-color: var(--color-accent);
  width: 160px;
}
.nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--color-nav-item);
  display: flex;
  align-items: center;
}
.nav-search-btn:hover { color: var(--color-nav-item-hover); }
@media (max-width: 640px) { .nav-search { display: none; } }

/* 12. Footer
   ============================================================ */
.site-footer {
  background-color: var(--color-footer-bg);
  padding: 60px 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-email {
  font-family: var(--font-body);
  font-size: 16px;
}

.footer-link {
  color: var(--color-footer-text);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-text-solid);
  text-decoration: none;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social-link {
  color: var(--color-footer-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--color-text-solid);
  text-decoration: none;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--color-footer-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: var(--color-text-solid);
  text-decoration: none;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-footer-text);
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .site-footer {
    padding: 40px 20px;
  }
}

/* 13. Utility classes
   ============================================================ */
.text-center { text-align: center; }
.text-muted   { color: var(--color-muted); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === Home === */

/* Hero section — full-viewport */
.hero {
  position: relative;
  aspect-ratio: 2.67 / 1;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 40px 24px;
  max-width: 1200px;
}

.hero-content h1 {
  color: #fff;
  font-size: 2.2em;
  line-height: 1.15em;
  margin-bottom: 1em;
}

/* Home hero: the heading is an h2, styled large and white */
.hero-content--home h2 {
  color: #fff;
  font-size: 2.2em;
  line-height: 1.2em;
  font-weight: 700;
  margin-bottom: 0;
}

.hero-lead {
  font-size: 1.25rem;
  margin-bottom: 2em;
  opacity: 0.9;
}

/* Light button variant for hero (white outline on dark bg) */
.btn--light {
  color: #fff;
  border-color: #fff;
}

.btn--light:hover {
  background-color: #fff;
  color: var(--color-heading);
}

/* Alternate background section */
.section--alt {
  background-color: #f2f2f0;
}

/* Our Vision section */
.home-vision {
  padding-top: 60px;
  padding-bottom: 60px;
}

.home-vision__inner {
  max-width: 760px;
  margin: 0 auto;
}

.home-vision__inner h2 {
  margin-bottom: 0.6em;
  margin-top: 1.4em;
}

.home-vision__inner h2:first-child {
  margin-top: 0;
}

.home-vision__inner p {
  font-size: 1rem;
  line-height: 1.8em;
  margin-bottom: 1em;
}

.home-vision__inner p:last-child {
  margin-bottom: 0;
}

/* Quote section — photo background with pullquote */
.home-quote {
  position: relative;
  overflow: hidden;
  text-align: center;
  aspect-ratio: 2.78 / 1;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-quote__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-quote__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
}

.home-quote__content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.home-quote__text {
  color: #fff;
}

.home-quote__text p {
  font-family: var(--font-heading);
  font-size: 2em;
  font-weight: 700;
  line-height: 1.25em;
  margin-bottom: 0.8em;
  color: #fff;
}

.home-quote__text cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

/* About / intro section (kept for other pages) */
.home-about__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.home-about__inner h2 {
  margin-bottom: 0.6em;
}

.home-about__inner p {
  font-size: 1rem;
  line-height: 1.8em;
}

/* Criteria grid — 2×2 on desktop, 1-col on mobile */
.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  margin-bottom: 40px;
}

.criteria-item h3 {
  margin-bottom: 0.25em;
}

.criteria-rule {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 12px 0 16px;
}

.criteria-item p {
  font-size: 0.95rem;
  line-height: 1.7em;
}

.criteria-footnote {
  font-size: 0.95rem;
  line-height: 1.7em;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 24px;
  max-width: 760px;
  margin: 0 auto;
}

/* Our Offer — image hero */
.home-offer-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.home-offer-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-offer-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.home-offer-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.home-offer-hero h2 {
  color: #fff;
  margin-bottom: 0.6em;
}

.home-offer-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.8em;
  margin-bottom: 1em;
}

/* Our Offer details */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.offer-item h3 {
  margin-bottom: 0.25em;
}

.offer-list {
  list-style: disc;
  padding-left: 1.25em;
  margin-top: 12px;
}

.offer-list li {
  font-size: 0.95rem;
  line-height: 1.7em;
  margin-bottom: 0.6em;
}

/* CTA section */
.home-cta h2 {
  margin-bottom: 1.2em;
}

.home-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero-content h1,
  .hero-content--home h2 {
    font-size: 1.6em;
  }

  .home-quote__text p {
    font-size: 1.4em;
  }

  .criteria-grid,
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* === Our Process === */

/* Process hero — shorter than home hero, min 50vh */
.hero--process {
  min-height: 50vh;
}

.hero-content--process h2 {
  color: #fff;
  font-size: 2em;
  line-height: 1.25em;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .hero-content--process h2 {
    font-size: 1.5em;
  }
}

/* What We Look For section */
.process-look {
  padding-top: 60px;
  padding-bottom: 60px;
}

.process-look__inner {
  max-width: 900px;
  margin: 0 auto;
}

.process-look__inner h2 {
  margin-bottom: 0.6em;
}

.process-look__inner > p {
  font-size: 1rem;
  line-height: 1.8em;
  margin-bottom: 2em;
}

/* Our Offer section */
.process-offer {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--color-bg);
}

.process-offer__inner {
  max-width: 900px;
  margin: 0 auto;
}

.process-offer__inner h2 {
  margin-bottom: 0.6em;
}

.process-offer__inner > p {
  font-size: 1rem;
  line-height: 1.8em;
  margin-bottom: 1em;
}

.process-offer__inner > p:last-of-type {
  margin-bottom: 2em;
}

/* === Partners === */

/* Partners hero — shorter than home hero */
.hero--partners {
  min-height: 50vh;
}

.hero-content--partners h2 {
  color: #fff;
  font-size: 2em;
  line-height: 1.25em;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .hero-content--partners h2 {
    font-size: 1.5em;
  }
}

/* Operating Partners section */
.partners-opcos {
  padding-top: 60px;
  padding-bottom: 60px;
}

.partners-opcos__inner {
  max-width: 900px;
  margin: 0 auto;
}

.partners-opcos__inner h2 {
  margin-bottom: 1.2em;
}

.opco-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.opco-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}

.opco-item:first-child {
  border-top: none;
  padding-top: 0;
}

.opco-logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 4px;
}

.opco-logo img {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.opco-body h3 {
  margin-bottom: 0.4em;
}

.opco-body p {
  font-size: 0.95rem;
  line-height: 1.8em;
  margin: 0;
}

@media (max-width: 640px) {
  .opco-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .opco-logo img {
    max-width: 120px;
  }
}

/* Financing Partners section */
.partners-funders {
  padding-top: 60px;
  padding-bottom: 60px;
}

.partners-funders__inner {
  max-width: 900px;
  margin: 0 auto;
}

.partners-funders__inner h2 {
  margin-bottom: 1.2em;
}

/* Partner logo grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px 60px;
  align-items: center;
  margin: 40px 0 0;
}

.partner-grid img {
  max-height: 80px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.partner-name {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-solid);
  text-align: center;
  min-height: 80px;
}

/* CTA lead text on partners page */
.partners-cta__lead {
  font-size: 1rem;
  margin-bottom: 1.6em;
  color: var(--color-text);
}

/* === News === */

.news-index {
  padding-top: 60px;
  padding-bottom: 80px;
}

.news-index__heading {
  font-family: var(--font-heading);
  font-size: 2.5em;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 48px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.news-card__img-link {
  display: block;
  overflow: hidden;
}

.news-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.news-card__img-link:hover .news-card__img {
  transform: scale(1.03);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  gap: 12px;
}

.news-card__date {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0;
}

.news-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--color-heading);
  margin: 0;
}

.news-card__title a {
  color: var(--color-heading);
  text-decoration: none;
}

.news-card__title a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.news-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.7em;
  color: var(--color-text);
  flex: 1;
  margin: 0;
}

.btn--small {
  font-size: 12px;
  padding: 0.7em 1.8em;
  align-self: flex-start;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card__img {
    height: 200px;
  }
}

/* === News Article === */

.news-article {
  padding-top: 60px;
  padding-bottom: 80px;
}

.news-article__container {
  max-width: 760px;
}

.back-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  text-decoration: none;
  margin-bottom: 32px;
}

.back-link:hover {
  text-decoration: underline;
}

.article-meta {
  margin-bottom: 32px;
}

.article-date {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.article-authors {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.article-meta h1 {
  font-size: 2em;
  line-height: 1.2em;
  color: var(--color-heading);
}

.article-hero {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 40px;
  display: block;
}

.article-body {
  margin-bottom: 48px;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.85em;
  margin-bottom: 1.4em;
  color: var(--color-text-solid);
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 32px 0;
}

@media (max-width: 640px) {
  .article-meta h1 {
    font-size: 1.6em;
  }
}

/* === Whitepaper === */

.whitepaper-page {
  padding-top: 60px;
  padding-bottom: 80px;
}

.whitepaper-page__inner {
  max-width: 760px;
}

.whitepaper-page__inner h1 {
  font-size: 2em;
  line-height: 1.2em;
  margin-bottom: 0.5em;
}

.whitepaper-page__subhead {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 36px;
}

.whitepaper-page__img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 32px;
}

.whitepaper-page__body p {
  font-size: 1rem;
  line-height: 1.85em;
  color: var(--color-text-solid);
  margin-bottom: 1.4em;
}

.whitepaper-page__cta {
  margin-top: 40px;
}

/* === Contact === */

.contact-page {
  padding-top: 60px;
  padding-bottom: 80px;
}

.contact-page__inner {
  max-width: 640px;
}

.contact-page__inner h1 {
  font-size: 2em;
  line-height: 1.2em;
  margin-bottom: 1em;
}

.contact-page__body p {
  font-size: 1rem;
  line-height: 1.85em;
  color: var(--color-text-solid);
  margin-bottom: 1.6em;
}

.contact-cta {
  margin-top: 40px;
  padding: 40px;
  background: #f2f2f0;
  border-radius: 4px;
  text-align: center;
}

.contact-cta p {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 20px !important;
}
