:root {
  --violet: #5b2d82;
  --violet-dark: #290052;
  --black: #070707;
  --white: #fff;
  --off-white: #f7f6f4;
  --muted: rgba(255,255,255,.62);

}


@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Satoshi", sans-serif;
  background: #f7f5f8;
  color: #171717;
  font-weight: 400;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
}

/* Everything else */
p,
span,
li,
a,
button,
input,
textarea,
select {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.contact-page {
  width: 100%;
  min-height: 100vh;
}


/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  width: 6px;
  height: 100vh;
  background: rgba(41,0,82,.07);
  pointer-events: none;
  z-index: 99999;
}

.scroll-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,#6d32a8 0%,#5b2d82 55%,#17002e 100%);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
  box-shadow: 0 0 6px rgba(41,0,82,.45),0 0 14px rgba(41,0,82,.18);
  border-radius: 0 0 4px 4px;
}


/* =========================================================
   CURSOR
   ========================================================= */

.cursor-trail {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 100000;
}

@media (hover:hover) and (pointer:fine) {
  * {
    cursor: none !important;
  }

  .cursor-spark {
    position: fixed;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 100001;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s cubic-bezier(.22,1,.36,1),filter .2s ease;
  }

  .cursor-spark::before,
  .cursor-spark::after,
  .cursor-spark span::before,
  .cursor-spark span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--violet);
    transform-origin: center;
    border-radius: 999px;
    box-shadow: 0 0 5px rgba(41,0,82,.35);
  }

  .cursor-spark::before {
    width: 2px;
    height: 16px;
    transform: translate(-50%,-50%);
  }

  .cursor-spark::after {
    width: 16px;
    height: 2px;
    transform: translate(-50%,-50%);
  }

  .cursor-spark span::before {
    width: 1.5px;
    height: 12px;
    transform: translate(-50%,-50%) rotate(45deg);
  }

  .cursor-spark span::after {
    width: 1.5px;
    height: 12px;
    transform: translate(-50%,-50%) rotate(-45deg);
  }

  .cursor-spark--active {
    transform: translate(-50%,-50%) scale(1.45);
    filter: drop-shadow(0 0 5px rgba(41,0,82,.35)) drop-shadow(0 0 14px rgba(92,45,145,.35));
  }

  .cursor-spark--click {
    transform: translate(-50%,-50%) scale(.72);
  }
}


/* =========================================================
   HERO
   ========================================================= */

.contact-hero {
  position: relative;
  min-height: 100vh;
  padding: 26px 28px 34px;
  overflow: hidden;
  isolation: isolate;
}

.contact-hero-background,
.contact-hero-background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-hero-background {
  z-index: -4;
}

.contact-hero-background img {
  object-fit: cover;
  object-position: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: rgba(4,2,6,.61);
}

.contact-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 35%,transparent 0%,rgba(0,0,0,.14) 42%,rgba(0,0,0,.62) 100%),
    linear-gradient(180deg,rgba(0,0,0,.28) 0%,transparent 38%,rgba(0,0,0,.45) 100%);
}



/* =========================================================
   NAVBAR
   ========================================================= */

.contact-navbar {
  position: relative;
  z-index: 50;
  width: min(720px,calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
padding: 5px 7px 5px 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.105);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  box-shadow: 0 15px 50px rgba(0,0,0,.15),inset 0 1px 0 rgba(255,255,255,.16);
}

.contact-logo {
  display: flex;
  align-items: center;
  width: fit-content;
}

.contact-logo img {
  width: 108px;
  height: auto;
  filter: brightness(0) invert(1);
  transform: scale(1.12);
  transform-origin: left center;
}

.contact-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.contact-nav-links a {
  position: relative;
  color: rgba(255,255,255,.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .3s ease;
}

.contact-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.contact-nav-links a:hover {
  color: #fff;
}

.contact-nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-shop {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px 10px 16px;
  color: var(--black);
  background: #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .3s ease,background .3s ease;
}

.contact-shop:hover {
  transform: translateY(-2px);
  background: #f0e8f5;
}

.contact-shop i,
.contact-submit i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--violet);
  color: #fff;
  border-radius: 50%;
}

.contact-shop svg,
.contact-submit svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   HERO INTRO
   ========================================================= */

.contact-hero-intro {
  position: relative;
  width: min(900px,100%);
  margin: clamp(70px,9vh,110px) auto 52px;
  text-align: center;
}

.contact-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .25em;
}

