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

[id] {
  scroll-margin-top: 74px;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd,
ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid #ed8928;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.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;
}

body {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.58;
  color: #818181;
  background-color: #f6f6f6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.logo {
  font-family: "abril-fatface", "Abril Fatface", "Playfair Display", Georgia, serif;
  font-weight: 400;
  color: #ed8928;
  line-height: 1;
  letter-spacing: 0;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.logo:hover {
  color: rgb(94.1772279727%, 61.8284944879%, 30.4502230077%);
}

.script {
  font-family: "adobe-handwriting-ernie", "Sacramento", "Segoe Script", "Brush Script MT", cursive;
  font-weight: 400;
  line-height: 1.1;
}

.h-hero {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: #ffffff;
  font-size: 32px;
  font-size: clamp(32px, 2.8823529412px + 4.8529411765vw, 65px);
}

.h-section {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: #ed8928;
  font-size: 30px;
  font-size: clamp(30px, 21.1764705882px + 1.4705882353vw, 40px);
}

.h-eyebrow {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ed8928;
}

.h-card {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  color: #462255;
}

.lead {
  font-size: 25px;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .lead {
    font-size: 20px;
    line-height: 1.4;
  }
}

.copy p + p {
  margin-top: 1.58em;
}

.rule {
  width: 28px;
  height: 3px;
  border: 0;
  background-color: #ed8928;
  margin: 0;
}
.rule--center {
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 62px;
  background-color: #023f51;
  transition: box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.site-header.is-stuck {
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}
.site-header__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo {
  font-size: 35px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .site-header__logo {
    font-size: 26px;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 44px;
}
@media (max-width: 1280px) {
  .nav__list {
    gap: 30px;
  }
}
.nav__link {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 6px 0;
  border: 0;
  background: none;
  color: #ddf1f7;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ed8928;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav__link:hover {
  color: #ffffff;
}
.nav__link:hover::after {
  transform: scaleX(1);
}
.nav__link[aria-current=page], .nav__link.is-active {
  color: #ffffff;
}
.nav__link[aria-current=page]::after, .nav__link.is-active::after {
  height: 1px;
  background-color: #ddf1f7;
  transform: scaleX(1);
}

.nav__item {
  position: relative;
}

.nav__sub {
  position: absolute;
  top: 100%;
  left: -22px;
  z-index: 1;
  min-width: 243px;
  padding: 4px 22px 18px;
  background-color: #023f51;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 260ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 260ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s linear 260ms;
}
.nav__sub--wide {
  min-width: 290px;
}
.nav__item:hover > .nav__sub, .nav__item:focus-within > .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.nav__sub-link {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 11px 0;
  white-space: nowrap;
  color: #ffffff;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav__sub-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background-color: #ddf1f7;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav__sub-link:hover, .nav__sub-link[aria-current=page] {
  color: #ddf1f7;
}
.nav__sub-link:hover::after, .nav__sub-link[aria-current=page]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 24px;
  position: relative;
  flex: 0 0 auto;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ddf1f7;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-toggle span:nth-child(1) {
  top: 0;
}
.nav-toggle span:nth-child(2) {
  top: 11px;
}
.nav-toggle span:nth-child(3) {
  top: 22px;
}
.nav-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #023f51;
    max-height: 0;
    overflow: hidden;
    transition: max-height 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .nav.is-open {
    max-height: 640px;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 26px;
  }
  .nav__list > li {
    width: 100%;
  }
  .nav__link {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav__link::after {
    display: none;
  }
  .nav__item {
    width: 100%;
  }
  .nav__sub {
    position: static;
    min-width: 0;
    padding: 0 0 6px 22px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .nav__sub-link {
    display: block;
    padding: 10px 0;
    font-size: 14px;
  }
  .nav__sub-link::after {
    display: none;
  }
}
.site-footer {
  background-color: #32213a;
  color: #d1c9d5;
}
.site-footer__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: start;
  gap: 40px;
  padding-block: 68px 96px;
}
@media (max-width: 820px) {
  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
    gap: 52px;
    padding-block: 56px 60px;
  }
}
.site-footer__col--left {
  justify-self: center;
}
.site-footer__col--right {
  justify-self: center;
}
.site-footer__col--center {
  justify-self: center;
  text-align: center;
  max-width: 360px;
}
.site-footer__logo {
  display: inline-block;
  font-size: 42px;
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .site-footer__logo {
    font-size: 34px;
  }
}
.site-footer__heading {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 22px;
}
.site-footer__heading a {
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.site-footer__heading a:hover {
  color: #ed8928;
}
.site-footer__contact {
  font-size: 17px;
  line-height: 1.75;
  color: #ffffff;
  margin-bottom: 34px;
}
.site-footer__contact a {
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.site-footer__contact a:hover {
  color: #ed8928;
}
.site-footer__note {
  font-size: 19px;
  line-height: 1.5;
  color: #d1c9d5;
  margin-bottom: 20px;
}

.footer-list li + li {
  margin-top: 0;
}
.footer-list a {
  display: inline-block;
  font-size: 17px;
  line-height: 45px;
  color: #d1c9d5;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer-list a:hover {
  color: #ed8928;
  transform: translateX(4px);
}
@media (max-width: 820px) {
  .footer-list a:hover {
    transform: none;
  }
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 40px;
}
.social__link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #462255;
  color: #ffffff;
  transition: background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.social__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social__link:hover {
  background-color: #ed8928;
  transform: translateY(-3px);
}

.subfooter {
  background-color: #2c1636;
}
.subfooter__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding-block: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #b69cc2;
  text-align: center;
}
.subfooter__mark {
  width: 20px;
  flex: 0 0 auto;
}
.subfooter__divider {
  opacity: 0.45;
  padding-inline: 6px;
}
.subfooter a {
  color: #b69cc2;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.subfooter a:hover {
  color: #ed8928;
}
.subfooter strong {
  font-weight: 500;
  color: #ffffff;
}
.subfooter a:hover strong {
  color: #ed8928;
}

.btn {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 15px 34px;
  border-radius: 6px;
  text-align: center;
  transition: background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background-color: #00b3e3;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.btn--primary:hover {
  background-color: #00c2f4;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}
.btn--outline-light {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
}
.btn--outline-light:hover {
  background-color: #ffffff;
  color: #462255;
}
.btn--outline-cyan {
  border: 2px solid #00c2f4;
  color: #00c2f4;
  min-height: 56px;
}
.btn--outline-cyan .btn__arrow {
  width: 25px;
  flex: 0 0 auto;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn--outline-cyan:hover {
  background-color: #00c2f4;
  color: #32213a;
}
.btn--outline-cyan:hover .btn__arrow {
  transform: translateX(5px);
}

.link-ext {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #00b3e3;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.link-ext img {
  width: 17px;
  flex: 0 0 auto;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.link-ext:hover {
  color: #ed8928;
}
.link-ext:hover img {
  transform: translate(2px, -2px);
}

.link-video {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.link-video__icon {
  width: 54px;
  flex: 0 0 auto;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.link-video__label {
  font-family: "adobe-handwriting-ernie", "Sacramento", "Segoe Script", "Brush Script MT", cursive;
  font-size: 34px;
  line-height: 1;
  color: #462255;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.link-video:hover .link-video__icon {
  transform: scale(1.08);
}
.link-video:hover .link-video__label {
  color: #ed8928;
}

.page-title {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e1e1e1;
  text-align: center;
  max-width: none;
}
.page-title__text {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #023f51;
}
@media (max-width: 600px) {
  .page-title__text {
    font-size: 19px;
  }
}
.page-title__divider {
  margin-inline: 0.3em;
}
@media (max-width: 600px) {
  .page-title {
    min-height: 80px;
  }
}

.testimonial {
  width: 100%;
  margin-top: 41px;
  padding: 48px 41px 58px;
  border-top: 18px solid #ed8928;
  border-radius: 6px 6px 0 0;
  background-color: #ffffff;
  text-align: center;
}
.testimonial__quote {
  margin: 0;
}
.testimonial__quote p + p {
  margin-top: 31px;
}
.testimonial__quote {
  font-size: 25px;
  line-height: 31px;
  color: #e27103;
}
@media (max-width: 600px) {
  .testimonial__quote {
    font-size: 21px;
    line-height: 28px;
  }
}
.testimonial__cite {
  margin-top: 30px;
  font-size: 17px;
  line-height: 24px;
  color: #e27103;
}

.testimonial--slider .testimonial__slide {
  margin: 0;
}
.testimonial--slider .slick-slide:focus {
  outline: none;
}
.testimonial--slider.is-revealed .slick-track {
  will-change: transform;
}

.testimonial__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 50px;
}
.testimonial__controls .testimonial__arrow--prev {
  order: 1;
}
.testimonial__controls .slick-dots {
  order: 2;
}
.testimonial__controls .testimonial__arrow--next {
  order: 3;
}

.testimonial__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: none;
  color: #ed8928;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial__arrow svg {
  width: 13px;
  height: 21px;
}
.testimonial__arrow:hover {
  color: #e27103;
}
.testimonial__arrow--prev:hover {
  transform: translateX(-2px);
}
.testimonial__arrow--next:hover {
  transform: translateX(2px);
}

.testimonial__controls .slick-dots {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__controls .slick-dots button {
  display: block;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 2px solid #ed8928;
  border-radius: 50%;
  background-color: transparent;
  font-size: 0;
  line-height: 0;
  color: transparent;
  transition: background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial__controls .slick-dots button:hover {
  transform: scale(1.15);
}
.testimonial__controls .slick-dots .slick-active button {
  background-color: #ed8928;
}

.tabs {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-top: 34px;
}
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 600px) {
  .tabs {
    padding-top: 24px;
  }
  .tabs__list {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }
}

.tab {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 34px;
  border: 2px solid #ed8928;
  border-radius: 6px;
  color: #e27103;
  text-align: center;
  transition: background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tab:hover {
  background-color: rgba(237, 137, 40, 0.12);
  transform: translateY(-2px);
}
.tab.is-active, .tab[aria-current=page] {
  background-color: #ed8928;
  color: #ffffff;
  transform: none;
}
@media (max-width: 600px) {
  .tab {
    padding-inline: 20px;
  }
}

.quote-band {
  position: relative;
  min-height: 639px;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: -1px;
}
.quote-band__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.quote-band__text {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
  font-size: 26px;
  font-size: clamp(26px, 13.6470588235px + 2.0588235294vw, 40px);
}
.quote-band__cite {
  display: block;
  margin-top: 40px;
  font-family: "adobe-handwriting-ernie", "Sacramento", "Segoe Script", "Brush Script MT", cursive;
  font-size: 34px;
  font-style: normal;
  line-height: 1;
  color: #ffffff;
}
.quote-band--manifesto {
  background-color: #e98f3e;
  background-image: url("../img/quote-band.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  align-items: flex-start;
  padding-block: 345px 86px;
}
@media (max-width: 1024px) {
  .quote-band--manifesto {
    align-items: center;
    padding-block: 150px;
  }
}
@media (max-width: 820px) {
  .quote-band--manifesto {
    min-height: 0;
    padding-block: 96px;
  }
}
.quote-band--contact {
  background-color: #e5975c;
  background-image: url("../img/contact-band.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  align-items: flex-start;
  padding-block: 47px 468px;
}
.quote-band--contact .quote-band__inner {
  max-width: 920px;
}
@media (max-width: 1024px) {
  .quote-band--contact {
    padding-block: 47px 340px;
  }
}
@media (max-width: 820px) {
  .quote-band--contact {
    min-height: 420px;
    padding-block: 56px 220px;
  }
}
@media (max-width: 600px) {
  .quote-band--contact {
    min-height: 360px;
    padding-block: 48px 150px;
  }
}
.quote-band--about {
  background-color: #d9884a;
  background-image: url("../img/about-band.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  align-items: flex-start;
  padding-block: 47px 468px;
}
.quote-band--about .quote-band__inner {
  max-width: 920px;
}
@media (max-width: 1024px) {
  .quote-band--about {
    padding-block: 47px 340px;
  }
}
@media (max-width: 820px) {
  .quote-band--about {
    min-height: 420px;
    padding-block: 56px 220px;
  }
}
@media (max-width: 600px) {
  .quote-band--about {
    min-height: 360px;
    padding-block: 48px 150px;
  }
}
.quote-band--press {
  background-color: #d3893f;
  background-image: url("../img/press-band.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  align-items: flex-start;
  padding-block: 47px 468px;
}
.quote-band--press .quote-band__inner {
  max-width: 920px;
}
@media (max-width: 1024px) {
  .quote-band--press {
    padding-block: 47px 340px;
  }
}
@media (max-width: 820px) {
  .quote-band--press {
    min-height: 420px;
    padding-block: 56px 220px;
  }
}
@media (max-width: 600px) {
  .quote-band--press {
    min-height: 360px;
    padding-block: 48px 150px;
  }
}
.quote-band--manifesto-page {
  background-color: #cf8b3f;
  background-image: url("../img/manifesto-band.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  align-items: flex-start;
  padding-block: 47px 468px;
}
.quote-band--manifesto-page .quote-band__inner {
  max-width: 920px;
}
@media (max-width: 1024px) {
  .quote-band--manifesto-page {
    padding-block: 47px 340px;
  }
}
@media (max-width: 820px) {
  .quote-band--manifesto-page {
    min-height: 420px;
    padding-block: 56px 220px;
  }
}
@media (max-width: 600px) {
  .quote-band--manifesto-page {
    min-height: 360px;
    padding-block: 48px 150px;
  }
}

[data-reveal] {
  opacity: 0;
  transition: opacity 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity;
}

[data-reveal].is-revealed {
  opacity: 1;
}

body[data-reveal-page] [data-reveal] {
  transform: translate3d(0, 46px, 0);
  transition: opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
  backface-visibility: hidden;
}
body[data-reveal-page] [data-reveal].is-revealed {
  transform: translate3d(0, 0, 0);
}
body[data-reveal-page] [data-reveal=soft] {
  transform: translate3d(0, 26px, 0);
  transition-duration: 1400ms;
}
body[data-reveal-page] [data-reveal=media] {
  transform: translate3d(0, 34px, 0) scale(1.015);
  transition-duration: 1500ms;
}
body[data-reveal-page] [data-reveal=media].is-revealed {
  transform: translate3d(0, 0, 0) scale(1);
}
body[data-reveal-page] .hero [data-reveal] {
  transition-duration: 1300ms;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 280ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.signup-modal[hidden] {
  display: none;
}
.signup-modal.is-open {
  opacity: 1;
}
.signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(2, 63, 81, 0.92);
  cursor: pointer;
}
.signup-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  border-top: 18px solid #ed8928;
  border-radius: 6px 6px 0 0;
  background-color: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(14px) scale(0.985);
  transition: transform 280ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.signup-modal.is-open .signup-modal__dialog {
  transform: translateY(0) scale(1);
}
.signup-modal__inner {
  padding: 44px 56px 48px;
}
@media (max-width: 600px) {
  .signup-modal__inner {
    padding: 32px 24px 36px;
  }
}
.signup-modal__title {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.3;
  text-align: center;
  color: #462255;
}
@media (max-width: 600px) {
  .signup-modal__title {
    font-size: 21px;
  }
}
.signup-modal__cta-line {
  margin-top: 14px;
  text-align: center;
}
.signup-modal__cta-word {
  display: inline-block;
  font-family: "adobe-handwriting-ernie", "Sacramento", "Segoe Script", "Brush Script MT", cursive;
  font-size: 34px;
  line-height: 1.1;
  color: #ed8928;
  transform: rotate(-4.18deg);
  transform-origin: center center;
}
.signup-modal__form {
  margin-top: 30px;
}
.signup-modal__field {
  display: block;
  width: 100%;
  padding: 14px 18px;
  background-color: #f6f6f6;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #4b4b4b;
  transition: border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.signup-modal__field + .signup-modal__field {
  margin-top: 14px;
}
.signup-modal__field::placeholder {
  color: #818181;
}
.signup-modal__field:focus {
  outline: none;
  border-color: #00b3e3;
  box-shadow: 0 0 0 1px #00b3e3;
}
.signup-modal__submit {
  width: 100%;
  margin-top: 20px;
}
.signup-modal__privacy {
  margin-top: 20px;
  font-size: 15px;
  text-align: center;
  color: #818181;
}
.signup-modal__thanks {
  margin-top: 30px;
  padding-bottom: 6px;
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 25px;
  text-align: center;
  color: #462255;
}
.signup-modal__close {
  position: absolute;
  right: -8px;
  bottom: 100%;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ddf1f7;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.signup-modal__close:hover {
  color: #ffffff;
  transform: scale(1.12);
}
.signup-modal__frame {
  position: relative;
  width: min(560px, 100%);
}

body.has-modal {
  overflow: hidden;
}

.hero {
  position: relative;
  background-color: #023f51;
  background-image: url("../img/hero-collage.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  min-height: 1138px;
  padding-block: 164px 258px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 63, 81, 0.34) 0%, rgba(2, 63, 81, 0.14) 42%, rgba(2, 63, 81, 0.42) 100%);
  pointer-events: none;
}
.hero__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}
.hero__title {
  max-width: 1092px;
  margin-inline: auto;
}
.hero__line {
  display: block;
}
.hero__line--accent {
  color: #ed8928;
}
.hero__copy {
  max-width: 622px;
  margin: 44px auto 0;
  color: #ffffff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}
.hero__copy p + p {
  margin-top: 30px;
}
.hero__script {
  position: relative;
  max-width: 622px;
  margin: 54px auto 0;
  text-align: right;
}
@media (max-width: 820px) {
  .hero__script {
    text-align: center;
  }
}
.hero__script-word {
  display: inline-block;
  font-size: 56px;
  color: #ffffff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
  transform: rotate(-4.18deg);
  transform-origin: center center;
}
@media (max-width: 600px) {
  .hero__script-word {
    font-size: 42px;
  }
}
.hero__underline {
  display: block;
  width: 94px;
  margin: 2px 80px 0 auto;
}
@media (max-width: 820px) {
  .hero__underline {
    margin-inline: auto;
  }
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 76px;
}
@media (max-width: 820px) {
  .hero {
    min-height: 0;
    padding-block: 96px 118px;
  }
}

.book {
  padding-block: 0 53px;
}
@media (max-width: 1024px) {
  .book {
    padding-block: 0 96px;
  }
}
.book__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 461px minmax(0, 1fr);
  align-items: start;
  gap: 62px;
}
@media (max-width: 1024px) {
  .book__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 56px;
  }
}
.book__cover {
  width: 461px;
  max-width: 100%;
  margin-top: -58px;
}
@media (max-width: 1024px) {
  .book__cover {
    margin-top: 34px;
  }
}
.book__panel {
  position: relative;
  padding-top: 50px;
  max-width: 620px;
}
@media (max-width: 1024px) {
  .book__panel {
    padding-top: 0;
  }
}

.pullquote {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  min-height: 398px;
  padding: 112px 110px 0 107px;
  background-image: url("../img/quote-brackets.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 617px auto;
  text-align: center;
}
.pullquote__text {
  grid-column: 1/-1;
  max-width: 400px;
  margin-inline: 0 auto;
  font-size: 25px;
  line-height: 1.2;
  color: #ed8928;
}
.pullquote__cite {
  display: block;
  grid-column: 2;
  margin-top: 22px;
  padding-right: 20px;
  font-family: "adobe-handwriting-ernie", "Sacramento", "Segoe Script", "Brush Script MT", cursive;
  font-size: 34px;
  font-style: normal;
  line-height: 1;
  text-align: right;
  color: #ed8928;
}
@media (max-width: 820px) {
  .pullquote {
    min-height: 0;
    padding: 58px 20px 0;
    background-size: 100% auto;
    grid-template-columns: minmax(0, 1fr);
  }
  .pullquote .pullquote__text {
    grid-column: 1;
    margin-inline: auto;
  }
  .pullquote .pullquote__cite {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .pullquote {
    background-image: none;
    padding: 0;
    border-left: 3px solid #ed8928;
    padding-left: 22px;
    text-align: left;
  }
}

.audible {
  grid-column: 1;
  width: 197px;
  max-width: none;
  margin: 13px 0 0 -99px;
}
@media (max-width: 820px) {
  .audible {
    grid-column: 1;
    grid-row: 3;
    width: 160px;
    margin: 34px auto 0;
  }
}

.shop-links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 820px) {
  .shop-links {
    margin-top: 36px;
    align-items: center;
  }
}

.bio {
  background-color: #462255;
  color: #ffffff;
  padding-block: 44px 105px;
}
.bio__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 759px minmax(0, 1fr);
  align-items: start;
  gap: 63px;
}
@media (max-width: 1280px) {
  .bio__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 44px;
  }
}
@media (max-width: 1024px) {
  .bio__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 48px;
  }
}
.bio__photos {
  width: 759px;
  max-width: 100%;
}
.bio__content {
  max-width: 446px;
  padding-top: 26px;
}
@media (max-width: 1024px) {
  .bio__content {
    max-width: 620px;
    padding-top: 0;
  }
}
.bio__rule {
  margin: 22px 0 30px;
}
.bio__copy {
  font-size: 19px;
  line-height: 1.58;
  color: #ffffff;
}
.bio__copy cite {
  font-style: italic;
}
.bio__link {
  color: #00c2f4;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.bio__link:hover {
  color: #ed8928;
}
.bio__cta {
  margin-top: 42px;
}

.tips {
  padding-block: 95px 141px;
  text-align: center;
}
.tips__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
}
.tips__rule {
  margin: 44px auto 0;
}
.tips__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  justify-content: space-between;
  gap: 60px 100px;
  max-width: 1060px;
  margin: 60px auto 0;
  text-align: left;
}
@media (max-width: 1024px) {
  .tips__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 52px 60px;
    max-width: 720px;
  }
}
@media (max-width: 600px) {
  .tips__grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
  }
}

.tip-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tip-card__body {
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.58;
  color: #818181;
}
.tip-card__link {
  margin-top: 26px;
}

.contact-hero {
  background-color: #f6f6f6;
  padding-block: 60px 73px;
}
.contact-hero__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 375px minmax(0, 474px);
  justify-content: center;
  align-items: start;
  gap: 12px;
}
@media (max-width: 820px) {
  .contact-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 48px;
    max-width: 520px;
  }
}
.contact-hero__photos {
  width: 375px;
  max-width: 100%;
  margin-top: 58px;
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.35));
}
@media (max-width: 820px) {
  .contact-hero__photos {
    margin-top: 0;
  }
}
.contact-hero__content {
  max-width: 474px;
}
@media (max-width: 820px) {
  .contact-hero__content {
    max-width: 100%;
    text-align: center;
  }
}
.contact-hero__script {
  position: relative;
  margin: 0;
}
.contact-hero__script-word {
  display: inline-block;
  margin-left: 2px;
  font-size: 56px;
  line-height: 1.1;
  color: #ed8928;
  transform: rotate(-4.18deg);
  transform-origin: center center;
}
@media (max-width: 600px) {
  .contact-hero__script-word {
    font-size: 44px;
  }
}
.contact-hero__underline {
  display: block;
  width: 94px;
  margin: 2px 0 0 79px;
}
@media (max-width: 820px) {
  .contact-hero__underline {
    margin-inline: auto;
  }
}
.contact-hero__copy {
  margin-top: 38px;
  font-size: 25px;
  line-height: 1.2;
  color: #462255;
}
@media (max-width: 600px) {
  .contact-hero__copy {
    font-size: 20px;
    line-height: 1.4;
  }
}
.contact-hero__cta {
  margin-top: 43px;
}

.email-card {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  width: 386px;
  max-width: 100%;
  padding: 17px 24px;
  border-radius: 6px;
  background-color: #00b3e3;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
  transition: background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.email-card__address {
  display: block;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.email-card:hover {
  background-color: #00c2f4;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.email-card:active {
  transform: translateY(0);
}

.social-list {
  margin-top: 43px;
  padding-left: 42px;
}
@media (max-width: 820px) {
  .social-list {
    padding-left: 0;
    display: inline-block;
    text-align: left;
  }
}
.social-list__item + .social-list__item {
  margin-top: 16px;
}
.social-list__link {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #462255;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.social-list__link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.social-list__link span {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}
.social-list__link:hover {
  color: #ed8928;
}
.social-list__link:hover svg {
  transform: translateY(-2px);
}

.about {
  background-color: #f6f6f6;
  padding-block: 70px 186px;
}
@media (max-width: 1024px) {
  .about {
    padding-block: 56px 120px;
  }
}
@media (max-width: 820px) {
  .about {
    padding-block: 48px 88px;
  }
}
.about__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 417px minmax(0, 685px);
  justify-content: center;
  align-items: start;
  gap: 65px;
}
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 48px;
  }
}
@media (max-width: 820px) {
  .about__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 56px;
    max-width: 600px;
  }
}
.about__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 417px;
}
@media (max-width: 820px) {
  .about__aside {
    order: 2;
  }
}
.about__photos {
  width: 375px;
  max-width: 100%;
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.35));
}
.about__talk {
  width: 100%;
  margin-top: -10px;
  text-align: center;
}
.about__script {
  position: relative;
  margin: 0;
  text-align: left;
}
@media (max-width: 820px) {
  .about__script {
    text-align: center;
  }
}
.about__script-word {
  display: inline-block;
  margin-left: 6px;
  font-size: 45px;
  line-height: 1.1;
  color: #ed8928;
  transform: rotate(-4.18deg);
  transform-origin: center center;
}
.about__underline {
  display: block;
  width: 94px;
  margin: 0 0 0 80px;
}
@media (max-width: 820px) {
  .about__underline {
    margin-inline: auto;
  }
}
.about__copy {
  max-width: 685px;
  font-size: 19px;
  line-height: 27px;
  color: #4b4b4b;
}
.about__copy p + p {
  margin-top: 27px;
}
@media (max-width: 820px) {
  .about__copy {
    order: 1;
  }
}
.about__lead {
  font-size: 30px;
  line-height: 40px;
  color: #462255;
}
.about__copy .about__lead + p {
  margin-top: 34px;
}
.about__copy p + .about__lead {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .about__lead {
    font-size: 24px;
    line-height: 32px;
  }
}
.about__link {
  color: #00b3e3;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about__link:hover {
  color: #ed8928;
}

