@charset "UTF-8";
/*
Theme Name: AdellaDigital
Theme URI: https://adelladigital.com
Author: Adella Digital
Author URI: https://adelladigital.com
Description: A custom theme for Adella Digital, designed for professional digital services and modern web experiences.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adelladigital
Tags: business, corporate, digital-agency, one-column, custom-colors, custom-menu, custom-logo, featured-images, accessibility-ready
*/
:root {
  --color-dark: #261D1D;
  --color-light: #FBFAFA;
  --color-matterhorn: #514747;
  --color-punch: #FF472E;
  --color-punch-a: #FF6952;
  --color-punch-b: #E92B13;
  --color-punch-c: #C91501;
  --color-linen: #FBF3EA;
  --color-linen-a: #E4DBD0;
  --color-linen-b: #C2B7AA;
  --color-linen-c: #A29486;
}

body {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #261D1D;
}

strong,
b {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: middle;
}

a {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0;
  vertical-align: middle;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
}

p {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
}

h1 {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 66px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  vertical-align: middle;
  color: #514747;
}

h2 {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 46px;
  line-height: 54px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #514747;
}

h3 {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #514747;
}

h4 {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #514747;
}

h5 {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #514747;
}

.site-header {
  position: relative;
  z-index: 1000;
  background-color: transparent;
}
.site-header .header-container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
@media (min-width: 768px) {
  .site-header .header-container {
    padding: 0 40px;
  }
}
.site-header .site-branding {
  display: flex;
  align-items: center;
  z-index: 999;
}
.site-header .site-branding .custom-logo-link {
  display: flex;
  align-items: center;
  padding: 0;
}
.site-header .site-branding .custom-logo-link img {
  width: 118px;
  height: 30px;
  object-fit: contain;
}
.site-header .header-cta {
  display: none;
}
@media (min-width: 1024px) {
  .site-header .header-cta {
    display: block;
    margin-left: auto;
    margin-right: 20px;
  }
}
.site-header .menu-toggle {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  z-index: 999;
}
.site-header .menu-toggle .dots-menu {
  width: 35px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.site-header .menu-toggle .dots-menu span, .site-header .menu-toggle .dots-menu::before, .site-header .menu-toggle .dots-menu::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #FF472E;
}
.site-header .main-navigation {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 90%;
  height: 100vh;
  background-color: #FBFAFA;
  padding: 100px 40px 40px;
  transition: right 0.3s ease, visibility 0s 0.3s;
  overflow-y: auto;
  z-index: 1001;
  visibility: hidden;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .site-header .main-navigation {
    max-width: 430px;
  }
}
.site-header .main-navigation.is-open {
  right: 0;
  visibility: visible;
  transition: right 0.3s ease;
}
.site-header .main-navigation .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .main-navigation .menu-item {
  margin: 0 0 30px 0;
}
.site-header .main-navigation .menu-item a {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #514747;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}
.site-header .main-navigation .menu-item a:hover {
  color: #FF472E;
}
.site-header .main-navigation .menu-item a .menu-number {
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 14px;
  color: #FF472E;
  min-width: 25px;
}
.site-header .menu-close {
  position: absolute;
  top: 26px;
  right: 30px;
  background: transparent;
  border: 2px solid #514747;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.site-header .menu-close:hover {
  background-color: #514747;
}
.site-header .menu-close:hover::before, .site-header .menu-close:hover::after {
  background-color: #FBFAFA;
}
.site-header .menu-close::before, .site-header .menu-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #514747;
  transition: all 0.3s ease;
}
.site-header .menu-close::before {
  transform: rotate(45deg);
}
.site-header .menu-close::after {
  transform: rotate(-45deg);
}
.site-header .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(38, 29, 29, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.site-header .menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

.site-footer {
  background-color: #ffffff;
  padding: 60px 20px 40px;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 80px 40px 50px;
  }
}

.footer-container {
  max-width: 1248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
  }
}

.footer-logo {
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-logo {
    text-align: left;
  }
}
.footer-logo .custom-logo-link {
  display: inline-block;
  text-decoration: none;
}
.footer-logo .custom-logo-link img {
  max-width: 222px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .footer-logo .custom-logo-link img {
    max-width: 294px;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-content {
    align-items: flex-start;
    text-align: left;
  }
}

.footer-navigation .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.footer-navigation .footer-menu li {
  margin: 0;
  padding: 0;
}
.footer-navigation .footer-menu a {
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-navigation .footer-menu a:hover {
  color: var(--color-punch);
}
.footer-navigation .footer-menu .current-menu-item a,
.footer-navigation .footer-menu .current_page_item a {
  color: var(--color-punch);
  font-weight: 500;
}

.footer-contact {
  margin-top: 8px;
}
.footer-contact p {
  margin: 0;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-dark);
}
.footer-contact .footer-contact-title {
  font-weight: 500;
}
.footer-contact .footer-contact-email a {
  color: var(--color-punch);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-contact .footer-contact-email a:hover {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  justify-content: center;
}
@media (min-width: 1024px) {
  .footer-social {
    justify-content: flex-start;
  }
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-social a:hover {
  opacity: 0.7;
}
.footer-social a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-copyright {
  margin-top: 8px;
}
.footer-copyright p {
  margin: 0;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-matterhorn);
}

.footer-empty {
  display: none;
}
@media (min-width: 1024px) {
  .footer-empty {
    display: block;
  }
}

.custom-logo-link,
.site-logo {
  display: inline-block;
}
.custom-logo-link img,
.site-logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 100%;
  display: block;
}

.logo-light-bg .custom-logo,
.logo-light-bg .site-logo img {
  filter: none;
}

.site-header .custom-logo-link {
  padding: 0;
}
.site-header .custom-logo-link img {
  width: 118px;
  height: 30px;
  object-fit: contain;
}

.wp-block-button__link,
.wp-element-button,
button,
.btn,
.cta {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  border-radius: 20px;
  height: 44px;
  padding: 0 40px;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.btn-primary,
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border-color: #514747;
  color: #514747;
}
.btn-primary:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: #514747;
  color: #FBFAFA;
}

