/* ======================================================
   FORCE LIGHT MODE
====================================================== */

html,
body,
input,
textarea,
select,
button {
  color-scheme: light only;
}

input,
textarea,
select {
  background-color: transparent;
  color: #11110f;
}

.project-panel {
  background-color: #fbf8f1;
  color: #11110f;
}

@media (prefers-color-scheme: dark) {
  html,
  body {
    background-color: #f3eee3 !important;
    color: #11110f !important;
  }

  input,
  textarea,
  select {
    background-color: transparent !important;
    color: #11110f !important;
  }

  .project-panel {
    background-color: #fbf8f1 !important;
    color: #11110f !important;
  }
}
:root {
  --cream: #f3eee3;
  --cream-light: #fbf8f1;
  --black: #11110f;
  --gold: #b19765;
  --gold-light: #d8c7a3;
  --beige: #d8ccb8;

  --line: rgba(17, 17, 15, 0.17);
  --light-line: rgba(255, 255, 255, 0.15);

  --serif: "Cormorant Garamond", serif;
  --sans: "DM Sans", sans-serif;
}

/* ======================================================
   RESET
====================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--black);
  color: var(--cream);
}

/* ======================================================
   TEXTURE
====================================================== */

.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;

  opacity: 0.04;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.6'/%3E%3C/svg%3E");
}

/* ======================================================
   LOADER
====================================================== */

.loader {
  position: fixed;
  inset: 0;

  z-index: 100000;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--black);
  color: var(--cream);
}

.loader-inner {
  width: min(340px, 78vw);
  text-align: center;
}

.loader-pw {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
  letter-spacing: -5px;

  animation: loaderPW 1.1s ease both;
}

.loader-inner p {
  margin-top: 13px;

  font-size: 0.55rem;
  letter-spacing: 4px;
}

.loader-line {
  height: 1px;

  margin: 35px 0 18px;

  background: rgba(255, 255, 255, 0.14);

  overflow: hidden;
}

.loader-line span {
  display: block;

  width: 0;
  height: 100%;

  background: var(--gold);

  animation: loaderLine 2s ease forwards;
}

.loader-inner small {
  opacity: 0.45;

  font-size: 0.44rem;

  letter-spacing: 2px;
}

@keyframes loaderPW {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loaderLine {
  to {
    width: 100%;
  }
}

/* ======================================================
   CURSOR
====================================================== */

.cursor-dot {
  position: fixed;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--gold);

  pointer-events: none;

  z-index: 99999;

  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(17, 17, 15, 0.5);
  border-radius: 50%;

  pointer-events: none;

  z-index: 99998;

  display: grid;
  place-items: center;

  transform: translate(-50%, -50%);

  transition:
    width 0.3s ease,
    height 0.3s ease,
    background 0.3s ease,
    border 0.3s ease;
}

.cursor-ring span {
  opacity: 0;

  font-size: 0.38rem;

  letter-spacing: 1.2px;

  transition: opacity 0.2s ease;
}

.cursor-ring.active {
  width: 76px;
  height: 76px;

  background: rgba(243, 238, 227, 0.9);

  border-color: var(--gold);
}

.cursor-ring.active span {
  opacity: 1;
}

/* ======================================================
   NAV
====================================================== */

.navbar {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  padding: 26px 4.5%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 1000;
}

.nav-brand {
  display: flex;
  align-items: center;

  gap: 15px;
}

.nav-pw {
  font-family: var(--serif);

  font-size: 1.8rem;
  font-weight: 600;
}

.nav-name {
  font-size: 0.6rem;

  letter-spacing: 2.3px;
}

.desktop-nav {
  display: flex;

  gap: 34px;
}

