:root {
  --black: #0b0b0b;
  --ink: #111111;
  --white: #f5f5f0;
  --soft: #e9e9e3;
  --muted: #74746f;
  --line: rgba(17, 17, 17, 0.14);
  --lime: #c5ff38;

  --max: 1320px;

  --sans: "DM Sans", sans-serif;
  --heading: "Manrope", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}


/* =========================================
   RESET
========================================= */

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

html {
  scroll-behavior: auto;
}

body {
  background: var(--white);
  color: var(--ink);

  font-family: var(--sans);

  overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
  font-family: var(--sans);
}

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

button {
  cursor: pointer;
}

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

::selection {
  background: var(--lime);
  color: var(--black);
}


/* =========================================
   NOISE
========================================= */

.page-noise {
  position: fixed;
  inset: 0;

  z-index: 9999;

  pointer-events: none;

  opacity: 0.035;

  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='.45'/%3E%3C/svg%3E");
}


/* =========================================
   NAV
========================================= */

.nav {
  position: fixed;

  top: 0;
  left: 50%;

  width: min(var(--max), calc(100% - 48px));

  height: 82px;

  transform: translateX(-50%);

  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid rgba(17, 17, 17, 0.1);

  backdrop-filter: blur(14px);
}

.brand {
  font-family: var(--heading);

  font-size: 20px;
  font-weight: 800;

  letter-spacing: -1px;
}

.brand span {
  color: #739e12;
}

.nav-links {
  display: flex;
  gap: 38px;
}