.btn-primary-flip {
  background-color: transparent;
  border-color: #FBFAFA;
  color: #FBFAFA;
}
.btn-primary-flip:hover {
  background-color: #FBFAFA;
  color: #261D1D;
}

.btn-secondary,
.wp-block-button.is-style-fill .wp-block-button__link,
.wp-block-button__link {
  background-color: #FF472E;
  border-color: #FF472E;
  color: #FBFAFA;
}
.btn-secondary:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover,
.wp-block-button__link:hover {
  background-color: #E92B13;
  border-color: #E92B13;
}

.btn-dropdown,
select.btn {
  background-color: transparent;
  border-color: #514747;
  color: #514747;
  padding: 10px 15px;
  text-align: left;
  width: 100%;
  max-width: 266px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-dropdown::after,
select.btn::after {
  content: "▼";
  margin-left: 10px;
  font-size: 12px;
}

.btn-toggle,
.btn-accordion {
  width: 133px;
  height: 44px;
  border-radius: 40px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition: all 0.3s ease;
}
.btn-toggle.plus, .btn-toggle[aria-expanded=false],
.btn-accordion.plus,
.btn-accordion[aria-expanded=false] {
  background-color: #FF472E;
  color: #FBFAFA;
}
.btn-toggle.plus::before, .btn-toggle[aria-expanded=false]::before,
.btn-accordion.plus::before,
.btn-accordion[aria-expanded=false]::before {
  content: "+";
}
.btn-toggle.plus:hover, .btn-toggle[aria-expanded=false]:hover,
.btn-accordion.plus:hover,
.btn-accordion[aria-expanded=false]:hover {
  background-color: #E92B13;
}
.btn-toggle.minus, .btn-toggle[aria-expanded=true],
.btn-accordion.minus,
.btn-accordion[aria-expanded=true] {
  background-color: #514747;
  color: #FBFAFA;
}
.btn-toggle.minus::before, .btn-toggle[aria-expanded=true]::before,
.btn-accordion.minus::before,
.btn-accordion[aria-expanded=true]::before {
  content: "−";
}
.btn-toggle.minus:hover, .btn-toggle[aria-expanded=true]:hover,
.btn-accordion.minus:hover,
.btn-accordion[aria-expanded=true]:hover {
  opacity: 0.9;
}

.btn-large {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  width: auto;
  min-width: 256px;
  height: 65px;
  border-radius: 40px;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #FBF3EA;
  border-color: #FBF3EA;
  color: #FF472E;
}
.btn-large:hover {
  background-color: #E4DBD0;
  border-color: #E4DBD0;
}

.icon-hamburger,
.hamburger-menu {
  width: 30px;
  height: 20px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.icon-hamburger span,
.hamburger-menu span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #514747;
  transition: all 0.3s ease;
}
.icon-hamburger::before, .icon-hamburger::after,
.hamburger-menu::before,
.hamburger-menu::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #514747;
  transition: all 0.3s ease;
}

.icon-dots,
.dots-menu {
  width: 43px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.icon-dots::before, .icon-dots::after,
.dots-menu::before,
.dots-menu::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FF472E;
}
.icon-dots span,
.dots-menu span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FF472E;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.mobile-menu-toggle .icon-hamburger,
.mobile-menu-toggle .hamburger-menu {
  margin: 0;
}

.site-main {
  margin-top: -73px;
}

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.hero-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.hero-noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.hero-banner {
  background-color: var(--color-matterhorn);
  padding: 60px 20px;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-banner {
    padding: 80px 40px;
    min-height: 700px;
  }
}
@media (min-width: 1024px) {
  .hero-banner {
    min-height: 750px;
  }
}

.hero-container {
  max-width: 1248px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
  }
}

.hero-content {
  color: white;
  order: 2;
}
@media (min-width: 1024px) {
  .hero-content {
    order: 1;
  }
}

.hero-subtitle {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-punch);
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 32px 0;
  }
}