.desktop-nav a {
  position: relative;

  font-size: 0.6rem;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width 0.35s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-start {
  border: 0;
  border-bottom: 1px solid var(--black);

  padding: 5px 0;

  background: transparent;

  display: flex;
  align-items: center;

  gap: 12px;

  font-size: 0.58rem;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}

.nav-start span {
  transition: transform 0.3s ease;
}

.nav-start:hover span {
  transform: translate(5px, -5px);
}

.menu-toggle {
  display: none;

  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;

  width: 25px;
  height: 1px;

  margin: 6px;

  background: var(--black);
}

/* ======================================================
   MOBILE MENU
====================================================== */

.mobile-menu {
  position: fixed;

  inset: 0;

  background: var(--black);
  color: var(--cream);

  z-index: 900;

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-100%);

  transition: transform 0.7s cubic-bezier(0.7, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;

  text-align: center;

  gap: 22px;
}

.mobile-menu a,
.mobile-menu button {
  border: 0;

  background: transparent;

  color: var(--cream);

  font-family: var(--serif);

  font-size: 3rem;
}

/* ======================================================
   HERO
====================================================== */

.hero {
  min-height: 100vh;

  position: relative;

  padding: 135px 4.5% 60px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 15px;

  margin-bottom: 50px;

  color: var(--gold);

  font-size: 0.52rem;

  letter-spacing: 3px;
}

.hero-eyebrow > span {
  width: 45px;
  height: 1px;

  background: var(--gold);
}

.hero-title-wrapper h1 {
  position: relative;

  font-family: var(--serif);

  font-size: clamp(5.4rem, 13vw, 13rem);

  font-weight: 500;

  line-height: 0.67;

  text-align: center;

  letter-spacing: -7px;
}

.hero-word {
  display: block;

  will-change: transform;
}

.hero-amp {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  color: var(--gold);

  font-style: italic;

  font-size: clamp(3rem, 5vw, 5rem);
}

.floating-mini {
  position: absolute;

  color: rgba(17, 17, 15, 0.32);

  font-family: var(--serif);

  font-style: italic;

  font-size: 0.95rem;

  animation: heroFloat 4.5s ease-in-out infinite;
}

.mini-1 {
  left: 7%;
  top: 37%;
}

.mini-2 {
  right: 9%;
  top: 30%;

  animation-delay: 1s;
}

.mini-3 {
  right: 14%;
  bottom: 26%;

  animation-delay: 2s;
}

@keyframes heroFloat {
  50% {
    transform: translateY(-12px);
  }
}

.hero-bottom {
  margin-top: 75px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  gap: 40px;
}

.hero-bottom > p {
  max-width: 430px;

  font-family: var(--serif);

  font-size: 1.7rem;

  line-height: 1.1;
}

.hero-message {
  display: flex;
  align-items: center;

  gap: 14px;
}

.hero-message small {
  font-size: 0.45rem;

  letter-spacing: 2px;
}

.hero-message > span {
  width: 65px;
  height: 1px;

  background: var(--gold);
}

.hero-message em {
  color: var(--gold);

  font-family: var(--serif);

  font-size: 1rem;
}

.hero-start {
  position: absolute;

  left: 50%;
  bottom: 50px;

  transform: translateX(-50%);

  border: 0;

  background: transparent;

  display: flex;
  align-items: center;

  gap: 14px;

  font-size: 0.52rem;

  letter-spacing: 1.5px;
}

.hero-start i {
  width: 44px;
  height: 44px;

  border: 1px solid var(--black);
  border-radius: 50%;

  display: grid;
  place-items: center;

  font-style: normal;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.hero-start:hover i {
  background: var(--black);
  color: var(--cream);

  transform: rotate(-45deg);
}

.scroll-note {
  position: absolute;

  right: 4.5%;
  bottom: 42px;

  display: flex;
  align-items: center;

  gap: 14px;
}

.scroll-note > span {
  font-size: 0.44rem;

  letter-spacing: 2px;
}

.scroll-note > div {
  width: 70px;
  height: 1px;

  background: var(--line);

  overflow: hidden;
}

.scroll-note i {
  display: block;

  width: 35px;
  height: 100%;

  background: var(--black);

  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(220%);
  }
}

/* ======================================================
   KINETIC
====================================================== */

.kinetic {
  padding: 30px 0;

  overflow: hidden;

  background: var(--gold);
}

.kinetic-line {
  width: max-content;

  display: flex;
  align-items: center;

  gap: 28px;

  white-space: nowrap;
}

.kinetic-line + .kinetic-line {
  margin-top: 10px;
}

.kinetic-line span,
.kinetic-line em {
  font-family: var(--serif);

  font-size: 3rem;
}

.kinetic-line em {
  color: var(--cream-light);
}

.kinetic-line i {
  font-style: normal;

  color: var(--black);
}

.kinetic-a {
  animation: moveLeft 28s linear infinite;
}

.kinetic-b {
  animation: moveRight 32s linear infinite;
}

@keyframes moveLeft {
  to {
    transform: translateX(-45%);
  }
}

@keyframes moveRight {
  from {
    transform: translateX(-40%);
  }

  to {
    transform: translateX(0);
  }
}

/* ======================================================
   GENERAL
====================================================== */

.section-label {
  color: var(--gold);

  font-size: 0.54rem;

  letter-spacing: 2.4px;
}

.section-title {
  font-family: var(--serif);

  font-size: clamp(4rem, 8vw, 8rem);

  font-weight: 500;

  line-height: 0.82;
}

.section-title em {
  color: var(--gold);

  font-weight: 400;
}

/* ======================================================
   APPROACH
====================================================== */

.approach {
  min-height: 100vh;

  padding: 120px 7%;

  background: var(--black);
  color: var(--cream);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.approach-text {
  max-width: 1300px;

  margin: 85px auto;
}

.approach-text p {
  font-family: var(--serif);

  font-size: clamp(3.5rem, 6.5vw, 7rem);

  line-height: 0.92;

  text-align: center;
}

.approach-text p + p {
  margin-top: 50px;
}

.approach-text em {
  color: var(--gold-light);
}

.approach-text strong {
  font-style: italic;
  font-weight: 500;
}

.approach-foot {
  margin-left: auto;

  display: flex;

  gap: 12px;

  color: rgba(255, 255, 255, 0.45);

  font-size: 0.48rem;

  letter-spacing: 2px;
}

.approach-foot i {
  color: var(--gold);
}

/* ======================================================
   SERVICES
====================================================== */

.services {
  position: relative;

  padding: 140px 5% 160px;
}

.services-head {
  margin-bottom: 95px;
}

.services-head h2 {
  margin-top: 25px;
}

.services-description {
  max-width: 430px;

  margin-top: 30px;

  color: rgba(17, 17, 15, 0.58);

  font-size: 0.75rem;

  line-height: 1.8;
}

.service-item {
  display: grid;

  grid-template-columns: 75px 1fr 45px;

  gap: 25px;

  align-items: center;

  padding: 42px 0;

  border-top: 1px solid var(--line);

  transition:
    padding 0.35s ease,
    background 0.35s ease;

  cursor: pointer;
}

.service-item:last-child {
  border-bottom: 1px solid var(--line);
}

.service-item:hover {
  padding-left: 18px;
}

.service-number {
  color: var(--gold);

  font-size: 0.52rem;
}

.service-item h3 {
  font-family: var(--serif);

  font-size: clamp(2.8rem, 5vw, 5.4rem);

  font-weight: 500;

  line-height: 0.9;
}

.service-item p {
  max-width: 580px;

  margin-top: 15px;

  color: rgba(17, 17, 15, 0.58);

  font-size: 0.72rem;

  line-height: 1.7;
}

.service-arrow {
  font-size: 1.5rem;

  transition: transform 0.35s ease;
}

.service-item:hover .service-arrow {
  transform: translate(7px, -7px);
}

/* ======================================================
   SERVICE PREVIEW
====================================================== */

.service-preview {
  position: fixed;

  width: 350px;
  height: 245px;

  z-index: 1500;

  pointer-events: none;

  opacity: 0;

  transform: scale(0.9) rotate(-2deg);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.service-preview.visible {
  opacity: 1;

  transform: scale(1) rotate(0);
}

.mini-browser {
  width: 100%;
  height: 100%;

  background: var(--cream-light);

  border: 1px solid rgba(17, 17, 15, 0.28);

  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.14);
}

.mini-browser-top {
  height: 32px;

  padding: 0 10px;

  border-bottom: 1px solid var(--line);

  display: flex;
  align-items: center;

  gap: 15px;
}

.browser-dots {
  display: flex;

  gap: 5px;
}

.browser-dots span {
  width: 6px;
  height: 6px;

  border: 1px solid var(--black);

  border-radius: 50%;
}

.mini-browser-top small {
  padding: 3px 22px;

  border: 1px solid var(--line);

  font-size: 0.32rem;

  letter-spacing: 1.2px;
}

.mini-screen {
  height: calc(100% - 32px);

  position: relative;
}

.preview-content {
  position: absolute;

  inset: 0;

  padding: 25px;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.preview-content.active {
  display: flex;
}

.preview-content > small {
  font-size: 0.4rem;

  letter-spacing: 1.8px;
}

.preview-content h4 {
  margin: 15px 0;

  font-family: var(--serif);

  font-size: 2.3rem;

  font-weight: 500;

  line-height: 0.82;

  text-align: center;
}

.preview-content h4 em {
  color: var(--gold);
}

.preview-content > span {
  border-bottom: 1px solid var(--black);

  padding-bottom: 4px;

  font-size: 0.4rem;
}

/* invitation */

.envelope-animation {
  width: 135px;
  height: 85px;

  position: relative;

  margin-bottom: 18px;
}

.envelope-base {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 67px;

  border: 1px solid var(--gold);

  background: var(--cream-light);

  z-index: 3;
}

.envelope-flap {
  position: absolute;

  width: 96px;
  height: 63px;

  left: 19px;
  top: 17px;

  border-left: 1px solid var(--gold);

  border-bottom: 1px solid var(--gold);

  transform: rotate(-45deg) skew(10deg, 10deg);

  z-index: 4;
}

.invite-card {
  position: absolute;

  left: 17px;
  top: 20px;

  width: 100px;
  height: 60px;

  border: 1px solid var(--gold);

  background: var(--cream);

  display: grid;
  place-items: center;

  font-family: var(--serif);

  z-index: 2;

  animation: invitationRise 2.3s ease-in-out infinite;
}

@keyframes invitationRise {
  0%,
  20% {
    transform: translateY(5px);
  }

  55%,
  80% {
    transform: translateY(-35px);
  }

  100% {
    transform: translateY(5px);
  }
}

.invite-text {
  font-family: var(--serif);

  color: var(--gold);

  font-size: 1rem;
}

/* products */

.product-row {
  display: flex;

  gap: 8px;

  margin-bottom: 20px;
}

.product-card {
  text-align: center;
}

.product-card > div {
  width: 70px;
  height: 95px;

  margin-bottom: 5px;

  background: linear-gradient(145deg, #dacdaf, #ad9365);
}

.product-card:nth-child(2) > div {
  background: linear-gradient(145deg, #22221f, #8d8068);
}

.product-card:nth-child(3) > div {
  background: linear-gradient(145deg, #e7decf, #c5b18a);
}

.product-card span {
  font-size: 0.4rem;
}

/* orbit */

.orbit {
  width: 140px;
  height: 140px;

  border: 1px solid var(--gold);

  border-radius: 50%;

  display: grid;
  place-items: center;

  position: relative;

  animation: orbitSpin 8s linear infinite;
}

.orbit strong {
  font-family: var(--serif);

  font-size: 1.1rem;

  font-weight: 500;
}

.orbit i {
  position: absolute;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--gold);
}

.orbit i:nth-child(2) {
  top: -4px;
}

.orbit i:nth-child(3) {
  bottom: 12px;
  left: 7px;
}

.orbit i:nth-child(4) {
  right: 1px;
  top: 42px;
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ======================================================
   EXPERIENCE
====================================================== */

.experience {
  min-height: 100vh;

  padding: 130px 6%;

  background: var(--beige);

  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 80px;

  align-items: center;
}

.experience-copy h2 {
  margin: 25px 0 30px;

  font-family: var(--serif);

  font-size: clamp(3.8rem, 6vw, 7rem);

  line-height: 0.82;

  font-weight: 500;
}

.experience-copy h2 span {
  display: block;

  font-style: italic;

  font-weight: 400;
}

.experience-copy p {
  max-width: 430px;

  font-size: 0.78rem;

  line-height: 1.8;
}

.device-stage {
  min-height: 620px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  perspective: 1200px;
}

.desktop-device {
  width: min(620px, 92%);

  height: 380px;

  background: var(--cream-light);

  border: 2px solid var(--black);

  box-shadow: 25px 30px 0 rgba(17, 17, 15, 0.08);

  transition: transform 0.15s ease-out;
}

.device-bar {
  height: 35px;

  padding: 0 13px;

  border-bottom: 1px solid var(--black);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.device-bar > div {
  display: flex;

  gap: 6px;
}

.device-bar span {
  width: 7px;
  height: 7px;

  border: 1px solid var(--black);

  border-radius: 50%;
}

.device-bar small {
  font-size: 0.36rem;

  letter-spacing: 2px;
}

.desktop-screen {
  height: calc(100% - 35px);

  padding: 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.desktop-screen small {
  font-size: 0.4rem;

  letter-spacing: 2px;
}

.desktop-screen h3 {
  margin: 20px 0 30px;

  font-family: var(--serif);

  font-size: 4.2rem;

  line-height: 0.78;

  font-weight: 500;
}

.desktop-screen h3 em {
  color: var(--gold);
}

.desktop-screen > span {
  width: fit-content;

  padding-bottom: 5px;

  border-bottom: 1px solid var(--black);

  font-size: 0.4rem;

  letter-spacing: 1.5px;
}

.phone {
  position: absolute;

  right: -5px;
  bottom: 30px;

  width: 155px;
  height: 310px;

  border: 5px solid var(--black);

  border-radius: 26px;

  background: var(--black);

  padding: 7px;

  box-shadow: 16px 22px 45px rgba(17, 17, 15, 0.17);

  transition: transform 0.15s ease-out;
}

.phone-screen {
  height: 100%;

  border-radius: 16px;

  background: var(--cream);

  text-align: center;

  padding: 45px 12px 20px;
}

.phone-notch {
  position: absolute;

  width: 52px;
  height: 9px;

  left: 50%;
  top: 12px;

  transform: translateX(-50%);

  border-radius: 40px;

  background: var(--black);

  z-index: 2;
}

.phone-screen small {
  font-size: 0.33rem;

  letter-spacing: 1.5px;
}

.phone-pw {
  width: 77px;
  height: 77px;

  margin: 45px auto 25px;

  border: 1px solid var(--gold);

  border-radius: 50%;

  display: grid;
  place-items: center;

  font-family: var(--serif);

  font-size: 1.8rem;

  animation: phoneRotate 5s ease-in-out infinite;
}

@keyframes phoneRotate {
  50% {
    transform: rotate(10deg) scale(1.05);
  }
}

.phone-screen p {
  font-family: var(--serif);

  font-style: italic;

  font-size: 1rem;
}

.feature-pill {
  position: absolute;

  padding: 10px 15px;

  border: 1px solid rgba(17, 17, 15, 0.32);

  background: rgba(243, 238, 227, 0.83);

  backdrop-filter: blur(10px);

  font-size: 0.43rem;

  letter-spacing: 1px;

  animation: floatPill 4s ease-in-out infinite;
}

.pill1 {
  left: -3%;
  top: 65px;
}

.pill2 {
  right: 4%;
  top: 90px;
  animation-delay: 0.5s;
}

.pill3 {
  left: 7%;
  bottom: 110px;
  animation-delay: 1s;
}

.pill4 {
  right: 0;
  bottom: 0;
  animation-delay: 1.5s;
}

.pill5 {
  left: 35%;
  top: 15px;
  animation-delay: 2s;
}

.pill6 {
  left: 28%;
  bottom: 20px;
  animation-delay: 2.5s;
}

@keyframes floatPill {
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.floating-symbol {
  position: absolute;

  color: rgba(17, 17, 15, 0.18);

  font-family: var(--serif);
}

.symbol-code {
  left: 10%;
  top: 15%;

  font-size: 2rem;
}

.symbol-star {
  right: 10%;
  top: 22%;

  color: var(--gold);

  font-size: 2rem;

  animation: rotateStar 7s linear infinite;
}

.symbol-plus {
  left: 14%;
  bottom: 15%;

  font-size: 2.5rem;
}

@keyframes rotateStar {
  to {
    transform: rotate(360deg);
  }
}

/* ======================================================
   MARQUEE
====================================================== */

.marquee {
  overflow: hidden;

  padding: 27px 0;

  background: var(--black);
  color: var(--cream);
}

.marquee-inner {
  width: max-content;

  display: flex;
  align-items: center;

  gap: 32px;

  animation: marqueeMove 23s linear infinite;
}

.marquee-inner span,
.marquee-inner em {
  font-family: var(--serif);

  font-size: 2.6rem;

  white-space: nowrap;
}

.marquee-inner em {
  color: var(--gold-light);
}

.marquee-inner i {
  color: var(--gold);

  font-style: normal;
}

@keyframes marqueeMove {
  to {
    transform: translateX(-50%);
  }
}

/* ======================================================
   PROCESS
====================================================== */

.process {
  padding: 140px 6% 160px;
}

.process h2 {
  margin-top: 28px;
}

.process-line {
  width: 100%;
  height: 1px;

  margin-top: 100px;

  background: var(--line);
}

.process-line span {
  display: block;

  width: 0;
  height: 100%;

  background: var(--gold);
}

.process-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 40px;
}

.process-item {
  padding-top: 35px;
}

.process-item > span {
  color: var(--gold);

  font-size: 0.5rem;
}

.process-item h3 {
  margin: 32px 0 15px;

  font-family: var(--serif);

  font-size: 2.6rem;

  font-weight: 500;
}

.process-item p {
  max-width: 230px;

  color: rgba(17, 17, 15, 0.58);

  font-size: 0.7rem;

  line-height: 1.7;
}

/* ======================================================
   PLAYGROUND
====================================================== */

.playground {
  min-height: 80vh;

  position: relative;

  overflow: hidden;

  padding: 100px 5%;

  background: var(--black);
  color: var(--cream);

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.background-words span {
  position: absolute;

  color: rgba(255, 255, 255, 0.025);

  font-family: var(--serif);

  font-size: 10rem;

  font-weight: 600;
}

.background-words span:nth-child(1) {
  left: -3%;
  top: 5%;
}

.background-words span:nth-child(2) {
  right: -3%;
  top: 35%;
}

.background-words span:nth-child(3) {
  left: 12%;
  bottom: 3%;
}

.play-content {
  position: relative;

  z-index: 2;

  pointer-events: none;
}

.play-content small {
  color: var(--gold);

  font-size: 0.47rem;

  letter-spacing: 3px;
}

.play-content h2 {
  margin: 35px 0;

  font-family: var(--serif);

  font-size: clamp(4.5rem, 10vw, 11rem);

  line-height: 0.7;

  font-weight: 500;
}

.play-content h2 em {
  display: block;

  color: var(--gold-light);

  font-weight: 400;
}

.mobile-interaction {
  display: none;
}

.play-content p {
  font-family: var(--serif);

  font-size: 1.5rem;

  color: rgba(255, 255, 255, 0.65);
}

.play-content p em {
  display: block;

  margin-top: 5px;

  color: var(--cream);
}

.trail-word {
  position: absolute;

  z-index: 3;

  pointer-events: none;

  color: var(--gold);

  font-family: var(--serif);

  font-size: 1.3rem;

  font-style: italic;

  animation: trailFade 1.4s ease forwards;
}

@keyframes trailFade {
  from {
    opacity: 1;

    transform: translate(-50%, -50%) scale(1);
  }

  to {
    opacity: 0;

    transform: translate(-50%, -100%) scale(0.6);
  }
}

.tap-circle {
  position: absolute;

  width: 20px;
  height: 20px;

  border: 1px solid var(--gold);

  border-radius: 50%;

  pointer-events: none;

  transform: translate(-50%, -50%);

  animation: tapCircle 1s ease forwards;
}

@keyframes tapCircle {
  to {
    width: 180px;
    height: 180px;

    opacity: 0;
  }
}

/* ======================================================
   CONNECT
====================================================== */

.connect-section {
  padding: 140px 6%;
}

.connect-header h2 {
  margin-top: 25px;

  font-family: var(--serif);

  font-size: clamp(4.5rem, 8vw, 9rem);

  line-height: 0.8;

  font-weight: 500;
}

.connect-header h2 em {
  display: block;

  margin-left: 14%;

  color: var(--gold);

  font-weight: 400;
}

.contact-list {
  margin-top: 100px;

  border-top: 1px solid var(--black);
}

.contact-row {
  min-height: 135px;

  border-bottom: 1px solid var(--line);

  display: grid;

  grid-template-columns: 90px 1fr 1.4fr 70px;

  gap: 25px;

  align-items: center;

  padding: 20px 0;

  position: relative;

  overflow: hidden;

  transition:
    padding 0.4s ease,
    color 0.4s ease;
}

a.contact-row::before {
  content: "";

  position: absolute;

  inset: 0;

  background: var(--black);

  transform: translateX(-101%);

  transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);

  z-index: -1;
}

a.contact-row:hover::before {
  transform: translateX(0);
}

a.contact-row:hover {
  color: var(--cream);

  padding-left: 18px;
  padding-right: 18px;
}

.contact-icon {
  width: 58px;
  height: 58px;

  border: 1px solid currentColor;

  border-radius: 50%;

  display: grid;
  place-items: center;

  transition: transform 0.4s ease;
}

.contact-row:hover .contact-icon {
  transform: rotate(-8deg) scale(1.08);
}

.contact-icon svg {
  width: 23px;
  height: 23px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.5;
}

.contact-row:first-child .contact-icon svg {
  fill: currentColor;

  stroke: none;
}

.fill-dot {
  fill: currentColor;

  stroke: none;
}

.contact-type small {
  color: var(--gold);

  font-size: 0.42rem;

  letter-spacing: 2px;
}

.contact-type h3 {
  margin-top: 5px;

  font-family: var(--serif);

  font-size: 2.3rem;

  font-weight: 500;
}

.contact-row > p {
  font-family: var(--serif);

  font-size: 1.25rem;

  word-break: break-word;
}

.contact-arrow {
  justify-self: end;

  font-size: 1.8rem;

  transition: transform 0.4s ease;
}

.contact-row:hover .contact-arrow {
  transform: translate(8px, -8px);
}

/* whish */

.whish-row {
  min-height: 155px;

  background: rgba(177, 151, 101, 0.08);

  grid-template-columns: 90px 1fr 1.4fr 70px;
}

.whish-logo-holder {
  width: 62px;
  height: 62px;

  border: 1px solid var(--line);

  border-radius: 50%;

  background: var(--cream-light);

  display: grid;
  place-items: center;

  overflow: hidden;
}

.whish-logo-holder img {
  width: 48px;
  height: 48px;

  object-fit: contain;
}

.whish-detail strong {
  display: block;

  font-family: var(--serif);

  font-size: 1.7rem;

  font-weight: 500;
}

.whish-detail span {
  display: block;

  margin-top: 5px;

  color: rgba(17, 17, 15, 0.52);

  font-size: 0.55rem;
}

.payment-circle {
  width: 48px;
  height: 48px;

  justify-self: end;

  border: 1px solid var(--gold);

  border-radius: 50%;

  display: grid;
  place-items: center;

  color: var(--gold);

  font-family: var(--serif);

  font-size: 1.4rem;

  animation: paymentFloat 3.5s ease-in-out infinite;
}

@keyframes paymentFloat {
  50% {
    transform: translateY(-7px) rotate(8deg);
  }
}

/* ======================================================
   FINAL CTA
====================================================== */

.final-cta {
  min-height: 100vh;

  padding: 130px 6%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.final-cta > small {
  margin-bottom: 55px;

  color: var(--gold);

  font-size: 0.5rem;

  letter-spacing: 3px;
}

.final-cta h2 {
  font-family: var(--serif);

  font-size: clamp(5rem, 13vw, 14rem);

  line-height: 0.65;

  font-weight: 500;

  letter-spacing: -5px;
}

.final-cta h2 span,
.final-cta h2 em {
  display: block;
}

.final-cta h2 em {
  margin-left: 14%;

  color: var(--gold);

  font-weight: 400;
}

.final-start {
  width: 100%;

  margin-top: 90px;

  padding: 30px 0;

  border: 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);

  background: transparent;

  display: flex;
  justify-content: space-between;
  align-items: center;

  position: relative;

  overflow: hidden;

  font-size: 0.58rem;

  letter-spacing: 2px;
}

.final-start::before {
  content: "";

  position: absolute;

  inset: 0;

  background: var(--black);

  transform: translateY(101%);

  transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
}

.final-start span {
  position: relative;

  z-index: 2;

  transition: color 0.3s ease;
}

.final-start span:last-child {
  font-size: 2rem;
}

.final-start:hover::before {
  transform: translateY(0);
}

.final-start:hover span {
  color: var(--cream);
}

/* ======================================================
   FOOTER
====================================================== */

footer {
  padding: 80px 5% 28px;

  background: var(--black);
  color: var(--cream);
}

.footer-main {
  display: grid;

  grid-template-columns: 1fr 1fr 1fr;

  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;

  gap: 18px;
}

.footer-brand span {
  font-family: var(--serif);

  font-size: 2.4rem;
}

.footer-brand strong {
  font-size: 0.55rem;

  font-weight: 400;

  letter-spacing: 2px;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.55);

  font-family: var(--serif);

  font-size: 1.5rem;

  font-style: italic;
}

.footer-links {
  display: flex;
  flex-direction: column;

  align-items: flex-end;

  gap: 13px;

  font-size: 0.52rem;

  letter-spacing: 1.4px;
}

.footer-bottom {
  margin-top: 80px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);

  display: flex;
  justify-content: space-between;

  color: rgba(255, 255, 255, 0.35);

  font-size: 0.43rem;

  letter-spacing: 1.5px;
}

/* ======================================================
   REVEALS
====================================================== */

.reveal {
  opacity: 0;

  transform: translateY(50px);

  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

/* ======================================================
   MODAL
====================================================== */

.project-modal {
  position: fixed;

  inset: 0;

  z-index: 5000;

  visibility: hidden;

  pointer-events: none;
}

.project-modal.open {
  visibility: visible;

  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;

  inset: 0;

  background: rgba(17, 17, 15, 0.76);

  backdrop-filter: blur(12px);

  opacity: 0;

  transition: opacity 0.45s ease;
}

.project-modal.open .modal-backdrop {
  opacity: 1;
}

.project-panel {
  position: absolute;

  top: 0;
  right: 0;

  width: min(720px, 100%);

  height: 100%;

  overflow-y: auto;

  background: var(--cream-light);

  padding: 55px 55px 45px;

  transform: translateX(100%);

  transition: transform 0.7s cubic-bezier(0.7, 0, 0.2, 1);
}

.project-modal.open .project-panel {
  transform: translateX(0);
}

.close-project {
  position: absolute;

  right: 25px;
  top: 20px;

  width: 44px;
  height: 44px;

  border: 1px solid var(--line);

  border-radius: 50%;

  background: transparent;

  font-family: var(--serif);

  font-size: 2rem;
}

.form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 65px;
}

.form-heading small {
  color: var(--gold);

  font-size: 0.46rem;

  letter-spacing: 2px;
}

.form-heading h2 {
  margin-top: 15px;

  font-family: var(--serif);

  font-size: 3.8rem;

  font-weight: 500;

  line-height: 0.85;
}

.form-heading h2 em {
  color: var(--gold);
}

.progress {
  display: flex;
  align-items: center;

  gap: 10px;

  font-size: 0.45rem;
}

.progress > div {
  width: 75px;
  height: 1px;

  background: var(--line);

  overflow: hidden;
}

.progress i {
  display: block;

  width: 25%;
  height: 100%;

  background: var(--gold);

  transition: width 0.4s ease;
}

.form-step {
  display: none;

  animation: stepIn 0.5s ease;
}

.form-step.active {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;

    transform: translateY(15px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.step-number {
  margin-bottom: 24px;

  color: var(--gold);

  font-size: 0.47rem;

  letter-spacing: 2px;
}

.form-step h3 {
  max-width: 500px;

  margin-bottom: 42px;

  font-family: var(--serif);

  font-size: 2.7rem;

  line-height: 0.95;

  font-weight: 500;
}

.service-choice {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;

  margin-bottom: 35px;
}

.service-choice input,
.contact-choice input {
  display: none;
}

.service-choice span,
.contact-choice span {
  min-height: 60px;

  padding: 15px;

  border: 1px solid var(--line);

  display: flex;
  align-items: center;

  font-size: 0.68rem;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.service-choice input:checked + span,
.contact-choice input:checked + span {
  background: var(--black);
  color: var(--cream);
}

.field {
  margin-bottom: 27px;
}

.field > label {
  display: block;

  margin-bottom: 8px;

  font-size: 0.52rem;

  letter-spacing: 1px;
}

.field input,
.field textarea,
.field select {
  width: 100%;

  padding: 13px 0;

  border: 0;
  border-bottom: 1px solid var(--black);

  border-radius: 0;

  background: transparent;

  color: var(--black);

  outline: 0;

  font-size: 0.8rem;
}

.field textarea {
  min-height: 110px;

  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--gold);
}

.field-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 25px;
}

.contact-choice {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;
}

.summary {
  border-top: 1px solid var(--black);

  margin-bottom: 25px;
}

.summary > div {
  min-height: 56px;

  padding: 12px 0;

  border-bottom: 1px solid var(--line);

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
}

.summary span {
  color: rgba(17, 17, 15, 0.48);

  font-size: 0.45rem;

  letter-spacing: 1.5px;
}

.summary strong {
  font-family: var(--serif);

  font-size: 1.2rem;

  font-weight: 500;

  text-align: right;
}

.whatsapp-ready {
  padding: 22px;

  background: var(--black);
  color: var(--cream);

  display: flex;
  align-items: center;

  gap: 18px;
}

.whatsapp-ready-icon {
  width: 50px;
  height: 50px;

  flex: 0 0 auto;

  border: 1px solid var(--gold);

  border-radius: 50%;

  display: grid;
  place-items: center;
}

.whatsapp-ready-icon svg {
  width: 22px;
  height: 22px;

  fill: var(--gold);
}

.whatsapp-ready strong {
  font-family: var(--serif);

  font-size: 1.4rem;

  font-weight: 500;
}

.whatsapp-ready p {
  margin-top: 4px;

  color: rgba(255, 255, 255, 0.5);

  font-size: 0.55rem;

  line-height: 1.5;
}

.payment-form-note {
  margin-top: 22px;

  color: rgba(17, 17, 15, 0.52);

  font-size: 0.6rem;

  line-height: 1.7;
}

.form-controls {
  margin-top: 42px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 15px;
}

.form-controls button {
  min-height: 48px;

  padding: 0 20px;

  border: 0;

  font-size: 0.55rem;

  letter-spacing: 1px;
}

.back-button {
  background: transparent;
}

.back-button:disabled {
  opacity: 0.3;

  cursor: default;
}

.next-button,
.submit-button {
  margin-left: auto;

  background: var(--black);
  color: var(--cream);
}

.submit-button {
  display: none;
}

/* ======================================================
   TABLET
====================================================== */

@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

  .experience {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    max-width: 620px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 700px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .navbar {
    padding: 20px 5%;
  }

  .nav-name,
  .nav-start {
    display: none;
  }

  .menu-toggle {
    display: block;

    position: relative;

    z-index: 1000;
  }

  /* HERO */

  .hero {
    min-height: 850px;

    padding: 120px 5% 70px;
  }

  .hero-eyebrow {
    margin-bottom: 45px;

    font-size: 0.42rem;

    letter-spacing: 2px;
  }

  .hero-title-wrapper h1 {
    font-size: clamp(4.7rem, 23vw, 7rem);

    line-height: 0.74;

    letter-spacing: -4px;
  }

  .hero-amp {
    position: static;

    display: block;

    transform: none;

    margin: 20px 0;
  }

  .floating-mini {
    display: none;
  }

  .hero-bottom {
    margin-top: 60px;

    flex-direction: column;

    align-items: flex-start;
  }

  .hero-bottom > p {
    font-size: 1.45rem;
  }

  .hero-message {
    flex-wrap: wrap;
  }

  .hero-start {
    position: static;

    transform: none;

    margin-top: 50px;
  }

  .scroll-note {
    display: none;
  }

  /* KINETIC */

  .kinetic-line span,
  .kinetic-line em {
    font-size: 2.1rem;
  }

  /* APPROACH */

  .approach {
    padding: 100px 6%;
  }

  .approach-text p {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .approach-foot {
    margin-left: 0;

    flex-wrap: wrap;
  }

  /* SERVICES */

  .services {
    padding: 100px 6%;
  }

  .services-head {
    margin-bottom: 65px;
  }

  .service-item {
    grid-template-columns: 40px 1fr 24px;

    padding: 30px 0;
  }

  .service-item h3 {
    font-size: 2.8rem;
  }

  .service-preview {
    display: none;
  }

  .service-item.mobile-active {
    padding-left: 12px;

    background: rgba(177, 151, 101, 0.07);
  }

  /* EXPERIENCE */

  .experience {
    padding: 100px 5%;
  }

  .device-stage {
    min-height: 500px;
  }

  .desktop-device {
    height: 300px;
  }

  .desktop-screen {
    padding: 28px;
  }

  .desktop-screen h3 {
    font-size: 3rem;
  }

  .phone {
    width: 125px;
    height: 250px;

    right: -3px;
  }

  .feature-pill {
    padding: 7px 9px;

    font-size: 0.34rem;
  }

  /* PROCESS */

  .process {
    padding: 100px 6%;
  }

  .process-line {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;

    margin-top: 70px;
  }

  .process-item {
    padding: 30px 0;

    border-top: 1px solid var(--line);
  }

  .process-item h3 {
    margin-top: 18px;
  }

  /* PLAYGROUND */

  .playground {
    min-height: 650px;
  }

  .desktop-interaction {
    display: none;
  }

  .mobile-interaction {
    display: block;
  }

  .play-content h2 {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  /* CONNECT */

  .connect-section {
    padding: 100px 6%;
  }

  .connect-header h2 {
    font-size: clamp(4rem, 16vw, 7rem);
  }

  .connect-header h2 em {
    margin-left: 0;
  }

  .contact-list {
    margin-top: 70px;
  }

  .contact-row,
  .whish-row {
    min-height: 145px;

    grid-template-columns: 62px 1fr 40px;

    gap: 14px;

    padding: 20px 0;
  }

  .contact-row > p {
    grid-column: 2 / 4;

    margin-top: -18px;

    font-size: 1rem;
  }

  .contact-arrow {
    grid-column: 3;

    grid-row: 1;

    font-size: 1.3rem;
  }

  .contact-icon,
  .whish-logo-holder {
    width: 50px;
    height: 50px;
  }

  .contact-type h3 {
    font-size: 1.9rem;
  }

  .whish-row {
    grid-template-columns: 62px 1fr 40px;
  }

  .whish-detail {
    grid-column: 2 / 4;
  }

  .payment-circle {
    grid-column: 3;
    grid-row: 1;

    width: 40px;
    height: 40px;
  }

  /* FINAL */

  .final-cta {
    min-height: 760px;

    padding: 100px 6%;
  }

  .final-cta h2 {
    font-size: clamp(4rem, 18vw, 7rem);

    line-height: 0.73;

    letter-spacing: -3px;
  }

  .final-cta h2 em {
    margin: 18px 0 0;
  }

  .final-start {
    margin-top: 70px;
  }

  /* FOOTER */

  .footer-main {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-bottom {
    margin-top: 50px;

    flex-direction: column;

    gap: 10px;
  }

  /* MODAL */

  .project-panel {
    padding: 65px 22px 35px;
  }

  .form-heading {
    display: block;

    margin-bottom: 45px;
  }

  .form-heading h2 {
    font-size: 3rem;
  }

  .progress {
    margin-top: 30px;
  }

  .service-choice,
  .field-row {
    grid-template-columns: 1fr;
  }

  .form-step h3 {
    font-size: 2.2rem;
  }

  .form-controls {
    position: sticky;

    bottom: 0;

    padding: 15px 0 5px;

    background: var(--cream-light);
  }
}

/* ======================================================
   REDUCED MOTION
====================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

    scroll-behavior: auto !important;
  }
}
/* ==========================================================
   PAPETERIE & WEB
   RESPONSIVE FIX
   PASTE AT THE VERY BOTTOM OF style.css
========================================================== */

/* ==========================================================
   GLOBAL RESPONSIVE SAFETY
========================================================== */

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  margin: 0;

  position: relative;

  overflow-x: hidden;

  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

main,
header,
footer,
section,
nav,
article,
form,
div {
  min-width: 0;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

img,
video {
  height: auto;
}

input,
textarea,
select,
button {
  max-width: 100%;
}

/* ==========================================================
   MODERN MOBILE VIEWPORT HEIGHT
========================================================== */

.hero,
.approach,
.final-cta {
  min-height: 100svh;
}

/* ==========================================================
   TOUCH DEVICES
   REMOVE DESKTOP CURSOR EFFECTS
========================================================== */

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  .service-preview {
    display: none !important;
  }

  .service-item:hover {
    padding-left: 0;
  }

  .service-item:hover .service-arrow {
    transform: none;
  }

  .contact-row:hover .contact-icon,
  .contact-row:hover .contact-arrow {
    transform: none;
  }

  a.contact-row:hover {
    padding-left: 0;
    padding-right: 0;
    color: inherit;
  }

  a.contact-row:hover::before {
    transform: translateX(-101%);
  }
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {
  /* NAVIGATION */

  .navbar {
    padding-left: 5%;
    padding-right: 5%;
  }

  .desktop-nav {
    display: none;
  }

  .nav-start {
    display: none;
  }

  .menu-toggle {
    display: block;

    position: relative;

    z-index: 1001;
  }

  .mobile-menu {
    z-index: 999;
  }

  /* HERO */

  .hero {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-title-wrapper h1 {
    font-size: clamp(4.8rem, 15vw, 9rem);

    letter-spacing: -4px;
  }

  .hero-bottom {
    gap: 28px;
  }

  /* EXPERIENCE */

  .experience {
    grid-template-columns: 1fr;

    gap: 45px;

    padding-left: 6%;
    padding-right: 6%;
  }

  .experience-copy {
    max-width: 680px;
  }

  .device-stage {
    width: 100%;

    max-width: 760px;

    margin-left: auto;
    margin-right: auto;
  }

  /* PROCESS */

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* CONTACT */

  .contact-row,
  .whish-row {
    grid-template-columns:
      75px
      minmax(0, 1fr)
      minmax(0, 1.2fr)
      50px;
  }

  /* FOOTER */

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;

    align-items: flex-start;
  }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;

    overflow-x: hidden;
  }

  body {
    -webkit-overflow-scrolling: touch;
  }

  /* ========================================================
     NAVIGATION
  ======================================================== */

  .navbar {
    width: 100%;

    padding: 18px 5%;
  }

  .nav-pw {
    font-size: 1.65rem;
  }

  .nav-name {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .nav-start {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* ========================================================
     MOBILE MENU
  ======================================================== */

  .mobile-menu {
    width: 100%;

    height: 100dvh;
    min-height: 100svh;

    padding: 90px 20px 35px;

    overflow-y: auto;
  }

  .mobile-menu nav {
    width: 100%;

    max-width: 420px;

    gap: 18px;
  }

  .mobile-menu a,
  .mobile-menu button {
    font-size: clamp(2.2rem, 11vw, 3.2rem);

    line-height: 1;
  }

  /* ========================================================
     HERO
  ======================================================== */

  .hero {
    width: 100%;

    min-height: 100svh;
    height: auto;

    padding: 105px 5% 55px;

    justify-content: flex-start;
  }

  .hero-eyebrow {
    width: 100%;

    margin-top: 18px;
    margin-bottom: 42px;

    gap: 10px;

    font-size: 0.4rem;

    letter-spacing: 1.8px;

    white-space: nowrap;
  }

  .hero-eyebrow > span {
    width: 28px;

    flex: 0 0 28px;
  }

  .hero-title-wrapper {
    width: 100%;
  }

  .hero-title-wrapper h1 {
    width: 100%;

    font-size: clamp(3.7rem, 20vw, 6.2rem);

    line-height: 0.78;

    letter-spacing: -2.5px;

    overflow-wrap: normal;
  }

  .hero-word {
    max-width: 100%;
  }

  .hero-amp {
    position: static;

    display: block;

    margin: 13px 0 10px;

    transform: none;

    font-size: clamp(2.2rem, 11vw, 3.5rem);

    line-height: 1;
  }

  .floating-mini {
    display: none;
  }

  /* HERO BOTTOM */

  .hero-bottom {
    width: 100%;

    margin-top: 48px;

    flex-direction: column;

    align-items: flex-start;

    gap: 26px;
  }

  .hero-bottom > p {
    width: 100%;

    max-width: 100%;

    font-size: clamp(1.25rem, 6vw, 1.55rem);

    line-height: 1.15;
  }

  .hero-message {
    width: 100%;

    gap: 10px;

    flex-wrap: wrap;
  }

  .hero-message > span {
    width: 42px;
  }

  .hero-message em {
    font-size: 0.95rem;
  }

  /* HERO BUTTON */

  .hero-start {
    position: static;

    transform: none;

    margin-top: 42px;

    align-self: flex-start;
  }

  .scroll-note {
    display: none;
  }

  /* ========================================================
     KINETIC MOVING TEXT
  ======================================================== */

  .kinetic {
    padding: 22px 0;
  }

  .kinetic-line {
    gap: 20px;
  }

  .kinetic-line span,
  .kinetic-line em {
    font-size: 1.9rem;
  }

  /* ========================================================
     GENERAL TITLES
  ======================================================== */

  .section-title {
    font-size: clamp(3.1rem, 15vw, 5rem);

    line-height: 0.88;
  }

  /* ========================================================
     APPROACH
  ======================================================== */

  .approach {
    min-height: auto;

    padding: 90px 6%;
  }

  .approach-text {
    width: 100%;

    margin: 65px auto;
  }

  .approach-text p {
    font-size: clamp(2.5rem, 11vw, 4rem);

    line-height: 0.95;
  }

  .approach-text p + p {
    margin-top: 38px;
  }

  .approach-foot {
    margin-left: 0;

    flex-wrap: wrap;

    line-height: 1.8;
  }

  /* ========================================================
     SERVICES
  ======================================================== */

  .services {
    padding: 90px 6%;
  }

  .services-head {
    margin-bottom: 58px;
  }

  .services-description {
    width: 100%;

    max-width: 100%;
  }

  .service-item {
    grid-template-columns:
      32px
      minmax(0, 1fr)
      20px;

    gap: 12px;

    padding: 28px 0;
  }

  .service-item:hover {
    padding-left: 0;
  }

  .service-item h3 {
    font-size: clamp(2.15rem, 10vw, 2.9rem);

    line-height: 0.95;

    overflow-wrap: anywhere;
  }

  .service-item p {
    width: 100%;

    max-width: 100%;

    font-size: 0.72rem;
  }

  .service-arrow {
    font-size: 1.15rem;
  }

  .service-preview {
    display: none !important;
  }

  /* ========================================================
     EXPERIENCE
  ======================================================== */

  .experience {
    min-height: auto;

    padding: 90px 5%;

    gap: 45px;
  }

  .experience-copy h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .experience-copy p {
    max-width: 100%;
  }

  /* DEVICE AREA */

  .device-stage {
    width: 100%;

    max-width: 100%;

    min-height: 430px;

    margin-left: auto;
    margin-right: auto;

    overflow: visible;
  }

  /* LAPTOP */

  .desktop-device {
    width: 92%;

    max-width: 440px;

    height: auto;

    aspect-ratio: 1.63 / 1;

    box-shadow: 14px 18px 0 rgba(17, 17, 15, 0.08);
  }

  .device-bar {
    height: 30px;
  }

  .desktop-screen {
    height: calc(100% - 30px);

    padding: 24px;
  }

  .desktop-screen h3 {
    margin: 15px 0 22px;

    font-size: clamp(2rem, 11vw, 3rem);
  }

  /* PHONE */

  .phone {
    width: 105px;

    height: 215px;

    right: 0;

    bottom: 15px;

    border-width: 4px;

    border-radius: 21px;

    padding: 5px;
  }

  .phone-screen {
    padding: 34px 8px 15px;
  }

  .phone-notch {
    width: 43px;

    top: 9px;
  }

  .phone-pw {
    width: 58px;
    height: 58px;

    margin: 31px auto 18px;

    font-size: 1.45rem;
  }

  .phone-screen p {
    font-size: 0.8rem;
  }

  /* FEATURE PILLS */

  .feature-pill {
    padding: 6px 8px;

    font-size: 0.3rem;

    letter-spacing: 0.7px;
  }

  .pill1 {
    left: 0;
    top: 35px;
  }

  .pill2 {
    right: 2%;
    top: 50px;
  }

  .pill3 {
    left: 2%;
    bottom: 65px;
  }

  .pill4 {
    right: 0;
    bottom: 0;
  }

  .pill5 {
    left: 36%;
    top: 5px;
  }

  .pill6 {
    left: 22%;
    bottom: 8px;
  }

  .floating-symbol {
    font-size: 1.4rem !important;
  }

  /* ========================================================
     MARQUEE
  ======================================================== */

  .marquee {
    padding: 21px 0;
  }

  .marquee-inner {
    gap: 24px;
  }

  .marquee-inner span,
  .marquee-inner em {
    font-size: 2rem;
  }

  /* ========================================================
     PROCESS
  ======================================================== */

  .process {
    padding: 90px 6%;
  }

  .process-line {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;

    gap: 0;

    margin-top: 55px;
  }

  .process-item {
    padding: 28px 0;

    border-top: 1px solid var(--line);
  }

  .process-item:last-child {
    border-bottom: 1px solid var(--line);
  }

  .process-item h3 {
    margin: 16px 0 12px;

    font-size: 2.25rem;
  }

  .process-item p {
    max-width: 100%;
  }

  /* ========================================================
     INTERACTIVE SECTION
  ======================================================== */

  .playground {
    min-height: 75svh;

    height: auto;

    padding: 90px 5%;
  }

  .background-words span {
    font-size: clamp(5rem, 30vw, 8rem);
  }

  .desktop-interaction {
    display: none;
  }

  .mobile-interaction {
    display: block;
  }

  .play-content h2 {
    margin: 28px 0;

    font-size: clamp(3.2rem, 17vw, 5.5rem);

    line-height: 0.76;
  }

  .play-content p {
    font-size: 1.2rem;
  }

  /* ========================================================
     CONTACT
  ======================================================== */

  .connect-section {
    padding: 90px 6%;
  }

  .connect-header h2 {
    font-size: clamp(3.5rem, 16vw, 5.5rem);

    line-height: 0.84;
  }

  .connect-header h2 em {
    margin-left: 0;
  }

  .contact-list {
    margin-top: 60px;
  }

  /* CONTACT ROWS */

  .contact-row,
  .whish-row {
    width: 100%;

    min-height: 128px;

    grid-template-columns:
      54px
      minmax(0, 1fr)
      34px;

    gap: 12px;

    padding: 18px 0;
  }

  .contact-row > p {
    grid-column: 2 / 4;

    margin-top: -10px;

    font-size: 0.95rem;

    overflow-wrap: anywhere;

    word-break: break-word;
  }

  .contact-arrow {
    grid-column: 3;

    grid-row: 1;

    justify-self: end;

    font-size: 1.15rem;
  }

  /* CONTACT ICON */

  .contact-icon,
  .whish-logo-holder {
    width: 44px;
    height: 44px;
  }

  .contact-icon svg {
    width: 19px;
    height: 19px;
  }

  .whish-logo-holder img {
    width: 35px;
    height: 35px;
  }

  .contact-type h3 {
    font-size: 1.7rem;
  }

  /* WHISH */

  .whish-detail {
    grid-column: 2 / 4;

    min-width: 0;
  }

  .whish-detail strong {
    font-size: 1.45rem;
  }

  .whish-detail span {
    overflow-wrap: anywhere;
  }

  .payment-circle {
    grid-column: 3;

    grid-row: 1;

    width: 36px;
    height: 36px;

    font-size: 1.1rem;
  }

  /* ========================================================
     FINAL CTA
  ======================================================== */

  .final-cta {
    min-height: 80svh;

    height: auto;

    padding: 90px 6%;
  }

  .final-cta > small {
    margin-bottom: 42px;
  }

  .final-cta h2 {
    font-size: clamp(3.6rem, 18vw, 5.8rem);

    line-height: 0.76;

    letter-spacing: -2px;
  }

  .final-cta h2 em {
    margin: 14px 0 0;
  }

  .final-start {
    margin-top: 58px;

    padding: 24px 0;
  }

  /* ========================================================
     FOOTER
  ======================================================== */

  footer {
    padding: 65px 6% 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 32px;
  }

  .footer-links {
    grid-column: auto;

    align-items: flex-start;
  }

  .footer-bottom {
    margin-top: 45px;

    flex-direction: column;

    gap: 10px;
  }

  /* ========================================================
     PROJECT FORM MODAL
  ======================================================== */

  .project-modal {
    width: 100%;

    height: 100dvh;
  }

  .project-panel {
    width: 100%;

    max-width: 100%;

    height: 100dvh;

    padding: 62px 20px 30px;

    overscroll-behavior: contain;
  }

  .close-project {
    right: 16px;

    top: 14px;
  }

  .form-heading {
    display: block;

    margin-bottom: 42px;
  }

  .form-heading h2 {
    max-width: calc(100% - 40px);

    font-size: clamp(2.5rem, 12vw, 3.3rem);
  }

  .progress {
    margin-top: 27px;
  }

  .service-choice,
  .field-row {
    grid-template-columns: 1fr;
  }

  .service-choice span,
  .contact-choice span {
    min-height: 54px;
  }

  .form-step h3 {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }

  /* IMPORTANT:
     16PX PREVENTS IPHONE SAFARI
     FROM AUTO-ZOOMING INTO INPUTS */

  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
  }

  .summary > div {
    align-items: flex-start;
  }

  .summary strong {
    max-width: 62%;

    overflow-wrap: anywhere;
  }

  .form-controls {
    position: sticky;

    bottom: 0;

    z-index: 10;

    padding: 14px 0 calc(6px + env(safe-area-inset-bottom));

    background: var(--cream-light);
  }

  .form-controls button {
    min-width: 0;

    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {
  /* HERO */

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-eyebrow {
    font-size: 0.36rem;

    letter-spacing: 1.4px;
  }

  .hero-title-wrapper h1 {
    font-size: clamp(3.25rem, 19vw, 5rem);

    letter-spacing: -2px;
  }

  .hero-bottom > p {
    font-size: 1.25rem;
  }

  /* GENERAL */

  .section-title {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  /* SECTION PADDING */

  .approach,
  .services,
  .process,
  .connect-section,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* APPROACH */

  .approach-text p {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  /* SERVICES */

  .service-item {
    grid-template-columns:
      26px
      minmax(0, 1fr)
      18px;

    gap: 9px;
  }

  .service-item h3 {
    font-size: clamp(2rem, 9.5vw, 2.55rem);
  }

  /* DEVICE MOCKUP */

  .device-stage {
    min-height: 390px;
  }

  .desktop-device {
    width: 95%;
  }

  .desktop-screen {
    padding: 20px;
  }

  .desktop-screen h3 {
    font-size: 2.25rem;
  }

  .phone {
    width: 92px;

    height: 190px;

    right: -2px;
  }

  .phone-pw {
    width: 50px;
    height: 50px;

    margin-top: 26px;
  }

  .feature-pill {
    font-size: 0.27rem;
  }

  /* PLAYGROUND */

  .play-content h2 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  /* CONTACT */

  .connect-header h2 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .contact-row,
  .whish-row {
    grid-template-columns:
      48px
      minmax(0, 1fr)
      30px;

    gap: 10px;
  }

  .contact-icon,
  .whish-logo-holder {
    width: 40px;
    height: 40px;
  }

  .contact-type h3 {
    font-size: 1.55rem;
  }

  .contact-row > p {
    font-size: 0.86rem;
  }

  /* FINAL CTA */

  .final-cta h2 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  /* PROJECT FORM */

  .project-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-choice {
    grid-template-columns: 1fr;
  }

  .form-controls {
    gap: 8px;
  }

  .form-controls button {
    padding-left: 11px;
    padding-right: 11px;

    letter-spacing: 0.5px;
  }
}

/* ==========================================================
   VERY SMALL PHONES
========================================================== */

@media (max-width: 360px) {
  .hero-title-wrapper h1 {
    font-size: 3.15rem;
  }

  .hero-eyebrow > span {
    display: none;
  }

  .service-item h3 {
    font-size: 1.95rem;
  }

  .device-stage {
    min-height: 365px;
  }

  .phone {
    transform: scale(0.9);

    transform-origin: right bottom;
  }

  .feature-pill {
    display: none;
  }

  .contact-row,
  .whish-row {
    grid-template-columns:
      44px
      minmax(0, 1fr)
      26px;
  }

  .final-cta h2 {
    font-size: 3.05rem;
  }
}

/* ==========================================================
   LANDSCAPE PHONES
========================================================== */

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;

    padding-top: 95px;
  }

  .mobile-menu {
    justify-content: flex-start;

    padding-top: 80px;
  }

  .mobile-menu a,
  .mobile-menu button {
    font-size: 2rem;
  }

  .playground {
    min-height: 500px;
  }
}