.nav-links a {
  position: relative;

  color: #666;

  font-size: 13px;

  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 100%;
  height: 1px;

  background: var(--ink);

  transform: scaleX(0);
  transform-origin: right;

  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

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

.nav-contact {
  display: flex;
  align-items: center;
  gap: 13px;

  padding: 11px 16px;

  border: 1px solid var(--ink);
  border-radius: 100px;

  font-size: 12px;
  font-weight: 600;

  transition: 0.3s ease;
}

.nav-contact:hover {
  background: var(--ink);
  color: white;
}

.menu-button {
  display: none;

  border: none;
  background: transparent;

  width: 35px;
  height: 30px;

  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-button span {
  width: 25px;
  height: 1px;

  background: var(--ink);

  transition: 0.3s ease;
}


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

.hero {
  position: relative;

  min-height: 100svh;

  width: min(var(--max), calc(100% - 48px));

  margin: auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  align-items: center;

  gap: 50px;

  padding: 150px 0 100px;

  overflow: hidden;
}

.hero-orb {
  position: absolute;

  width: 650px;
  height: 650px;

  right: -250px;
  top: 120px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(197, 255, 56, 0.22),
      rgba(197, 255, 56, 0.02) 60%,
      transparent 72%
    );

  pointer-events: none;
}

.hero-content {
  position: relative;

  z-index: 5;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 30px;

  color: #666;

  font-size: 10px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.hero-status span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #75ad12;

  box-shadow:
    0 0 0 5px rgba(117, 173, 18, 0.12);
}

.hero-title {
  max-width: 760px;

  font-family: var(--heading);

  font-size: clamp(60px, 7vw, 104px);

  line-height: 0.91;

  letter-spacing: -6px;

  font-weight: 700;
}

.hero-title span {
  display: block;

  font-family: var(--serif);

  font-style: italic;

  font-weight: 400;

  letter-spacing: -5px;
}

.hero-description {
  max-width: 540px;

  margin-top: 35px;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;

  margin-top: 35px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 30px;

  padding: 16px 20px;

  background: var(--black);
  color: white;

  border-radius: 100px;

  font-size: 12px;
  font-weight: 600;

  transition: 0.35s ease;
}

.primary-button:hover {
  transform: translateY(-4px);
}

.text-button {
  display: inline-flex;
  gap: 14px;

  color: #555;

  font-size: 12px;
  font-weight: 600;

  border-bottom: 1px solid #aaa;

  padding-bottom: 4px;
}


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

.hero-art {
  position: relative;

  height: 600px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-grid {
  position: absolute;

  inset: 0;

  opacity: 0.65;

  background-image:
    linear-gradient(
      rgba(17,17,17,0.055) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(17,17,17,0.055) 1px,
      transparent 1px
    );

  background-size: 42px 42px;

  mask-image:
    radial-gradient(
      circle at center,
      black,
      transparent 72%
    );
}

.hero-card {
  position: relative;

  width: min(610px, 92%);

  aspect-ratio: 1.18;

  padding: 20px;

  background: var(--black);

  color: white;

  border-radius: 18px;

  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.18);

  transform:
    perspective(1200px)
    rotateY(-8deg)
    rotateX(4deg)
    rotateZ(2deg);
}

.hero-card-top,
.hero-card-bottom {
  display: flex;
  justify-content: space-between;

  color: #686868;

  font-size: 8px;

  letter-spacing: 1px;
}

.hero-card-content {
  position: absolute;

  left: 50px;
  bottom: 75px;
}

.hero-card-content small {
  color: #777;

  font-size: 8px;

  letter-spacing: 1.5px;
}

.hero-card-content strong {
  display: block;

  margin-top: 18px;

  font-family: var(--heading);

  font-size: clamp(38px, 4vw, 62px);

  line-height: 0.94;

  letter-spacing: -3px;
}

.hero-card-content i {
  color: var(--lime);

  font-family: var(--serif);

  font-weight: 400;
}

.hero-card-bottom {
  position: absolute;

  left: 20px;
  right: 20px;
  bottom: 20px;
}

.floating-label {
  position: absolute;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 15px;

  background: rgba(255,255,255,0.85);

  border: 1px solid var(--line);

  backdrop-filter: blur(10px);

  border-radius: 8px;

  font-size: 10px;
}

.floating-label span {
  color: #999;
}

.label-one {
  left: 0;
  top: 90px;
}

.label-two {
  right: 0;
  bottom: 80px;
}

.hero-scroll {
  position: absolute;

  bottom: 35px;
  left: 0;

  display: flex;
  align-items: center;
  gap: 14px;

  color: #888;

  font-size: 9px;

  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll div {
  width: 45px;
  height: 1px;

  background: #bbb;
}


/* =========================================
   MARQUEE
========================================= */

.marquee-section {
  overflow: hidden;

  padding: 22px 0;

  background: var(--black);

  color: white;

  transform: rotate(-1deg) scale(1.02);
}

.marquee {
  display: flex;
  align-items: center;

  width: max-content;

  gap: 35px;

  animation: marquee 25s linear infinite;
}

.marquee span {
  font-family: var(--heading);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;
}

.marquee b {
  color: var(--lime);

  font-size: 12px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}


/* =========================================
   WORK INTRO
========================================= */

.work-intro {
  width: min(var(--max), calc(100% - 48px));

  margin: auto;

  padding: 170px 0 90px;
}

.section-tag {
  color: #777;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 1.6px;
}

.work-heading {
  display: grid;

  grid-template-columns: 1fr 330px;

  align-items: end;

  gap: 70px;

  margin-top: 35px;
}

.work-heading h2 {
  max-width: 800px;

  font-family: var(--heading);

  font-size: clamp(50px, 6vw, 82px);

  line-height: 0.95;

  letter-spacing: -5px;
}

.work-heading h2 em {
  font-family: var(--serif);

  font-weight: 400;
}

.work-heading p {
  color: var(--muted);

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================
   PROJECT SHOWCASE
========================================= */

.projects {
  position: relative;

  height: 620vh;

  background: var(--black);

  color: white;
}

.project-sticky {
  position: sticky;

  top: 0;

  height: 100svh;

  min-height: 650px;

  overflow: hidden;
}

.project-number {
  position: absolute;

  top: 50px;
  right: 50px;

  z-index: 10;

  display: flex;
  gap: 7px;

  font-family: var(--heading);

  font-size: 13px;
}

.project-number small {
  color: #555;
}

.project-info {
  position: absolute;

  left: max(24px, calc((100% - var(--max)) / 2));

  bottom: 110px;

  width: 330px;

  z-index: 10;
}

.project-category {
  color: #777;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 1.5px;
}

.project-info h3 {
  margin-top: 17px;

  font-family: var(--heading);

  font-size: clamp(35px, 4vw, 58px);

  line-height: 0.95;

  letter-spacing: -3px;
}

.project-info p {
  margin-top: 22px;

  color: #999;

  font-size: 13px;

  line-height: 1.7;
}

.project-live {
  display: inline-flex;
  align-items: center;
  gap: 20px;

  margin-top: 28px;

  padding: 13px 17px;

  background: white;
  color: var(--black);

  border-radius: 100px;

  font-size: 11px;
  font-weight: 700;

  transition: 0.3s ease;
}

.project-live:hover {
  transform: translateY(-3px);
}

.project-visual {
  position: absolute;

  left: 34%;
  right: 4%;

  top: 13%;
  bottom: 11%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.project-backdrop {
  position: absolute;

  width: 65%;
  height: 80%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(197,255,56,0.16),
      transparent 68%
    );

  filter: blur(10px);
}

.phone-frame {
  position: relative;

  width: min(300px, 72%);
  aspect-ratio: 9 / 19.5;

  padding: 9px;
  border: 1px solid #333;
  border-radius: 42px;

  background: linear-gradient(145deg, #202020, #090909);

  box-shadow:
    0 45px 100px rgba(0,0,0,0.52),
    inset 0 0 0 1px rgba(255,255,255,0.06);

  transform:
    perspective(1400px)
    rotateY(-8deg)
    rotateX(4deg);

  transition: transform 0.4s ease;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: -3px;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: #2d2d2d;
}

.phone-frame::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  width: 72px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  z-index: 4;
  pointer-events: none;
}

.phone-top {
  position: absolute;
  top: 16px;
  left: 24px;
  right: 24px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 5;
}

.phone-camera {
  width: 7px;
  height: 7px;
  margin-right: 34px;
  border-radius: 50%;
  background: #171717;
  box-shadow: inset 0 0 0 1px #333;
}

.phone-top > span {
  display: none;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;

  overflow: hidden;
  border-radius: 34px;
  background: #111;
}

.phone-screen img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;

  transition: transform 0.8s ease;
}

.phone-frame {
  width: min(280px, 68%);
}

.project-navigation {
  position: absolute;

  left: max(24px, calc((100% - var(--max)) / 2));

  right: max(24px, calc((100% - var(--max)) / 2));

  bottom: 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 20;
}

.project-navigation button {
  width: 45px;
  height: 45px;

  border: 1px solid #444;

  border-radius: 50%;

  background: transparent;

  color: white;

  font-size: 17px;

  transition: 0.25s ease;
}

.project-navigation button:hover {
  background: white;
  color: var(--black);
}

.project-progress {
  display: flex;
  gap: 7px;
}

.project-progress span {
  width: 6px;
  height: 6px;

  border-radius: 10px;

  background: #444;

  transition: 0.4s ease;
}

.project-progress span.active {
  width: 28px;

  background: var(--lime);
}


/* =========================================
   SERVICES
========================================= */

.services {
  width: min(var(--max), calc(100% - 48px));

  margin: auto;

  padding: 170px 0;
}

.services-top {
  display: grid;

  grid-template-columns: 1fr 330px;

  gap: 70px;

  margin-top: 35px;

  padding-bottom: 70px;
}

.services-top h2 {
  font-family: var(--heading);

  font-size: clamp(55px, 6vw, 82px);

  line-height: 0.92;

  letter-spacing: -5px;
}

.services-top h2 em {
  font-family: var(--serif);

  font-weight: 400;
}

.services-top p {
  color: var(--muted);

  font-size: 13px;

  line-height: 1.7;
}

.services-list {
  border-top: 1px solid var(--line);
}

.service-item {
  min-height: 150px;

  display: grid;

  grid-template-columns: 70px 1fr 40px;

  align-items: center;

  gap: 25px;

  padding: 25px 0;

  border-bottom: 1px solid var(--line);

  transition:
    padding 0.4s ease,
    background 0.4s ease;
}

.service-item:hover {
  padding-left: 25px;
  padding-right: 25px;

  background: #e9e9e3;
}

.service-item > span {
  color: #999;

  font-size: 10px;
}

.service-item h3 {
  font-family: var(--heading);

  font-size: 24px;

  letter-spacing: -1px;
}

.service-item p {
  max-width: 500px;

  margin-top: 8px;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.6;
}

.service-item strong {
  font-size: 22px;

  opacity: 0;

  transform: translateX(-10px);

  transition: 0.3s ease;
}

.service-item:hover strong {
  opacity: 1;

  transform: translateX(0);
}


/* =========================================
   STATEMENT
========================================= */

.statement {
  position: relative;

  background: var(--black);

  color: white;

  overflow: hidden;
}

.statement-inner {
  width: min(1000px, calc(100% - 48px));

  margin: auto;

  padding: 180px 0;
}

.statement .section-tag {
  color: #666;
}

.statement h2 {
  max-width: 950px;

  margin-top: 40px;

  font-family: var(--heading);

  font-size: clamp(55px, 7vw, 100px);

  line-height: 0.92;

  letter-spacing: -6px;
}

.statement h2 em {
  color: var(--lime);

  font-family: var(--serif);

  font-weight: 400;
}

.statement-line {
  width: 100%;

  height: 1px;

  margin-top: 75px;

  background: #333;
}

.statement p {
  max-width: 420px;

  margin-top: 25px;

  color: #888;

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================
   PROCESS
========================================= */

.process {
  width: min(var(--max), calc(100% - 48px));

  margin: auto;

  padding: 170px 0;
}

.process-header h2 {
  max-width: 750px;

  margin-top: 35px;

  font-family: var(--heading);

  font-size: clamp(55px, 6vw, 82px);

  line-height: 0.93;

  letter-spacing: -5px;
}

.process-header h2 em {
  font-family: var(--serif);

  font-weight: 400;
}

.process-track {
  position: relative;

  margin-top: 100px;

  display: grid;

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

  gap: 35px;
}

.process-line {
  position: absolute;

  top: 53px;

  left: 0;
  right: 0;

  height: 1px;

  background: #cfcfc8;
}

.process-step {
  position: relative;

  min-height: 400px;
}

.process-index {
  position: relative;

  z-index: 2;

  width: 105px;
  height: 105px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--white);

  border: 1px solid #ccc;

  border-radius: 50%;

  font-family: var(--heading);

  font-size: 27px;
  font-weight: 700;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease;
}

.process-step:hover .process-index {
  background: var(--black);

  color: white;

  transform: scale(1.06);
}

.process-content {
  margin-top: 55px;

  padding-right: 25px;
}

.process-content > span {
  display: block;

  color: var(--black);

  font-family: var(--heading);

  font-size: clamp(34px, 4vw, 62px);

  font-weight: 800;

  line-height: 0.9;

  letter-spacing: -3px;

  white-space: nowrap;
}

.process-content h3 {
  margin-top: 18px;

  font-family: var(--heading);

  font-size: 24px;

  line-height: 1;

  letter-spacing: -1px;
}

.process-content p {
  margin-top: 18px;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.7;
}


/* =========================================
   ABOUT
========================================= */

.about {
  padding: 170px max(24px, calc((100% - var(--max)) / 2));

  background: #e7e7e1;
}

.about-layout {
  display: grid;

  grid-template-columns: 280px 1fr;

  gap: 100px;

  margin-top: 55px;
}

.about-photo {
  width: 230px;
  height: 300px;

  overflow: hidden;

  background: #d3d3cd;

  border-radius: 12px;
}

.photo-placeholder {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--heading);

  font-size: 100px;
  font-weight: 800;

  color: #999;
}

.about-content {
  max-width: 800px;
}

.about-content h2 {
  font-family: var(--heading);

  font-size: clamp(50px, 6vw, 82px);

  line-height: 0.93;

  letter-spacing: -5px;
}

.about-content h2 em {
  font-family: var(--serif);

  font-weight: 400;
}

.about-content > p {
  max-width: 650px;

  margin-top: 28px;

  color: #666;

  font-size: 15px;

  line-height: 1.75;
}

.about-meta {
  display: grid;

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

  gap: 30px;

  margin-top: 65px;

  padding-top: 25px;

  border-top: 1px solid rgba(0,0,0,0.15);
}

.about-meta div {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.about-meta span {
  color: #888;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.about-meta strong {
  font-size: 12px;
}


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

.contact {
  position: relative;

  overflow: hidden;

  background: var(--lime);
}

.contact-bg-text {
  position: absolute;

  left: -5%;

  bottom: -80px;

  white-space: nowrap;

  font-family: var(--heading);

  font-size: 20vw;

  font-weight: 800;

  letter-spacing: -10px;

  color: rgba(0,0,0,0.035);

  pointer-events: none;
}

.contact-inner {
  position: relative;

  z-index: 2;

  width: min(850px, calc(100% - 48px));

  margin: auto;

  padding: 170px 0;

  text-align: center;
}

.contact .section-tag {
  color: #4e6721;
}

.contact h2 {
  margin-top: 35px;

  font-family: var(--heading);

  font-size: clamp(65px, 9vw, 120px);

  line-height: 0.88;

  letter-spacing: -7px;
}

.contact h2 em {
  font-family: var(--serif);

  font-weight: 400;
}

.contact-inner > p {
  max-width: 450px;

  margin: 30px auto 0;

  color: #526d28;

  font-size: 13px;

  line-height: 1.7;
}

#contactForm {
  max-width: 650px;

  margin: 65px auto 0;

  text-align: left;
}

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

#contactForm label {
  display: block;

  margin-bottom: 20px;

  color: #4e6721;

  font-size: 9px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
  width: 100%;

  margin-top: 8px;

  padding: 16px;

  border: 1px solid rgba(0,0,0,0.2);

  border-radius: 7px;

  outline: none;

  background: rgba(255,255,255,0.3);

  color: var(--black);

  font-size: 13px;

  transition: 0.25s ease;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  border-color: var(--black);

  background: rgba(255,255,255,0.55);
}