.hero-title {
  margin: 0 0 40px 0;
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 55px;
  }
}
@media (max-width: 390px) {
  .hero-title {
    font-size: 50px;
  }
}
.hero-title .hero-title-white {
  display: block;
  color: #FFFFFF;
}
.hero-title .hero-title-red {
  display: block;
  color: var(--color-punch);
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 40px;
    line-height: 45px;
  }
}

.hero-button {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .hero-button {
    margin-top: 48px;
  }
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  order: 1;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .hero-image {
    max-width: none;
    order: 2;
    margin-top: 0px;
  }
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.content-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .content-section {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .content-section {
    padding: 100px 40px;
  }
}

.content-section__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.content-section__noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.content-section--light {
  background-color: var(--color-light);
  color: var(--color-dark);
}

.content-section--dark {
  background-color: var(--color-matterhorn);
  color: var(--color-light);
}

.content-section--beige {
  background-color: var(--color-linen);
  color: var(--color-dark);
}

.content-section__container {
  max-width: 1248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .content-section__container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.content-section--reverse .content-section__text {
  order: 2;
}
@media (min-width: 1024px) {
  .content-section--reverse .content-section__text {
    order: 2;
  }
}
.content-section--reverse .content-section__image {
  order: 1;
}
@media (min-width: 1024px) {
  .content-section--reverse .content-section__image {
    order: 1;
  }
}

.content-section__text {
  order: 2;
}
@media (min-width: 1024px) {
  .content-section__text {
    order: 1;
  }
}

.content-section__subtitle {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
.content-section--light .content-section__subtitle, .content-section--beige .content-section__subtitle {
  color: var(--color-punch);
}
.content-section--dark .content-section__subtitle {
  color: var(--color-punch);
}

.content-section__title {
  margin: 0 0 24px 0;
}
.content-section--dark .content-section__title {
  color: var(--color-light);
}

.content-section__description {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 16px 0;
}
.content-section--dark .content-section__description {
  color: var(--color-punch);
}

.content-section__body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 32px 0;
}

.content-section__image {
  order: 1;
  width: 100%;
}
@media (min-width: 1024px) {
  .content-section__image {
    order: 2;
  }
}
.content-section__image img,
.content-section__image div {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.content-section__image h3.quote {
  text-align: center;
  color: var(--color-punch);
}

.logo-grid {
  background-color: #ffffff;
  padding: 80px 20px;
}
@media (min-width: 768px) {
  .logo-grid {
    padding: 80px 40px;
  }
}
@media (min-width: 1024px) {
  .logo-grid {
    padding: 80px 40px;
  }
}

.logo-grid__container {
  max-width: 1248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
}
@media (min-width: 768px) {
  .logo-grid__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 50px;
  }
}
@media (min-width: 1024px) {
  .logo-grid__container {
    grid-template-columns: repeat(6, 1fr);
    gap: 0px 60px;
  }
}

.logo-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
.logo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.logo-grid__item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-grid__placeholder {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  border: 2px dashed #cccccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 14px;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.simple-section {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .simple-section {
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .simple-section {
    padding: 60px 40px;
  }
}

.simple-section--light {
  background-color: var(--color-light);
  color: var(--color-dark);
}

.simple-section--dark {
  background-color: var(--color-matterhorn);
  color: var(--color-light);
}

.simple-section--beige {
  background-color: var(--color-linen);
  color: var(--color-dark);
}

.simple-section__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.simple-section__noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.simple-section__container {
  max-width: 1248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .simple-section__container {
    grid-template-columns: 2fr 1fr;
    gap: 80px;
  }
}

@media (min-width: 1024px) {
  .simple-section--reverse .simple-section__container {
    grid-template-columns: 1fr 2fr;
  }
}
.simple-section--reverse .simple-section__text {
  order: 2;
}
@media (min-width: 1024px) {
  .simple-section--reverse .simple-section__text {
    order: 2;
  }
}
.simple-section--reverse .simple-section__image {
  order: 1;
}
@media (min-width: 1024px) {
  .simple-section--reverse .simple-section__image {
    order: 1;
  }
}

.simple-section__text {
  order: 2;
}
@media (min-width: 1024px) {
  .simple-section__text {
    order: 1;
  }
}

.simple-section__title {
  margin: 0 0 24px 0;
  color: var(--color-dark);
}
.simple-section--dark .simple-section__title {
  color: var(--color-light);
}

.simple-section__body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 32px 0;
  color: var(--color-dark);
}
.simple-section--dark .simple-section__body {
  color: var(--color-light);
}

.simple-section__image {
  order: 1;
  width: 100%;
}
@media (min-width: 1024px) {
  .simple-section__image {
    order: 2;
  }
}
.simple-section__image img,
.simple-section__image div {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.testimonials-carousel {
  background-color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .testimonials-carousel {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .testimonials-carousel {
    padding: 120px 40px;
  }
}

.testimonials-carousel__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.testimonials-carousel__noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.testimonials-carousel__container {
  max-width: 1248px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .testimonials-carousel__container {
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: start;
  }
}

.testimonials-carousel__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  order: 1;
}
@media (min-width: 1024px) {
  .testimonials-carousel__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    order: 0;
    top: 100px;
  }
}

.testimonials-carousel__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials-carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--color-linen-c);
  background-color: transparent;
  color: var(--color-linen-c);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.testimonials-carousel__btn:hover {
  background-color: var(--color-linen-c);
  color: var(--color-light);
}
.testimonials-carousel__btn svg {
  width: 20px;
  height: 20px;
}

