/*
Theme Name: CyberFrog (Matt)
Author: Matthew Shabaily
Version: 7.1
*/

:root {
  --navy: #151f3c;
  --blue: #3867ee;
  --mist: #f3f4f9;
  --paper: #fff;
  --ink: #10182f;
  --copy: #27324d;
  --container: 1520px;
}

html {
  overflow-x: hidden;
}
body {
  color: var(--navy);
  background: var(--paper);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body * {
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
blockquote,
figcaption,
label,
a,
button {
  max-width: 100%;
  overflow-wrap: anywhere;
}
input,
textarea,
select {
  min-width: 0;
  max-width: 100%;
}
.site-container > *,
.button-row > *,
[class$="__grid"] > * {
  min-width: 0;
}

.site-container {
  width: calc(100% - 48px);
  max-width: var(--container);
  margin: 0 auto;
}
.section-shell {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
}
.section-title,
.home-hero h1,
.home-contact h2,
.site-footer h2,
.service-card h3,
.project-card h3 {
  font-family: "Alata", sans-serif;
  font-weight: 400;
}
.section-title {
  margin: 0 0 42px;
  color: var(--navy);
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.1;
}
.section-title--center {
  text-align: center;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 8px 28px;
  border: 1px solid var(--blue);
  border-radius: 2px;
  font-family: "Alata", sans-serif;
  font-size: 18px;
  line-height: 1.3;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--primary {
  background: var(--blue);
  color: #fff;
}
.button--primary:hover {
  background: #2454dd;
}
.button--secondary {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}
.button--secondary:hover {
  background: var(--navy);
  color: #fff;
}
.button--small {
  min-width: 120px;
  padding-inline: 20px;
}
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* Header and menu */
.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  height: 146px;
}
.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: block;
  width: 206px;
}
.site-logo img {
  width: 100%;
  filter: brightness(0) saturate(100%) invert(39%) sepia(75%) saturate(1214%)
    hue-rotate(203deg) brightness(97%) contrast(91%);
}
.site-nav {
  margin-left: auto;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.3vw, 64px);
}
.site-nav a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  font-family: "Alata", sans-serif;
  font-size: 20px;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.site-nav a:hover {
  color: var(--blue);
}
.site-nav__list > .menu-item:last-child a {
  min-width: 120px;
  justify-content: center;
  padding: 8px 20px;
  background: var(--blue);
  color: #fff;
}
.site-nav__list > .menu-item:last-child a:hover {
  color: #fff;
  background: #2454dd;
}
.menu-toggle {
  display: none;
}

/* Hero */
.home-hero {
  position: relative;
  min-height: 802px;
  overflow: hidden;
  background: var(--mist);
}
.home-hero::after {
  position: absolute;
  z-index: 1;
  bottom: -123px;
  left: -5%;
  width: 110%;
  height: 215px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: #f4f4f9;
  content: "";
}
.home-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 802px;
  padding-top: 315px;
}
.home-hero__content {
  position: relative;
  z-index: 3;
  width: min(660px, 46%);
}
.home-hero h1 {
  margin: 0;
  font-size: clamp(58px, 5vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.home-hero__content p {
  max-width: 630px;
  margin: 14px 0 20px;
  font-size: clamp(19px, 1.25vw, 24px);
  line-height: 1.5;
}
.home-hero__visual {
  position: absolute;
  top: 100px;
  right: 0;
  width: min(50%, 820px);
  height: 702px;
  overflow: hidden;
}
.home-hero__abstract {
  position: absolute;
  top: -160px;
  right: 0;
  width: 100%;
  height: 850px;
  object-fit: cover;
  object-position: 50% 30%;
  opacity: 0.96;
}
.home-hero__portrait {
  position: absolute;
  right: 28px;
  bottom: 0;
  width: 80%;
  height: 639px;
  object-fit: cover;
  object-position: top center;
  -webkit-mask: var(--home-hero-mask) center / 100% 100% no-repeat;
  mask: var(--home-hero-mask) center / 100% 100% no-repeat;
}
.home-hero__dots,
.home-services__dots {
  position: absolute;
  width: 345px;
  height: 425px;
  background-image: radial-gradient(
    circle,
    rgba(56, 103, 238, 0.12) 0 5px,
    transparent 5.5px
  );
  background-size: 79px 79px;
}
.home-hero__dots--left {
  top: 31px;
  left: 5px;
  opacity: 0.52;
}
.home-hero__dots--right {
  top: 95px;
  right: 32px;
  opacity: 0.48;
}

/* Services */
.home-services {
  min-height: 930px;
  padding-top: 84px;
  padding-bottom: 140px;
  background: var(--paper);
}
.home-services::before {
  position: absolute;
  z-index: 0;
  top: -110px;
  left: -5%;
  width: 110%;
  height: 100%;
  border-radius: 0 0 50% 50% / 0 0 5% 5%;
  background: var(--mist);
  content: "";
}
.home-services .site-container {
  position: relative;
  z-index: 1;
}
.home-services__dots {
  top: 135px;
  right: 2%;
  opacity: 0.43;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 53px;
}
.service-card {
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(20, 31, 60, 0.08);
}
.service-card__image {
  width: 100%;
  height: 415px;
  object-fit: cover;
}
.service-card__content {
  min-height: 202px;
  padding: 25px 21px 28px;
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.2;
}
.service-card p {
  min-height: 48px;
  margin: 0 0 16px;
  color: var(--copy);
}

/* Featured projects */
.home-projects {
  padding-top: 75px;
  background: #fff;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px;
}
.project-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  object-fit: cover;
}
.project-card h3 {
  margin: 16px 0 4px;
  font-size: 20px;
  line-height: 1.25;
}
.project-card p {
  min-height: 48px;
  margin: 0 0 6px;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.45;
}
.project-card__link {
  display: inline-flex;
  min-height: 24px;
  gap: 14px;
  align-items: center;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}
.project-card__link span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.project-card__link:hover span {
  transform: translateX(5px);
}

/* Testimonials */
.home-testimonials {
  min-height: 400px;
  padding: 58px 0 56px;
  background: var(--mist);
}
.home-testimonials .section-title {
  margin-bottom: 48px;
}
.testimonial-slider {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 80px 56px;
  text-align: center;
}
.testimonial {
  display: none;
  margin: 0;
}
.testimonial.is-active {
  display: block;
}
.testimonial blockquote {
  margin: 0;
  color: #101010;
  font-size: 16px;
  line-height: 1.5;
}
.testimonial figcaption {
  margin-top: 26px;
  font-family: "Alata", sans-serif;
  font-size: 26px;
}
.testimonial-slider__arrow {
  position: absolute;
  bottom: 2px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}
.testimonial-slider__arrow--previous {
  left: calc(50% - 270px);
}
.testimonial-slider__arrow--next {
  left: calc(50% + 226px);
}
.testimonial-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 31px;
  padding: 0;
  list-style: none;
}

.testimonial-slider__dots li {
  margin: 0;
  line-height: 0;
}
.testimonial-slider__dot {
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d8d8d8;
}
.testimonial-slider__dot.is-active {
  background: #ffbe55;
}