.contact-hero-kicker::before,
.contact-hero-kicker::after {
  content: "";
  width: 25px;
  height: 1px;
  background: rgba(255,255,255,.35);
}

.contact-hero-intro h1 {
  margin-top: 16px;
  font-family: "Satoshi", sans-serif;
  font-size: clamp(54px,7vw,92px);
  font-weight: 100;
  line-height: .92;
  letter-spacing: -.045em;
}

.contact-hero-intro h1 em {
  display: block;
  color: #dfc8eb;
  font-weight: 100;
}

.contact-hero-intro p {
  max-width: 470px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: -.01em;
}


/* =========================================================
   CONTACT PANEL
   ========================================================= */

.contact-panel {
  position: relative;
  z-index: 10;
  width: min(1080px,100%);
  margin: 0 auto;
  display: grid;
      margin-top: 50px;
  grid-template-columns: 1.2fr .8fr;
  align-items: stretch;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,.28);
}


/* =========================================================
   FORM CARD
   ========================================================= */

.contact-form-card {
  padding: clamp(30px,4vw,54px);
  background: rgba(255,255,255,.98);
  color: var(--black);
}

.contact-form-heading > span {
  color: var(--violet);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
}

.contact-form-heading h2 {
  max-width: 470px;
  margin-top: 10px;
  font-family: "Satoshi", sans-serif;
  font-size: clamp(34px,4vw,54px);
  font-weight: 100;
  line-height: .98;
  letter-spacing: -.035em;
}

.contact-form-heading h2 em {
  display: block;
  color: var(--violet);
  font-weight: 100;
}

#contactForm {
  margin-top: 32px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-field {
  margin-bottom: 18px;
}

.contact-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(7,7,7,.52);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(7,7,7,.18);
  border-radius: 0;
  padding: 10px 0 13px;
  outline: none;
  background: transparent;
  color: var(--black);
  font-size: 13px;
  transition: border-color .3s ease;
}

.contact-field textarea {
  min-height: 95px;
  resize: vertical;
  line-height: 1.6;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(7,7,7,.3);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--violet);
}

.contact-submit {
  width: 100%;
  margin-top: 7px;
  padding: 7px 8px 7px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .3s ease,background .3s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: #6d32a8;
}

.contact-submit i {
  background: rgba(255,255,255,.16);
}

.contact-form-status {
  min-height: 16px;
  margin-top: 12px;
  color: var(--violet);
  font-size: 10px;
}


/* =========================================================
   INFORMATION CARD
   ========================================================= */

.contact-info-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  color: #fff;
  background: #171017;
}

.contact-info-image {
  position: absolute;
  inset: 0;
  background:
    url("images/product2.jpg")
    center/cover no-repeat;
  transform: scale(1.04);
}

.contact-info-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,rgba(0,0,0,.58),rgba(0,0,0,.8)),
    linear-gradient(135deg,rgba(41,0,82,.35),transparent);
}

.contact-info-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
}

.contact-info-kicker,
.contact-info-label {
  color: rgba(255,255,255,.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
}

.contact-info-location {
  margin-top: auto;
  margin-bottom: 42px;
}

.contact-info-location h3 {
  margin-top: 9px;
  font-family: "Satoshi", sans-serif;
  font-size: clamp(34px,4vw,52px);
  font-weight: 100;
  line-height: .95;
  letter-spacing: -.035em;
}

.contact-info-location h3 em {
  display: block;
  color: #dcbde9;
  font-weight: 100;
}

.contact-info-details {
  display: grid;
  gap: 22px;
}

.contact-info-details a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: fit-content;
}

.contact-info-details a span {
  color: rgba(255,255,255,.42);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .18em;
}

.contact-info-details strong {
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .01em;
}

.contact-info-details a:hover strong {
  color: #dfc8eb;
}

.contact-info-bottom {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 28px;
  color: rgba(255,255,255,.35);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .2em;
}


/* =========================================================
   BOTTOM MARK
   ========================================================= */

.contact-hero-bottom {
  width: min(1080px,100%);
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.34);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .2em;
}

.contact-bottom-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--violet);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.contact-menu-toggle {
  display: none;
}

