@font-face {
  font-family: f;
  src: url('/media/CoFoSans-Regular-Trial.otf');
}

:root {
  --bg: #ebe4d2;
  --text-main: #172a39;
  --text-muted: #945c65;
  --pill-bg: #945c65;
  --pill-text: #ffffff;
  --font-main: f;

  --main-font-size: 20px;
  --headeings-font-size: 41px;
  --sub-headings-font-size: 26px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.5;
}

.site-header {
  padding: 40px 4.5vw 16px;
}

.site-header__inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.mobile-logo {
  display: none;
}

.logo img, .mobile-logo img {
  height: 30px;
  margin-right: 10px;
}

.mobile-logo img {
  margin-top: -10px;
  height: 70px;
}

.hero {
  padding: 24px 4.5vw 80px;
  margin-top: 80px;
}

.hero__inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  column-gap: 64px;
  justify-content: space-between;
}

.hero__column {
  max-width: 310px;
}

.hero__column--left {
  max-width: 360px;
}

.hero__eyebrow {
  margin: 0 0 24px;
  text-transform: capitalize;
  font-size: var(--sub-headings-font-size);
  font-weight: bold;
  color: var(--text-muted);
  font-family: var(--font-main);
}

.hero__title {
  margin: 0;
  font-size:var(--headeings-font-size);
  line-height: 1.3; 
  letter-spacing: 1px;
}

h2{
  margin-top: 16px;
  font-weight: bold;
  font-size: var(--main-font-size);
  color: #945c65;
  letter-spacing: .5px;
  line-height: 1.4;
}

.hero__copy {
  margin: 0 0 25px;
  font-size: var(--main-font-size);
  font-weight: bold;
  line-height: 1.6;
}

.hero__copy--meta {
  margin-top: 24px;
  color: var(--text-muted);
}

.hero__email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  padding: 10px 24px;
  border-radius:5px;
  background-color: var(--pill-bg);
  color: var(--pill-text);
  font-weight: bold;
  text-decoration: none;
  font-size: var(--sub-headings-font-size);
  width: 100%;
}

.hero__email:hover {
  opacity: 0.92;
}

@media (max-width: 960px) {
  .hero{
    margin-top: 0;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    row-gap: 32px;
    flex-wrap: wrap;
  }

  .hero__column--left, .hero__column {
    width: 100%;
    max-width: none;
  }

  .hero__title {
    /* font-size: 32px; */
    margin-bottom: 30px;
  }
  h2{
    margin-bottom: 30px;
  }

  .hero__column{
    margin-bottom: -35px;
  }

  .logo{
    display: none;
  }
  .mobile-logo {
    display: block;
  }
}
