:root {
  --color-primary: #430c63;
  --color-primary-deep: #350a4d;
  --color-card: #230733;
  --color-accent: #ffa921;
  --color-surface: #f7f4ef;
  --color-body: #7a6e65;
  --color-border: #e2d6c3;
  --color-muted: #c0c0c0;
  --color-nav: #ffffff;
  --color-white: #ffffff;
  --container: 1440px;
  --gutter: 50px;
  --radius-sm: 5px;
  --radius-lg: 20px;
  --header-height: 90px;
  --shadow-card: 0 20px 60px rgba(28, 9, 43, 0.18);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: var(--color-body);
  background: var(--color-white);
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

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

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 30px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow::before,
.eyebrow--center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  flex: 0 0 30px;
}
.hero .hero__content .eyebrow {
  justify-content: center;
  width: 100%;
}

/* Figma: hero eyebrow has no side lines */
.hero .eyebrow::before,
.hero .eyebrow::after {
  display: none;
}

.section-title {
  margin: 0;
  font-family: "Cabin", sans-serif;
  font-size: 60px;
  line-height: 1;
  color: var(--color-primary);
}

.section-title--hero {
  max-width: 604px;
  margin-inline: auto;
  color: var(--color-white);
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  text-align: center;
}

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

.section-copy {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.section-copy--hero {
  max-width: 1018px;
  margin: 40px auto 0;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-white);
  text-align: center;
}

.section-copy--center {
  max-width: 904px;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 30px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--secondary {
  background: var(--color-primary);
  color: var(--color-white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-sticky {
  background: #190326;
  box-shadow: 0 10px 30px rgba(22, 10, 32, 0.08);
}

/*.site-header.is-sticky .site-nav__link {
  color: #1f1f1f;
}*/

.site-header.is-sticky .menu-toggle span {
  background: #ffffff;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
}

.site-logo,
.menu-toggle {
  position: relative;
  z-index: 3;
}

.site-logo img {
  width: 60px;
  height: 60px;
/*  object-fit: cover;*/
}

.site-nav {
  /*position: absolute;
  left: 50%;
  top: 50%;*/
  display: flex;
  align-items: center;
  gap: 40px;
/*  transform: translate(-50%, -50%);*/
      justify-content: center;
    width: 100%;
}

.site-nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-nav);
  transition: opacity 0.2s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav__link.is-active::after,
.site-nav__link:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 0;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 15px; }
.menu-toggle span:nth-child(3) { top: 20px; }

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
}

.hero__media,
.hero__image-layer,
.hero__veil,
.hero__video {
  position: absolute;
  inset: 0;
}

.hero__media,
.hero__image-layer,
.hero__veil,
.hero__video {
  pointer-events: none;
}

.hero__video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-layer--base {
  z-index: 0;
  background: center / cover no-repeat url("../images/hero-poster-desktop.webp");
}

.hero__image-layer--overlay {
  z-index: 2;
  background: center / cover no-repeat url("../images/hero-overlay.webp");
  mix-blend-mode: screen;
  opacity: 0.18;
}

.hero__veil {
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(19, 8, 31, 0.58) 0%, rgba(19, 8, 31, 0.42) 48%, rgba(19, 8, 31, 0.74) 100%),
    radial-gradient(circle at 50% 39%, rgba(15, 7, 25, 0.14) 0%, rgba(15, 7, 25, 0.3) 38%, rgba(15, 7, 25, 0.54) 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  padding-top: 260px;
  text-shadow: 0 8px 28px rgba(15, 7, 25, 0.34);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 70px;
  position: relative;
  z-index: 11;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 55px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  transform: translateX(-50%);
  color: var(--color-white);
}

.scroll-cue__line {
  width: 1px;
  height: 30px;
  background: var(--color-accent);
}

.scroll-cue__text {
  font-size: 12px;
  line-height: normal;
}

.belief {
  position: relative;
  /*min-height: 593px;*/
  overflow: hidden;
}

/*.belief__background {
  position: absolute;
  inset: 0;
  background: #12091e;
}*/

.belief__bg {
  position: absolute;
  pointer-events: none;
}

.belief__bg--mobile {
  display: none;
}

/*.belief__bg--left {
  left: -55px;
  bottom: -6px;
  width: 744px;
  max-width: none;
}*/

.belief__bg--right {
  /*right: -25px;
  top: 0;
  width: 730px;
  max-width: none;*/
  width: 100%;
}

/*.belief .container {
  position: relative;
  padding-top: 132px;
}*/
.belief .content__d {
  padding: 132px 60px 90px ;
}

