:root {
  --ink: #12130f;
  --ink-soft: #20221b;
  --paper: #f3f0e7;
  --paper-deep: #e7e1d3;
  --white: #fffdf8;
  --acid: #c7ac7b;
  --blue: #566477;
  --coral: #b88472;
  --lilac: #c8c0b7;
  --mint: #aeb5ac;
  --cream: #ddd1bd;
  --muted: #6b6c63;
  --line: rgba(18, 19, 15, 0.18);
  --page-pad: clamp(20px, 5vw, 76px);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.project-dialog-open {
  overflow: hidden;
}

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

img {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
video:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-pad {
  padding: clamp(82px, 10vw, 148px) var(--page-pad);
}

.section-label,
.eyebrow {
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  min-height: 54px;
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-acid {
  background: var(--acid);
  color: var(--ink);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

/* CSS-drawn icons prevent iOS from replacing arrow characters with emoji. */
.icon-external {
  width: 0.74em;
  height: 0.74em;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.icon-external::before {
  content: "";
  width: 0.48em;
  height: 0.48em;
  position: absolute;
  top: 0.04em;
  right: 0.02em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.icon-external::after {
  content: "";
  width: 0.76em;
  height: 2px;
  position: absolute;
  top: 0.4em;
  right: -0.02em;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.button-with-icon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0;
}

.button-with-icon .button-label {
  grid-column: 2;
  text-align: center;
}

.button-with-icon .icon-external {
  grid-column: 3;
  align-self: center;
  justify-self: start;
  margin-left: 16px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: env(safe-area-inset-top);
  background: rgba(18, 19, 15, 0.92);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(100%, 1480px);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--ink-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: brightness(1.18) contrast(0.96);
  transform: scale(1.06);
}

.brand:hover .brand-avatar,
.brand:focus-visible .brand-avatar {
  border-color: var(--acid);
  box-shadow: 0 0 0 4px rgba(199, 172, 123, 0.16);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.social-link:hover,
.social-link:focus-visible,
.social-link:active {
  border-color: var(--acid);
  background: rgba(199, 172, 123, 0.14);
  box-shadow: 0 0 0 4px rgba(199, 172, 123, 0.16);
  transform: translateY(-1px);
}

.social-link img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 8px;
}

.nav-menu {
  width: min(390px, calc(100vw - (var(--page-pad) * 2)));
  padding: 20px 24px 26px;
  position: absolute;
  top: 100%;
  right: var(--page-pad);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-menu > a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav-menu > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.72);
}

.nav-menu > a:not(.nav-cta):hover {
  color: var(--acid);
}

.nav-menu > .nav-cta {
  margin-top: 18px;
  padding: 0 18px;
  border: 0;
  background: var(--white);
  color: var(--ink);
}

.nav-cta span {
  margin-left: 20px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
  background: rgba(199, 172, 123, 0.12);
  box-shadow: 0 0 0 1px rgba(199, 172, 123, 0.42);
}

.menu-toggle > span:not(.sr-only) {
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 100svh;
  padding: calc(72px + env(safe-area-inset-top)) var(--page-pad) 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  grid-template-rows: 1fr auto;
  gap: 24px clamp(30px, 6vw, 100px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(86, 100, 119, 0.13), transparent 28%),
    var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  width: 450px;
  height: 450px;
  position: absolute;
  left: -280px;
  bottom: -260px;
  border: 1px solid rgba(223, 255, 69, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(223, 255, 69, 0.03), 0 0 0 160px rgba(223, 255, 69, 0.02);
}

.hero-copy {
  max-width: 920px;
  padding: clamp(60px, 9vh, 126px) 0 clamp(40px, 7vh, 92px);
  align-self: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: clamp(28px, 5vh, 60px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--acid);
}

.hero h1 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(62px, 7.3vw, 122px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent-text {
  color: var(--acid);
}

.hero-description {
  max-width: 650px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.55;
}

.hero-trust {
  max-width: 650px;
  margin-bottom: 28px;
  padding: 14px 17px;
  border-left: 3px solid var(--acid);
  background: rgba(199, 172, 123, 0.08);
}

.hero-trust span {
  display: block;
  margin-bottom: 6px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-trust p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  min-height: 540px;
  max-width: 590px;
  margin-top: clamp(54px, 8vh, 110px);
  position: relative;
  align-self: end;
  z-index: 2;
}

.image-frame {
  height: 100%;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  background: var(--blue);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 19, 15, 0.18), transparent 42%);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: 52% 42%;
  filter: brightness(1.08) saturate(0.94) contrast(0.98);
}

.orbit-label {
  position: absolute;
  z-index: 3;
  min-height: 40px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(18, 19, 15, 0.12);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
}

.orbit-label-top {
  top: 20px;
  left: 20px;
}

.orbit-label-bottom {
  right: 20px;
  bottom: 20px;
  background: var(--blue);
  color: var(--white);
  border-color: transparent;
}

.hero-footer {
  grid-column: 1 / -1;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-footer i {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.13);
}

/* Moving categories */
.marquee {
  width: 100%;
  overflow: hidden;
  background: var(--acid);
  border-block: 1px solid var(--ink);
}

.marquee-track {
  width: max-content;
  min-height: 68px;
  display: flex;
  align-items: center;
  animation: marquee 28s linear infinite;
}

.marquee span {
  padding-inline: 26px;
  font-family: var(--display);
  font-size: clamp(23px, 2.4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.marquee b {
  font-size: 17px;
}

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

/* Brand collaborations */
.brand-proof {
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.brand-proof-inner {
  width: 100%;
  max-width: 1388px;
  min-height: 176px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
}

.brand-proof-copy {
  padding: 38px clamp(30px, 4vw, 70px) 38px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.brand-proof-copy .section-label {
  margin-bottom: 12px;
}

.brand-proof-copy > p:last-child {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.brand-list {
  margin: 0;
  padding: 0 0 0 clamp(26px, 4vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  list-style: none;
}

.brand-list li {
  min-height: 72px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 45px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-list li:first-child {
  border-left: 1px solid var(--line);
}

/* Work */
.work-section {
  max-width: 1540px;
  margin: 0 auto;
}

.section-intro {
  margin-bottom: clamp(48px, 7vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  align-items: end;
  gap: 54px;
}

.section-intro h2,
.process-heading h2,
.about-copy h2,
.contact-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 6vw, 92px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.section-intro h2 em,
.process-heading h2 em,
.about-copy h2 em,
.contact-inner h2 em {
  font-family: var(--body);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.section-intro > p {
  max-width: 410px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.swipe-hint {
  display: none;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
}

.work-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ink);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.work-card:nth-child(2),
.work-card:nth-child(5) {
  transform: translateY(48px);
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 0 var(--ink);
}

.work-card:nth-child(2):hover,
.work-card:nth-child(5):hover {
  transform: translateY(40px);
}

.tone-blue { background: var(--blue); color: var(--white); }
.tone-coral { background: var(--coral); }
.tone-acid { background: var(--acid); }
.tone-cream { background: var(--cream); }
.tone-lilac { background: var(--lilac); }
.tone-mint { background: var(--mint); }

.video-wrap {
  aspect-ratio: 9 / 13;
  margin: 12px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.34), transparent 35%);
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-wrap.is-loaded::after {
  opacity: 0;
}

.video-play {
  width: 66px;
  height: 66px;
  padding: 0;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background-color 180ms ease;
}

.video-play:hover {
  background: var(--acid);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-play .icon-play {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.video-wrap.is-loaded .video-play {
  display: none;
}

.project-number {
  min-width: 38px;
  height: 38px;
  padding: 0 9px;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.project-copy {
  min-height: 162px;
  padding: 18px 22px 26px;
}

.project-copy p {
  margin-bottom: 17px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.2vw, 52px);
  letter-spacing: -0.065em;
  line-height: 0.88;
}

/* Services */
.services-section {
  margin-top: clamp(50px, 8vw, 130px);
  background: var(--ink);
  color: var(--white);
}

.services-inner {
  max-width: 1540px;
  margin: 0 auto;
}

.section-intro.inverse > p {
  color: rgba(255, 255, 255, 0.57);
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-row {
  min-height: 170px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.7fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.service-row > span {
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.service-row p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  line-height: 1.55;
}

.service-row small {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.services-cta {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.pricing-copy {
  max-width: 650px;
}

.pricing-copy > span {
  display: block;
  margin-bottom: 10px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pricing-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.5;
}

/* Process */
.process-section {
  max-width: 1540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 160px);
}

.process-heading {
  align-self: start;
  position: sticky;
  top: 126px;
}

.process-heading h2 {
  font-size: clamp(50px, 5vw, 80px);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  min-height: 190px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.process-list p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

/* About */
.about-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  background: var(--blue);
  color: var(--white);
}

.about-image {
  min-height: 680px;
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 19, 15, 0.13), transparent 38%);
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: brightness(1.14) saturate(0.96) contrast(0.96);
}

.about-image span {
  position: absolute;
  left: var(--page-pad);
  bottom: 44px;
  z-index: 2;
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 64px);
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.about-copy {
  max-width: 870px;
  align-self: center;
}

.about-copy h2 {
  max-width: 760px;
  margin-bottom: 40px;
}

.about-copy h2 em {
  color: var(--acid);
}

.about-copy > p:not(.section-label) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

.about-signoff {
  margin-top: 44px;
  padding-top: 24px;
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.about-signoff strong {
  font-size: 14px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-signoff span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

/* Contact */
.contact-section {
  min-height: 720px;
  padding: clamp(90px, 11vw, 160px) var(--page-pad);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--acid);
  text-align: center;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(18, 19, 15, 0.19);
  border-radius: 50%;
}

.contact-section::before {
  width: 700px;
  height: 700px;
  top: -510px;
  left: -160px;
  box-shadow: 0 0 0 90px rgba(18, 19, 15, 0.035);
}

.contact-section::after {
  width: 500px;
  height: 500px;
  right: -260px;
  bottom: -330px;
  box-shadow: 0 0 0 70px rgba(18, 19, 15, 0.035);
}

.contact-orbit {
  position: absolute;
  top: 45px;
  left: -32px;
  color: rgba(18, 19, 15, 0.12);
  font-family: var(--display);
  font-size: clamp(42px, 8vw, 126px);
  font-weight: 900;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.contact-inner {
  max-width: 980px;
  position: relative;
  z-index: 2;
}

.contact-inner h2 {
  margin-bottom: 28px;
  font-size: clamp(58px, 8vw, 118px);
}

.contact-inner > p:not(.section-label, .copy-message) {
  max-width: 650px;
  margin: 0 auto 32px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.copy-button {
  min-height: 54px;
  padding: 15px 22px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.copy-message {
  min-height: 20px;
  margin: 16px 0 4px;
  font-size: 13px;
  font-weight: 800;
}

.contact-email {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

/* Project inquiry dialog */
.project-dialog {
  width: min(720px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: visible;
  background: transparent;
  color: var(--ink);
}

.project-dialog::backdrop {
  background: rgba(18, 19, 15, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.project-dialog[open] {
  animation: project-dialog-in 220ms cubic-bezier(.2,.8,.2,1);
}

@keyframes project-dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
}

.project-dialog-panel {
  max-height: calc(100dvh - 32px);
  padding: clamp(36px, 6vw, 64px);
  position: relative;
  overflow-y: auto;
  border: 1px solid rgba(18, 19, 15, 0.2);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.project-dialog-close-row {
  height: 0;
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.project-dialog-close {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.project-dialog-close:hover {
  border-color: var(--ink);
  background: var(--paper-deep);
  transform: rotate(4deg);
}

.project-dialog .section-label {
  margin-bottom: 18px;
  padding-right: 54px;
}

.project-dialog h2 {
  max-width: 590px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.project-dialog-intro {
  max-width: 570px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
}

.project-brief {
  margin-bottom: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.project-brief strong {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-brief ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  list-style: none;
}

.project-brief li {
  min-height: 44px;
  padding-inline: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.project-brief li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 3px rgba(199, 172, 123, 0.2);
}

.project-dialog-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.project-dialog-actions .button,
.project-dialog-actions .copy-button {
  width: 100%;
  min-height: 58px;
  margin: 0;
  padding-block: 16px;
  flex: 1 1 0;
}

.project-dialog-actions .copy-button {
  background: var(--white);
}

.project-dialog-status {
  min-height: 20px;
  margin: 12px 0 2px;
  font-size: 13px;
  font-weight: 800;
}

.project-instagram {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

/* Footer */
.footer {
  min-height: 130px;
  padding: 30px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--ink);
  color: var(--white);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

/* Progressive reveal */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  }

  .hero h1 {
    font-size: clamp(58px, 7.7vw, 86px);
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card:nth-child(2),
  .work-card:nth-child(5) {
    transform: none;
  }

  .work-card:nth-child(2):hover,
  .work-card:nth-child(5):hover {
    transform: translateY(-8px);
  }

  .service-row {
    grid-template-columns: 54px minmax(190px, 0.65fr) 1fr;
  }

  .service-row small {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --page-pad: 24px;
  }

  .site-header,
  .nav-shell {
    min-height: 66px;
  }

  .nav-menu {
    padding: 18px 24px 28px;
    width: 100%;
    inset: 100% 0 auto;
    border-inline: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-menu > a {
    min-height: 56px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 16px;
  }

  .nav-menu .nav-cta {
    margin-top: 18px;
    padding: 0 18px;
    border: 0;
  }

  .hero {
    min-height: 0;
    padding-top: calc(66px + env(safe-area-inset-top));
    display: block;
  }

  .hero-copy {
    padding: 62px 0 48px;
  }

  .hero-visual {
    max-width: none;
    min-height: 560px;
    margin: 0 -24px;
  }

  .image-frame,
  .image-frame img {
    min-height: 560px;
  }

  .orbit-label-top {
    left: 24px;
  }

  .orbit-label-bottom {
    right: 18px;
  }

  .hero-footer {
    min-height: 62px;
  }

  .section-intro,
  .process-section {
    grid-template-columns: 1fr;
  }

  .section-intro {
    align-items: start;
    gap: 30px;
  }

  .section-intro > p {
    max-width: 620px;
  }

  .brand-proof-inner {
    grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  }

  .process-heading {
    position: static;
  }

  .about-section {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 620px;
  }

  .footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 18px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .section-pad {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .nav-shell {
    padding-inline: 16px;
  }

  .brand-avatar {
    width: 38px;
    height: 38px;
  }

  .brand {
    gap: 9px;
  }

  .brand-copy strong {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .brand-copy small {
    display: none;
  }

  .nav-actions {
    gap: 7px;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero-copy {
    padding: 48px 0 42px;
  }

  .eyebrow {
    margin-bottom: 34px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(52px, 15.8vw, 72px);
    line-height: 0.86;
  }

  .hero-description {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.52;
  }

  .hero-trust {
    margin-bottom: 24px;
    padding: 13px 15px;
  }

  .hero-trust p {
    font-size: 13px;
  }

  .hero-actions {
    gap: 18px;
  }

  .hero-actions .button {
    flex: 1;
  }

  .hero-visual {
    min-height: 500px;
    margin-inline: -18px;
  }

  .image-frame,
  .image-frame img {
    min-height: 500px;
  }

  .image-frame img {
    object-position: 53% center;
  }

  .orbit-label-top {
    top: 18px;
    left: 18px;
  }

  .orbit-label-bottom {
    right: 18px;
    bottom: 18px;
  }

  .hero-footer {
    gap: 12px;
    font-size: 8px;
  }

  .marquee-track {
    min-height: 54px;
  }

  .marquee span {
    padding-inline: 18px;
    font-size: 22px;
  }

  .brand-proof {
    padding-inline: 18px;
  }

  .brand-proof-inner {
    min-height: 0;
    display: block;
    padding: 42px 0 44px;
  }

  .brand-proof-copy {
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-proof-copy > p:last-child {
    max-width: 330px;
    font-size: 15px;
  }

  .brand-list {
    padding: 24px 0 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .brand-list li {
    min-height: 56px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(18px, 5.5vw, 24px);
  }

  .brand-list li:first-child {
    border-left: 0;
  }

  .section-label {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .section-intro {
    margin-bottom: 34px;
    gap: 24px;
  }

  .section-intro h2,
  .process-heading h2,
  .about-copy h2,
  .contact-inner h2 {
    font-size: clamp(43px, 12.7vw, 59px);
    line-height: 0.92;
  }

  .section-intro > p {
    font-size: 16px;
  }

  .swipe-hint {
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .swipe-hint span {
    color: var(--blue);
    font-size: 17px;
  }

  .work-grid {
    width: calc(100% + 18px);
    margin-right: -18px;
    padding-right: 18px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .work-grid::-webkit-scrollbar {
    display: none;
  }

  .work-card,
  .work-card:nth-child(2),
  .work-card:nth-child(5) {
    width: min(79vw, 330px);
    flex: 0 0 min(79vw, 330px);
    scroll-snap-align: start;
    transform: none;
  }

  .work-card:hover,
  .work-card:nth-child(2):hover,
  .work-card:nth-child(5):hover {
    transform: none;
    box-shadow: none;
  }

  .video-wrap {
    aspect-ratio: 9 / 13.1;
    margin: 9px;
  }

  .project-copy {
    min-height: 132px;
    padding: 15px 17px 21px;
  }

  .project-copy p {
    margin-bottom: 13px;
    font-size: 9px;
  }

  .project-copy h3 {
    font-size: 35px;
  }

  .video-play {
    width: 60px;
    height: 60px;
  }

  .services-section {
    margin-top: 0;
  }

  .service-row {
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 12px;
  }

  .service-row h3 {
    font-size: 31px;
  }

  .service-row p {
    grid-column: 2;
    font-size: 15px;
  }

  .services-cta {
    margin-top: 38px;
    align-items: stretch;
    flex-direction: column;
  }

  .services-cta .button {
    width: 100%;
  }

  .process-section {
    gap: 46px;
  }

  .process-list li {
    min-height: 0;
    padding: 26px 0;
    grid-template-columns: 50px 1fr;
  }

  .process-list li > span {
    width: 42px;
    height: 42px;
  }

  .process-list h3 {
    font-size: 29px;
  }

  .process-list p {
    font-size: 15px;
  }

  .about-image {
    min-height: 490px;
  }

  .about-image img {
    object-position: center center;
  }

  .about-image span {
    left: 18px;
    bottom: 30px;
    font-size: 42px;
  }

  .about-copy h2 {
    margin-bottom: 30px;
  }

  .about-copy > p:not(.section-label) {
    font-size: 16px;
  }

  .contact-section {
    min-height: 660px;
    padding: 92px 18px 74px;
  }

  .contact-inner h2 {
    margin-bottom: 24px;
    font-size: clamp(50px, 14.6vw, 68px);
  }

  .contact-inner > p:not(.section-label, .copy-message) {
    font-size: 16px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .button,
  .copy-button {
    width: 100%;
  }

  .project-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 16px;
  }

  .project-dialog-panel {
    max-height: calc(100dvh - 16px);
    padding: 54px 20px 26px;
    border-radius: 16px;
  }

  .project-dialog-close {
    width: 44px;
    height: 44px;
  }

  .project-dialog .section-label {
    padding-right: 44px;
  }

  .project-dialog h2 {
    margin-bottom: 18px;
    font-size: clamp(40px, 12.4vw, 54px);
  }

  .project-dialog-intro {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .project-brief {
    padding: 16px;
  }

  .project-brief ul {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .project-brief li {
    min-height: 44px;
    padding-inline: 0;
    justify-content: flex-start;
    text-align: left;
  }

  .project-dialog-actions {
    flex-direction: column;
  }

  .project-instagram {
    width: 100%;
    justify-content: space-between;
    font-size: 12px;
  }

  .footer {
    padding: 34px 18px calc(34px + env(safe-area-inset-bottom));
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    animation: none;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