.email-inline {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-top: 18px;
  line-height: 30px;
  color: #ed8928;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.email-inline__address {
  display: block;
  color: #00b3e3;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.email-inline:hover .email-inline__address {
  color: #ed8928;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 331px;
  max-width: 100%;
  min-height: 411px;
  padding: 18px 24px 30px;
  border-top: 18px solid #ed8928;
  border-radius: 6px 6px 0 0;
  background-color: #ffffff;
  text-align: center;
}
.product-card__media {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 18px;
}
.product-card__img {
  max-width: 100%;
  height: auto;
}
.product-card__img--audio {
  width: 197px;
}
.product-card__img--paperback {
  width: 185px;
}
.product-card__img--kindle {
  width: 171px;
}
.product-card__img--boxed {
  width: 220px;
}
.product-card__link {
  flex: 0 0 auto;
  font-size: 14.5px;
  line-height: 1.5;
  text-align: center;
}

.books {
  background-color: #f6f6f6;
  padding-block: 62px 0;
}
@media (max-width: 820px) {
  .books {
    padding-top: 48px;
  }
}
.books__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
}
.books__quote {
  max-width: 760px;
  margin: 49px auto 0;
  text-align: center;
}
.books__quote-text {
  font-size: 25px;
  line-height: 30px;
  color: #e27103;
}
@media (max-width: 600px) {
  .books__quote-text {
    font-size: 20px;
    line-height: 27px;
  }
}
.books__quote-cite {
  display: block;
  margin-top: 18px;
  font-size: 37px;
  color: #e27103;
}
@media (max-width: 600px) {
  .books__quote-cite {
    font-size: 30px;
  }
}
.books__copy {
  max-width: 610px;
  margin: 44px auto 0;
  line-height: 27px;
  color: #4b4b4b;
}
.books__copy p + p {
  margin-top: 27px;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 29px;
}
@media (max-width: 820px) {
  .product-grid {
    gap: 24px;
  }
}

.reviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 36px;
  max-width: 1040px;
  margin: 78px auto 0;
  padding-bottom: 0;
}

.review {
  flex: 0 1 170px;
  text-align: center;
}
.review--wide {
  flex-basis: 308px;
}
.review__stars {
  display: block;
  width: 105px;
  height: auto;
  margin: 0 auto 10px;
}
.review__text {
  font-size: 17px;
  line-height: 22px;
  color: #e27103;
}
@media (max-width: 600px) {
  .review {
    flex-basis: 100%;
  }
  .review--wide {
    flex-basis: 100%;
  }
}

.boxed-set {
  background-color: #f6f6f6;
  padding-block: 103px 181px;
}
@media (max-width: 1024px) {
  .boxed-set {
    padding-block: 80px 120px;
  }
}
@media (max-width: 820px) {
  .boxed-set {
    padding-block: 64px 88px;
  }
}
.boxed-set__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 331px minmax(0, 650px);
  justify-content: center;
  align-items: start;
  gap: 63px;
}
@media (max-width: 1024px) {
  .boxed-set__inner {
    gap: 40px;
  }
}
@media (max-width: 820px) {
  .boxed-set__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 40px;
    max-width: 600px;
  }
}
.boxed-set__copy {
  margin-top: 42px;
  line-height: 27px;
  color: #4b4b4b;
}
.boxed-set__copy p + p {
  margin-top: 27px;
}
@media (max-width: 820px) {
  .boxed-set__copy {
    margin-top: 0;
  }
}
.boxed-set__quote {
  color: #e27103;
}
.boxed-set__copy .boxed-set__quote {
  margin-top: 54px;
}

