:root {
  --orange: #ff4b0b;
  --orange-bright: #ff6a00;
  --orange-soft: #ff9b51;
  --ink: #151515;
  --muted: #69645f;
  --cream: #f7f2e9;
  --white: #fffdf8;
  --line: rgba(21, 21, 21, 0.14);
  --display: "Josefin Sans", sans-serif;
  --body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  overflow-x: hidden;
}

body::selection {
  color: var(--white);
  background: var(--orange);
}

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

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

#triangle-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}

.cursor-triangle {
  position: fixed;
  z-index: 1000;
  width: 14px;
  height: 14px;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
  pointer-events: none;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor-triangle.is-hovering {
  width: 42px;
  height: 42px;
  background: var(--orange-soft);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px clamp(22px, 5vw, 78px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(247, 242, 233, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  width: max-content;
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 0.95;
}

.brand b {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
}

.brand-mark {
  width: 38px;
  margin-right: 8px;
  overflow: visible;
}

.brand-mark text {
  fill: white;
  font-family: Georgia, serif;
  font-size: 34px;
  font-style: italic;
  font-weight: bold;
  letter-spacing: -6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 100px;
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-cta span {
  display: inline-block;
  margin-left: 10px;
  color: var(--orange);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  min-height: 100vh;
  padding: 130px clamp(22px, 6vw, 100px) 90px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-triangle {
  width: 13px;
  height: 13px;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
}

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

h1 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8vw, 9.4rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.79;
}

h1 em,
.section-title em,
.contact h2 em {
  color: var(--orange);
  font-family: Georgia, serif;
  font-weight: 400;
}

h1 span {
  position: relative;
  z-index: 1;
}

h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: 0.08em;
  left: 0.05em;
  height: 0.11em;
  background: var(--orange);
  transform: rotate(-1deg);
}

.hero-text {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 8px 8px 8px 24px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

.button-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.button:hover .button-icon {
  transform: rotate(45deg);
}

.text-link {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--orange);
  animation: nudge 1.6s ease-in-out infinite;
}

.hero-art {
  position: relative;
  min-height: 620px;
  transform: translateX(4vw);
}

.hero-word {
  position: absolute;
  top: 45%;
  right: -14vw;
  color: rgba(255, 75, 11, 0.05);
  font-family: var(--display);
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  transform: rotate(90deg);
}

.main-triangle {
  position: absolute;
  top: 50%;
  left: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(34vw, 500px);
  aspect-ratio: 1 / 0.92;
  color: white;
  background: linear-gradient(145deg, #ff3200 10%, var(--orange-bright) 88%);
  clip-path: polygon(50% 0, 100% 100%, 0 82%);
  filter: drop-shadow(30px 40px 45px rgba(103, 33, 0, 0.24));
  transform: translate(-50%, -52%) rotate(7deg);
  animation: float 6s ease-in-out infinite;
}

.main-triangle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: shine 4s ease-in-out infinite;
}

.main-triangle > span {
  margin-top: 18%;
  font-family: Georgia, serif;
  font-size: clamp(5rem, 9vw, 9rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.15em;
  line-height: 0.72;
  transform: translateX(-0.06em);
}

.main-triangle small {
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.5vw, 1.45rem);
  letter-spacing: 0.15em;
}

.triangle-glow {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 35%;
  height: 35%;
  background: rgba(255, 255, 255, 0.25);
  filter: blur(35px);
}

.orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 48%;
  border: 1px solid rgba(255, 75, 11, 0.25);
  border-radius: 50%;
}

.orbit::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
}

.orbit-one {
  width: min(39vw, 580px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(-25deg);
  animation: orbit 18s linear infinite;
}

.orbit-two {
  width: min(48vw, 710px);
  aspect-ratio: 1;
  border-style: dashed;
  transform: translate(-50%, -50%) rotate(30deg);
  animation: orbit-reverse 26s linear infinite;
}

.orbit-one::before {
  top: 8%;
  left: 18%;
}

.orbit-two::before {
  right: 7%;
  bottom: 22%;
}

.floating-tag {
  position: absolute;
  z-index: 4;
  padding: 8px 12px;
  color: var(--orange);
  background: var(--white);
  border: 1px solid var(--orange);
  box-shadow: 5px 5px 0 var(--orange);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.tag-one { top: 18%; left: 4%; transform: rotate(-8deg); }
.tag-two { top: 67%; right: 3%; transform: rotate(8deg); }
.tag-three { bottom: 8%; left: 20%; transform: rotate(-4deg); }

.spark {
  position: absolute;
  width: 26px;
  height: 26px;
  background: var(--orange);
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  animation: spin 9s linear infinite;
}

.spark-1 { top: 14%; right: 14%; }
.spark-2 { bottom: 20%; left: 3%; width: 14px; height: 14px; animation-direction: reverse; }
.spark-3 { top: 48%; right: -3%; width: 11px; height: 11px; }

.scroll-note {
  position: absolute;
  bottom: 25px;
  left: clamp(22px, 6vw, 100px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-note span {
  width: 42px;
  height: 1px;
  background: var(--orange);
}

.marquee {
  overflow: hidden;
  color: var(--white);
  background: var(--orange);
  transform: rotate(-1.1deg) scale(1.03);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 18px 0 15px;
  animation: marquee 25s linear infinite;
}

.marquee span {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.marquee i {
  width: 15px;
  height: 15px;
  margin: 0 32px;
  background: var(--white);
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
}

.section-shell {
  width: min(1380px, calc(100% - 44px));
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 30px;
  padding-block: clamp(110px, 14vw, 210px) 70px;
}

.section-index {
  padding-top: 12px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 50px;
}

.section-title {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6vw, 7.3rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.intro-content > p,
.work-heading > p,
.process-sticky > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: clamp(100px, 13vw, 190px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  min-height: 380px;
  padding: clamp(32px, 4vw, 60px);
  background: rgba(247, 242, 233, 0.72);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: color 0.35s ease, background 0.35s ease;
}

.service-card::before {
  content: attr(data-number);
  position: absolute;
  right: 18px;
  bottom: -35px;
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--display);
  font-size: 11rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--orange);
}

.service-card:hover::before {
  opacity: 1;
  transform: translateY(-12px);
}

.service-kicker {
  margin-bottom: 17px;
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card:hover .service-kicker,
.service-card:hover p {
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.service-card p:not(.service-kicker) {
  max-width: 490px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  transition: color 0.3s ease;
}

.service-arrow {
  position: absolute;
  top: 26px;
  right: 30px;
  font-size: 1.5rem;
  transform: translate(-5px, 5px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-arrow {
  transform: translate(0);
  opacity: 1;
}

.service-icon {
  position: relative;
  width: 70px;
  height: 70px;
  color: var(--orange);
  transition: color 0.3s ease, transform 0.4s ease;
}

.service-card:hover .service-icon {
  color: white;
  transform: rotate(-6deg) scale(1.08);
}

.icon-web {
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-web::before {
  content: "•••";
  position: absolute;
  top: -8px;
  left: 7px;
  letter-spacing: 2px;
}

.icon-web span {
  position: absolute;
  top: 24px;
  left: 16px;
  width: 38px;
  height: 29px;
  background: currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
}

.icon-brand {
  background: currentColor;
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
}

.icon-brand span {
  position: absolute;
  inset: 20px;
  background: var(--cream);
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
}

.service-card:hover .icon-brand span {
  background: var(--orange);
}

.icon-social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  align-items: end;
}

.icon-social span {
  display: block;
  background: currentColor;
}

.icon-social span:nth-child(1) { height: 38px; }
.icon-social span:nth-child(2) { height: 55px; }
.icon-social span:nth-child(3) { height: 70px; }

.icon-print {
  border: 2px solid currentColor;
  transform: rotate(8deg);
}

.icon-print::before,
.icon-print::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.icon-print::before { inset: 10px; transform: translate(-20px, 12px); }
.icon-print::after { inset: 18px; background: currentColor; }

.manifesto {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: 100px 24px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
  overflow: hidden;
}

.manifesto p {
  z-index: 2;
  max-width: 660px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.05rem;
}

.manifesto h2 {
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 10vw, 11rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.manifesto h2 span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-style: italic;
}

.manifesto-shape {
  position: absolute;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
}

.shape-a {
  top: -180px;
  left: -90px;
  width: 430px;
  height: 430px;
  opacity: 0.12;
  transform: rotate(-20deg);
}

.shape-b {
  right: -100px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  opacity: 0.2;
  transform: rotate(15deg);
}

.work {
  padding-block: clamp(110px, 14vw, 190px);
}

.work-heading {
  display: grid;
  grid-template-columns: 0.34fr 1.1fr 0.55fr;
  align-items: end;
  gap: 30px;
  margin-bottom: 70px;
}

.featured-work {
  position: relative;
  margin: 0 0 26px;
  overflow: hidden;
  background: var(--ink);
}

.featured-work img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.featured-work:hover img {
  transform: scale(1.025);
}

.featured-work figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: clamp(26px, 5vw, 65px);
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.featured-work figcaption span:first-child {
  color: var(--orange-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.featured-work h3 {
  max-width: 720px;
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.round-arrow {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 65px;
  height: 65px;
  color: var(--ink) !important;
  background: var(--orange);
  border-radius: 50%;
  font-size: 1.5rem !important;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 26px;
}

.work-card {
  min-width: 0;
  margin: 0;
}

.work-card > div {
  min-height: 510px;
}

.work-card > p {
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.work-card-orange {
  background: transparent;
}

.browser-mockup {
  display: flex;
  flex-direction: column;
  padding: 40px 0 0 40px;
  background: var(--orange);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  gap: 7px;
  width: 92%;
  padding: 13px;
  background: #232323;
  border-radius: 10px 10px 0 0;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.browser-content {
  position: relative;
  flex: 1;
  width: 92%;
  padding: 55px 35px;
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.mini-label {
  color: var(--orange);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}

.browser-content strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 22px;
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.browser-button {
  width: 80px;
  height: 24px;
  margin-top: 26px;
  background: var(--orange);
  border-radius: 20px;
}

.browser-triangle {
  position: absolute;
  right: -90px;
  bottom: -70px;
  width: 300px;
  height: 300px;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
  transform: rotate(-13deg);
}

.work-card-dark > div {
  background: var(--ink);
}

.social-stack {
  position: relative;
  overflow: hidden;
}

.social-post {
  position: absolute;
  display: grid;
  place-items: center;
  width: 66%;
  aspect-ratio: 4 / 5;
  box-shadow: 15px 18px 25px rgba(0, 0, 0, 0.25);
}

.post-back {
  top: 50px;
  left: 6%;
  color: var(--orange);
  background: white;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  transform: rotate(-9deg);
}

.post-front {
  right: 2%;
  bottom: -30px;
  color: white;
  background: var(--orange);
  transform: rotate(7deg);
}

.post-front i {
  position: absolute;
  top: 35px;
  right: 35px;
  width: 30px;
  height: 30px;
  background: white;
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
}

.post-front strong {
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 0.83;
}

.post-front em {
  color: var(--ink);
  font-family: Georgia, serif;
}

.work-card-light > div {
  background: #e8e0d4;
}

.brand-board {
  position: relative;
  padding: 58px 48px;
  overflow: hidden;
}

.brand-symbol {
  position: absolute;
  right: -30px;
  bottom: -70px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 20rem;
  line-height: 1;
  transform: rotate(8deg);
}

.brand-lines {
  display: flex;
  gap: 7px;
}

.brand-lines i {
  width: 28px;
  height: 7px;
  background: var(--orange);
}

.brand-lines i:nth-child(2) { background: var(--ink); }
.brand-lines i:nth-child(3) { background: #b7aa9a; }

.brand-board strong {
  position: absolute;
  top: 125px;
  left: 48px;
  z-index: 2;
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.process {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 10vw, 150px);
  padding-block: 50px clamp(120px, 14vw, 190px);
}

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

.process-sticky .section-title {
  margin: 28px 0 34px;
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
}

.process-sticky > p {
  max-width: 420px;
}

.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 25px;
  min-height: 285px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-step > span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 300;
}

.process-step small {
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.process-step h3 {
  margin: 18px 0 14px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.process-step p {
  max-width: 500px;
  color: var(--muted);
  line-height: 1.7;
}

.extras {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 30px;
  padding-block: clamp(100px, 12vw, 165px);
  border-top: 1px solid var(--line);
}

.extras-copy .section-title {
  margin-bottom: 55px;
}

.extra-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.extra-pills span {
  padding: 14px 19px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.extra-pills span:hover {
  color: white;
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-4px) rotate(-1deg);
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  padding-block: 40px clamp(120px, 14vw, 190px);
}

.faq .section-title {
  margin-top: 28px;
}

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

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 28px 50px 28px 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 620px;
  padding: 0 40px 30px 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  padding: 110px 24px;
  color: white;
  background: var(--orange);
  text-align: center;
  overflow: hidden;
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact-kicker {
  display: block;
  margin-bottom: 27px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact h2 {
  margin-bottom: 52px;
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 13rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.73;
}

.contact h2 em {
  color: var(--ink);
}

.contact-note {
  margin-top: 24px;
  font-size: 0.82rem;
}

.contact-triangle {
  position: absolute;
  left: 50%;
  width: min(85vw, 1050px);
  height: min(80vw, 950px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
  transform: translateX(-50%) rotate(-5deg);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 50px;
  padding: 42px clamp(22px, 5vw, 78px);
  color: white;
  background: var(--ink);
}

.brand-footer {
  color: var(--orange);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

footer > p,
.back-top {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.triangle-particle {
  position: fixed;
  z-index: 999;
  width: 10px;
  height: 10px;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 100%, 0 78%);
  pointer-events: none;
  animation: particle-out 0.7s ease-out forwards;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -52%) rotate(7deg); }
  50% { transform: translate(-50%, -56%) rotate(4deg); }
}

@keyframes orbit {
  to { transform: translate(-50%, -50%) rotate(335deg); }
}

@keyframes orbit-reverse {
  to { transform: translate(-50%, -50%) rotate(-330deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes shine {
  0%, 58% { transform: translateX(-120%); }
  85%, 100% { transform: translateX(120%); }
}

@keyframes nudge {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

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

@keyframes particle-out {
  to {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) rotate(180deg) scale(0.2);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-art {
    min-height: 590px;
    transform: none;
  }

  .main-triangle {
    width: min(65vw, 520px);
  }

  .orbit-one { width: min(72vw, 600px); }
  .orbit-two { width: min(84vw, 700px); }

  .intro,
  .extras {
    grid-template-columns: 0.25fr 1fr;
  }

  .intro-content {
    grid-template-columns: 1fr;
  }

  .work-heading {
    grid-template-columns: 0.25fr 1fr;
  }

  .work-heading > p {
    grid-column: 2;
  }

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

  .work-grid .work-card:last-child {
    grid-column: 1 / -1;
  }

  .process {
    gap: 60px;
  }

  footer {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 760px) {
  .cursor-triangle {
    display: none;
  }

  .site-header {
    padding-inline: 18px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
    width: 42px;
    height: 42px;
    padding: 0;
    background: var(--ink);
    border: 0;
    border-radius: 50%;
  }

  .menu-toggle span {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 2px;
    background: white;
    transition: transform 0.25s ease;
  }

  .menu-toggle span:first-child { top: 17px; }
  .menu-toggle span:last-child { top: 23px; }

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 40px;
    color: white;
    background: var(--ink);
    font-family: var(--display);
    font-size: 2.2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .hero {
    min-height: auto;
    padding: 125px 20px 75px;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 5.8rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-art {
    min-height: 430px;
    margin-top: 10px;
  }

  .main-triangle {
    left: 50%;
    width: min(82vw, 400px);
  }

  .orbit {
    left: 50%;
  }

  .orbit-one { width: min(92vw, 440px); }
  .orbit-two { width: min(110vw, 510px); }
  .tag-one { left: 0; }
  .tag-two { right: 0; }
  .tag-three { left: 5%; }

  .scroll-note {
    display: none;
  }

  .section-shell {
    width: min(100% - 36px, 1380px);
  }

  .intro,
  .extras,
  .faq {
    grid-template-columns: 1fr;
  }

  .intro {
    padding-top: 110px;
  }

  .section-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .services {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 68px 1fr;
    min-height: auto;
    padding: 34px 24px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .icon-web span {
    top: 17px;
    left: 11px;
    width: 27px;
    height: 22px;
  }

  .manifesto {
    min-height: 500px;
  }

  .work-heading {
    grid-template-columns: 1fr;
  }

  .work-heading > p {
    grid-column: auto;
  }

  .featured-work img {
    aspect-ratio: 4 / 5;
  }

  .featured-work figcaption {
    padding: 25px;
  }

  .round-arrow {
    display: none;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-grid .work-card:last-child {
    grid-column: auto;
  }

  .work-card > div {
    min-height: 450px;
  }

  .process {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .process-sticky {
    position: static;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
  }

  .faq {
    gap: 50px;
  }

  .contact {
    min-height: 650px;
  }

  .contact h2 {
    font-size: clamp(4.2rem, 20vw, 7rem);
  }

  footer {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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