:root {
  --bg: #050505;
  --bg2: #111111;
  --surface: rgba(255, 255, 255, 0.03);
  --text: #f5f5f5;
  --muted: #bfc3c9;
  --border: rgba(255, 255, 255, 0.08);

  --radius: 18px;
  --radius-lg: 26px;

  --cursor-x: 50%;
  --cursor-y: 35%;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Satoshi", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial;
  letter-spacing: -0.01em;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(255, 255, 255, 0.08), transparent
        62%),
    radial-gradient(900px 520px at 86% 24%, rgba(255, 255, 255, 0.06), transparent
        62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%),
    var(--bg);
  text-rendering: geometricPrecision;
}

/* Grid + vignette */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 900px at 50% 0%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72)),
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 120px 120px, 120px 120px;
  opacity: 0.18;
  mix-blend-mode: overlay;
}

/* Cursor glow */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    520px 520px at var(--cursor-x) var(--cursor-y),
    rgba(255, 255, 255, 0.10),
    transparent 60%
  );
  opacity: 0.9;
  filter: blur(2px);
}

/* Fine grain */
body::selection {
  background: rgba(255, 255, 255, 0.14);
}
body > * {
  position: relative;
  z-index: 1;
}
body::marker {
  color: rgba(255, 255, 255, 0.7);
}
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

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

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.glass {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 22px 90px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.micro {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.italic {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 16px;
}

.topbar__inner {
  border-radius: 999px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.logo {
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.topbar__nav {
  display: none;
  justify-content: center;
  gap: 28px;
}

.topbar__nav a {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.topbar__nav a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background 350ms ease, border-color 350ms ease;
}
.pill:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}
.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  user-select: none;
  transition: transform 350ms ease, box-shadow 350ms ease, background 350ms ease,
    border-color 350ms ease, color 350ms ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--bg);
  box-shadow: 0 14px 70px rgba(255, 255, 255, 0.14);
}
.btn--primary:hover {
  box-shadow: 0 18px 110px rgba(255, 255, 255, 0.18);
}
.btn--link {
  padding: 12px 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.74);
}
.btn--link:hover {
  transform: none;
  color: rgba(255, 255, 255, 0.95);
}
.btn--full {
  width: 100%;
}

/* 3D */
.tilt {
  transform-style: preserve-3d;
  will-change: transform;  transition: transform 350ms ease;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(6px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Sections */
.section {
  padding: 20px 0;
}

/* Hero */
.hero {
  padding: 20px 0 20px;
  overflow: hidden;
}
.hero__stage {
  display: grid;
  gap: 30px;
  align-items: start;
}
.hero__h1 {
  margin: 18px 0 0;
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-size: clamp(58px, 7.6vw, 124px);
}
.hero__h1Line {
  display: block;
}
.hero__h1Line--accent {
  font-style: italic;
  opacity: 0.92;
}
.lead {
  margin: 18px 0 0;
  max-width: 56ch;
  font-size: 16px;
  line-height: 1.95;
  color: var(--muted);
}
.lead--tight {
  margin-top: 0;
  max-width: 50ch;
}
.actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.actions--tight {
  margin-top: 22px;
}
.hero__visual {
  border-radius: var(--radius-lg);
}
.device {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 70px 180px rgba(0, 0, 0, 0.72);
}
.device img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
  filter: contrast(1.05) saturate(0.9);
}

/* (reverted) */
.device__shine {
  position: absolute;
  inset: -1px;
  background: radial-gradient(
    700px 420px at 30% 20%,
    rgba(255, 255, 255, 0.18),
    transparent 60%
  );
  mix-blend-mode: screen;
  opacity: 0.35;
}
.device__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 520px at 60% 25%,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.65)
  );
  opacity: 0.9;
}

.device--hero img {
  transform: scale(1.05);
}

.hero__float {
  position: absolute;
  inset: auto;
  width: 220px;
  height: 140px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.015)
  );
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  opacity: 0.7;
  transform: translateZ(24px);
  animation: drift 10s ease-in-out infinite;
}
.hero__float--a {
  right: -28px;
  top: 18px;
  width: 210px;
  height: 132px;
  animation-delay: -2s;
}
.hero__float--b {
  left: -28px;
  bottom: 34px;
  width: 260px;
  height: 160px;
  opacity: 0.6;
  animation-delay: -4s;
}
.hero__float--c {
  right: 22px;
  bottom: -24px;
  width: 180px;
  height: 120px;
  opacity: 0.55;
  animation-delay: -6s;
}
@keyframes drift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