.testimonials-carousel__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonials-carousel__label {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: left;
  color: var(--color-punch);
  margin: 0;
}

.testimonials-carousel__track {
  position: relative;
  min-height: 150px;
}

.testimonials-carousel__slide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.testimonials-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonials-carousel__quote {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0;
  color: var(--color-dark);
  margin: 0 0 32px 0;
}

.testimonials-carousel__author {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: var(--color-linen-c);
  margin: 0;
}

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

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.cta-section {
  padding: 20px 20px;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 40px 40px;
  }
}
@media (min-width: 1024px) {
  .cta-section {
    padding: 40px 40px;
  }
}

.cta-section__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.2;
  z-index: 1;
}
.cta-section__noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.cta-section__container {
  max-width: 1248px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(-135deg, #FF6952 0%, #E92B13 100%);
  padding: 80px 40px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-section__container {
    gap: 48px;
    padding: 95px 60px;
  }
}
@media (min-width: 1024px) {
  .cta-section__container {
    padding: 95px 80px;
  }
}

.cta-section__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .cta-section__title {
    font-size: 64px;
  }
}
@media (min-width: 1024px) {
  .cta-section__title {
    font-size: 64px;
  }
}

.btn-cta {
  z-index: 3;
}

.expertise-section {
  padding: 80px 0;
}
.expertise-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.expertise-section__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-matterhorn);
  margin-bottom: 60px;
  text-align: left;
}
@media (max-width: 768px) {
  .expertise-section__title {
    margin-bottom: 40px;
  }
}
.expertise-section__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.expertise-section__item {
  border-top: 1px solid var(--color-linen-a);
}
.expertise-section__item:last-child {
  border-bottom: 1px solid var(--color-linen-a);
}
.expertise-section__item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0;
  gap: 20px;
}
@media (max-width: 1023px) {
  .expertise-section__item-header {
    flex-direction: column;
    padding: 24px 0;
    gap: 16px;
  }
}
.expertise-section__item-header-content {
  flex: 1;
}
@media (max-width: 1023px) {
  .expertise-section__item-header-content {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .expertise-section__item-header .btn-toggle {
    width: 100%;
    border-radius: 40px;
  }
}
.expertise-section__item-tag {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-punch);
  margin: 0 0 8px 0;
}
.expertise-section__item-title {
  color: var(--color-matterhorn);
  margin: 0;
  flex: 1;
}
.expertise-section__item-content {
  padding-bottom: 32px;
}
@media (max-width: 768px) {
  .expertise-section__item-content {
    padding-bottom: 24px;
  }
}
.expertise-section__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .expertise-section__content-grid {
    grid-template-columns: 2fr 1fr;
    gap: 60px;
  }
}
.expertise-section__item-text {
  color: var(--color-matterhorn);
  margin: 0;
}
.expertise-section__outcomes-title {
  color: var(--color-punch);
  margin: 0 0 16px 0;
}
.expertise-section__outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expertise-section__outcomes-list li {
  position: relative;
  padding-left: 0;
}
.expertise-section__outcomes-list li h4 {
  color: var(--color-matterhorn);
  margin: 0;
}

.blog-header {
  background-color: #514747;
  padding: 140px 20px 60px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-header {
    padding: 160px 40px 80px;
  }
}

.blog-header__container {
  max-width: 1248px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.blog-header__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  color: #FBFAFA;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .blog-header__title {
    font-size: 64px;
  }
}
@media (min-width: 1024px) {
  .blog-header__title {
    font-size: 80px;
  }
}

.blog-section {
  padding: 40px 20px 80px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .blog-section {
    padding: 60px 40px 100px;
  }
}

.blog-container {
  max-width: 1248px;
  margin: 0 auto;
}

.blog-filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E4DBD0;
}

.blog-filter__label {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #514747;
}

.blog-filter__dropdown select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: 1px solid #514747;
  border-radius: 20px;
  padding: 12px 40px 12px 20px;
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #514747;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23514747' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  min-width: 180px;
  height: auto;
  line-height: 1;
  width: 100%;
}
.blog-filter__dropdown select:hover {
  border-color: #FF472E;
}
.blog-filter__dropdown select:focus {
  outline: none;
  border-color: #FF472E;
}