/* Contact and Gravity Forms */
.home-contact {
  padding: 98px 0 76px;
  background: var(--mist);
}
.home-contact::before,
.home-contact::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}
.home-contact::before {
  bottom: -185px;
  left: -102px;
  width: 500px;
  height: 500px;
  background: rgba(255, 190, 85, 0.11);
}
.home-contact::after {
  bottom: -130px;
  left: 170px;
  width: 420px;
  height: 420px;
  background: rgba(56, 103, 238, 0.05);
}
.home-contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.25fr;
  gap: 120px;
  align-items: start;
}
.home-contact h2 {
  margin: 0 0 25px;
  font-size: clamp(40px, 3.3vw, 54px);
  line-height: 1.1;
}
.home-contact h2 span {
  color: var(--blue);
}
.home-contact__copy p {
  max-width: 435px;
  margin: 0 0 30px;
  color: #111;
  line-height: 1.5;
}
.home-contact__copy > a {
  font-family: "Alata", sans-serif;
  font-size: 23px;
  overflow-wrap: anywhere;
}
.home-contact__form {
  min-height: 330px;
}
.gravityform-placeholder {
  display: flex;
  min-height: 330px;
  align-items: center;
  padding: 30px;
  border: 1px dashed rgba(21, 31, 60, 0.35);
  color: var(--copy);
}
.gravityform-placeholder p {
  max-width: 380px;
}
.home-contact .gform_wrapper {
  margin: 0;
}
.home-contact .gform_fields {
  grid-row-gap: 30px;
  grid-column-gap: 72px;
}
.home-contact .gfield_label {
  margin-bottom: 6px !important;
  color: #68718a;
  font-size: 14px !important;
  font-weight: 400 !important;
}
.home-contact .gfield_required,
.home-contact .gfield_required_text,
.home-contact .gfield_required_asterisk,
.home-contact .validation_message {
  display: none !important;
}
.home-contact input:not([type="submit"]),
.home-contact textarea {
  padding: 5px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--navy) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--navy) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
  outline: 0 !important;
}
.home-contact textarea {
  min-block-size: 118px !important;
  resize: none;
}
.home-contact .gform_footer {
  margin-top: 28px !important;
  padding-top: 0 !important;
}
.home-contact .gform_button {
  min-width: 120px;
  min-height: 43px;
  padding: 8px 28px !important;
  border: 1px solid var(--blue) !important;
  border-radius: 2px !important;
  background: var(--blue) !important;
  color: #fff !important;
  font-family: "Alata", sans-serif !important;
  font-size: 18px !important;
}

/* About */
.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
}
.about-hero {
  position: relative;
  min-height: 566px;
  overflow: hidden;
  background: var(--mist);
}
.about-hero__inner {
  position: relative;
  min-height: 566px;
  padding-top: 200px;
}
.about-hero__copy {
  position: relative;
  z-index: 2;
  width: min(710px, 52%);
}
.about-hero h1 {
  margin: 0;
  font-family: "Alata", sans-serif;
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.13;
}
.about-hero h1 span {
  color: var(--blue);
}
.about-hero__intro {
  max-width: 675px;
  margin: 19px 0 22px;
  color: #111;
  font-size: 18px;
}
.about-hero__art {
  position: absolute;
  z-index: 1;
  top: 90px;
  right: 45px;
  width: min(45vw, 680px);
}
.about-hero__dots {
  position: absolute;
  width: 270px;
  height: 230px;
  background-image: radial-gradient(
    circle,
    rgba(56, 103, 238, 0.88) 0 3px,
    transparent 3.5px
  );
  background-size: 28px 28px;
  opacity: 0.52;
}
.about-hero__dots--left {
  top: 15px;
  left: 0;
  opacity: 0.18;
}
.about-hero__dots--right {
  top: 150px;
  right: 0;
  width: 180px;
  height: 160px;
  background-image: radial-gradient(
    circle,
    rgba(56, 103, 238, 0.16) 0 4px,
    transparent 4.5px
  );
  background-size: 48px 48px;
}
.about-story {
  padding: 54px 0 84px;
  background: #fff;
}
.about-story__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(450px, 0.9fr);
  gap: clamp(65px, 10vw, 180px);
  align-items: center;
}
.about-story .section-title {
  margin-bottom: 20px;
}
.about-story__text {
  max-width: 640px;
  color: #111;
}
.about-story__text p {
  margin: 0 0 29px;
}
.about-story__text p:last-child {
  margin-bottom: 0;
}
.about-services {
  padding: 60px 62px 47px;
  border-radius: 6px;
  background: #f8f9fc;
}
.about-services h2 {
  margin: 0 0 33px;
  font-family: "Alata", sans-serif;
  font-size: 29px;
  font-weight: 400;
}
.about-services__item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  align-items: center;
  margin: 0 0 30px;
}

.about-services__item > div:only-child {
  grid-column: 1 / -1;
}

.about-services__item:last-child {
  margin-bottom: 0;
}
.about-services__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 5px;
  background: #e4ebff;
  color: var(--blue);
}
.about-services__icon svg,
.about-services__icon img {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.about-services h3 {
  margin: 0 0 3px;
  font-family: "Alata", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
}
.about-services p {
  margin: 0;
  color: var(--copy);
  font-size: 14px;
  line-height: 1.45;
}
.about-shape {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
}
.about-shape--left {
  top: -20px;
  left: -39px;
  width: 92px;
  height: 92px;
  background: rgba(56, 103, 238, 0.45);
  box-shadow: 0 33px 0 rgba(255, 190, 85, 0.9);
}
.about-shape--right {
  top: -28px;
  right: -34px;
  width: 110px;
  height: 110px;
  background: rgba(56, 103, 238, 0.38);
  box-shadow: 39px 39px 0 19px rgba(255, 190, 85, 0.9);
}
.about-projects {
  padding: 84px 0 78px;
  background: var(--mist);
}
.about-projects .section-title {
  margin-bottom: 17px;
}
.about-projects__intro {
  max-width: 595px;
  margin: 0 0 39px;
  color: #111;
}
.about-projects .section-cta {
  margin-top: 48px;
}

/* Services */
.services-hero {
  position: relative;
  min-height: 566px;
  overflow: hidden;
  background: var(--mist);
}
.services-hero__inner {
  position: relative;
  min-height: 566px;
  padding-top: 236px;
}
.services-hero__copy {
  position: relative;
  z-index: 2;
  width: min(680px, 50%);
}
.services-hero h1 {
  margin: 0;
  font-family: "Alata", sans-serif;
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.13;
}
.services-hero h1 span {
  color: var(--blue);
}
.services-hero__copy > p:not(.eyebrow) {
  margin: 17px 0 22px;
  color: #111;
  font-size: 16px;
}
.services-hero__art {
  position: absolute;
  top: 121px;
  right: -14px;
  width: min(54vw, 827px);
}
.services-hero__art img {
  width: 100%;
}
.services-hero__art span {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 100%;
  color: #fff;
  font-family: "Alata", sans-serif;
  font-size: clamp(28px, 2.55vw, 48px);
  text-align: center;
  transform: translate(-50%, -50%);
}
.services-hero__dots {
  position: absolute;
  width: 275px;
  height: 365px;
  background-image: radial-gradient(
    circle,
    rgba(56, 103, 238, 0.12) 0 5px,
    transparent 5.5px
  );
  background-size: 79px 79px;
}
.services-hero__dots--left {
  top: 30px;
  left: 4px;
  opacity: 0.55;
}
.services-hero__dots--right {
  top: 90px;
  right: -45px;
  opacity: 0.55;
}
@media (min-width: 1180px) {
  .services-hero__copy {
    width: min(790px, 54%);
  }
  .services-hero h1 {
    max-width: 100%;
    white-space: normal;
  }
}
.services-list {
  padding: 63px 0 80px;
  background: #fff;
}
.services-list .section-title {
  margin-bottom: 48px;
}
.services-list__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 52px;
}
.services-list__card {
  width: calc((100% - 104px) / 3);
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(21, 31, 60, 0.09);
}
.services-list__card > img {
  width: 100%;
  height: 415px;
  object-fit: cover;
}
.services-list__content {
  min-height: 202px;
  padding: 29px 21px 28px;
}
.services-list__content h3 {
  margin: 0 0 8px;
  font-family: "Alata", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
.services-list__content p {
  min-height: 47px;
  margin: 0 0 16px;
  color: var(--copy);
}
.services-process {
  padding: 74px 0 75px;
  background: var(--mist);
}
.services-process .section-title {
  margin-bottom: 16px;
}
.services-process__intro {
  margin: 0 0 46px;
  color: #111;
}
.services-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.services-process__card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  min-height: 170px;
  padding: 25px 30px;
  border-radius: 7px;
  background: #fff;
  align-items: start;
}
.services-process__card > img {
  width: 60px;
  height: 60px;
  padding: 9px;
  border-radius: 7px;
  background: rgba(149, 176, 255, 0.2);
  object-fit: contain;
}
.services-process__card h3 {
  margin: 8px 0 19px;
  font-family: "Alata", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}