.hero__exclusive {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.56);
  max-width: 52ch;
}

.hero__footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.45);
}


.hero__stamp {
  display: none;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
}
.stamp__k {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.stamp__d {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Custom cursor */
#cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  transform: translate3d(calc(var(--x) - 0px), calc(var(--y) - 0px), 0);
  pointer-events: none;
  z-index: 9999;
}
#cursor .cursor__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.14);
  transform: translate(-50%, -50%);
}
#cursor .cursor__ring {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(
    18px 18px at 30% 30%,
    rgba(255, 255, 255, 0.10),
    transparent 60%
  );
  transform: translate(-50%, -50%);
  opacity: 0.7;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
}
#cursor.is-hover .cursor__ring {
  transform: translate(-50%, -50%) scale(1.35);
  opacity: 0.9;
}
#cursor.is-hover .cursor__dot {
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.18);
}

/* Mobile: no cursor, no mouse-follow ambient light */
@media (pointer: coarse) {
  #cursor {
    display: none;
  }
  body::after {
    opacity: 0;
  }
}

/* Services */
.services__top {
  display: grid;
  gap: 24px;
  align-items: center;
}
.services__copy h2 {
  margin: 16px 0 0;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.08;
  font-size: clamp(34px, 4.1vw, 54px);
}
.services__copy p {
  margin: 14px 0 0;
  max-width: 62ch;
  line-height: 1.85;
}

.services__frames {
  position: relative;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.frame {
  position: absolute;
  inset: auto;
  width: 220px;
  height: 150px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0.88;
  transform-style: preserve-3d;
  animation: floaty 8.5s ease-in-out infinite;
}
.f1 {
  left: 6%;
  top: 36%;
  transform: perspective(900px) rotateY(22deg) rotateX(4deg);
}
.f2 {
  left: 22%;
  top: 22%;
  animation-delay: -1.5s;
  transform: perspective(900px) rotateY(18deg) rotateX(3deg);
}
.f3 {
  left: 40%;
  top: 30%;
  animation-delay: -3s;
  transform: perspective(900px) rotateY(16deg) rotateX(2deg);
}
.f4 {
  left: 58%;
  top: 20%;
  animation-delay: -4.5s;
  transform: perspective(900px) rotateY(14deg) rotateX(2deg);
}
.f5 {
  left: 72%;
  top: 34%;
  animation-delay: -6s;
  transform: perspective(900px) rotateY(12deg) rotateX(2deg);
}

@keyframes floaty {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

.services__bottom {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}
.services__statement {
  padding: 26px 0;
}
.services__statementText {
  margin-top: 10px;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.08;
  font-size: clamp(30px, 3.2vw, 42px);
  color: rgba(255, 255, 255, 0.92);
}
.serviceCards {
  display: grid;
  gap: 14px;
}
.serviceCard {
  border-radius: var(--radius-lg);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.serviceCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px 280px at 20% 30%,
    rgba(255, 255, 255, 0.10),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 500ms ease;
}
.serviceCard:hover::before {
  opacity: 1;
}
.serviceCard__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.num {
  font-size: 11px;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.55);
}
.serviceCard__title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}
.serviceCard__desc {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 48ch;
}
.serviceCard__link {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.serviceCard__link span {
  margin-left: 6px;
}

/* Work */
.work__top {
  display: grid;
  gap: 16px;
  align-items: end;
}
.work h2 {
  margin: 16px 0 0;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.08;
  font-size: clamp(38px, 4.6vw, 58px);
}
.filters {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}
.chip.isActive {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}
.work__grid {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}
.workFeatured {
  border-radius: var(--radius-lg);
  padding: 18px;
  overflow: hidden;
}
.workFeatured__kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.workFeatured__image {
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
}
.workFeatured__image img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
  filter: contrast(1.03) saturate(0.9);
}
.workFeatured__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px 360px at 55% 10%,
    rgba(255, 255, 255, 0.14),
    transparent 60%
  );
  opacity: 0.45;
  mix-blend-mode: screen;
}
.workFeatured__bottom {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.workFeatured__name {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.workFeatured__title {
  margin-top: 2px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.92);
}
.workFeatured__desc {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.85;
  max-width: 62ch;
}
.workFeatured__services {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.workFeatured__services li {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
}
.workFeatured__meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.workFeatured__cta {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.workFeatured__cta span {
  margin-left: 6px;
}

.workCards {
  display: grid;
  gap: 14px;
}
.workCard {
  border-radius: var(--radius-lg);
  padding: 18px;
  display: grid;
  gap: 10px;
  min-height: 160px;
}
.workCard__title {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.workCard__desc {
  font-size: 13px;
  line-height: 1.8;
  max-width: 46ch;
}
.workCard__cta {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.workCard__cta span {
  margin-left: 6px;
}

/* Process */
.process__grid {
  display: grid;
  gap: 14px;
  align-items: start;
}
.process h2 {
  margin: 16px 0 0;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.08;
  font-size: clamp(34px, 4.0vw, 50px);
}
.process__steps {
  border-radius: var(--radius-lg);
  padding: 10px 0;
}
.stepRow {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.stepRow:first-child {
  border-top: none;
}
.stepNum {
  font-size: 11px;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.55);
}
.stepTitle {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}
.stepDesc {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.8;
}

/* About */
.about__grid {
  display: grid;
  gap: 14px;
  align-items: center;
}
.about h2 {
  margin: 16px 0 0;
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.08;
  font-size: clamp(32px, 3.6vw, 46px);
}
.about__left {
  border-radius: var(--radius-lg);
  padding: 22px;
}
.about__stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}
.stat__k {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.stat__v {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}
.aboutImage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 70px 180px rgba(0, 0, 0, 0.70);
}
.aboutImage img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.90;
  filter: contrast(1.05) saturate(0.9);
}
.aboutImage__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.1),
    rgba(5, 5, 5, 0.75)
  );
}