.blog-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0;
}
@media (min-width: 768px) {
  .blog-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .blog-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.blog-divider {
  border: none;
  border-top: 1px solid #E4DBD0;
  margin: 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-crad__share {
  display: flex;
  align-items: center;
}
.blog-crad__share .blog-hero__share-label {
  margin: 10px 20px 10px 0px;
  color: #514747;
  font-size: 16px;
}
.blog-crad__share .blog-hero__social a svg {
  width: 18px;
  height: 18px;
  margin-top: 5px;
}

.blog-card__link {
  text-decoration: none;
  display: grid;
  grid-template-rows: auto auto 1fr;
  height: 100%;
}
.blog-card__link:hover .blog-card__title {
  color: #FF472E;
}
.blog-card__link:hover .blog-card__image img,
.blog-card__link:hover .blog-card__placeholder {
  transform: scale(1.02);
}

.blog-card__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #514747;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.blog-card__meta {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FF472E;
  margin: 16px 0 16px 0;
  text-decoration: none;
}
.blog-card__meta a {
  text-decoration: none;
  color: inherit;
}

.blog-card__separator {
  color: #C2B7AA;
  margin: 0 8px;
}

.blog-card__date {
  color: #FF472E;
}

.blog-card__image {
  width: 100%;
  border-radius: 16px;
  align-self: end;
}
.blog-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.blog-card__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #514747;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.blog-empty {
  text-align: center;
  padding: 80px 20px;
}
.blog-empty p {
  color: #514747;
  font-size: 18px;
}

.blog-hero__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: inherit;
}
.blog-hero__title-link:hover {
  color: #FF472E;
}

.hero-image a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.hero-image a:hover {
  opacity: 0.9;
}

.blog-hero__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  color: #FBFAFA;
  text-transform: none;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .blog-hero__title {
    font-size: 46px;
  }
}
@media (min-width: 1024px) {
  .blog-hero__title {
    font-size: 54px;
  }
}

.blog-hero__meta {
  font-family: "DM Mono", "Courier New", monospace;
}

.blog-hero__date {
  color: #FF472E;
}

.blog-hero__separator {
  color: #C2B7AA;
  margin: 0 8px;
}

.blog-hero__read-time {
  color: #FF472E;
}

.blog-hero__share-label {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #FBF3EA;
}

.blog-hero__social {
  display: flex;
  gap: 16px;
}
.blog-hero__social a {
  color: #FF472E;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.blog-hero__social a:hover {
  opacity: 0.7;
}
.blog-hero__social a svg {
  width: 24px;
  height: 24px;
}

.single-post {
  background-color: #ffffff;
}

.single-post__container {
  max-width: 1248px;
  margin: 0 auto;
}

.single-post__author {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FF472E;
  text-align: center;
  margin: 40px 0 40px 0;
}
@media (min-width: 768px) {
  .single-post__author {
    margin: 60px 0 60px 0;
  }
}

.single-post__author-name {
  color: #FF472E;
}

.related-articles {
  background-color: #FBFAFA;
  padding: 60px 20px 80px;
}
@media (min-width: 768px) {
  .related-articles {
    padding: 80px 40px 100px;
  }
}

.related-articles__container {
  max-width: 1248px;
  margin: 0 auto;
}

.related-articles__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: #514747;
  margin: 0 0 40px 0;
}
@media (min-width: 768px) {
  .related-articles__title {
    font-size: 48px;
    margin: 0 0 60px 0;
  }
}

.single-post__content h2 {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.25;
  color: #514747;
  margin: 48px 0 24px 0;
}
@media (min-width: 768px) {
  .single-post__content h2 {
    font-size: 38px;
  }
}
.single-post__content h3 {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #514747;
  margin: 40px 0 20px 0;
}
.single-post__content h4 {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #514747;
  margin: 32px 0 16px 0;
}
.single-post__content p {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #261D1D;
  margin: 0 0 24px 0;
}
.single-post__content ul, .single-post__content ol {
  margin: 0 0 24px 0;
  padding-left: 24px;
}
.single-post__content ul li, .single-post__content ol li {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #261D1D;
  margin-bottom: 8px;
}
.single-post__content blockquote {
  border-left: 4px solid #FF472E;
  margin: 32px 0;
  padding: 16px 24px;
  background-color: #FBF3EA;
}
.single-post__content blockquote p {
  font-style: italic;
  font-size: 18px;
  margin: 0;
}
.single-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 32px 0;
}
.single-post__content a {
  color: #FF472E;
  text-decoration: underline;
}
.single-post__content a:hover {
  text-decoration: none;
}

.error-404 {
  background-color: #514747;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 20px 80px;
}
@media (min-width: 768px) {
  .error-404 {
    padding: 160px 40px 100px;
  }
}

.error-404__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.error-404__code {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 120px;
  line-height: 1;
  color: #FF472E;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .error-404__code {
    font-size: 180px;
  }
}
@media (min-width: 1024px) {
  .error-404__code {
    font-size: 240px;
  }
}

.error-404__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FBFAFA;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .error-404__title {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .error-404__title {
    font-size: 64px;
  }
}

.error-404__description {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #FBFAFA;
  margin: 0 0 48px 0;
}
@media (min-width: 768px) {
  .error-404__description {
    font-size: 18px;
  }
}

.error-404__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact-hero {
  background-color: #FBFAFA;
  padding: 140px 20px 60px;
}
@media (min-width: 768px) {
  .contact-hero {
    padding: 160px 40px 80px;
  }
}

.contact-hero__container {
  max-width: 1248px;
  margin: 0 auto;
}