.services-process__card p {
  margin: 0;
  color: var(--copy);
  font-size: 15px;
  line-height: 1.45;
}

/* Graphic Design */
.graphic-hero {
  position: relative;
  min-height: 566px;
  overflow: hidden;
  background: var(--mist);
}
.graphic-hero__inner {
  position: relative;
  min-height: 566px;
  padding-top: 236px;
}
.graphic-hero__copy {
  position: relative;
  z-index: 2;
  width: min(680px, 50%);
}
.graphic-hero h1 {
  margin: 0;
  font-family: "Alata", sans-serif;
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 400;
  line-height: 1.13;
}
.graphic-hero h1 span {
  color: var(--blue);
}
.graphic-hero__copy > p:not(.eyebrow) {
  margin: 17px 0 22px;
  color: #111;
  font-size: 16px;
}
.graphic-hero__visual {
  position: absolute;
  top: 110px;
  right: 75px;
  width: 660px;
  height: 390px;
}
.graphic-hero__background {
  position: absolute;
  top: 88px;
  left: 0;
  width: 430px;
  height: 220px;
  object-fit: cover;
}
.graphic-hero__feature {
  position: absolute;
  top: 10px;
  right: 55px;
  width: 255px;
  height: 300px;
  object-fit: contain;
}
.graphic-hero__dots {
  position: absolute;
  width: 275px;
  height: 365px;
  background-image: radial-gradient(
    circle,
    rgba(56, 103, 238, 0.12) 0 5px,
    transparent 5.5px
  );
  background-size: 79px 79px;
}
.graphic-hero__dots--left {
  top: 30px;
  left: 4px;
  opacity: 0.55;
}
.graphic-hero__dots--right {
  top: 90px;
  right: -45px;
  opacity: 0.55;
}
.graphic-gallery {
  position: relative;
  padding: 67px 0 50px;
  overflow: hidden;
  background: #fff;
}
.graphic-gallery .section-title {
  margin-bottom: 47px;
}
.graphic-gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 36px;
}
.graphic-gallery__item {
  min-width: 0;
}
.graphic-gallery__item img {
  width: 100%;
  height: 339px;
  object-fit: cover;
}
.graphic-gallery__item h3 {
  margin: 18px 0 0;
  font-family: "Alata", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.graphic-gallery--marketing {
  padding-top: 55px;
}
.graphic-gallery--marketing .graphic-gallery__grid {
  grid-template-columns: 1.2fr 0.62fr 1.2fr 1.2fr;
  gap: 28px;
}
.graphic-gallery--marketing .graphic-gallery__item img {
  height: 223px;
}
.graphic-gallery--marketing .graphic-gallery__item:nth-child(2) img {
  object-fit: cover;
}
.graphic-gallery--youtube {
  padding-top: 87px;
  padding-bottom: 88px;
}
.graphic-gallery--youtube .graphic-gallery__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.graphic-gallery--youtube .graphic-gallery__item img {
  height: 298px;
}

/* Website Design */
.website-hero {
  position: relative;
  min-height: 566px;
  overflow: hidden;
  background: var(--mist);
}
.website-hero__inner {
  position: relative;
  min-height: 566px;
  padding-top: 236px;
}
.website-hero__copy {
  position: relative;
  z-index: 2;
  width: min(680px, 50%);
}
.website-hero h1 {
  margin: 0;
  font-family: "Alata", sans-serif;
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 400;
  line-height: 1.13;
}
.website-hero h1 span {
  color: var(--blue);
}
.website-hero__copy > p:not(.eyebrow) {
  margin: 17px 0 22px;
  color: #111;
  font-size: 16px;
}
.website-hero__visual {
  position: absolute;
  top: 105px;
  right: 60px;
  width: 675px;
  height: 400px;
}
.website-hero__blob {
  position: absolute;
  top: 14px;
  right: 0;
  width: 570px;
}
.website-hero__desktop {
  position: absolute;
  top: 5px;
  left: 52px;
  width: 350px;
  height: 335px;
  object-fit: contain;
}
.website-hero__phone {
  position: absolute;
  top: 34px;
  right: 73px;
  width: 120px;
  height: 280px;
  object-fit: contain;
}
.website-hero__dots {
  position: absolute;
  width: 275px;
  height: 365px;
  background-image: radial-gradient(
    circle,
    rgba(56, 103, 238, 0.12) 0 5px,
    transparent 5.5px
  );
  background-size: 79px 79px;
}
.website-hero__dots--left {
  top: 30px;
  left: 4px;
  opacity: 0.55;
}
.website-hero__dots--right {
  top: 90px;
  right: -45px;
  opacity: 0.55;
}
.website-projects {
  padding: 64px 0 90px;
  background: #fff;
}
.website-projects .section-title {
  margin-bottom: 16px;
}
.website-projects__intro {
  margin: 0 0 47px;
  color: #111;
}
.website-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 52px;
}
.website-projects__card {
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(21, 31, 60, 0.09);
}
.website-projects__visual {
  display: grid;
  height: 415px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(#3867ee, #001437);
}
.website-projects__visual img {
  width: 91%;
  height: 89%;
  object-fit: contain;
}
.website-projects__content {
  min-height: 202px;
  padding: 29px 21px 28px;
}
.website-projects__content h3 {
  margin: 0 0 8px;
  font-family: "Alata", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
.website-projects__content p {
  min-height: 47px;
  margin: 0 0 16px;
  color: var(--copy);
}

/* Content Creation */
.content-hero {
  position: relative;
  min-height: 566px;
  overflow: hidden;
  background: var(--mist);
}
.content-hero__inner {
  position: relative;
  min-height: 566px;
  padding-top: 236px;
}
.content-hero__copy {
  position: relative;
  z-index: 2;
  width: min(680px, 50%);
}
.content-hero h1 {
  margin: 0;
  font-family: "Alata", sans-serif;
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 400;
  line-height: 1.13;
}
.content-hero h1 span {
  color: var(--blue);
}
.content-hero__copy > p:not(.eyebrow) {
  margin: 17px 0 22px;
  color: #111;
  font-size: 16px;
}
.content-hero__visual {
  position: absolute;
  top: 102px;
  right: -15px;
  width: min(54vw, 827px);
  height: 441px;
}
.content-hero__backdrop {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.content-hero__phone {
  position: absolute;
  z-index: 2;
  top: -70px;
  left: 235px;
  width: 320px;
  max-width: none;
  transform: rotate(-85.45deg);
}
.content-hero__dots {
  position: absolute;
  width: 275px;
  height: 365px;
  background-image: radial-gradient(
    circle,
    rgba(56, 103, 238, 0.12) 0 5px,
    transparent 5.5px
  );
  background-size: 79px 79px;
}
.content-hero__dots--left {
  top: 30px;
  left: 4px;
  opacity: 0.55;
}
.content-hero__dots--right {
  top: 90px;
  right: -45px;
  opacity: 0.55;
}
.content-shortform {
  position: relative;
  min-height: 977px;
  padding: 59px 0 58px;
  overflow: hidden;
  background: #fff;
}
.content-shortform__inner {
  position: relative;
  z-index: 1;
}
.content-shortform .section-title {
  margin-bottom: 70px;
}
.content-shortform__backdrop {
  position: absolute;
  z-index: 0;
  top: 145px;
  left: 50%;
  width: 100vw;
  height: 560px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translateX(-50%);
}
.content-shortform__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.content-shortform__item {
  width: min(100%, 267px);
  min-width: 0;
  justify-self: center;
}
.content-shortform__item > a {
  display: block;
}
.content-shortform__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 267 / 549;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.content-shortform__item a:hover img {
  transform: translateY(-5px);
}
.content-shortform__item h3 {
  margin: 17px 0 0;
  font-family: "Alata", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
.content-shortform .section-cta {
  margin-top: 38px;
}
.content-platforms {
  position: relative;
  padding: 18px 0 84px;
  overflow: hidden;
  background: #fff;
}
.content-platforms::after {
  position: absolute;
  right: -23px;
  bottom: 10px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(56, 103, 238, 0.45);
  box-shadow: 31px 17px 0 rgba(255, 190, 85, 0.92);
  content: "";
}
.content-platforms .section-title {
  margin-bottom: 48px;
}
.content-platforms__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 72px;
}
.content-platforms__card {
  display: flex;
  min-height: 347px;
  flex-direction: column;
  align-items: center;
  padding: 35px 24px 28px;
  border-radius: 0 0 7px 7px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(21, 31, 60, 0.09);
  text-align: center;
}
.content-platforms__icon {
  display: grid;
  width: 94px;
  height: 94px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 11px;
  background: rgba(149, 176, 255, 0.2);
}
.content-platforms__icon img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}
.content-platforms__card h3 {
  margin: 0 0 8px;
  font-family: "Alata", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
.content-platforms__card p {
  flex: 1;
  margin: 0 0 19px;
  color: var(--copy);
  line-height: 1.5;
}
.content-creation-page .home-contact .gform_fields > .gfield:nth-child(-n + 4) {
  grid-column: span 6;
}
.content-creation-page .home-contact .gform_fields > .gfield:nth-child(n + 5) {
  grid-column: 1 / -1;
}

/* Remaining service pages */
.decor-dot-grid {
  position: absolute;
  width: 345px;
  height: 425px;
  background-image: radial-gradient(
    circle,
    rgba(56, 103, 238, 0.12) 0 5px,
    transparent 5.5px
  );
  background-size: 79px 79px;
  pointer-events: none;
}
.decor-dot-grid--left {
  top: 31px;
  left: 5px;
  opacity: 0.52;
}
.decor-dot-grid--right {
  top: 95px;
  right: -40px;
  opacity: 0.48;
}
.extended-service-hero {
  position: relative;
  min-height: 566px;
  overflow: hidden;
  background: var(--mist);
}
.extended-service-hero__inner {
  position: relative;
  min-height: 566px;
  padding-top: 236px;
}
.extended-service-hero__copy {
  position: relative;
  z-index: 2;
  width: min(760px, 52%);
}
.extended-service-hero h1 {
  margin: 0;
  font-family: "Alata", sans-serif;
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 400;
  line-height: 1.13;
}
.extended-service-hero h1 span {
  color: var(--blue);
}
.extended-service-hero__copy > p:not(.eyebrow) {
  margin: 17px 0 22px;
  color: #111;
}
.extended-service-hero__visual {
  position: absolute;
  top: 102px;
  right: -15px;
  width: min(54vw, 827px);
  height: 441px;
}
.extended-service-hero__backdrop {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-hero__laptop {
  position: absolute;
  z-index: 2;
  top: 58px;
  left: 76px;
  width: 565px;
  transform: rotate(-7.4deg);
}
.video-hero__premiere {
  position: absolute;
  z-index: 3;
  right: 154px;
  bottom: 73px;
  width: 106px;
  height: 103px;
  object-fit: contain;
  transform: rotate(7.9deg);
}
.edit-services {
  padding: 62px 0 67px;
  background: #fff;
}
.edit-services__grid,
.social-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 72px;
}
.icon-card {
  display: flex;
  min-height: 278px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 22px;
  border-radius: 0 0 7px 7px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(21, 31, 60, 0.09);
  text-align: center;
}
.icon-card__icon {
  display: grid;
  width: 94px;
  height: 94px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 11px;
  background: rgba(149, 176, 255, 0.2);
}
.icon-card__icon img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}
.icon-card h3 {
  margin: 0 0 8px;
  font-family: "Alata", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
.icon-card p {
  max-width: 250px;
  margin: 0;
  color: var(--copy);
  line-height: 1.45;
}
.featured-videos {
  padding: 59px 0 61px;
  background: var(--mist);
}
.featured-videos__grid,
.social-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 55px;
}
.featured-video img {
  width: 100%;
  aspect-ratio: 470 / 264;
  border-radius: 7px;
  object-fit: cover;
}
.featured-video h3,
.social-campaign h3 {
  margin: 18px 0 7px;
  font-family: "Alata", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
.featured-video p,
.social-campaign p {
  min-height: 48px;
  margin: 0 0 17px;
  color: var(--copy);
}
.editing-delivers {
  padding: 67px 0;
  background: #fff;
}
.editing-delivers__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.04fr;
  gap: 132px;
  align-items: center;
}
.editing-delivers__copy .section-title {
  margin-bottom: 28px;
}
.prose {
  color: #111;
}
.prose p {
  margin: 0 0 22px;
}
.prose p:last-child {
  margin-bottom: 0;
}
.editing-style-panel {
  padding: 48px 60px;
  border-radius: 7px;
  background: #f9faff;
}
.editing-style-panel > h3 {
  margin: 0 0 31px;
  font-family: "Alata", sans-serif;
  font-size: 26px;
  font-weight: 400;
}
.editing-style-panel__list {
  display: grid;
  gap: 23px;
}
.editing-style-point {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  align-items: center;
}
.editing-style-point__icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 7px;
  background: rgba(149, 176, 255, 0.2);
}
.editing-style-point__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.editing-style-point h4 {
  margin: 0;
  font-family: "Alata", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
.editing-style-point p {
  margin: 1px 0 0;
  color: var(--copy);
}
.social-hero__artwork {
  position: absolute;
  z-index: 2;
  top: -6px;
  left: 150px;
  width: 520px;
  height: 420px;
  object-fit: contain;
}
.social-featured {
  padding: 63px 0 72px;
  background: #fff;
}
.social-campaign img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  object-fit: cover;
}
.social-services-grid {
  margin-top: 72px;
}
.social-services-grid .icon-card {
  min-height: 278px;
}

/* Projects and blogs */
.archive-hero {
  position: relative;
  min-height: 566px;
  overflow: hidden;
  background: var(--mist);
}
.archive-hero__inner {
  position: relative;
  min-height: 566px;
  padding-top: 236px;
}
.archive-hero__copy {
  position: relative;
  z-index: 2;
  width: min(710px, 51%);
}
.archive-hero h1 {
  margin: 0;
  font-family: "Alata", sans-serif;
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 400;
  line-height: 1.13;
}
.archive-hero h1 span {
  color: var(--blue);
}
.archive-hero__copy > p:not(.eyebrow) {
  margin: 17px 0 22px;
  color: #111;
}
.archive-hero__banner {
  position: absolute;
  top: 111px;
  right: -15px;
  width: min(54vw, 827px);
  height: 441px;
}
.archive-hero__banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.archive-hero__banner strong {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 70%;
  color: #fff;
  font-family: "Alata", sans-serif;
  font-size: clamp(28px, 2.6vw, 48px);
  font-weight: 400;
  text-align: center;
  transform: translate(-50%, -50%);
}
.archive-list {
  min-height: 1490px;
  padding: 65px 0 72px;
  background: #fff;
}
.archive-list__inner {
  max-width: 1390px;
}
.archive-cards {
  display: grid;
  gap: 46px;
}
.archive-card {
  display: grid;
  grid-template-columns: 520px 1fr;
  height: 300px;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(21, 31, 60, 0.09);
}
.archive-card__image {
  min-height: 300px;
  overflow: hidden;
}
.archive-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 55px 46px 42px;
}
.archive-card h2 {
  margin: 0 0 9px;
  font-family: "Alata", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}