.contact-mobile-menu {
  display: none;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .contact-hero {
    min-height: 100svh;
    padding: 18px 15px 24px;
  }

  .contact-navbar {
    width: calc(100% - 8px);
    min-height: 62px;
    padding: 8px 10px 8px 18px;
    grid-template-columns: 1fr auto;
  }

  .contact-logo img {
    width: 100px;
  }

  .contact-nav-links,
  .contact-shop {
    display: none;
  }

  .contact-menu-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
  }

  .contact-menu-toggle span {
    width: 16px;
    height: 1px;
    background: #fff;
    transition: transform .3s ease;
  }

  .contact-menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .contact-menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .contact-hero-intro {
    margin: 70px auto 40px;
  }

  .contact-hero-intro h1 {
    font-size: clamp(51px,15vw,76px);
  }

  .contact-hero-intro p {
    max-width: 330px;
    font-size: 12px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    border-radius: 0px;
  }

  .contact-form-card {
    padding: 30px 23px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-card {
    min-height: 420px;
  }

  .contact-info-content {
    padding: 30px 23px;
  }

  .contact-info-location {
    margin-top: auto;
    margin-bottom: 34px;
  }

  .contact-info-bottom {
    left: 23px;
    bottom: 22px;
  }

  .contact-hero-bottom {
    display: none;
  }

  .contact-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 28px;
    background: rgba(8,5,10,.9);
    backdrop-filter: blur(28px) saturate(130%);
    -webkit-backdrop-filter: blur(28px) saturate(130%);
    transform: translateX(100%);
    transition: transform .55s cubic-bezier(.22,1,.36,1);
  }

  .contact-mobile-menu.is-open {
    transform: translateX(0);
  }

  .contact-mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .contact-mobile-menu-top img {
    width: 105px;
    filter: brightness(0) invert(1);
  }

  .contact-mobile-menu-top button {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
  }

  .contact-mobile-menu-top button span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 17px;
    height: 1px;
    background: #fff;
  }

  .contact-mobile-menu-top button span:first-child {
    transform: translate(-50%,-50%) rotate(45deg);
  }

  .contact-mobile-menu-top button span:last-child {
    transform: translate(-50%,-50%) rotate(-45deg);
  }

  .contact-mobile-links {
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
  }

  .contact-mobile-links a {
    padding: 17px 0;
    display: flex;
    align-items: baseline;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  font-family: "Satoshi", sans-serif;
font-size: clamp(32px, 9vw, 48px);
    font-weight: 100;
    line-height: 1;
  }

  .contact-mobile-links a span {
    color: rgb(255, 255, 255);
  font-family: "Satoshi", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
  }

  .contact-mobile-footer {
    color: rgb(255, 255, 255);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
  }
}