.press {
  background-color: #f6f6f6;
  padding-block: 42px 146px;
}
@media (max-width: 1024px) {
  .press {
    padding-bottom: 110px;
  }
}
@media (max-width: 820px) {
  .press {
    padding-block: 36px 80px;
  }
}
.press__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}
.press__cta {
  display: flex;
  justify-content: center;
  margin-bottom: 102px;
}
.press__cta .email-card {
  padding-block: 19px;
}
@media (max-width: 820px) {
  .press__cta {
    margin-bottom: 56px;
  }
}

.mention {
  display: grid;
  grid-template-columns: 415px minmax(0, 682px);
  justify-content: center;
  align-items: start;
  gap: 66px;
}
.mention + .mention {
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .mention {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 40px;
  }
}
@media (max-width: 820px) {
  .mention {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 32px;
    max-width: 600px;
    margin-inline: auto;
  }
  .mention + .mention {
    margin-top: 56px;
  }
}
.mention__photo {
  width: 415px;
  max-width: 100%;
  height: auto;
  background-color: #ffffff;
}
.mention__body {
  padding-top: 3px;
}
@media (max-width: 820px) {
  .mention__body {
    width: 100%;
  }
}
.mention__title {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  color: #462255;
}
@media (max-width: 600px) {
  .mention__title {
    font-size: 26px;
  }
}
.mention__sub {
  margin-top: 18px;
  font-size: 30px;
  line-height: 1.2;
  color: #462255;
}
@media (max-width: 600px) {
  .mention__sub {
    font-size: 24px;
  }
}
.mention__copy {
  margin-top: 22px;
  line-height: 27px;
  color: #4b4b4b;
}
.mention__copy p + p {
  margin-top: 27px;
}
.mention__link {
  color: #00b3e3;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mention__link:hover {
  color: #ed8928;
}