.archive-card__content > p {
  margin: 0;
  color: #111;
}
.archive-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  color: #9a9fae;
  font-size: 14px;
}
.archive-card__meta a {
  display: inline-flex;
  min-height: 24px;
  gap: 16px;
  align-items: center;
  color: var(--blue);
  font-weight: 600;
}
.archive-card__meta a span {
  font-size: 23px;
  transition: transform 0.2s ease;
}
.archive-card__meta a:hover span {
  transform: translateX(5px);
}
.archive-pagination {
  margin-top: 70px;
}
.archive-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.archive-pagination a,
.archive-pagination span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #b7c5ef;
  color: var(--blue);
}
.archive-pagination .current {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.archive-empty {
  padding: 80px 0;
  text-align: center;
}

/* Project and blog detail */
.entry-hero {
  position: relative;
  min-height: 566px;
  overflow: hidden;
  background: var(--mist);
}
.entry-hero__inner {
  position: relative;
  min-height: 566px;
  padding-top: 235px;
}
.entry-hero__copy {
  position: relative;
  z-index: 2;
  width: min(700px, 48%);
}
.entry-back {
  display: inline-flex;
  min-height: 24px;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 15px;
}
.entry-hero h1 {
  margin: 0;
  font-family: "Alata", sans-serif;
  font-size: clamp(42px, 3.5vw, 58px);
  font-weight: 400;
  line-height: 1.12;
}
.entry-hero__copy > p {
  margin: 17px 0 22px;
  color: #111;
}
.entry-hero__image {
  position: absolute;
  top: 112px;
  right: 20px;
  width: min(54vw, 827px);
  height: 440px;
}
.entry-hero__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.entry-hero__photo {
  position: absolute;
  top: 60px;
  left: 180px;
  width: 555px;
  height: 340px;
  border-radius: 7px;
  object-fit: cover;
  transform: rotate(4deg);
}
.entry-body {
  padding: 73px 0 82px;
  background: #fff;
}
.entry-body h2 {
  margin: 0 0 26px;
  font-family: "Alata", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
}
.entry-body__content {
  font-size: 16px;
}
.entry-body__content p {
  margin-bottom: 24px;
}
.entry-gallery__title {
  margin-top: 70px !important;
  font-size: 32px !important;
}
.entry-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
}
.entry-gallery figure {
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
}
.entry-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact page */
.contact-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--mist);
}
.contact-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 820px;
  padding-top: 360px;
}
.contact-hero__copy {
  position: relative;
  z-index: 3;
  width: min(650px, 48%);
}
.contact-hero h1 {
  margin: 0;
  font-family: "Alata", sans-serif;
  font-size: clamp(58px, 5vw, 96px);
  font-weight: 400;
  line-height: 1.08;
}
.contact-hero__copy p {
  max-width: 650px;
  margin: 12px 0 22px;
  font-size: 22px;
  line-height: 1.5;
}
.contact-hero__visual {
  position: absolute;
  z-index: 2;
  top: 120px;
  right: 110px;
  width: 780px;
  height: 700px;
}
.contact-hero__backdrop {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-hero__portrait {
  position: absolute;
  z-index: 2;
  right: 84px;
  bottom: 0;
  width: 520px;
  height: 650px;
  object-fit: cover;
  object-position: top center;
  -webkit-mask-image: linear-gradient(#000 94%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(#000 94%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}
.contact-hero__wave {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: bottom;
}
.contact-main {
  min-height: 620px;
  padding: 90px 0 82px;
  background: #fff;
}
.contact-main__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 140px;
  align-items: start;
}
.contact-main__copy h2 {
  margin: 0 0 23px;
  font-family: "Alata", sans-serif;
  font-size: 48px;
  font-weight: 400;
}
.contact-main__copy p {
  max-width: 600px;
  margin: 0 0 31px;
  color: #111;
}
.contact-main__email {
  display: inline-block;
  margin-bottom: 30px;
  font-family: "Alata", sans-serif;
  font-size: 26px;
  overflow-wrap: anywhere;
}
.contact-socials {
  display: flex;
  gap: 18px;
}
.contact-socials a,
.contact-socials span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
}
.contact-socials img {
  width: 40px;
  height: 40px;
}
.contact-main__form.home-contact {
  padding: 8px 0 0;
  background: transparent;
}
.contact-main__form.home-contact::before,
.contact-main__form.home-contact::after {
  display: none;
}
.home-contact .gform_fields > .gfield:nth-child(-n + 4) {
  grid-column: span 6;
}
.home-contact .gform_fields > .gfield:nth-child(n + 5) {
  grid-column: 1 / -1;
}

/* Generic WordPress pages and error states */
.generic-hero,
.error-page {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}
.generic-hero {
  min-height: 470px;
  padding: 220px 0 90px;
}
.generic-hero h1,
.error-page h1 {
  margin: 0;
  font-family: "Alata", sans-serif;
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 400;
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.generic-content {
  min-height: 320px;
}
.generic-content .prose {
  max-width: 900px;
}
.generic-content .prose > :first-child {
  margin-top: 0;
}
.generic-content .prose img,
.generic-content .prose iframe,
.generic-content .prose video,
.generic-content .prose table {
  max-width: 100%;
}
.generic-content .prose table {
  display: block;
  overflow-x: auto;
}
.error-page {
  display: grid;
  min-height: 720px;
  place-items: center;
  padding: 190px 0 100px;
}
.error-page__inner {
  max-width: 760px;
  text-align: center;
}
.error-page__code {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: clamp(72px, 10vw, 150px);
  line-height: 0.9;
}
.error-page p {
  max-width: 560px;
  margin: 24px auto 30px;
  color: var(--copy);
  font-size: 19px;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.site-footer::before {
  position: absolute;
  z-index: 0;
  top: 25px;
  right: -65px;
  width: 230px;
  height: 230px;
  border: 62px solid #29438f;
  border-right-color: #ffbe55;
  border-bottom-color: #ffbe55;
  border-radius: 50%;
  content: "";
  opacity: 0.9;
  pointer-events: none;
}
.site-footer__main {
  position: relative;
  z-index: 1;
  min-height: 307px;
  padding: 69px 0 34px;
}
.site-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.9fr 0.9fr 0.9fr 1.05fr;
  gap: 55px;
}
.site-footer__brand img {
  width: 260px;
  filter: brightness(0) invert(1);
}
.site-footer__brand p {
  max-width: 400px;
  margin-top: 25px;
  font-size: 19px;
  line-height: 1.5;
}
.site-footer h2 {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.2;
}
.footer-menu {
  display: grid;
  gap: 7px;
}
.footer-menu a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  font-size: 16px;
  transition: color 0.2s ease;
}
.footer-menu a:hover {
  color: #9eb7ff;
}
.social-links {
  display: flex;
  gap: 22px;
  margin-top: 20px;
}
.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
}
.social-links img {
  width: 40px;
  height: 40px;
}
.site-footer__location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  font-size: 16px;
}
.site-footer__location img {
  width: 20px;
  height: 20px;
}
.site-footer__legal {
  position: relative;
  z-index: 1;
  min-height: 30px;
  padding: 6px 0;
  background: #fff;
  color: #000;
  font-size: 13px;
  line-height: 18px;
}
.site-footer__legal .site-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__legal a {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .service-grid {
    gap: 28px;
  }
  .project-grid {
    gap: 25px;
  }
  .home-contact__grid {
    gap: 70px;
  }
  .site-footer__grid {
    gap: 35px;
  }
}