/* Contact */
.contact__grid {
  display: grid;
  gap: 14px;
  align-items: start;
}
.contact h2 {
  margin: 16px 0 0;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.03;
  font-size: clamp(42px, 4.8vw, 66px);
}
.contactCards {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  padding: 14px;
  display: grid;
  gap: 12px;
}
.contactCard {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
}
.contactCard__k {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.contactCard__v {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}
.contactImage {
  margin-top: 14px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 70px 180px rgba(0, 0, 0, 0.70);
}
.contactImage img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
  filter: contrast(1.04) saturate(0.95);
}
.contactImage__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 520px at 40% 15%,
    rgba(255, 255, 255, 0.10),
    transparent 60%
  );
  opacity: 0.45;
  mix-blend-mode: screen;
}

.contact__right {
  border-radius: var(--radius-lg);
  padding: 24px;
}
.form {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.form__row {
  display: grid;
  gap: 12px;
}
.input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.88);
  padding: 14px 14px;
  font-family: inherit;
  outline: none;
}
.input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.textarea {
  min-height: 150px;
  resize: vertical;
}

.contactFooter {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Mobile contact alignment fix */
@media (max-width: 520px) {
  .contact__grid {
    justify-items: stretch;
  }
  .contact__left,
  .contact__right {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .contact__right {
    padding-left: 18px;
    padding-right: 18px;
  }
  .contactFooter {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contactFooter a,
  .contactCard__v {
    word-break: break-word;
  }
}

/* Contact: removed image, give more breathing room */
.contactCards {
  margin-bottom: 14px;
}

/* Footer */
.footer {
  padding: 34px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.footer__inner {
  display: grid;
  gap: 18px;
  align-items: start;
}
.footer__brand {
  display: grid;
  gap: 10px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}
.footer__links a {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.noUp {
  text-transform: none !important;
}
.footer__email {
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.72) !important;
}
.footer__links a:hover {
  color: rgba(255, 255, 255, 0.95);
}
.footer__copy {
  font-size: 12px;
}

/* Responsive */
@media (min-width: 900px) {
  .topbar__nav {
    display: flex;
  }
  .hero__stage {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 44px;
    align-items: start;
  }
  .hero__right {
    padding-top: 74px;
  }
  .hero__stamp {
    display: inline-flex;
  }
  .actions {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .services__top {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .services__frames {
    height: 320px;
  }
  .services__bottom {
    grid-template-columns: 0.55fr 1.45fr;
    align-items: start;
  }
  .serviceCards {
    grid-template-columns: repeat(5, 1fr);
  }
  .work__top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .work__grid {
    grid-template-columns: 1.2fr 1fr;
  }
  .workCards {
    grid-template-columns: 1fr 1fr;
  }
  .process__grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .contact__right {
    padding: 30px;
  }
  .textarea {
    min-height: 190px;
  }
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr 1.4fr 1fr;
    align-items: center;
  }
  .footer__copy {
    justify-self: end;
  }
}