.service {
  background-color: #f6f6f6;
  padding-block: 74px 0;
}
@media (max-width: 820px) {
  .service {
    padding-top: 48px;
  }
}
.service__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 417px minmax(0, 685px);
  justify-content: center;
  align-items: start;
  gap: 65px;
}
@media (max-width: 1024px) {
  .service__inner {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 40px;
  }
}
@media (max-width: 820px) {
  .service__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 48px;
    max-width: 600px;
  }
}
.service__testimonial {
  margin-top: 0;
}
@media (max-width: 820px) {
  .service__testimonial {
    order: 2;
  }
}
.service__copy {
  max-width: 685px;
  padding-top: 3px;
}
@media (max-width: 820px) {
  .service__copy {
    order: 1;
  }
}
.service__title {
  font-family: "abril-fatface", "Abril Fatface", "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 1.15;
  color: #462255;
}
@media (max-width: 600px) {
  .service__title {
    font-size: 30px;
  }
}
.service__sub {
  margin-top: 14px;
  font-size: 30px;
  line-height: 40px;
  color: #462255;
}
@media (max-width: 600px) {
  .service__sub {
    font-size: 24px;
    line-height: 32px;
  }
}
.service__body {
  margin-top: 22px;
  line-height: 27px;
  color: #4b4b4b;
}
.service__body p + p {
  margin-top: 27px;
}
.service__link {
  color: #00b3e3;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service__link:hover {
  color: #ed8928;
}
.service--second {
  position: relative;
  margin-top: 66px;
  padding-top: 66px;
}
.service--second::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1300px, 100% - 2 * 24px);
  height: 1px;
  background-color: #e1e1e1;
  transform: translateX(-50%);
}