@media (max-width: 1024px) {
  .site-header {
    height: 102px;
  }
  .site-logo {
    width: 166px;
  }
  .site-nav__list {
    gap: 22px;
  }
  .site-nav a {
    font-size: 16px;
  }
  .home-hero,
  .home-hero__inner {
    min-height: 720px;
  }
  .home-hero__inner {
    padding-top: 245px;
  }
  .home-hero__visual {
    right: 0;
    width: 50%;
  }
  .home-hero h1 {
    font-size: 62px;
  }
  .home-hero__content p {
    font-size: 19px;
  }
  .about-hero,
  .about-hero__inner {
    min-height: 600px;
  }
  .about-hero__inner {
    padding-top: 205px;
  }
  .about-hero__art {
    right: -150px;
    width: 690px;
  }
  .about-story__grid {
    gap: 60px;
  }
  .about-services {
    padding: 48px 40px;
  }
  .services-hero__art {
    right: -14px;
    width: min(54vw, 740px);
  }
  .services-list__grid {
    gap: 28px;
  }
  .services-list__card {
    width: calc((100% - 56px) / 3);
  }
  .services-process__grid {
    gap: 16px;
  }
  .services-process__card {
    grid-template-columns: 50px 1fr;
    gap: 12px;
    padding: 22px 18px;
  }
  .services-process__card > img {
    width: 50px;
    height: 50px;
  }
  .services-process__card h3 {
    font-size: 23px;
  }
  .graphic-hero__visual {
    right: -70px;
  }
  .graphic-gallery__grid {
    gap: 22px;
  }
  .graphic-gallery__item h3 {
    font-size: 19px;
  }
  .website-hero__visual {
    right: -65px;
  }
  .website-projects__grid {
    gap: 28px;
  }
  .content-hero__visual {
    right: -145px;
    width: 740px;
  }
  .content-shortform__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
  .content-shortform__item img {
    width: 100%;
    height: auto;
    aspect-ratio: 267 / 549;
  }
  .content-platforms__grid {
    gap: 20px;
  }
  .extended-service-hero__visual {
    right: -135px;
    width: 740px;
  }
  .edit-services__grid,
  .social-services-grid {
    gap: 20px;
  }
  .featured-videos__grid,
  .social-featured__grid {
    gap: 25px;
  }
  .editing-delivers__grid {
    gap: 55px;
  }
  .editing-style-panel {
    padding-inline: 40px;
  }
  .archive-hero__banner {
    right: -135px;
    width: 740px;
  }
  .archive-card {
    grid-template-columns: 390px 1fr;
  }
  .archive-card__content {
    padding: 40px 34px;
  }
  .entry-hero__image {
    right: -120px;
    width: 740px;
  }
  .entry-hero__photo {
    left: 150px;
  }
  .contact-hero__visual {
    right: -130px;
  }
  .contact-main__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .service-card__image {
    height: 300px;
  }
  .home-contact__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .site-footer__connect {
    grid-column: 2 / -1;
  }
}