.contact-hero__subtitle {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FF472E;
  margin: 0 0 16px 0;
}

.contact-hero__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.1;
  margin: 0;
  text-transform: capitalize;
}

.contact-section {
  background-color: #ffffff;
  padding: 60px 20px 80px;
}
@media (min-width: 768px) {
  .contact-section {
    padding: 80px 40px 100px;
  }
}

.contact-section__container {
  max-width: 1248px;
  margin: 0 auto;
}

.contact-section__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: #FF472E;
  margin: 0 0 40px 0;
}
@media (min-width: 768px) {
  .contact-section__title {
    margin: 0 0 60px 0;
  }
}

.wpcf7 p {
  margin: 0 0 8px 0;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #514747;
}
.wpcf7 p a {
  color: inherit;
  text-decoration: underline;
  vertical-align: baseline;
}
.wpcf7 p a:hover {
  color: #FF472E;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 24px;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid #A29486;
  background-color: transparent;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  color: #514747;
  transition: border-color 0.3s ease;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 textarea::placeholder,
.wpcf7 select::placeholder {
  color: #A29486;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-bottom-color: #FF472E;
}
.wpcf7 textarea {
  min-height: 90px;
  resize: vertical;
}
.wpcf7 .wpcf7-submit {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  border-radius: 20px;
  height: 44px;
  padding: 0 40px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  background-color: #FF472E;
  color: #FBFAFA;
  transition: background-color 0.3s ease;
  margin-top: 16px;
}
.wpcf7 .wpcf7-submit:hover {
  background-color: #E92B13;
}
.wpcf7 .wpcf7-response-output {
  border: 2px solid;
  padding: 16px;
  margin: 24px 0 0;
  border-radius: 8px;
}
.wpcf7 .wpcf7-mail-sent-ok {
  border-color: #46b450;
  background-color: #ecf7ed;
  color: #46b450;
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng {
  border-color: #FF472E;
  background-color: rgba(255, 71, 46, 0.1);
  color: #FF472E;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #FF472E;
  font-size: 13px;
  margin-top: 4px;
  display: block;
}
.wpcf7 .wpcf7-spinner {
  margin-left: 16px;
}

.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .wpcf7-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-section__alternative {
  margin-top: 60px;
}

.contact-section__alt-title {
  margin: 0 0 16px 0;
}

.contact-section__alt-text {
  letter-spacing: 1px;
}
.contact-section__alt-text a {
  color: #261D1D;
  text-decoration: underline;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
}
.contact-section__alt-text a:hover {
  text-decoration: none;
}

.pricing-packages {
  background-color: #FBFAFA;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .pricing-packages {
    padding: 80px 40px;
  }
}
@media (min-width: 1024px) {
  .pricing-packages {
    padding: 100px 60px;
  }
}

.pricing-packages__container {
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-packages__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.1;
  color: #261D1D;
  margin: 0 0 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .pricing-packages__title {
    font-size: 40px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1024px) {
  .pricing-packages__title {
    font-size: 48px;
  }
}

.pricing-packages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 640px) {
  .pricing-packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .pricing-packages__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .pricing-packages__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.pricing-package {
  background-color: #ffffff;
  border: 1px solid #E4DBD0;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
  transition: all 0.3s ease;
}
.pricing-package:hover {
  border-color: #A29486;
  box-shadow: 0 4px 12px rgba(38, 29, 29, 0.08);
}
@media (min-width: 768px) {
  .pricing-package {
    padding: 20px;
  }
}

.pricing-package__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-family: "DM Mono", "Courier New", monospace;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #FF472E;
  border-bottom: 1px solid #E4DBD0;
  padding-bottom: 5px;
}

.pricing-package__badge-icon {
  font-size: 18px;
}

.pricing-package__header {
  margin-bottom: 24px;
}

.pricing-package__name {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color: #261D1D;
  margin: 0 0 8px;
}

.pricing-package__subtitle {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #514747;
  margin: 0 0 12px;
}

.pricing-package__description {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #514747;
  margin: 0;
}

.pricing-package__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}

.pricing-package__price-amount {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: #261D1D;
}
@media (min-width: 768px) {
  .pricing-package__price-amount {
    font-size: 40px;
  }
}

.pricing-package__price-period {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #514747;
}

.pricing-package__button {
  width: 100%;
  margin-bottom: 14px;
}
.pricing-package__button.btn-secondary {
  background-color: #FF472E;
}
.pricing-package__button.btn-secondary:hover {
  background-color: #E92B13;
}

.pricing-package__no-button {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: #514747;
  margin: 0 0 24px;
  padding: 12px 0;
}

.pricing-package__features {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-package__features-title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #261D1D;
  margin: 0 0 16px;
}

.pricing-package__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-package__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #261D1D;
  text-decoration: none;
}