.service-photo {
  width: 100%;
  max-width: 1317px;
  margin-inline: auto;
  padding-inline: 24px;
  margin-top: 80px;
  padding-bottom: 145px;
}
@media (max-width: 820px) {
  .service-photo {
    margin-top: 56px;
    padding-bottom: 88px;
  }
}
.service-photo__frame {
  padding: 18px;
  background-color: #ffffff;
}
.service-photo__frame img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  .service-photo__frame {
    padding: 10px;
  }
}
.service-photo__caption {
  margin-top: 22px;
  font-size: 19px;
  line-height: 25px;
  color: #462255;
  text-align: right;
}
.service-photo--cluster {
  width: 100%;
  max-width: 1336px;
  margin-inline: auto;
  padding-inline: 24px;
  margin-top: 40px;
}
.service-photo--cluster .service-photo__frame {
  position: relative;
  padding: 0;
  background: none;
}
.service-photo--cluster .service-photo__caption {
  margin-top: 22px;
}
.service-photo--cluster .service-photo__stack {
  display: none;
}
@media (max-width: 820px) {
  .service-photo--cluster .service-photo__frame,
  .service-photo--cluster > .service-photo__caption {
    display: none;
  }
  .service-photo--cluster .service-photo__stack {
    display: block;
  }
}
.service-photo__stack-item img {
  display: block;
  width: 100%;
  height: auto;
}
.service-photo__stack-item + .service-photo__stack-item {
  margin-top: 30px;
}
.service-photo__stack-item .service-photo__caption {
  margin-top: 10px;
}
.service-photo__label {
  position: absolute;
  left: 2.8%;
  top: 73.1%;
  max-width: 31%;
  font-size: 19px;
  line-height: 25px;
  color: #462255;
  transform: rotate(-3deg);
  transform-origin: left top;
}
@media (max-width: 820px) {
  .service-photo__label {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .service-photo__label {
    font-size: 12px;
    line-height: 16px;
  }
}

.manifesto {
  background-color: #f6f6f6;
  padding-block: 23px 114px;
}
@media (max-width: 820px) {
  .manifesto {
    padding-block: 20px 72px;
  }
}
.manifesto__inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 24px;
}
.manifesto__card {
  max-width: 1033px;
  margin-inline: auto;
  padding: 74px 70px 90px;
  border-top: 18px solid #ed8928;
  border-radius: 6px 6px 0 0;
  background-color: #ffffff;
}
@media (max-width: 820px) {
  .manifesto__card {
    padding: 48px 32px 64px;
  }
}
.manifesto__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  max-width: 895px;
  margin-inline: auto;
}
@media (max-width: 820px) {
  .manifesto__columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 31px;
    max-width: 520px;
  }
}
.manifesto__col {
  font-size: 25px;
  line-height: 31px;
  color: #462255;
}
.manifesto__col p + p {
  margin-top: 31px;
}
.manifesto__col em {
  font-style: normal;
}
@media (max-width: 600px) {
  .manifesto__col {
    font-size: 20px;
    line-height: 27px;
  }
  .manifesto__col p + p {
    margin-top: 27px;
  }
}
.manifesto__signature {
  margin-top: 47px;
  text-align: center;
}
.manifesto__signature-word {
  display: block;
  font-size: 45px;
  line-height: 1.15;
  color: #ed8928;
  transform: rotate(-4.18deg);
  transform-origin: center center;
}
.manifesto__underline {
  display: block;
  width: 94px;
  margin: 4px auto 0;
  transform: translateX(-4px);
}