@media (max-width: 900px) {
  .site-container {
    width: calc(100% - 38px);
  }
  .section-shell {
    padding: 65px 0;
  }
  .site-header {
    height: 80px;
  }
  .site-logo {
    position: relative;
    z-index: 2;
    width: 145px;
  }
  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 10px 8px;
    gap: 5px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
  }
  .site-nav {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    display: none;
    padding: 0 19px 24px;
    background: var(--mist);
    box-shadow: 0 10px 20px rgba(21, 31, 60, 0.09);
  }
  .site-header.is-menu-open {
    background: var(--mist);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav__list {
    display: grid;
    gap: 5px;
  }
  .site-nav a {
    width: 100%;
    min-height: 45px;
    font-size: 19px;
  }
  .site-nav__list > .menu-item:last-child a {
    width: fit-content;
    margin-top: 10px;
  }
  body.nav-is-open .home-hero,
  body.nav-is-open .home-hero__inner,
  body.nav-is-open .services-hero,
  body.nav-is-open .services-hero__inner,
  body.nav-is-open .content-hero,
  body.nav-is-open .content-hero__inner,
  body.nav-is-open .extended-service-hero,
  body.nav-is-open .extended-service-hero__inner,
  body.nav-is-open .archive-hero,
  body.nav-is-open .archive-hero__inner,
  body.nav-is-open .entry-hero,
  body.nav-is-open .entry-hero__inner,
  body.nav-is-open .contact-hero,
  body.nav-is-open .contact-hero__inner {
    min-height: 1010px;
  }
  body.nav-is-open .home-hero__inner,
  body.nav-is-open .services-hero__inner,
  body.nav-is-open .content-hero__inner,
  body.nav-is-open .extended-service-hero__inner,
  body.nav-is-open .archive-hero__inner,
  body.nav-is-open .entry-hero__inner,
  body.nav-is-open .contact-hero__inner {
    padding-top: 430px;
  }
  .home-hero,
  .home-hero__inner {
    min-height: 780px;
  }
  .home-hero__inner {
    padding-top: 144px;
  }
  .home-hero__content {
    width: 100%;
  }
  .home-hero h1 {
    max-width: 390px;
    font-size: clamp(52px, 15vw, 68px);
  }
  .home-hero__content p {
    max-width: 460px;
    font-size: 18px;
  }
  .about-hero,
  .about-hero__inner {
    min-height: 705px;
  }
  .about-hero__inner {
    padding-top: 130px;
  }
  .about-hero__copy {
    width: 100%;
  }
  .about-hero h1 {
    max-width: 460px;
    font-size: clamp(43px, 13vw, 58px);
  }
  .about-hero__intro {
    max-width: 420px;
    font-size: 16px;
  }
  .about-hero__art {
    top: auto;
    right: -95px;
    bottom: -25px;
    width: 530px;
  }
  .about-hero__dots--right {
    display: none;
  }
  .about-story {
    padding-top: 70px;
  }
  .about-story__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .about-story .section-title {
    margin-bottom: 16px;
  }
  .about-services {
    padding: 35px 25px;
  }
  .about-services__item {
    grid-template-columns: 48px 1fr;
    gap: 17px;
    margin-bottom: 24px;
  }
  .about-services__icon {
    width: 48px;
    height: 48px;
  }
  .about-projects {
    padding-top: 65px;
  }
  .services-hero,
  .services-hero__inner {
    min-height: 680px;
  }
  .services-hero__inner {
    padding-top: 130px;
  }
  .services-hero__copy {
    width: 100%;
  }
  .services-hero h1 {
    max-width: 475px;
    font-size: clamp(43px, 13vw, 58px);
  }
  .services-hero__copy > p:not(.eyebrow) {
    max-width: 420px;
  }
  .services-hero__art {
    top: auto;
    right: -170px;
    bottom: -14px;
    width: 640px;
  }
  .services-hero__dots--right {
    display: none;
  }
  .services-list {
    padding-top: 65px;
  }
  .services-list .section-title {
    text-align: left;
  }
  .services-list__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .services-list__card {
    width: 100%;
  }
  .services-list__card > img {
    height: auto;
    aspect-ratio: 471 / 415;
  }
  .services-list__content {
    min-height: 0;
  }
  .services-process__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .services-process__card {
    min-height: 0;
  }
  .graphic-hero,
  .graphic-hero__inner {
    min-height: 680px;
  }
  .graphic-hero__inner {
    padding-top: 130px;
  }
  .graphic-hero__copy {
    width: 100%;
  }
  .graphic-hero h1 {
    max-width: 475px;
    font-size: clamp(43px, 13vw, 58px);
  }
  .graphic-hero__copy > p:not(.eyebrow) {
    max-width: 420px;
  }
  .graphic-hero__visual {
    top: auto;
    right: -105px;
    bottom: -20px;
    width: 490px;
    height: 330px;
  }
  .graphic-hero__background {
    top: 80px;
    width: 320px;
    height: 165px;
  }
  .graphic-hero__feature {
    top: 5px;
    right: 35px;
    width: 175px;
    height: 235px;
  }
  .graphic-hero__dots--right {
    display: none;
  }
  .graphic-gallery {
    padding: 60px 0 20px;
  }
  .graphic-gallery .section-title {
    margin-bottom: 29px;
  }
  .graphic-gallery__grid,
  .graphic-gallery--marketing .graphic-gallery__grid,
  .graphic-gallery--youtube .graphic-gallery__grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
  }
  .graphic-gallery__item {
    flex: 0 0 min(76vw, 360px);
    scroll-snap-align: start;
  }
  .graphic-gallery__item img,
  .graphic-gallery--marketing .graphic-gallery__item img,
  .graphic-gallery--youtube .graphic-gallery__item img {
    height: 300px;
  }
  .website-hero,
  .website-hero__inner {
    min-height: 680px;
  }
  .website-hero__inner {
    padding-top: 130px;
  }
  .website-hero__copy {
    width: 100%;
  }
  .website-hero h1 {
    max-width: 475px;
    font-size: clamp(43px, 13vw, 58px);
  }
  .website-hero__copy > p:not(.eyebrow) {
    max-width: 420px;
  }
  .website-hero__visual {
    top: auto;
    right: -100px;
    bottom: -25px;
    width: 510px;
    height: 330px;
  }
  .website-hero__blob {
    width: 450px;
  }
  .website-hero__desktop {
    left: 42px;
    width: 260px;
    height: 260px;
  }
  .website-hero__phone {
    top: 28px;
    right: 58px;
    width: 88px;
    height: 220px;
  }
  .website-hero__dots--right {
    display: none;
  }
  .website-projects {
    padding: 60px 0;
  }
  .website-projects__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .website-projects__visual {
    height: auto;
    aspect-ratio: 471 / 415;
  }
  .website-projects__content {
    min-height: 0;
  }
  .content-hero,
  .content-hero__inner {
    min-height: 705px;
  }
  .content-hero__inner {
    padding-top: 130px;
  }
  .content-hero__copy {
    width: 100%;
  }
  .content-hero h1 {
    max-width: 475px;
    font-size: clamp(43px, 13vw, 58px);
  }
  .content-hero__copy > p:not(.eyebrow) {
    max-width: 420px;
  }
  .content-hero__visual {
    top: auto;
    right: -150px;
    bottom: -30px;
    width: 650px;
    height: 390px;
  }
  .content-hero__phone {
    top: -58px;
    left: 190px;
    width: 270px;
  }
  .content-hero__dots--right {
    display: none;
  }
  .content-shortform {
    min-height: 0;
    padding: 60px 0;
  }
  .content-shortform .section-title {
    margin-bottom: 35px;
  }
  .content-shortform__backdrop {
    top: 140px;
    height: 470px;
    opacity: 0.85;
  }
  .content-shortform__grid {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
  }
  .content-shortform__item {
    flex: 0 0 min(70vw, 267px);
    scroll-snap-align: start;
  }
  .content-shortform__item img {
    width: 100%;
    height: auto;
    aspect-ratio: 267 / 549;
  }
  .content-shortform__item h3 {
    font-size: 22px;
  }
  .content-platforms {
    padding: 50px 0 65px;
  }
  .content-platforms__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .content-platforms__card {
    min-height: 0;
  }
  .extended-service-hero,
  .extended-service-hero__inner {
    min-height: 705px;
  }
  .extended-service-hero__inner {
    padding-top: 130px;
  }
  .extended-service-hero__copy {
    width: 100%;
  }
  .extended-service-hero h1 {
    max-width: 475px;
    font-size: clamp(43px, 13vw, 58px);
  }
  .extended-service-hero__copy > p:not(.eyebrow) {
    max-width: 430px;
  }
  .extended-service-hero__visual {
    top: auto;
    right: -155px;
    bottom: -20px;
    width: 650px;
    height: 390px;
  }
  .video-hero__laptop {
    top: 55px;
    left: 80px;
    width: 475px;
  }
  .video-hero__premiere {
    right: 95px;
    bottom: 56px;
    width: 82px;
    height: 82px;
  }
  .social-hero__artwork {
    top: 14px;
    left: 150px;
    width: 360px;
    height: 330px;
  }
  .decor-dot-grid--right {
    display: none;
  }
  .edit-services__grid,
  .social-services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .icon-card {
    min-height: 0;
  }
  .featured-videos__grid,
  .social-featured__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .featured-video p,
  .social-campaign p {
    min-height: 0;
  }
  .editing-delivers__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .editing-style-panel {
    padding: 38px 24px;
  }
  .editing-style-point {
    grid-template-columns: 54px 1fr;
    gap: 18px;
  }
  .editing-style-point__icon {
    width: 54px;
    height: 54px;
  }
  .social-services-grid {
    margin-top: 55px;
  }
  .archive-hero,
  .archive-hero__inner {
    min-height: 680px;
  }
  .archive-hero__inner {
    padding-top: 130px;
  }
  .archive-hero__copy {
    width: 100%;
  }
  .archive-hero h1 {
    max-width: 475px;
    font-size: clamp(43px, 13vw, 58px);
  }
  .archive-hero__copy > p:not(.eyebrow) {
    max-width: 430px;
  }
  .archive-hero__banner {
    top: auto;
    right: -130px;
    bottom: -42px;
    width: 620px;
    height: 340px;
  }
  .archive-list {
    min-height: 0;
    padding-block: 60px;
  }
  .archive-cards {
    gap: 28px;
  }
  .archive-card {
    grid-template-columns: 1fr;
    height: auto;
  }
  .archive-card__image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .archive-card__content {
    padding: 28px 24px 25px;
  }
  .archive-card h2 {
    font-size: 27px;
  }
  .archive-card__meta {
    gap: 20px;
  }
  .entry-hero,
  .entry-hero__inner {
    min-height: 735px;
  }
  .entry-hero__inner {
    padding-top: 120px;
  }
  .entry-hero__copy {
    width: 100%;
  }
  .entry-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }
  .entry-hero__image {
    top: auto;
    right: -125px;
    bottom: -10px;
    width: 620px;
    height: 340px;
  }
  .entry-hero__photo {
    top: 50px;
    left: 165px;
    width: 390px;
    height: 238px;
  }
  .entry-body {
    padding: 60px 0;
  }
  .entry-body h2 {
    font-size: 39px;
  }
  .entry-gallery {
    display: flex;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
  }
  .entry-gallery figure {
    flex: 0 0 72vw;
    scroll-snap-align: start;
  }
  .contact-hero,
  .contact-hero__inner {
    min-height: 760px;
  }
  .contact-hero__inner {
    padding-top: 135px;
  }
  .contact-hero__copy {
    width: 100%;
  }
  .contact-hero h1 {
    font-size: clamp(54px, 16vw, 72px);
  }
  .contact-hero__copy p {
    max-width: 430px;
    font-size: 18px;
  }
  .contact-hero__visual {
    top: auto;
    right: -135px;
    bottom: -25px;
    width: 580px;
    height: 465px;
  }
  .contact-hero__portrait {
    right: 92px;
    bottom: -15px;
    width: 345px;
    height: 415px;
  }
  .contact-hero__wave {
    height: 55px;
  }
  .contact-main {
    min-height: 0;
    padding: 65px 0;
  }
  .contact-main__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .contact-main__copy h2 {
    font-size: 42px;
  }
  .contact-main__email {
    font-size: 22px;
  }
  .home-hero__visual {
    top: auto;
    right: -70px;
    bottom: -58px;
    width: 510px;
    height: 445px;
  }
  .home-hero__abstract {
    top: -120px;
    height: 700px;
  }
  .home-hero__portrait {
    right: 15px;
    bottom: -42px;
    width: 310px;
    height: 500px;
  }
  .home-hero__dots {
    width: 190px;
    height: 235px;
    background-size: 52px 52px;
  }
  .home-hero__dots--right {
    display: none;
  }
  .home-services {
    min-height: 0;
    padding-top: 64px;
    padding-bottom: 92px;
  }
  .home-services::before {
    top: -42px;
    height: 103%;
  }
  .home-services__dots {
    display: none;
  }
  .service-grid,
  .project-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .service-card__image {
    height: auto;
    aspect-ratio: 471 / 415;
  }
  .service-card__content {
    min-height: 0;
  }
  .project-card {
    display: grid;
    grid-template-columns: 125px 1fr;
    column-gap: 17px;
    align-items: start;
  }
  .project-card__image {
    grid-row: span 3;
  }
  .project-card h3 {
    margin-top: 0;
  }
  .project-card p {
    min-height: 0;
  }
  .section-cta {
    margin-top: 37px;
  }
  .home-testimonials {
    min-height: 0;
  }
  .testimonial-slider {
    padding: 0 28px 48px;
  }
  .testimonial figcaption {
    font-size: 21px;
  }
  .testimonial-slider__arrow {
    bottom: -2px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }
  .testimonial-slider__arrow--previous {
    left: calc(50% - 152px);
  }
  .testimonial-slider__arrow--next {
    left: calc(50% + 116px);
  }
  .testimonial-slider__dots {
    gap: 12px;
  }
  .testimonial-slider__dot {
    width: 24px;
    height: 24px;
  }
  .home-contact__grid {
    gap: 38px;
  }
  .home-contact h2 {
    font-size: 45px;
  }
  .home-contact__form {
    min-height: 250px;
  }
  .home-contact .gform_fields {
    grid-column-gap: 0;
  }
  .home-contact .gform_fields > .gfield {
    grid-column: 1 / -1 !important;
  }
  .content-creation-page .home-contact .gform_fields > .gfield {
    grid-column: 1 / -1 !important;
  }
  .site-footer__main {
    padding-top: 55px;
  }
  .site-footer::before {
    top: 165px;
    right: -145px;
    width: 190px;
    height: 190px;
    border-width: 48px;
    opacity: 0.28;
  }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
  }
  .site-footer__brand img {
    width: 210px;
  }
  .site-footer__brand p {
    margin-top: 17px;
    font-size: 16px;
  }
  .site-footer__connect {
    grid-column: 1 / -1;
  }
  .site-footer__legal .site-container {
    display: block;
  }
  .site-footer__legal span,
  .site-footer__legal a {
    display: block;
  }

  /* Keep every hero in normal document flow on narrow screens. This makes
     variable CMS copy safe and prevents artwork from covering live text. */
  .home-hero,
  .home-hero__inner,
  .about-hero,
  .about-hero__inner,
  .services-hero,
  .services-hero__inner,
  .graphic-hero,
  .graphic-hero__inner,
  .website-hero,
  .website-hero__inner,
  .content-hero,
  .content-hero__inner,
  .extended-service-hero,
  .extended-service-hero__inner,
  .archive-hero,
  .archive-hero__inner,
  .entry-hero,
  .entry-hero__inner,
  .contact-hero,
  .contact-hero__inner {
    min-height: 0;
  }
  .home-hero__inner,
  .about-hero__inner,
  .services-hero__inner,
  .graphic-hero__inner,
  .website-hero__inner,
  .content-hero__inner,
  .extended-service-hero__inner,
  .archive-hero__inner,
  .entry-hero__inner,
  .contact-hero__inner {
    display: flex;
    flex-direction: column;
    padding-top: 130px;
    padding-bottom: 0;
  }
  .entry-hero__inner {
    padding-top: 110px;
  }
  .home-hero__visual,
  .about-hero__art,
  .services-hero__art,
  .graphic-hero__visual,
  .website-hero__visual,
  .content-hero__visual,
  .extended-service-hero__visual,
  .archive-hero__banner,
  .entry-hero__image,
  .contact-hero__visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: 50%;
    flex: none;
    margin-top: 28px;
    transform: translateX(-50%);
  }
  .about-hero__art {
    margin-top: 40px;
  }
  .home-hero__visual {
    display: none;
  }
  .contact-hero__visual {
    margin-top: 18px;
    margin-bottom: -25px;
  }
  .entry-hero__image {
    margin-top: 24px;
  }
  body.nav-is-open .home-hero,
  body.nav-is-open .home-hero__inner,
  body.nav-is-open .services-hero,
  body.nav-is-open .services-hero__inner,
  body.nav-is-open .content-hero,
  body.nav-is-open .content-hero__inner,
  body.nav-is-open .extended-service-hero,
  body.nav-is-open .extended-service-hero__inner,
  body.nav-is-open .archive-hero,
  body.nav-is-open .archive-hero__inner,
  body.nav-is-open .entry-hero,
  body.nav-is-open .entry-hero__inner,
  body.nav-is-open .contact-hero,
  body.nav-is-open .contact-hero__inner {
    min-height: 0;
  }
  body.nav-is-open .home-hero__inner,
  body.nav-is-open .services-hero__inner,
  body.nav-is-open .content-hero__inner,
  body.nav-is-open .extended-service-hero__inner,
  body.nav-is-open .archive-hero__inner,
  body.nav-is-open .entry-hero__inner,
  body.nav-is-open .contact-hero__inner {
    padding-top: 370px;
  }
  .project-card__link,
  .entry-back,
  .archive-card__meta a,
  .footer-menu a {
    min-height: 44px;
    align-items: center;
  }
  .footer-menu {
    gap: 0;
  }
  .generic-hero {
    min-height: 360px;
    padding: 155px 0 70px;
  }
  .generic-content {
    min-height: 240px;
  }
  .error-page {
    min-height: 680px;
    padding: 145px 0 80px;
  }
  .error-page p {
    font-size: 17px;
  }
}