.pricing-package__feature-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: #FF472E;
}

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.three-column-copy {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .three-column-copy {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .three-column-copy {
    padding: 120px 40px;
  }
}
.three-column-copy--light {
  background-color: #FBFAFA;
  color: #261D1D;
}
.three-column-copy--dark {
  background-color: #514747;
  color: #FBFAFA;
}
.three-column-copy--beige {
  background-color: #FBF3EA;
  color: #261D1D;
}

.three-column-copy__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.three-column-copy__noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.three-column-copy__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.three-column-copy__header {
  margin-bottom: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .three-column-copy__header {
    margin-bottom: 80px;
  }
}

.three-column-copy__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .three-column-copy__title {
    font-size: 46px;
    margin-bottom: 5px;
  }
}
@media (min-width: 1024px) {
  .three-column-copy__title {
    font-size: 46px;
  }
}

.three-column-copy__subtitle {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: #FBF3EA;
}
@media (min-width: 768px) {
  .three-column-copy__subtitle {
    font-size: 16px;
  }
}

.three-column-copy--light .three-column-copy__title,
.three-column-copy--beige .three-column-copy__title {
  color: #261D1D;
}

.three-column-copy--dark .three-column-copy__title {
  color: #FBFAFA;
}

.three-column-copy--light .three-column-copy__subtitle,
.three-column-copy--beige .three-column-copy__subtitle {
  color: #514747;
}

.three-column-copy--dark .three-column-copy__subtitle {
  color: #FBF3EA;
}

.three-column-copy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .three-column-copy__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .three-column-copy__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
  }
}

.three-column-copy__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.three-column-copy__icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 64px;
  color: #FF472E;
}
@media (min-width: 768px) {
  .three-column-copy__icon {
    font-size: 56px;
    margin-bottom: 32px;
    min-width: 72px;
    height: 72px;
  }
}
.three-column-copy__icon i.dashicons {
  font-size: 1em;
  width: 1em;
  height: 1em;
  line-height: 1;
}
.three-column-copy__icon img.three-column-copy__icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.three-column-copy__column-title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 12px;
  border-bottom: 1px solid #A29486;
  padding-bottom: 10px;
  color: #FF472E;
  width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .three-column-copy__column-title {
    margin-bottom: 16px;
  }
}

.three-column-copy__column-subtitle {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 16px;
  color: #514747;
  text-align: left;
}
@media (min-width: 768px) {
  .three-column-copy__column-subtitle {
    margin-bottom: 20px;
  }
}

.three-column-copy__button {
  width: 100%;
  margin-top: 30px;
}

.three-column-copy__container > .three-column-copy__button {
  width: auto;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}

.three-column-copy__column-text {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .three-column-copy__column-text {
    line-height: 1.6;
  }
}

.three-column-copy--light .three-column-copy__column-text,
.three-column-copy--beige .three-column-copy__column-text {
  color: #261D1D;
}

.three-column-copy--dark .three-column-copy__column-text {
  color: #FBF3EA;
}

.three-column-copy--dark .three-column-copy__column-title {
  color: #FF472E;
}

.three-column-copy--dark .three-column-copy__column-subtitle {
  color: #FBF3EA;
}

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.side-by-side-blocks {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .side-by-side-blocks {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .side-by-side-blocks {
    padding: 120px 40px;
  }
}
.side-by-side-blocks--light {
  background-color: #FBFAFA;
  color: #261D1D;
}
.side-by-side-blocks--dark {
  background-color: #514747;
  color: #FBFAFA;
}
.side-by-side-blocks--beige {
  background-color: #FBF3EA;
  color: #261D1D;
}

.side-by-side-blocks__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.side-by-side-blocks__noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.side-by-side-blocks__container {
  max-width: 1248px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.side-by-side-blocks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .side-by-side-blocks__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .side-by-side-blocks__grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 48px;
  }
}

.side-by-side-blocks__block {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .side-by-side-blocks__block {
    padding: 32px;
  }
}
.side-by-side-blocks--light .side-by-side-blocks__block {
  background-color: #ffffff;
}
.side-by-side-blocks--dark .side-by-side-blocks__block {
  background-color: rgba(251, 250, 250, 0.05);
}
.side-by-side-blocks--beige .side-by-side-blocks__block {
  background-color: rgba(255, 255, 255, 0.4);
}

.side-by-side-blocks__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .side-by-side-blocks__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.side-by-side-blocks--light .side-by-side-blocks__title {
  color: #261D1D;
}
.side-by-side-blocks--dark .side-by-side-blocks__title {
  color: #ffffff;
}
.side-by-side-blocks--beige .side-by-side-blocks__title {
  color: #261D1D;
}