.belief__panel {
  width: min(710px, 100%);
  padding: 30px 40px 30px 30px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(6px);
      width: 780px;
}

.belief__panel .section-title {
  /*max-width: 522px;*/
  margin-bottom: 30px;
}

.belief__panel .section-copy + .section-copy {
  margin-top: 18px;
}

.services {
  position: relative;
  padding-top: 50px;
  padding-bottom: 70px;
  background: #F7F4EF;
}

.services__intro {
  display: grid;
  grid-template-columns: minmax(280px, 522px) minmax(280px, 718px);
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.services__intro-copy {
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.services__stack {
  position: relative;
  margin-top: 70px;
  padding-bottom: 0;
}

.service-card {
  position: relative;
  min-height: 625px;
  overflow: hidden;
  transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease;
}

.service-card--stack::before {
  content: "";
  position: absolute;
  inset: 125px 0 0;
  background: var(--color-card);
}

.service-card--stack.service-card--tone-1::before {
  background: #230733;
}

.service-card--stack.service-card--tone-2::before {
  background: #311046;
}

.service-card--stack.service-card--tone-3::before {
  background: #3d1458;
}

.service-card--stack.service-card--tone-4::before {
  background: #4a1867;
}

.service-card--stack {
  position: sticky;
  top: 108px;
  margin-top: 0;
  /*box-shadow: var(--shadow-card);*/
  transform: translateY(calc(var(--stack-offset, 0) * 1px)) scale(var(--stack-scale, 1));
  opacity: var(--stack-opacity, 1);
  z-index: var(--stack-z, 1);
  margin-top: -120px;
}

.service-card--stack + .service-card--stack {
  margin-top: -330px;
}

.service-card--stack.is-current {
  /*box-shadow: 0 28px 70px rgba(24, 7, 36, 0.22);*/
}

.service-card__icon-wrap {
  position: absolute;
  left: 50px;
  top: 272px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  padding: 20px;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
}

.service-card__icon {
  width: 30px;
  height: 30px;
}

.service-card__copy {
  position: absolute;
  left: 50px;
  bottom: 81px;
  z-index: 1;
  max-width: min(718px, calc(100% - 481px));
  color: var(--color-white);
}

.service-card__title {
  margin: 0 0 50px;
  font-family: "Cabin", sans-serif;
  font-size: 40px;
  line-height: 1;
}

.service-card__text {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.service-card__media {
  position: absolute;
  right: 50px;
  top: 175px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 313px;
  aspect-ratio: 1 / 1;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal {
  position: relative;
  padding-top: 0px;
}

.journal__shell {
  position: relative;
  min-height: 744px;
  overflow: hidden;
}

.journal__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 125px;
}

.journal__content .section-title {
  margin-top: 0px;
}

.journal__content .section-copy {
  margin-top: 40px;
}

.journal__content .btn {
  margin-top: 40px;
}

.journal__decor {
  position: absolute;
  z-index: 1;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0) rotate(var(--parallax-rotate, 0deg)) scale(var(--parallax-scale, 1));
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.journal__decor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-top: 55px;
}

.journal__decor--one { top: 0; left: 410px; width: 97px; }
.journal__decor--two { top: 357px; left: 39px; width: 88px; filter: blur(7px); opacity: 0.9; }
.journal__decor--three { top: 33px; left: 22px; width: 194px; }
.journal__decor--four { top: 88px; right: 58px; width: 167px; }
.journal__decor--five { top: 512px; left: 321px; width: 122px; filter: blur(4px); }
.journal__decor--six { top: 511px; right: 0; width: 126px; }
.journal__decor--seven { top: 42px; right: -18px; width: 68px; filter: blur(12px); }
.journal__decor--eight { bottom: 0; left: -50px; width: 171px; }
.journal__decor--nine { top: 454px; right: 308px; width: 94px; filter: blur(7px); opacity: 0.5; }

.journal__shell:hover .journal__decor--one,
.journal__shell:hover .journal__decor--four,
.journal__shell:hover .journal__decor--six {
  opacity: 0.92;
}

.journal__shell:hover .journal__decor--two,
.journal__shell:hover .journal__decor--seven,
.journal__shell:hover .journal__decor--nine {
  opacity: 0.72;
}

.clients {
  padding-top: 50px;
}

.clients__surface {
  background: var(--color-surface);
}

.clients__inner {
  padding-block: 50px;
}

.clients__header {
  display: grid;
  grid-template-columns: minmax(280px, 522px) minmax(280px, 716px);
  justify-content: space-between;
  gap: 40px;
}

.clients__copy {
  padding-top: 79px;
}

.clients__logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.clients__logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.clients__logo-slot img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.contact {
  padding-block: 50px;
  margin-bottom:20px;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(280px, 521px) minmax(280px, 716px);
  justify-content: space-between;
  gap: 40px;
}

.contact__copy-wrap .section-title {
  margin-top: 0;
}

.contact__copy {
  margin-top: 51px;
  font-size: 20px;
  line-height: 1.57;
}

.contact-form {
  margin-top: 30px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.contact-form__field {
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-body);
  padding: 17px 20px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(67, 12, 99, 0.4);
  box-shadow: 0 0 0 3px rgba(67, 12, 99, 0.08);
}

.contact-form input {
  height: 50px;
}

.contact-form textarea {
  height: 100px;
  margin-top: 20px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-muted);
}

.contact-form__submit {
  width: 343px;
  margin-top: 30px;
}

.instagram__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instagram__header .section-title {
  margin-top: 0px;
}

.instagram__slider {
  width: 100%;
  margin-top: 46px;
  padding-bottom: 10px;
}

.instagram-card {
  position: relative;
  display: block;
  width: 260px;
  height: 260px;
  overflow: hidden;
}

.instagram-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.instagram-card:hover > img {
  transform: scale(1.04);
}

.instagram-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 7, 51, 0.32);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.instagram-card__overlay img {
  width: 24px;
  height: 24px;
}