@media (max-width: 500px) {
  .contact-hero {
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-navbar {
    width: calc(100% - 4px);
  }

  .contact-hero-intro {
    margin-top: 62px;
  }

  .contact-hero-intro h1 {
    font-size: 53px;
  }

  .contact-form-heading h2 {
    font-size: 38px;
  }

  .contact-info-card {
    min-height: 400px;
  }

  .contact-info-location h3 {
    font-size: 43px;
  }
}

@media (hover:none),(pointer:coarse) {
  .cursor-trail,
  .cursor-spark {
    display: none;
  }

  .scroll-progress {
    width: 4px;
  }
}

@media (prefers-reduced-motion:reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   REMIFY — INFINITE WORD TRANSITION
   ========================================================= */

.remify-word-marquee {
  position: relative;
  width: 100%;
  min-height: clamp(260px, 32vw, 430px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: white;
  isolation: isolate;
}

.remify-word-marquee-glow {
  position: absolute;
  width: 45vw;
  height: 45vw;
  max-width: 620px;
  max-height: 620px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

.remify-word-marquee-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.remify-word-marquee-line {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(28px, 5vw, 70px) 0;
}

.remify-word-track {
  display: flex;
  width: max-content;
  animation: remifyWordLoop 34s linear infinite;
  will-change: transform;
}

.remify-word-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.remify-word-group span {
  display: inline-block;
  color: black;
  font-family: "Satoshi", sans-serif;
  font-size: clamp(86px, 15vw, 230px);
  font-weight: 100;
  line-height: .85;
  letter-spacing: -.01em;
  text-rendering: optimizeLegibility;
}

.remify-word-group i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(45px, 7vw, 110px);
  color: #9a69ba;
  font-family: "Satoshi", sans-serif;
  font-size: clamp(20px, 2.5vw, 38px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-.08em);
}

@keyframes remifyWordLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* -----------------------------------------
   SUBTLE BOTTOM LABEL
   ----------------------------------------- */

.remify-word-marquee-label {
  position: absolute;
  bottom: clamp(18px, 3vw, 32px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  color: rgba(255,255,255,.4);
  font-family: "Satoshi", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.remify-word-marquee-label-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9a69ba;
  box-shadow: 0 0 8px rgba(154,105,186,.7);
}


/* =========================================================
   TABLETS
   ========================================================= */

@media (max-width: 900px) {

  .remify-word-marquee {
    min-height: 300px;
  }

  .remify-word-track {
    animation-duration: 28s;
  }

  .remify-word-group span {
    font-size: clamp(76px, 17vw, 150px);
    letter-spacing: -.05em;
  }

  .remify-word-group i {
    width: clamp(38px, 7vw, 70px);
  }
}


/* =========================================================
   PHONES
   ========================================================= */

@media (max-width: 600px) {

  .remify-word-marquee {
    min-height: 240px;
  }

  .remify-word-marquee-glow {
    width: 80vw;
    height: 80vw;
    filter: blur(75px);
  }

  .remify-word-marquee-line {
    padding: 45px 0;
  }

  .remify-word-track {
    animation-duration: 24s;
  }

  .remify-word-group span {
    font-size: clamp(72px, 23vw, 120px);
    letter-spacing: -.055em;
  }

  .remify-word-group i {
    width: 34px;
    font-size: 18px;
  }

  .remify-word-marquee-label {
    bottom: 17px;
    font-size: 7px;
    letter-spacing: .18em;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .remify-word-track {
    animation-play-state: paused;
  }

}



/* =========================================================
   REMIFY — SOCIAL TRANSITION
   ========================================================= */

.remify-social-transition {

  position: relative;

  overflow: hidden;

background: #5b2d82;

  color: #fff;

}



/* =========================================================
   INNER
   ========================================================= */

.remify-social-inner {

  position: relative;

  width:
    min(1380px,100%);

  margin:
    0 auto;

  padding:
    70px clamp(24px,6vw,90px);

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    50px;

}


/* =========================================================
   COPY
   ========================================================= */

.remify-social-copy {

  display:
    flex;

  flex-direction:
    column;

  gap:
    13px;

}


.remify-social-kicker {

  color:
    rgba(255,255,255,.38);

  font-size:
    9px;

  font-weight:
    800;

  letter-spacing:
    .2em;

  text-transform:
    uppercase;

}


.remify-social-copy h3 {

  margin:
    0;
  font-family: "Satoshi", sans-serif;

  font-size:
    clamp(30px,3.5vw,48px);

  font-weight:
    400;

  line-height:
    .95;

  letter-spacing:
    -.045em;

}


.remify-social-copy h3 em {

  color:
    #d9b9e9;

  font-style:
    italic;

}


/* =========================================================
   SOCIAL LINKS
   ========================================================= */

.remify-social-links {

  display:
    flex;

  align-items:
    center;

  gap:
    10px;

}


.remify-social-links a {

  min-width:
    145px;

  height:
    52px;

  padding:
    0 18px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    25px;

  border:
    1px solid rgba(255,255,255,.13);

  border-radius:
    999px;

  color:
    rgba(255,255,255,.7);

  text-decoration:
    none;

  background:
    rgba(255,255,255,.025);
    -webkit-backdrop-filter: blur(10px);

  backdrop-filter:
    blur(10px);


  transition:
    transform .4s cubic-bezier(.22,1,.36,1),
    background .35s ease,
    border-color .35s ease,
    color .35s ease;

}


.remify-social-links a:hover {

  transform:
    translateY(-4px);

  background:
    rgba(255,255,255,.09);

  border-color:
    rgba(255,255,255,.3);

  color:
    #fff;

}


.remify-social-links span {

  font-size:
    10px;

  font-weight:
    700;

  letter-spacing:
    .07em;

  text-transform:
    uppercase;

}


.remify-social-links svg {

  width:
    16px;

  height:
    16px;

  fill:
    none;

  stroke:
    currentColor;

  stroke-width:
    1.5;

  stroke-linecap:
    round;

  stroke-linejoin:
    round;

}


.remify-social-links a:nth-child(2) svg {

  fill:
    currentColor;

  stroke:
    none;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .remify-social-inner {

    padding:
      60px 35px;

  }

  .remify-social-links {

    gap:
      8px;

  }

  .remify-social-links a {

    min-width:
      125px;

  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

  .remify-social-inner {

    padding:
      55px 20px;

    flex-direction:
      column;

    align-items:
      flex-start;

    gap:
      35px;

  }


  .remify-social-copy {

    gap:
      10px;

  }


  .remify-social-copy h3 {

    font-size:
      clamp(34px,10vw,46px);

  }


  .remify-social-links {

    width:
      100%;

    display:
      grid;

    grid-template-columns:
      repeat(3,1fr);

    gap:
      7px;

  }


  .remify-social-links a {

    min-width:
      0;

    width:
      100%;

    height:
      48px;

    padding:
      0 12px;

    gap:
      5px;

  }


  .remify-social-links span {

    font-size:
      8px;

    letter-spacing:
      .04em;

  }


  .remify-social-links svg {

    width:
      14px;

    height:
      14px;

  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width:400px) {

  .remify-social-inner {

    padding:
      48px 18px;

  }


  .remify-social-links a {

    height:
      45px;

    padding:
      0 10px;

  }


  .remify-social-links span {

    font-size:
      7px;

  }

}

/* =========================================================
   FOOTER TOP LINE
   ========================================================= */

.remify-footer-top-line {

  width:
    90%;

  height:
    1px;

  margin:
    0 auto;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.18),
      transparent
    );

}

/* =========================================================
   REMIFY — FOOTER
   ========================================================= */

.remify-footer {

  position: relative;

  overflow: hidden;

background: #5b2d82;

  color: #fff;

  isolation: isolate;

}


/* =========================================================
   CONTAINER
   ========================================================= */

.remify-footer-container {

  width:
    min(1380px,100%);

  margin:
    0 auto;

  padding:
    0 clamp(24px,6vw,90px);

}


/* =========================================================
   TOP
   ========================================================= */

.remify-footer-top {

  display:
    grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap:
    clamp(70px,10vw,160px);

  padding:
    85px 0 90px;

}


/* =========================================================
   BRAND
   ========================================================= */

.remify-footer-brand {

  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;

}


.remify-footer-logo {

  display:
    inline-block;

}


.remify-footer-logo img {

  width:
    clamp(125px,12vw,165px);

  display:
    block;

  filter:
    brightness(0) invert(1);

}


.remify-footer-brand p {

  margin:
    28px 0 24px;

  color:
    rgba(255,255,255,.42);
  font-family: "Satoshi", sans-serif;

  font-size:
    clamp(17px,1.6vw,21px);

  line-height:
    1.3;

  letter-spacing:
    -.025em;

}


.remify-footer-email {

  color:
    rgba(255,255,255,.65);

  font-size:
    11px;

  letter-spacing:
    .04em;

  text-decoration:
    none;

  border-bottom:
    1px solid rgba(255,255,255,.18);

  padding-bottom:
    5px;

  transition:
    .3s ease;

}


.remify-footer-email:hover {

  color:
    #fff;

  border-color:
    rgba(255,255,255,.5);

}


/* =========================================================
   NAVIGATION
   ========================================================= */

.remify-footer-nav {

  display:
    grid;

  grid-template-columns:
    repeat(3,1fr);

  gap:
    35px;

}


.remify-footer-group {

  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;

  gap:
    13px;

}


.remify-footer-label {

  margin-bottom:
    9px;

  color:
    rgba(255,255,255,.28);

  font-size:
    8px;

  font-weight:
    800;

  letter-spacing:
    .2em;

}


.remify-footer-group a {

  color:
    rgba(255,255,255,.62);

  font-size:
    12px;

  text-decoration:
    none;

  transition:
    color .25s ease,
    transform .25s ease;

}


.remify-footer-group a:hover {

  color:
    #fff;

  transform:
    translateX(4px);

}


.remify-footer-location {

  color:
    rgba(255,255,255,.28);

  font-size:
    11px;

}


/* =========================================================
   DIVIDER
   ========================================================= */

.remify-footer-line {

  width:
    100%;

  height:
    1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.13),
      transparent
    );

}


/* =========================================================
   MIDDLE
   ========================================================= */

.remify-footer-middle {

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    40px;

  padding:
    48px 0;

}


.remify-footer-message {

  display:
    flex;

  align-items:
    baseline;

  gap:
    13px;

}


.remify-footer-message span {

  color:
    rgba(255,255,255,.3);

  font-size:
    8px;

  font-weight:
    800;

  letter-spacing:
    .18em;

}


.remify-footer-message strong {
  font-family: "Satoshi", sans-serif;

  font-size:
    clamp(22px,2.3vw,32px);

  font-weight:
    400;

  letter-spacing:
    -.04em;

}


/* =========================================================
   FOOTER CTA
   ========================================================= */

.remify-footer-cta {

  display:
    inline-flex;

  align-items:
    center;

  gap:
    18px;

  padding:
    6px 6px 6px 20px;

  color:
    #16061f;

  background:
    #fff;

  border-radius:
    999px;

  text-decoration:
    none;

  transition:
    transform .4s cubic-bezier(.22,1,.36,1),
    box-shadow .4s ease;

}


.remify-footer-cta:hover {

  transform:
    translateY(-3px);

  box-shadow:
    0 18px 45px rgba(0,0,0,.3);

}


.remify-footer-cta > span {

  font-size:
    9px;

  font-weight:
    800;

  letter-spacing:
    .08em;

  text-transform:
    uppercase;

}


.remify-footer-cta i {

  width:
    40px;

  height:
    40px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    50%;

  background:
    #5f277b;

  color:
    #fff;

  font-style:
    normal;

}


.remify-footer-cta svg {

  width:
    15px;

  height:
    15px;

  fill:
    none;

  stroke:
    currentColor;

  stroke-width:
    1.7;

  stroke-linecap:
    round;

  stroke-linejoin:
    round;

}


/* =========================================================
   GIANT WORDMARK
   ========================================================= */

.remify-giant-wordmark {

  overflow:
    hidden;

  padding:
    55px 0 8px;

  margin-top:
    15px;

  text-align:
    center;

}


.remify-giant-wordmark span {

  display:
    block;
  font-family: "Satoshi", sans-serif;

  font-size:
    clamp(150px,21vw,300px);

  font-weight:
    400;

  line-height:
    .68;

  letter-spacing:
    -.015em;

  white-space:
    nowrap;

  color:
    transparent;

  -webkit-text-stroke:
    1px rgba(255,255,255,.18);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.13),
      rgba(255,255,255,.025)
    );

  -webkit-background-clip:
    text;

  background-clip:
    text;

}


/* =========================================================
   BOTTOM
   ========================================================= */

.remify-footer-bottom {

  display:
    grid;

  grid-template-columns:
    1fr 1fr 1fr;

  align-items:
    center;

  padding:
    25px 0 30px;

  border-top:
    1px solid rgba(255,255,255,.07);

  color:
    rgba(255,255,255,.22);

  font-size:
    8px;

  letter-spacing:
    .08em;

}


.remify-footer-bottom span:nth-child(2) {

  text-align:
    center;

}


.remify-footer-bottom span:last-child {

  text-align:
    right;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .remify-footer-top {

    grid-template-columns:
      1fr;

    gap:
      65px;

    padding:
      70px 0 75px;

  }


  .remify-footer-nav {

    grid-template-columns:
      repeat(3,1fr);

  }


  .remify-giant-wordmark {

    padding-top:
      45px;

  }

}


/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 600px) {

  .remify-footer-container {
    padding: 0 20px;
  }

  .remify-footer-top {
    padding: 60px 0 55px;
    gap: 55px;
  }

  .remify-footer-logo img {
    width: 135px;
  }

  .remify-footer-brand p {
    margin-top: 22px;
    font-size: 17px;
  }

  .remify-footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
  }

  .remify-footer-group:last-child {
    grid-column: 1 / -1;
  }

  .remify-footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 0;
  }

  .remify-footer-message {
    flex-direction: column;
    gap: 8px;
  }

  .remify-footer-message strong {
    font-size: 27px;
  }

  .remify-footer-cta {
    width: 100%;
    justify-content: space-between;
  }

  .remify-giant-wordmark {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .remify-giant-wordmark span {
    display: block;
    width: max-content;
    max-width: none;
    margin: 0 auto;
    white-space: nowrap;
    font-size: 28vw;
  }

  .remify-footer-bottom {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 20px 0 25px;
    line-height: 1.5;
  }

  .remify-footer-bottom span {
    text-align: left !important;
  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 400px) {

  .remify-footer-top {

    padding-top:
      50px;

  }


  .remify-footer-nav {

    grid-template-columns:
      1fr;

    gap:
      30px;

  }


  .remify-footer-group:last-child {

    grid-column:
      auto;

  }


  .remify-giant-wordmark span {

    font-size:
      27vw;

  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .remify-footer * {

    animation:
      none !important;

    transition:
      none !important;

  }

}