.side-by-side-blocks__content {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 24px;
  flex: 1;
}
@media (min-width: 768px) {
  .side-by-side-blocks__content {
    font-size: 16px;
    margin-bottom: 28px;
  }
}
.side-by-side-blocks--light .side-by-side-blocks__content {
  color: #514747;
}
.side-by-side-blocks--dark .side-by-side-blocks__content {
  color: #e8e8e8;
}
.side-by-side-blocks--beige .side-by-side-blocks__content {
  color: #514747;
}
.side-by-side-blocks--dark .side-by-side-blocks__content h2, .side-by-side-blocks--dark .side-by-side-blocks__content h3, .side-by-side-blocks--dark .side-by-side-blocks__content h4, .side-by-side-blocks--dark .side-by-side-blocks__content h5, .side-by-side-blocks--dark .side-by-side-blocks__content h6 {
  color: #ffffff;
}
.side-by-side-blocks__content p {
  margin: 0 0 16px;
}
.side-by-side-blocks__content p:last-child {
  margin-bottom: 0;
}
.side-by-side-blocks__content ul, .side-by-side-blocks__content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.side-by-side-blocks__content ul:last-child, .side-by-side-blocks__content ol:last-child {
  margin-bottom: 0;
}
.side-by-side-blocks__content ul li, .side-by-side-blocks__content ol li {
  margin-bottom: 8px;
}
.side-by-side-blocks__content strong {
  font-weight: 600;
}
.side-by-side-blocks__content em {
  font-style: italic;
}
.side-by-side-blocks__content a {
  text-decoration: underline;
}
.side-by-side-blocks--light .side-by-side-blocks__content a {
  color: #FF472E;
}
.side-by-side-blocks--dark .side-by-side-blocks__content a {
  color: #FF472E;
}
.side-by-side-blocks--beige .side-by-side-blocks__content a {
  color: #FF472E;
}
.side-by-side-blocks__content a:hover {
  text-decoration: none;
}

.side-by-side-blocks__button {
  align-self: center;
  margin-top: auto;
}
.side-by-side-blocks--light .side-by-side-blocks__button.btn-primary, .side-by-side-blocks--beige .side-by-side-blocks__button.btn-primary {
  background-color: transparent;
  border-color: #514747;
  color: #514747;
}
.side-by-side-blocks--light .side-by-side-blocks__button.btn-primary:hover, .side-by-side-blocks--beige .side-by-side-blocks__button.btn-primary:hover {
  background-color: #514747;
  color: #FBFAFA;
}
.side-by-side-blocks--light .side-by-side-blocks__button.btn-secondary, .side-by-side-blocks--beige .side-by-side-blocks__button.btn-secondary {
  background-color: #FF472E;
  border-color: #FF472E;
  color: #FBFAFA;
}
.side-by-side-blocks--light .side-by-side-blocks__button.btn-secondary:hover, .side-by-side-blocks--beige .side-by-side-blocks__button.btn-secondary:hover {
  background-color: #E92B13;
  border-color: #E92B13;
}
.side-by-side-blocks--dark .side-by-side-blocks__button.btn-primary {
  background-color: transparent;
  border-color: #FBFAFA;
  color: #FBFAFA;
}
.side-by-side-blocks--dark .side-by-side-blocks__button.btn-primary:hover {
  background-color: #FBFAFA;
  color: #261D1D;
}
.side-by-side-blocks--dark .side-by-side-blocks__button.btn-secondary {
  background-color: #FF472E;
  border-color: #FF472E;
  color: #FBFAFA;
}
.side-by-side-blocks--dark .side-by-side-blocks__button.btn-secondary:hover {
  background-color: #E92B13;
  border-color: #E92B13;
}

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.text-block {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .text-block {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .text-block {
    padding: 120px 40px;
  }
}

.text-block__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.text-block__noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.text-block--light {
  background-color: var(--color-light);
  color: var(--color-dark);
}

.text-block--dark {
  background-color: var(--color-matterhorn);
  color: var(--color-light);
}

.text-block--beige {
  background-color: var(--color-linen);
  color: var(--color-dark);
}

.text-block__container {
  max-width: 1248px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.text-block__subtitle {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
.text-block--light .text-block__subtitle, .text-block--beige .text-block__subtitle {
  color: var(--color-punch);
}
.text-block--dark .text-block__subtitle {
  color: var(--color-punch);
}

.text-block__title {
  margin: 0 0 24px 0;
}
.text-block--dark .text-block__title {
  color: var(--color-light);
}

.text-block__body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}
.text-block--dark .text-block__body {
  color: var(--color-light);
}
.text-block__body a {
  color: var(--color-punch);
  text-decoration: none;
}
.text-block__body a:hover {
  text-decoration: underline;
}
.text-block__body strong {
  font-weight: 600;
}
.text-block__body em {
  font-style: italic;
}
.text-block__body p {
  margin: 0 0 16px 0;
}
.text-block__body p:last-child {
  margin-bottom: 0;
}
.text-block__body ul,
.text-block__body ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
}
.text-block__body ul:last-child,
.text-block__body ol:last-child {
  margin-bottom: 0;
}
.text-block__body li {
  margin: 0 0 8px 0;
}
.text-block__body li:last-child {
  margin-bottom: 0;
}
.text-block__body h2,
.text-block__body h3,
.text-block__body h4,
.text-block__body h5,
.text-block__body h6 {
  margin: 24px 0 16px 0;
}
.text-block--dark .text-block__body h2,
.text-block--dark .text-block__body h3,
.text-block--dark .text-block__body h4,
.text-block--dark .text-block__body h5,
.text-block--dark .text-block__body h6 {
  color: var(--color-light) !important;
}

/* Add your custom styles below */

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