@font-face {
  font-family: "Avenir LT W01 35 Light";
  font-style: normal;
  font-weight: 400;
  src: url("assets/avenir-lt-w01_35-light.woff2") format("woff2");
  font-display: swap;
}

:root {
  --color-page: #faf9fd;
  --color-lavender: rgb(222, 214, 241);
  --color-lavender-80: rgba(222, 214, 241, 0.8);
  --color-heading: rgb(58, 58, 93);
  --color-body: rgb(58, 58, 93);
  --color-button: #5a6186;
  --site-width: 980px;
  --font-heading: "Open Sans", sans-serif;
  --font-body: "Open Sans Condensed", "Arial Narrow", sans-serif;
  --font-button: "Avenir LT W01 35 Light", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  background: var(--color-page);
  color: var(--color-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.site {
  min-width: 0;
}

.wrap {
  width: 100%;
  max-width: var(--site-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 1020px) {
  .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* —— Header (lavender strip) —— */
.site-header {
  background: var(--color-lavender);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 23px;
}

.brand-link {
  display: inline-block;
  line-height: 0;
}

.brand-link img {
  width: 105px;
  height: 118px;
  object-fit: contain;
}

.social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-list a {
  display: block;
  line-height: 0;
}

.social-list img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* —— Lavender content panels —— */
.panel {
  background: var(--color-lavender-80);
}

.panel-inner {
  max-width: var(--site-width);
  margin-left: auto;
  margin-right: auto;
  padding: 48px 60px 56px;
}

@media (max-width: 1020px) {
  .panel-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* —— Typography (matches Wix font_0 / font_7 / font_8) —— */
.h-hero {
  margin: 0 0 20px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.2;
  text-align: center;
  color: var(--color-heading);
}

.lead {
  margin: 0 auto 48px;
  max-width: 780px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: var(--color-body);
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 56px;
  margin-bottom: 40px;
}

.col {
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
}

.col-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.col-icon img {
  display: block;
  object-fit: contain;
}

.col-icon--sm img {
  width: 61px;
  height: 39px;
}

.col-icon--md img {
  width: 61px;
  height: 61px;
}

.col-icon--lg img {
  width: 66px;
  height: 67px;
}

.col-title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.38;
  text-align: center;
  color: var(--color-heading);
}

.col-text {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: var(--color-body);
}

/* —— Buttons —— */
.btn-row {
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid transparent;
  background: var(--color-button);
  color: #fff;
  font-family: var(--font-button);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: #fff;
  border-color: var(--color-button);
  color: var(--color-button);
}

/* —— Why we serve —— */
.section-why .panel-inner {
  padding-top: 71px;
  padding-bottom: 48px;
}

.why-copy {
  margin: 0 auto 44px;
  max-width: 629px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: var(--color-body);
}

.why-copy p {
  margin: 0 0 0.5em;
}

.why-copy p:last-child {
  margin-bottom: 0;
}

.why-copy a {
  text-decoration: underline;
  color: inherit;
}

.why-copy a:hover {
  opacity: 0.85;
}

.section-why .btn-row {
  margin-bottom: 14px;
}

/* —— Footer —— */
.site-footer {
  background: var(--color-lavender);
}

.footer-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 48px 60px 47px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: var(--color-body);
}

@media (max-width: 1020px) {
  .footer-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.footer-inner p {
  margin: 0 0 1em;
}

.footer-inner p:last-child {
  margin-bottom: 0;
}