#contactForm textarea {
  min-height: 150px;

  resize: vertical;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 30px;

  padding: 17px 22px;

  border: none;

  border-radius: 100px;

  background: var(--black);

  color: white;

  font-size: 12px;
  font-weight: 700;

  transition: 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-4px);
}

.form-status {
  min-height: 20px;

  margin-top: 12px;

  color: #526d28;

  font-size: 11px;
}

.direct-email {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  margin-top: 45px;

  padding-bottom: 5px;

  border-bottom: 1px solid rgba(0,0,0,0.35);

  font-size: 12px;
  font-weight: 700;
}


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

footer {
  padding: 75px max(24px, calc((100% - var(--max)) / 2)) 25px;

  background: var(--black);

  color: white;
}

.footer-main {
  display: flex;

  justify-content: space-between;

  gap: 80px;

  padding-bottom: 70px;

  border-bottom: 1px solid #292929;
}

.footer-brand {
  color: white;
}

.footer-main p {
  max-width: 300px;

  margin-top: 15px;

  color: #666;

  font-size: 11px;

  line-height: 1.7;
}

.footer-links {
  display: flex;

  gap: 100px;
}

.footer-links div {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.footer-links span {
  margin-bottom: 8px;

  color: #555;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.footer-links a {
  color: #aaa;

  font-size: 11px;

  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  padding-top: 25px;

  color: #555;

  font-size: 9px;
}


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

@media (max-width: 900px) {

  .hero {
    grid-template-columns: 1fr;

    padding-top: 140px;
  }

  .hero-art {
    height: 500px;
  }

  .work-heading,
  .services-top {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    display: none;
  }

  .about-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  /* Turn off the pinned scroll-jack showcase below
     900px — stack it as a normal card instead. The
     project-prev/next buttons and the swipe listener
     in script.js still drive project switching. */

  .projects {
    height: auto;
  }

  .project-sticky {
    position: relative;
    top: auto;

    height: auto;
    min-height: auto;

    overflow: visible;

    display: flex;
    flex-direction: column;
    gap: 28px;

    padding: 60px 24px 90px;
  }

  .project-number {
    position: relative;
    top: auto;
    right: auto;
  }

  .project-visual {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;

    min-height: 430px;
  }

  .phone-frame {
    width: min(270px, 72vw);
  }

  .project-info {
    position: relative;
    left: auto;
    bottom: auto;

    width: auto;
  }

  .project-navigation {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
  }

}


@media (max-width: 650px) {

  .nav {
    width: calc(100% - 32px);

    height: 72px;
  }

  .nav-links {
    position: absolute;

    top: 72px;

    left: 0;
    right: 0;

    display: flex;

    flex-direction: column;

    gap: 0;

    padding: 8px;

    background: rgba(245,245,240,0.97);

    border: 1px solid var(--line);

    border-top: none;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-10px);

    transition: 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px;
  }

  .nav-contact {
    display: none;
  }

  .menu-button {
    display: flex;
  }


  .hero {
    width: calc(100% - 32px);

    padding: 125px 0 80px;

    gap: 45px;
  }

  .hero-title {
    font-size: 55px;

    letter-spacing: -3.5px;
  }

  .hero-title span {
    letter-spacing: -3px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-art {
    height: 350px;
  }

  .hero-card {
    width: 100%;

    transform:
      perspective(800px)
      rotateY(-3deg)
      rotateX(2deg)
      rotateZ(1deg);
  }

  .hero-card-content {
    left: 28px;
    bottom: 55px;
  }

  .hero-card-content strong {
    font-size: 38px;
  }

  .floating-label {
    display: none;
  }

  .hero-scroll {
    display: none;
  }


  .work-intro {
    width: calc(100% - 32px);

    padding: 110px 0 60px;
  }

  .work-heading h2,
  .services-top h2,
  .process-header h2 {
    font-size: 50px;

    letter-spacing: -3px;
  }


  .project-info h3 {
    font-size: 37px;

    letter-spacing: -2px;
  }

  .project-info p {
    margin-top: 14px;

    max-width: 320px;
  }

  .project-live {
    margin-top: 18px;
  }

  .project-visual {
    min-height: 220px;
  }

  .phone-frame {
    width: min(250px, 72vw);

    transform:
      perspective(800px)
      rotateY(-5deg)
      rotateX(2deg);
  }

  .project-visual {
    min-height: 390px;
  }


  .services {
    width: calc(100% - 32px);

    padding: 110px 0;
  }

  .service-item {
    grid-template-columns: 35px 1fr;

    min-height: 135px;
  }

  .service-item strong {
    display: none;
  }

  .service-item h3 {
    font-size: 21px;
  }


  .statement-inner {
    width: calc(100% - 32px);

    padding: 115px 0;
  }

  .statement h2 {
    font-size: 53px;

    letter-spacing: -3px;
  }


  .process {
    width: calc(100% - 32px);

    padding: 110px 0;
  }

  .process-track {
    grid-template-columns: 1fr;

    gap: 78px;

    margin-top: 65px;
  }

  .process-line {
    display: none;
  }

  /* Mobile process: every step uses the same full-width structure. */
  .process-step {
    min-height: auto;

    display: block;

    width: 100%;
  }

  .process-index {
    width: 64px;
    height: 64px;

    font-size: 18px;
  }

  .process-content {
    width: 100%;
    min-width: 0;

    margin-top: 24px;

    padding: 0;
  }

  .process-content > span {
    display: block;

    width: 100%;
    max-width: none;

    font-size: clamp(42px, 13vw, 62px);

    line-height: 0.9;

    letter-spacing: -3px;

    white-space: nowrap;
  }

  .process-content h3 {
    width: 100%;
    max-width: 520px;

    margin-top: 18px;

    font-size: clamp(26px, 7vw, 34px);

    line-height: 1.05;
  }

  .process-content p {
    width: 100%;
    max-width: 560px;

    margin-top: 16px;

    font-size: 13px;

    line-height: 1.65;
  }


  .about {
    padding: 110px 16px;
  }

  .about-layout {
    margin-top: 40px;
  }

  .about-photo {
    width: 150px;

    height: 190px;
  }

  .about-content h2 {
    font-size: 50px;

    letter-spacing: -3px;
  }

  .about-meta {
    grid-template-columns: 1fr;

    gap: 22px;
  }


  .contact-inner {
    width: calc(100% - 32px);

    padding: 110px 0;
  }

  .contact h2 {
    font-size: 64px;

    letter-spacing: -4px;
  }

  .form-grid {
    grid-template-columns: 1fr;

    gap: 0;
  }


  footer {
    padding: 60px 16px 25px;
  }

  .footer-main {
    flex-direction: column;

    gap: 50px;
  }

  .footer-links {
    gap: 60px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 10px;
  }

}


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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
  }

}
/* About photo */
.about-photo__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.form-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}