.privacy {
  background-color: #f6f6f6;
  padding-block: 48px 130px;
}
@media (max-width: 820px) {
  .privacy {
    padding-block: 36px 80px;
  }
}
.privacy__inner {
  width: 100%;
  max-width: 1206px;
  margin-inline: auto;
  padding-inline: 24px;
  font-size: 15px;
  line-height: 27px;
  color: #4b4b4b;
}
.privacy__section {
  margin-top: 27px;
}
.privacy__heading {
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 27px;
  text-transform: uppercase;
  color: #4b4b4b;
}
.privacy a {
  color: #00b3e3;
  transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.privacy a:hover {
  color: #ed8928;
}

.techniques {
  background-color: #f6f6f6;
  padding-block: 48px 186px;
}
@media (max-width: 820px) {
  .techniques {
    padding-block: 36px 96px;
  }
}
.techniques__grid {
  width: 100%;
  max-width: 1146px;
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 77px 29px;
  align-items: start;
}
@media (max-width: 820px) {
  .techniques__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
    max-width: 600px;
  }
}

.video-card__player {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #023f51;
}
.video-card__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card__title {
  margin-top: 24px;
  font-family: "brandon-grotesque", "Century Gothic", "Futura", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  color: #462255;
}
.video-card__copy {
  margin-top: 12px;
  font-size: 19px;
  line-height: 30px;
  color: #818181;
}

/*# sourceMappingURL=main.css.map */
