:root {
  --bg: #f6f7f6;
  --text: #4f4f4f;
  --muted: #7a7a7a;
  --rule: #d9dad8;
  --card: #efefef;
  --white: #ffffff;
  --accent: #3a744a;
  --accent-soft: #7fb392;

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

/* html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
} */

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
}

.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
header{
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
}

.site-header {
  background: var(--bg);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
}

.brand>img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav {
  display: inline-flex;
  gap: 56px;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: #6a6a6a;
  font-size: 18px;
  line-height: 1;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: #444;
}

.header-email {
  justify-self: end;
  text-decoration: none;
  color: #6a6a6a;
  font-size: 16px;
}

.header-email:hover {
  color: #444;
}

.separator {
  height: 1px;
  background: #000;
  opacity: 0.18;
}

/* Hero */
.hero {
  padding-top: 90px;
}

.hero-inner {
  text-align: center;
}

.hero-logo {
  position: relative;
  margin: 40px 0 22px;
}

.hero-logo::after{
  content: '';
  display: block;
  left: 50%;
  top: 50%;
  position: absolute;
  width: 144px;
  height:144px;
  background-image: url('img/logo_full.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
  margin-top: 18px;
}

.hero-logo img{
  height: 196px;
  width: 196px;
  object-fit: contain;
  opacity: 0.07;
}

.hero-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: #5a5a5a;
}

.hero-divider {
  width: min(560px, 100%);
  height: 2px;
  background: var(--rule);
  margin: 24px auto 18px;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 26px);
  color: #777;
  line-height: 1.35;
}

/* Sections */
section.full-height{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.pt{
  padding-top: 70px;
}
.pb{
  padding-bottom: 70px;
}

.section-inner {
  text-align: center;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 46px);
  color: #606060;
  font-weight: 600;
}

.section-lead {
  margin: 0 auto;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
  color: #6b6b6b;
  margin: 21px 0;
}

.section-callout {
  margin: 0 auto;
  font-size: clamp(18px, 1.6vw, 24px);
  color: #6b6b6b;
}

.section-rule {
  width: min(920px, 100%);
  height: 2px;
  background: var(--rule);
  margin: 26px auto;
}

.section-subtitle {
  margin: 12px 0 34px;
  font-size: clamp(18px, 1.7vw, 26px);
  color: #6b6b6b;
}

.scope-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: fit-content;
  text-align: left;
}

.scope-list li {
  position: relative;
  padding-left: 28px;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.6;
  color: #6b6b6b;
}

.scope-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

/* Media */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.media-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid #ececec;
  min-height: 170px;
  display: flex;
}

.media-card-inner {
  flex: 1;
  border-radius: 10px;
  background: #f2f2f2;
  display: grid;
  place-items: center;
  padding: 40px 60px;
}

.media-card-inner img{
  max-height: 150px;
  width: 100%;
}

/* Mobile */
@media (max-width: 760px) {
  .container {
    width: min(1100px, calc(100% - 28px));
  }

  .header-inner {
    /* grid-template-columns: 1fr;
    justify-items: center; */
    padding: 16px 0;
    grid-template-columns: 1fr auto;
  }

  .brand {
    min-width: unset;
  }

  .nav {
    /* gap: 26px; */
    display: none;
  }

  .header-email {
    justify-self: center;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-logo {
    margin: 26px 0 18px;
  }

  .hero-mark {
    font-size: 68px;
  }

  .hero-text {
    font-size: 18px;
    letter-spacing: 0.28em;
  }

  .scope-list {
    text-align: left;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 150px;
  }
}


footer{
  width: 100%;
  height: auto;
}

footer .container{
  padding: 20px 0;
  text-align: center;
}