.instagram-card:hover .instagram-card__overlay {
  opacity: 1;
}

.site-footer {
  background: var(--color-primary-deep);
  color: var(--color-white);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
  flex-wrap: wrap;
  min-height: 193px;
  padding-block: 34px 28px;
}

.site-footer__logo {
  margin-bottom: 50px;
}

.site-footer__logo img {
  width: 93px;
  height: 93px;
/*  object-fit: cover;*/
}

.site-footer__nav {
  display: flex;
  flex: 1 1 0;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.site-footer__copyright {
  flex: 0 0 100%;
  order: 4;
  margin: 0;
  font-size: 14px;
  text-align: center;
}

.site-footer__socials {
  flex: 0 0 auto;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

.site-footer__socials img {
  width: 30px;
  height: 30px;
}

@media screen and (max-width:1080px) {
  .service-card__icon-wrap {
        top: 210px;
  }
  .journal__content {
        padding-top: 25px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(6px);
    margin-top: 100px;
  }
}

@media (max-width: 1023px) {
  :root {
    --gutter: 15px;
  }

  .site-header {
    inset: 0 0 auto;
  }

  .header__inner {
    min-height: 90px;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
    gap: 22px;
    padding: 110px 30px 40px;
    background: rgba(255, 255, 255, 0.98);
    transform: translateX(100%);
    transition: transform 0.28s ease;
            background: rgba(25, 3, 38, 0.95);
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav__link {
    color: #ffffff;
  }

  .site-nav__link::after {
    left: 0;
    right: auto;
    width: 100%;
    bottom: -8px;
  }

  .menu-toggle {
    display: block;
  }

  .section-title,
  .section-title--hero {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 30px;
  }

  .services__intro-main .section-title, section.clients .section-title {
    margin-bottom: 0px;
  }

  .section-copy {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero {
    min-height: 700px;
  }

  .hero__content {
    width: min(100%, 414px);
    padding-top: 184px;
  }

  .eyebrow {
    gap: 20px;
    margin-bottom: 30px;
  }

  p.eyebrow.eyebrow--center
  {
    margin-bottom: 20px;
  }

  .journal__content p.eyebrow.eyebrow--center
  {
    margin-bottom: 30px;
    padding-top: 125px;
  }

  .hero .eyebrow {
    justify-content: center;
  }

  .hero .eyebrow::before,
  .hero .eyebrow::after {
    display: none;
  }

  .section-copy--hero {
    max-width: 354px;
    margin-top: 16px;
    font-size: 16px;
  }

  .hero__actions {
    gap: 20px;
    margin-top: 38px;
  }

  .hero__actions .btn {
    min-height: 40px;
    padding-inline: 25px;
    font-size: 12px;
  }

  .scroll-cue {
    position: sticky;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 40px;
    padding-bottom: 20px;
  }

  .belief {
    min-height: 0;
  }

  .belief__background {
    /*position: relative;
    height: 357px;
    overflow: hidden;*/
  }
  .belief__bg {
    position: unset;
  }

  .belief .content__d {
    position: relative;
    z-index: 2;
    padding: 50px 15px 0;
    /*margin-top: -357px;*/
            position: absolute;
            top: 0;
  }

  .belief__panel {
    width: 100%;
    margin-top: 0;
    min-height: 251px;
    padding: 30px 20px 39px;
  }

  .belief__panel .section-title {
    max-width: 312px;
    margin-bottom: 30px;
  }

  .belief__panel .section-copy {
    font-size: 14px;
    line-height: 1.5;
  }

  .belief__bg--left,
  .belief__bg--right {
    display: none;
  }

  .belief__bg--mobile {
    display: block;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .services {
    padding-top: 47px;
    padding-bottom: 40px;
  }

  .services__intro,
  .clients__header,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services__intro-copy,
  .clients__copy,
  .contact__copy {
    padding: 0;
  }

  .services__intro-copy {
    font-size: 20px;
    line-height: 1.5;
    padding-bottom: 55px;
  }

  .services__stack {
    margin-top: 0;
    padding-bottom: 0;
  }

  .service-card--stack {
    position: sticky;
    top: 96px;
    margin-top: 0;
  }

  .service-card--stack + .service-card--stack {
    margin-top: -250px;
  }

  .service-card {
    min-height: 501px;
  }

  .service-card--stack::before {
    inset: 0;
  }

  .service-card__icon-wrap {
    left: 20px;
    top: 20px;
  }

  .service-card__media {
    top: 18px;
    right: 18px;
    width: 104px;
  }

  .service-card__copy {
    left: 20px;
    right: 20px;
    bottom: 74px;
    max-width: none;
  }

  .service-card__title {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .service-card__text {
    font-size: 20px;
    line-height: 1.4;
  }

  .journal {
    padding-top: 0px;
  }

  .journal__shell {
    min-height: 744px;
  }

  .journal__content {
    padding-top: 0px;
  }

  .journal__content .section-title {
    margin-top: 0px;
  }

  .journal__content .section-copy {
    margin-top: 0px;
    max-width: 307px;
    font-size: 20px;
  }

  .journal__decor--one { top: 0; left: 17px; width: 88px; }
  .journal__decor--two { top: 359px; left: -8px; width: 32px; }
  .journal__decor--three { top: 89px; left: -289px; width: 198px; }
  .journal__decor--four { top: 88px; right: -39px; width: 76px; }
  .journal__decor--five { top: 523px; left: 24px; width: 72px; }
  .journal__decor--six { top: 490px; right: 41px; width: 96px; }
  .journal__decor--seven { top: 70px; right: 13px; width: 48px; }
  .journal__decor--eight { bottom: 0; left: -357px; width: 171px; }
  .journal__decor--nine { top: 422px; right: 11px; width: 64px; }

  .clients {
    padding-top: 5px;
  }

  .clients__inner {
    padding-bottom: 58px;
  }

  .clients__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
  }

  .clients__logo-slot {
    min-height: 70px;
    padding: 0;
  }

  .clients__copy {
    font-size: 20px;
  }

  .contact {
    padding-top: 20px;
  }

  .contact__copy-wrap .section-title {
    margin-top: 0;
  }

  .contact__inner {
    gap: 0px;
  }

  .contact__copy {
    margin-top: 0;
  }

  .contact-form {
    margin-top: 23px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form textarea {
    margin-top: 10px;
  }

  .contact-form__submit {
    width: 100%;
    margin-top: 20px;
  }

  .instagram__header .section-title {
    margin-top: 0px;
  }

  .instagram__slider {
    margin-top: 0px;
    padding-bottom:50px;
  }

  .instagram {
    padding-top: 24px;
  }

  .instagram__header .eyebrow {
    margin-bottom: 0;
  }

  .instagram-card {
    width: 174px;
    height: 174px;
  }

  .instagram-card__overlay {
    opacity: 1;
  }

 
  .site-footer__inner {
    align-items: flex-start;
    gap: 0;
    min-height: auto;
    padding: 50px 30px;
  }

  .site-footer__logo {
    margin-bottom: 50px;
            width: 100%;
  }

  .site-footer__nav {
  flex: 0 1 auto;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 20px 30px;
        font-size: 14px;
        margin-bottom: 50px;
        width: 289px;
  }

  .site-footer__copyright {
    order: 0;
    text-align: left;
    font-size: 12px;
    margin-bottom: 30px;
  }

  .site-footer__socials {
    justify-content: flex-start;
    gap: 30px;
  }
}