/* Intermediate desktop/laptop layout
   Keep every hero's copy and artwork in separate, fluid columns. */
@media (min-width: 901px) {
  .about-hero__copy,
  .services-hero__copy,
  .graphic-hero__copy,
  .website-hero__copy,
  .content-hero__copy,
  .extended-service-hero__copy,
  .archive-hero__copy,
  .entry-hero__copy,
  .contact-hero__copy {
    width: 44%;
    max-width: 44%;
  }

  .about-hero__art,
  .services-hero__art,
  .graphic-hero__visual,
  .website-hero__visual,
  .content-hero__visual,
  .extended-service-hero__visual,
  .archive-hero__banner,
  .entry-hero__image,
  .contact-hero__visual {
    right: 0;
    width: 50%;
    max-width: 50%;
  }

  .about-hero__art {
    height: auto;
  }

  .graphic-hero__visual {
    height: auto;
    aspect-ratio: 660 / 390;
  }
  .graphic-hero__background {
    top: 22.56%;
    width: 65.15%;
    height: 56.41%;
  }
  .graphic-hero__feature {
    top: 2.56%;
    right: 8.33%;
    width: 38.64%;
    height: 76.92%;
  }

  .website-hero__visual {
    height: auto;
    aspect-ratio: 675 / 400;
  }
  .website-hero__blob {
    top: 3.5%;
    width: 84.44%;
  }
  .website-hero__desktop {
    top: 1.25%;
    left: 7.7%;
    width: 51.85%;
    height: 83.75%;
  }
  .website-hero__phone {
    top: 8.5%;
    right: 10.8%;
    width: 17.78%;
    height: 70%;
  }

  .content-hero__visual,
  .extended-service-hero__visual,
  .archive-hero__banner {
    height: auto;
    aspect-ratio: 827 / 441;
  }
  .content-hero__phone {
    top: -15.87%;
    left: 28.42%;
    width: 38.69%;
  }
  .video-hero__laptop {
    top: 13.15%;
    left: 9.19%;
    width: 68.32%;
  }
  .video-hero__premiere {
    right: 18.62%;
    bottom: 16.55%;
    width: 12.82%;
    height: 23.36%;
  }
  .social-hero__artwork {
    top: -1.36%;
    left: 18.14%;
    width: 62.88%;
    height: 95.24%;
  }

  .entry-hero__image {
    height: auto;
    aspect-ratio: 827 / 440;
  }
  .entry-hero__photo {
    top: 13.64%;
    left: 21.77%;
    width: 67.11%;
    height: 77.27%;
  }

  .contact-hero__visual {
    height: auto;
    aspect-ratio: 780 / 700;
  }
  .contact-hero__portrait {
    right: 10.77%;
    width: 66.67%;
    height: 92.86%;
  }
}

