:root {
  color-scheme: dark light;
  --gold: #f0e6ca;
  --gold-rgb: 240, 230, 202;
  --gold-light: #fbf3dc;
  --gold-light-rgb: 251, 243, 220;
  --accent: #d7c7a1;
  --accent-rgb: 215, 199, 161;
  --cream: #f7f2e9;
  --ink: #11110f;
  --ink-rgb: 17, 17, 15;
  --bg: #3a3835;
  --bg-rgb: 58, 56, 53;
  --bg-2: #2f2e2b;
  --bg-2-rgb: 47, 46, 43;
  --bg-3: #242320;
  --bg-3-rgb: 36, 35, 32;
  --muted: #a79b84;
  --line: rgba(var(--gold-rgb), 0.2);
  --line-soft: rgba(var(--gold-rgb), 0.1);
  --hero-copy: #fff4dc;
  --hero-keyword: #c6a76a;
  --hero-keyword-rgb: 198, 167, 106;
  --hero-bg-start: #34322f;
  --hero-bg-mid: #2a2926;
  --hero-bg-end: #1f1e1c;
  --footer-bg: #1c1b19;
  --header-rgb: 20, 20, 18;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-color-scheme: light) {
  :root {
    --gold: #2f2e2b;
    --gold-rgb: 47, 46, 43;
    --gold-light: #11110f;
    --gold-light-rgb: 17, 17, 15;
    --accent: #b9944e;
    --accent-rgb: 185, 148, 78;
    --cream: #f7f2e9;
    --ink: #11110f;
    --ink-rgb: 17, 17, 15;
    --bg: #f7f2e9;
    --bg-rgb: 247, 242, 233;
    --bg-2: #eee5d4;
    --bg-2-rgb: 238, 229, 212;
    --bg-3: #ded2bb;
    --bg-3-rgb: 222, 210, 187;
    --muted: #6f6658;
    --line: rgba(var(--ink-rgb), 0.18);
    --line-soft: rgba(var(--ink-rgb), 0.09);
    --hero-copy: #11110f;
    --hero-keyword: #b9944e;
    --hero-keyword-rgb: 185, 148, 78;
    --hero-bg-start: #f7f2e9;
    --hero-bg-mid: #eee5d4;
    --hero-bg-end: #ded2bb;
    --footer-bg: #ded2bb;
    --header-rgb: 238, 229, 212;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gold);
  background: var(--bg);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 90;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

.cursor,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.18);
  transition: box-shadow 260ms var(--ease), opacity 260ms var(--ease);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(var(--gold-rgb), 0.65);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.08);
  transition: width 260ms var(--ease), height 260ms var(--ease), opacity 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.cursor.is-active {
  box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.24);
}

.cursor-ring.is-active {
  width: 58px;
  height: 58px;
  border-color: rgba(var(--gold-rgb), 0.72);
  box-shadow: 0 0 24px rgba(var(--accent-rgb), 0.14);
  opacity: 0.38;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 60px);
  background: linear-gradient(to bottom, rgba(var(--header-rgb), 0.86), rgba(var(--header-rgb), 0));
  transition: padding 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease);
}

.site-header.is-scrolled {
  padding-block: 14px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(var(--bg-2-rgb), 0.82);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(var(--ink-rgb), 0.34);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand strong,
.nav a,
.kicker,
.button,
.footer,
.project-card span,
.service-item > span,
.contact-links span {
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}

.nav a {
  position: relative;
  color: var(--muted);
  transition: color 220ms var(--ease);
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--gold-light);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  min-height: 100svh;
  padding: 150px clamp(18px, 4vw, 60px) 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 34%, rgba(var(--gold-rgb), 0.095), transparent 31%),
    linear-gradient(135deg, var(--hero-bg-start) 0%, var(--hero-bg-mid) 52%, var(--hero-bg-end) 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 32vh;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(var(--bg-rgb), 0), var(--bg-2));
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
}

.kicker {
  margin: 0;
  color: var(--gold);
}

.hero .kicker,
.section-title .kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero .kicker::before,
.section-title .kicker::before {
  display: block;
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 28px;
  color: var(--gold-light);
  font-size: clamp(4rem, 8vw, 7.7rem);
  line-height: 0.88;
}

.hero h1 {
  color: var(--hero-copy);
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-style: normal;
}

h2 {
  max-width: 880px;
  font-size: clamp(3.1rem, 6vw, 7.4rem);
  line-height: 0.96;
}

.text-mark {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: var(--gold-light);
  text-shadow: 0 0 28px rgba(var(--gold-rgb), 0.16);
}

.text-mark::after {
  position: absolute;
  right: 0.03em;
  bottom: 0.04em;
  left: 0.03em;
  z-index: -1;
  height: 0.16em;
  content: "";
  background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.08), rgba(var(--accent-rgb), 0.5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease);
}

.is-visible .text-mark::after,
.statement .is-visible .text-mark::after {
  transform: scaleX(1);
}

.text-mark-dark {
  color: var(--bg-3);
  text-shadow: none;
}

.text-mark-dark::after {
  background: linear-gradient(90deg, rgba(var(--bg-3-rgb), 0.1), rgba(var(--bg-3-rgb), 0.34));
}

.hero h1 .text-mark {
  color: var(--hero-keyword);
  text-shadow: 0 0 17px rgba(var(--hero-keyword-rgb), 0.16);
}

.hero h1 .text-mark::after {
  right: 0.01em;
  bottom: -0.02em;
  left: 0.01em;
  z-index: 0;
  height: 0.035em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--hero-keyword-rgb), 0), rgba(var(--hero-keyword-rgb), 0.78), rgba(var(--gold-light-rgb), 0.42));
  box-shadow: 0 0 10px rgba(var(--hero-keyword-rgb), 0.14);
}

.hero h1 .text-mark-balance {
  font-size: 0.92em;
  text-shadow: 0 0 13px rgba(var(--hero-keyword-rgb), 0.13);
}

.hero h1 .text-mark-balance::after {
  right: auto;
  width: 70%;
  background: linear-gradient(90deg, rgba(var(--hero-keyword-rgb), 0), rgba(var(--hero-keyword-rgb), 0.72), rgba(var(--gold-light-rgb), 0.32));
  box-shadow: 0 0 8px rgba(var(--hero-keyword-rgb), 0.12);
}

.soft-mark {
  position: relative;
  display: inline;
  z-index: 0;
  color: var(--gold-light);
  font-weight: 700;
  white-space: normal;
}

.soft-mark::before {
  position: absolute;
  inset: auto -0.18em 0.02em;
  z-index: -1;
  height: 0.72em;
  content: "";
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.1);
  box-shadow: 0 0 24px rgba(var(--gold-rgb), 0.08);
  transform: scaleX(0.82);
  transform-origin: center;
  transition: transform 500ms var(--ease), background 500ms var(--ease);
}

.soft-mark:hover::before,
.service-item:hover .soft-mark::before,
.contact-panel:hover .soft-mark::before,
.about-body:hover .soft-mark::before {
  background: rgba(var(--gold-rgb), 0.18);
  transform: scaleX(1);
}

h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.55rem);
  font-weight: 700;
  line-height: 1;
}

.hero-sub {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--line);
  transition: transform 260ms var(--ease), color 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease);
}

.button-fill {
  color: var(--bg-3);
  background: var(--gold);
  border-color: var(--gold);
}

.button-fill:hover,
.button-fill:focus-visible {
  background: var(--gold-light);
  transform: translateY(-3px);
}

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

.button-ghost::after {
  margin-left: 12px;
  content: ">";
  transition: transform 260ms var(--ease);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--gold-light);
  border-color: var(--gold);
}

.button-ghost:hover::after,
.button-ghost:focus-visible::after {
  transform: translateX(4px);
}

.home-intro,
.process-section,
.deliverables-section,
.archive-section,
.values-section,
.tools-section,
.brief-section,
.contact-options,
.instagram-section,
.home-cta,
.page-cta {
  background: var(--bg-2);
}

.home-cards,
.process-grid,
.values-grid,
.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.process-list {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

.process-list .process-card {
  position: relative;
  grid-template-columns: minmax(52px, 0.14fr) minmax(0, 1fr) auto;
  gap: clamp(22px, 5vw, 78px);
  align-items: center;
  min-height: clamp(180px, 22vw, 260px);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 50%, rgba(var(--accent-rgb), 0.12), transparent 34%),
    rgba(var(--bg-3-rgb), 0.88);
}

.process-list .process-card::after {
  position: absolute;
  right: clamp(24px, 5vw, 78px);
  bottom: clamp(22px, 3vw, 38px);
  width: clamp(100px, 18vw, 300px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.42));
  opacity: 0.72;
}

.process-list .process-card:nth-child(even) {
  margin-left: clamp(0px, 7vw, 110px);
}

.process-list .process-card:nth-child(odd) {
  margin-right: clamp(0px, 7vw, 110px);
}

.process-list .process-card h3 {
  margin: 0;
}

.process-list .process-card p {
  max-width: 760px;
}

.process-list .delivery-tags {
  z-index: 1;
  align-self: center;
  justify-self: end;
  max-width: 210px;
}

.process-horizontal {
  position: relative;
  min-height: var(--horizontal-height, 180svh);
  overflow: clip;
  background:
    radial-gradient(circle at calc(16% + (var(--h-progress, 0) * 58%)) 48%, rgba(var(--accent-rgb), 0.18), transparent 34%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
  --h-progress: 0;
}

.process-horizontal::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(var(--gold-rgb), 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--gold-rgb), 0.08) 1px, transparent 1px);
  background-size: 88px 88px;
  transform: translate3d(calc(var(--h-progress, 0) * -40px), 0, 0);
}

.process-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: clamp(92px, 9vw, 128px) 0 clamp(34px, 5vw, 64px);
}

.process-horizontal-head {
  display: block;
  width: min(100% - clamp(36px, 8vw, 120px), 1540px);
  margin-bottom: clamp(20px, 3vw, 36px);
  margin-inline: auto;
}

.process-horizontal-head h2 {
  width: min(980px, 100%);
  margin-bottom: 18px;
  font-size: clamp(4.8rem, 7vw, 7.6rem);
  line-height: 0.94;
}

.process-horizontal-head p:not(.kicker) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.process-horizontal-viewport {
  width: 100%;
  overflow: visible;
  contain: layout paint;
}

.process-horizontal-track {
  display: flex;
  width: max-content;
  gap: clamp(14px, 2vw, 24px);
  padding-right: max(clamp(20px, 4vw, 60px), calc((100vw - 1540px) / 2));
  padding-left: max(clamp(20px, 4vw, 60px), calc((100vw - 1540px) / 2));
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.process-h-card {
  display: flex;
  flex: 0 0 clamp(300px, 34vw, 470px);
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(270px, 27vw, 350px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(var(--accent-rgb), 0.16), transparent 34%),
    linear-gradient(145deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.035)),
    rgba(var(--bg-3-rgb), 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: border-color 320ms var(--ease), box-shadow 320ms var(--ease), background 320ms var(--ease);
  will-change: transform, opacity;
}

.process-h-card span,
.process-h-card h3,
.process-h-card p {
  will-change: transform;
  transition: transform 150ms linear;
}

.process-h-card:hover,
.process-h-card:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.42);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.18), 0 28px 80px rgba(0, 0, 0, 0.28);
}

.process-h-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: auto;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  border-radius: 18px;
  color: var(--gold-light);
  background: rgba(var(--accent-rgb), 0.12);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-h-card h3 {
  margin: clamp(48px, 6vw, 72px) 0 0;
  color: var(--gold-light);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 4.4vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.process-h-card p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.process-h-card-final {
  border-color: rgba(var(--accent-rgb), 0.24);
  background:
    radial-gradient(circle at 88% 14%, rgba(var(--accent-rgb), 0.2), transparent 36%),
    linear-gradient(145deg, rgba(var(--accent-rgb), 0.18), rgba(var(--gold-rgb), 0.04)),
    rgba(var(--bg-3-rgb), 0.95);
}

.values-horizontal .process-horizontal-track {
  padding-right: max(26vw, calc((100vw - 1540px) / 2));
}

.brief-horizontal .process-horizontal-track {
  padding-right: max(26vw, calc((100vw - 1540px) / 2));
}

.home-horizontal .process-horizontal-track {
  padding-right: max(26vw, calc((100vw - 1540px) / 2));
}

.home-horizontal .process-h-card h3,
.brief-horizontal .process-h-card h3 {
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1;
}

.home-card,
.process-card,
.value-card,
.brief-card {
  display: grid;
  align-content: space-between;
  min-height: 320px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(var(--bg-3-rgb), 0.86);
  transition: transform 320ms var(--ease), background 320ms var(--ease), color 320ms var(--ease);
}

.process-card-parallax {
  --parallax-y: 0px;
  will-change: transform;
}

.process-card.process-card-parallax.is-visible,
.process-card.process-card-parallax.aos-animate {
  transform: translate3d(0, var(--parallax-y), 0);
}

.home-card:hover,
.home-card:focus-visible,
.process-card:hover,
.value-card:hover,
.brief-card:hover {
  color: var(--gold-light);
  background: rgba(var(--gold-rgb), 0.08);
  transform: translateY(-8px);
}

.process-card.process-card-parallax:hover,
.process-card.process-card-parallax:focus-visible {
  transform: translate3d(0, calc(var(--parallax-y) - 8px), 0);
}

.home-card span,
.process-card span,
.value-card span,
.brief-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-card p,
.process-card p,
.value-card p,
.brief-card p,
.case-points p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.process-card-featured {
  position: relative;
  grid-column: 1 / -1;
  grid-template-columns: minmax(80px, 0.18fr) minmax(220px, 0.4fr) minmax(280px, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  min-height: 230px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(var(--accent-rgb), 0.18), transparent 32%),
    linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.025)),
    rgba(var(--bg-3-rgb), 0.9);
}

.process-card-featured::after {
  position: absolute;
  right: clamp(22px, 5vw, 70px);
  bottom: clamp(22px, 4vw, 46px);
  width: clamp(120px, 18vw, 250px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.48));
}

.delivery-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: start;
  justify-self: end;
  max-width: 420px;
}

.delivery-tags small {
  padding: 10px 13px;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(var(--accent-rgb), 0.08);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: clamp(30px, 6vw, 76px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(var(--accent-rgb), 0.2), transparent 28%),
    linear-gradient(135deg, rgba(var(--gold-rgb), 0.08), rgba(var(--gold-rgb), 0.02)),
    rgba(var(--bg-3-rgb), 0.78);
}

.instagram-panel > * {
  min-width: 0;
}

.instagram-panel h2 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(2.65rem, 4.8vw, 5.8rem);
  line-height: 0.98;
}

.instagram-handle {
  display: block;
  width: max-content;
  max-width: 100%;
  overflow-wrap: normal;
  white-space: nowrap;
  font-size: clamp(2.45rem, 4.2vw, 4.75rem);
  letter-spacing: -0.045em;
}

.instagram-actions {
  align-self: end;
  display: grid;
  gap: 24px;
  justify-items: start;
  max-width: 430px;
}

.instagram-actions p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.instagram-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
}

.instagram-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.32);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(var(--accent-rgb), 0.1);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .instagram-panel {
    grid-template-columns: 1fr;
  }

  .instagram-actions {
    max-width: 640px;
  }
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 8vw, 110px);
  align-items: start;
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(var(--gold-rgb), 0.07), rgba(var(--gold-rgb), 0.018)),
    rgba(var(--bg-3-rgb), 0.7);
}

.split-panel h2 {
  margin-top: 18px;
}

.policy-copy {
  display: grid;
  gap: 18px;
}

.policy-copy h3 {
  margin-top: 18px;
  color: var(--gold-light);
}

.policy-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.policy-copy a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.tag-list,
.option-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.tag-list li {
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  color: var(--gold-light);
  background: rgba(var(--gold-rgb), 0.04);
}

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

.archive-row {
  display: grid;
  grid-template-columns: 0.3fr 1fr 1fr;
  gap: clamp(18px, 5vw, 80px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 260ms var(--ease), transform 260ms var(--ease);
}

.archive-row:hover,
.archive-row:focus-visible {
  color: var(--gold-light);
  transform: translateX(8px);
}

.archive-row span,
.archive-row em,
.option-list span {
  color: var(--muted);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.archive-row strong {
  font-size: clamp(1.35rem, 2.6vw, 2.6rem);
  line-height: 1;
}

.case-points,
.option-list {
  display: grid;
  gap: 22px;
}

.option-list a {
  display: grid;
  gap: 9px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}

.option-list strong {
  color: var(--gold-light);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  min-height: 520px;
}

.monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(240px, 36vw, 520px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(var(--gold-rgb), 0.18);
  border-radius: 50%;
  color: rgba(var(--gold-rgb), 0.12);
  font-family: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(7rem, 16vw, 18rem);
  transform: translate(-50%, -50%);
  overflow: hidden;
  opacity: 0.42;
}

.monogram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.orbital-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: clamp(170px, 18vw, 260px);
  aspect-ratio: 1 / 1.22;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(var(--gold-rgb), 0.07);
  box-shadow: 0 30px 90px rgba(var(--ink-rgb), 0.24);
  backdrop-filter: blur(22px);
  animation: float 8s var(--ease) infinite;
}

.orbital-card span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.orbital-card strong {
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.86;
}

.web-symbol,
.graphic-symbol {
  position: relative;
  display: grid;
  min-height: 150px;
}

.web-symbol {
  align-content: end;
  gap: 12px;
}

.web-symbol::before {
  position: absolute;
  top: 6px;
  right: 0;
  left: 0;
  height: 42px;
  content: "";
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  background:
    radial-gradient(circle at 18px 50%, rgba(var(--gold-rgb), 0.86) 0 4px, transparent 5px),
    radial-gradient(circle at 38px 50%, rgba(var(--accent-rgb), 0.6) 0 4px, transparent 5px),
    radial-gradient(circle at 58px 50%, rgba(var(--gold-rgb), 0.3) 0 4px, transparent 5px);
}

.web-symbol i {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.78);
}

.web-symbol i:nth-child(1) {
  width: 88%;
}

.web-symbol i:nth-child(2) {
  width: 58%;
  background: rgba(var(--accent-rgb), 0.62);
}

.web-symbol i:nth-child(3) {
  width: 74%;
  background: rgba(var(--gold-rgb), 0.28);
}

.graphic-symbol {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: end;
}

.graphic-symbol::before {
  position: absolute;
  inset: 10px auto auto 8px;
  width: 58%;
  height: 58%;
  content: "";
  border: 1px solid rgba(var(--gold-rgb), 0.24);
  transform: rotate(-8deg);
}

.graphic-symbol i {
  min-height: 54px;
  border: 1px solid rgba(var(--gold-rgb), 0.18);
  background: rgba(var(--gold-rgb), 0.12);
}

.graphic-symbol i:nth-child(2) {
  background: rgba(var(--accent-rgb), 0.3);
}

.graphic-symbol i:nth-child(3) {
  background: rgba(var(--gold-rgb), 0.24);
}

.graphic-symbol i:nth-child(4) {
  background: rgba(var(--ink-rgb), 0.32);
}

.card-a {
  top: 10%;
  right: 8%;
}

.card-b {
  bottom: 10%;
  left: 8%;
  animation-delay: -3s;
}

.hero-stats {
  position: absolute;
  right: clamp(18px, 4vw, 60px);
  bottom: 36px;
  left: clamp(18px, 4vw, 60px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.hero-stats div {
  display: grid;
  gap: 7px;
  padding: 22px 24px 0 0;
}

.hero-stats strong {
  font-family: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 0.9;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.scroll-link {
  position: absolute;
  right: clamp(18px, 4vw, 60px);
  bottom: 130px;
  z-index: 3;
  writing-mode: vertical-rl;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section {
  padding: clamp(88px, 12vw, 170px) clamp(18px, 4vw, 60px);
}

.page-main {
  min-height: 100svh;
  background:
    radial-gradient(circle at 75% 18%, rgba(var(--gold-rgb), 0.1), transparent 34%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 55%, var(--bg-3) 100%);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  min-height: 62svh;
  padding: clamp(150px, 18vw, 220px) clamp(18px, 4vw, 60px) clamp(72px, 10vw, 130px);
  border-bottom: 1px solid var(--line-soft);
}

.page-hero-copy {
  display: grid;
  gap: 26px;
}

.page-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.page-hero .kicker::before {
  display: block;
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.page-hero h1 {
  max-width: 1120px;
  margin: 0;
}

.page-lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
}

.page-motion {
  position: relative;
  justify-self: end;
  width: min(440px, 100%);
  height: clamp(260px, 29vw, 420px);
}

.motion-line {
  position: absolute;
  inset: 50% 6% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.42), transparent);
  transform-origin: center;
  animation: motionPulse 5.8s var(--ease) infinite;
}

.motion-card {
  position: absolute;
  width: clamp(118px, 15vw, 190px);
  aspect-ratio: 1 / 1.18;
  border: 1px solid var(--line);
  background: rgba(var(--gold-rgb), 0.055);
  box-shadow: 0 24px 70px rgba(var(--ink-rgb), 0.2);
  backdrop-filter: blur(18px);
  animation: float 8s var(--ease) infinite;
}

.motion-card::before,
.motion-card::after {
  position: absolute;
  content: "";
}

.motion-card-left {
  bottom: 8%;
  left: 4%;
  transform: rotate(-4deg);
}

.motion-card-left::before {
  inset: 18px 18px auto;
  height: 9px;
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.68);
}

.motion-card-left::after {
  right: 18px;
  bottom: 20px;
  left: 18px;
  height: 46%;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.26), transparent 55%),
    rgba(var(--ink-rgb), 0.16);
}

.motion-card-right {
  top: 2%;
  right: 8%;
  animation-delay: -3.2s;
}

.motion-card-right::before {
  inset: 18px 20px auto;
  height: 42px;
  border: 1px solid rgba(var(--gold-rgb), 0.16);
  background:
    radial-gradient(circle at 16px 50%, rgba(var(--gold-rgb), 0.78) 0 4px, transparent 5px),
    radial-gradient(circle at 35px 50%, rgba(var(--accent-rgb), 0.54) 0 4px, transparent 5px);
}

.motion-card-right::after {
  right: 20px;
  bottom: 24px;
  left: 20px;
  height: 10px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.58);
  box-shadow:
    0 -22px 0 rgba(var(--gold-rgb), 0.3),
    0 -44px 0 rgba(var(--gold-rgb), 0.16);
}

.motion-dot {
  position: absolute;
  top: 46%;
  left: 48%;
  width: 18px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 18px rgba(var(--gold-rgb), 0.08);
  animation: orbitDot 7s linear infinite;
}

.page-motion-portfolio .motion-card-left::after {
  background:
    linear-gradient(90deg, rgba(var(--gold-rgb), 0.36), transparent 38%),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.22), transparent 58%),
    rgba(var(--ink-rgb), 0.18);
}

.page-motion-portfolio .motion-card-right {
  transform: rotate(3deg);
}

.page-motion-services .motion-line {
  inset: 52% 2% auto;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.62), transparent);
}

.page-motion-services .motion-card-left {
  width: clamp(136px, 15vw, 210px);
  bottom: 10%;
  left: 0;
}

.page-motion-services .motion-card-right {
  width: clamp(150px, 16vw, 230px);
  top: 4%;
  right: 0;
}

.page-motion-services .motion-card-left::after {
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.66);
  box-shadow:
    0 -24px 0 rgba(var(--gold-rgb), 0.32),
    0 -48px 0 rgba(var(--gold-rgb), 0.18);
}

.page-motion-services .motion-card-right::after {
  height: 46%;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(var(--gold-rgb), 0.5) 0 16%, transparent 16% 24%, rgba(var(--accent-rgb), 0.44) 24% 48%, transparent 48% 56%, rgba(var(--gold-rgb), 0.18) 56% 100%),
    rgba(var(--ink-rgb), 0.18);
  box-shadow: none;
}

.page-motion-portfolio .motion-line {
  inset: 50% 4% auto;
  height: 180px;
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  background:
    linear-gradient(90deg, rgba(var(--gold-rgb), 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(var(--gold-rgb), 0.1) 1px, transparent 1px);
  background-size: 33.333% 50%;
  opacity: 0.54;
  transform: translateY(-50%) rotate(-3deg);
  animation: portfolioGrid 8s var(--ease) infinite;
}

.page-motion-portfolio::after {
  position: absolute;
  right: 8%;
  bottom: 16%;
  content: "Portfolio";
  color: rgba(var(--gold-rgb), 0.58);
  font-family: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.7vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  transform: rotate(-3deg);
  animation: motionPulse 6.4s var(--ease) infinite;
}

.page-motion-portfolio .motion-card-left {
  width: clamp(160px, 17vw, 245px);
  bottom: 10%;
  left: 0;
  aspect-ratio: 1 / 1.28;
  transform: rotate(-7deg);
}

.page-motion-portfolio .motion-card-right {
  width: clamp(150px, 16vw, 230px);
  top: 4%;
  right: 2%;
  aspect-ratio: 1 / 0.82;
  transform: rotate(5deg);
  animation-delay: -4s;
}

.page-motion-portfolio .motion-card-left::before,
.page-motion-portfolio .motion-card-right::before {
  inset: 18px;
  height: auto;
  border: 1px solid rgba(var(--gold-rgb), 0.16);
  background:
    radial-gradient(circle at 72% 30%, rgba(var(--gold-rgb), 0.42) 0 9px, transparent 10px),
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.28), transparent 58%),
    rgba(var(--gold-rgb), 0.06);
}

.page-motion-portfolio .motion-card-left::after,
.page-motion-portfolio .motion-card-right::after {
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.56);
  box-shadow:
    0 -18px 0 rgba(var(--accent-rgb), 0.28),
    0 -36px 0 rgba(var(--gold-rgb), 0.13);
}

.page-motion-portfolio .motion-dot {
  top: 16%;
  left: 16%;
  width: 14px;
  box-shadow: 0 0 0 16px rgba(var(--gold-rgb), 0.075);
  animation: portfolioDot 7.6s var(--ease) infinite;
}

.about-motion {
  position: relative;
  width: min(360px, 100%);
  height: 120px;
  margin-top: 28px;
}

.about-motion::before {
  position: absolute;
  inset: 8px auto auto 34px;
  width: 92px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(var(--gold-rgb), 0.16);
  border-radius: 50%;
  animation: motionSpin 12s linear infinite;
}

.about-motion span {
  position: absolute;
  display: block;
  border: 1px solid var(--line);
  background: rgba(var(--gold-rgb), 0.06);
  backdrop-filter: blur(16px);
  animation: float 8s var(--ease) infinite;
}

.about-motion span:nth-child(1) {
  left: 0;
  bottom: 8px;
  width: 132px;
  height: 72px;
  transform: rotate(-5deg);
}

.about-motion span:nth-child(2) {
  top: 0;
  left: 126px;
  width: 86px;
  height: 86px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.28), transparent 62%),
    rgba(var(--gold-rgb), 0.05);
  animation-delay: -2.6s;
}

.about-motion span:nth-child(3) {
  right: 26px;
  bottom: 24px;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 16px rgba(var(--gold-rgb), 0.08);
  animation: orbitDot 6s linear infinite;
}

.contact-motion {
  position: relative;
  width: min(360px, 100%);
  height: 128px;
  margin-top: 30px;
}

.contact-motion::before {
  position: absolute;
  top: 58px;
  right: 22px;
  left: 22px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.42), transparent);
  animation: motionPulse 5.8s var(--ease) infinite;
}

.contact-motion span {
  position: absolute;
  display: block;
  border: 1px solid var(--line);
  background: rgba(var(--gold-rgb), 0.06);
  backdrop-filter: blur(16px);
  animation: float 8s var(--ease) infinite;
}

.contact-motion span:nth-child(1) {
  top: 8px;
  left: 0;
  width: 148px;
  height: 76px;
  border-radius: 18px 18px 18px 4px;
}

.contact-motion span:nth-child(1)::after {
  position: absolute;
  top: 22px;
  right: 22px;
  left: 22px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.58);
  box-shadow: 0 18px 0 rgba(var(--accent-rgb), 0.36);
}

.contact-motion span:nth-child(2) {
  right: 28px;
  bottom: 8px;
  width: 168px;
  height: 82px;
  border-radius: 18px 18px 4px 18px;
  animation-delay: -3s;
}

.contact-motion span:nth-child(2)::after {
  position: absolute;
  top: 24px;
  right: 24px;
  left: 24px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.54);
  box-shadow: 0 18px 0 rgba(var(--gold-rgb), 0.24);
}

.contact-motion span:nth-child(3) {
  top: 46px;
  left: 48%;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 14px rgba(var(--gold-rgb), 0.08);
  animation: orbitDot 6s linear infinite;
}

.services-page + .services,
.portfolio-page + .portfolio {
  padding-top: clamp(44px, 6vw, 78px);
}

.portfolio-page {
  min-height: 56svh;
  padding-bottom: clamp(48px, 7vw, 86px);
}

.page-about {
  min-height: 100svh;
  padding-top: clamp(150px, 16vw, 220px);
}

.page-about .about-heading {
  position: static;
}

.page-about h1,
.page-contact h1 {
  margin: 20px 0 0;
}

.page-contact h1 {
  max-width: 1120px;
  margin-bottom: clamp(24px, 3vw, 42px);
  line-height: 0.9;
}

.page-contact .contact-panel p:not(.kicker) {
  max-width: 620px;
  margin: 0 0 clamp(28px, 4vw, 48px);
}

.page-contact {
  min-height: 100svh;
  padding-top: clamp(150px, 16vw, 220px);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: start;
  margin-bottom: clamp(52px, 8vw, 110px);
}

.section-title.process-horizontal-head {
  display: block;
  grid-template-columns: none;
  gap: 0;
  margin-bottom: clamp(20px, 3vw, 36px);
}

.section-title.process-horizontal-head h2 {
  width: min(1280px, 100%);
  margin-bottom: 18px;
  font-size: clamp(4.4rem, 5.2vw, 6rem);
  line-height: 0.94;
  white-space: nowrap;
}

.section-title.process-horizontal-head p:not(.kicker) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.values-horizontal .section-title.process-horizontal-head h2 {
  white-space: normal;
}

.brief-horizontal .section-title.process-horizontal-head h2 {
  max-width: 1020px;
  white-space: normal;
}

.home-horizontal .section-title.process-horizontal-head h2 {
  max-width: 1060px;
  white-space: normal;
}

.section-lead {
  grid-column: 2;
  max-width: 620px;
  margin: -72px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.services {
  background: var(--bg-2);
}

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

.service-item {
  display: grid;
  grid-template-columns: 0.25fr 0.9fr 1fr;
  gap: clamp(18px, 4vw, 70px);
  align-items: start;
  padding: clamp(26px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 240ms var(--ease), transform 240ms var(--ease);
}

.service-item:hover {
  color: var(--gold-light);
  transform: translateX(8px);
}

.service-item > span {
  color: var(--muted);
}

.service-item p,
.about-body p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.why-work {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 90px);
  margin-top: clamp(48px, 8vw, 96px);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  background: rgba(var(--gold-rgb), 0.04);
}

.why-work ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-work li {
  color: var(--muted);
  line-height: 1.55;
}

.why-work li::before {
  margin-right: 10px;
  color: var(--gold);
  content: "•";
}

.portfolio {
  background: var(--bg-3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 480px));
  justify-content: center;
  align-items: stretch;
  gap: clamp(18px, 3vw, 34px);
  max-width: 1060px;
  margin: 0 auto;
}

.project-card {
  display: flex;
}

.project-card-inner {
  display: grid;
  grid-template-rows: auto 150px;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(var(--gold-rgb), 0.045);
  transition: transform 360ms var(--ease), border-color 360ms var(--ease), background 360ms var(--ease);
}

.project-card:nth-child(even) {
  transform: translateY(62px);
}

.project-card-inner:hover {
  border-color: var(--line);
  background: rgba(var(--gold-rgb), 0.08);
  transform: translateY(-8px);
}

.portfolio-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(var(--ink-rgb), 0.22);
}

.portfolio-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.84);
  transition: transform 700ms var(--ease), filter 700ms var(--ease), opacity 700ms var(--ease);
}

.portfolio-media img:first-child,
.portfolio-media img.is-active {
  opacity: 1;
}

.portfolio-media.is-ready img:first-child {
  opacity: 0;
}

.portfolio-media.is-ready img.is-active {
  opacity: 1;
}

.project-card-inner:hover .portfolio-media img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.035);
}

.portfolio-dots {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.portfolio-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.38);
  cursor: pointer;
  transition: width 260ms var(--ease), background 260ms var(--ease), transform 260ms var(--ease);
}

.portfolio-dots button:hover,
.portfolio-dots button:focus-visible,
.portfolio-dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--gold-light);
  transform: translateY(-1px);
}

.project-card-inner > div:not(.portfolio-media) {
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 24px;
}

.project-card span {
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 8vw, 120px);
  background: var(--bg);
}

.about-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.about-heading h2 {
  margin-top: 22px;
}

.about-body {
  align-self: end;
  padding-top: 12px;
}

.about-body > p + p {
  margin-top: 18px;
}

.about-intro {
  margin-bottom: 18px !important;
  color: var(--gold-light) !important;
  font-family: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 5rem) !important;
  line-height: 1.02 !important;
}

.skills {
  display: grid;
  gap: 22px;
  margin-top: 46px;
}

.skills div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding-bottom: 14px;
  color: var(--gold-light);
  border-bottom: 1px solid var(--line-soft);
}

.skills div::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: var(--value);
  height: 1px;
  content: "";
  background: var(--gold);
}

.statement {
  display: grid;
  gap: 10px;
  padding: clamp(90px, 12vw, 160px) clamp(18px, 4vw, 60px);
  color: var(--bg-3);
  background: var(--gold);
}

.statement p {
  max-width: 1180px;
  margin: 0;
  font-family: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.9rem, 7.2vw, 8.4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.contact {
  background: var(--bg-3);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 8vw, 120px);
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(var(--gold-rgb), 0.08), rgba(var(--gold-rgb), 0.02)),
    var(--bg-2);
}

.contact-panel h2 {
  margin: 18px 0 28px;
}

.contact-links {
  display: grid;
  gap: 20px;
  align-content: center;
}

.contact-links a:not(.button) {
  display: grid;
  gap: 9px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--gold-light);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.contact-links span {
  color: var(--muted);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 60px);
  color: var(--muted);
  background: var(--footer-bg);
}

.cookie-footer-button {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 260ms var(--ease);
}

.cookie-footer-button:hover,
.cookie-footer-button:focus-visible {
  color: var(--gold-light);
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  pointer-events: none;
}

.cookie-banner,
.cookie-preferences-panel {
  position: relative;
  pointer-events: auto;
  border: 1px solid rgba(var(--accent-rgb), 0.36);
  color: var(--gold);
  background:
    radial-gradient(circle at 90% 12%, rgba(var(--accent-rgb), 0.12), transparent 30%),
    rgba(var(--ink-rgb), 0.9);
  box-shadow: 0 28px 100px rgba(var(--ink-rgb), 0.45);
  backdrop-filter: blur(24px);
}

.cookie-banner {
  width: min(860px, 100%);
  padding: clamp(24px, 3.5vw, 38px);
}

.cookie-banner h2,
.cookie-preferences-panel h2 {
  max-width: 980px;
  margin: 12px 0 18px;
  color: var(--gold-light);
  font-size: clamp(1.65rem, 2.6vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cookie-banner p,
.cookie-preferences-panel p,
.cookie-option p {
  margin: 0;
  color: var(--gold);
  line-height: 1.7;
}

.cookie-banner a,
.cookie-preferences-panel a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cookie-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-light);
  background: rgba(var(--gold-rgb), 0.03);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  transition: color 260ms var(--ease), background 260ms var(--ease), transform 260ms var(--ease);
}

.cookie-close:hover,
.cookie-close:focus-visible {
  color: var(--bg-3);
  background: var(--gold);
  transform: rotate(90deg);
}

.cookie-preferences {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(var(--ink-rgb), 0.74);
  pointer-events: auto;
}

.cookie-preferences[hidden],
.cookie-banner[hidden] {
  display: none;
}

.cookie-preferences-panel {
  width: min(1040px, 100%);
  max-height: min(820px, 92svh);
  overflow: auto;
  padding: clamp(26px, 5vw, 56px);
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
}

.cookie-option h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-status {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cookie-toggle-state {
  min-width: 104px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: right;
  text-transform: uppercase;
}

.cookie-option-toggle {
  cursor: pointer;
}

.cookie-option-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch {
  position: relative;
  width: 64px;
  height: 34px;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.14);
  transition: background 260ms var(--ease), border-color 260ms var(--ease);
}

.cookie-switch::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  content: "";
  border-radius: 50%;
  background: var(--gold-light);
  transition: transform 260ms var(--ease);
}

.cookie-option-toggle input:checked + .cookie-switch {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.74);
}

.cookie-option-toggle input:checked + .cookie-switch::after {
  transform: translateX(30px);
}

.cookie-option-toggle input:focus-visible + .cookie-switch {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -22px, 0) rotate(2deg);
  }
}

@keyframes motionPulse {
  0%,
  100% {
    opacity: 0.36;
    transform: scaleX(0.76);
  }

  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes orbitDot {
  0% {
    transform: translate3d(-30px, -18px, 0);
  }

  25% {
    transform: translate3d(22px, -30px, 0);
  }

  50% {
    transform: translate3d(34px, 18px, 0);
  }

  75% {
    transform: translate3d(-18px, 30px, 0);
  }

  100% {
    transform: translate3d(-30px, -18px, 0);
  }
}

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

@keyframes portfolioGrid {
  0%,
  100% {
    opacity: 0.34;
    transform: translateY(-50%) rotate(-3deg) scale(0.96);
  }

  50% {
    opacity: 0.7;
    transform: translateY(-50%) rotate(1deg) scale(1);
  }
}

@keyframes portfolioDot {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  33% {
    transform: translate3d(230px, 28px, 0);
  }

  66% {
    transform: translate3d(118px, 210px, 0);
  }
}


@media (max-width: 980px) {
  .cursor,
  .cursor-ring {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(var(--ink-rgb), 0.28);
    backdrop-filter: blur(14px);
    transition: background 260ms var(--ease), border-color 260ms var(--ease), transform 260ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(var(--accent-rgb), 0.44);
    background: rgba(var(--gold-rgb), 0.08);
    transform: rotate(90deg);
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 260ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 84;
    display: grid;
    align-content: center;
    justify-items: stretch;
    gap: 12px;
    padding: max(116px, env(safe-area-inset-top)) clamp(18px, 7vw, 36px) max(34px, env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 18% 18%, rgba(var(--gold-rgb), 0.12), transparent 26%),
      radial-gradient(circle at 86% 20%, rgba(var(--accent-rgb), 0.18), transparent 34%),
      linear-gradient(145deg, rgba(var(--bg-rgb), 0.985), rgba(var(--bg-3-rgb), 0.985));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    visibility: hidden;
    transition: transform 420ms var(--ease), opacity 260ms var(--ease), visibility 0s 420ms;
  }

  .nav::before {
    align-self: end;
    margin-bottom: 12px;
    color: var(--accent);
    content: "Menu";
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
  }

  .nav::after {
    position: absolute;
    right: clamp(18px, 7vw, 36px);
    bottom: max(18px, env(safe-area-inset-bottom));
    left: clamp(18px, 7vw, 36px);
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.34), transparent);
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
    transition: transform 420ms var(--ease), opacity 260ms var(--ease);
  }

  .nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 clamp(18px, 5vw, 28px) 0 clamp(58px, 13vw, 82px);
    border: 1px solid var(--line-soft);
    border-radius: 2px;
    color: var(--gold-light);
    background:
      linear-gradient(90deg, rgba(var(--gold-rgb), 0.07), rgba(var(--gold-rgb), 0.018)),
      rgba(var(--ink-rgb), 0.14);
    box-shadow: 0 18px 60px rgba(var(--ink-rgb), 0.16);
    font-family: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(2rem, 9vw, 4.2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 0.95;
    text-transform: none;
    opacity: 0;
    transform: translateY(18px);
    transition: color 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease), transform 420ms var(--ease), opacity 360ms var(--ease);
  }

  .nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav.is-open a:nth-child(1) {
    transition-delay: 60ms;
  }

  .nav.is-open a:nth-child(2) {
    transition-delay: 105ms;
  }

  .nav.is-open a:nth-child(3) {
    transition-delay: 150ms;
  }

  .nav.is-open a:nth-child(4) {
    transition-delay: 195ms;
  }

  .nav.is-open a:nth-child(5) {
    transition-delay: 240ms;
  }

  .nav a::before {
    position: absolute;
    left: clamp(18px, 5vw, 28px);
    color: var(--muted);
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    transform: translateY(0.12em);
  }

  .nav a:nth-child(1)::before {
    content: "01";
  }

  .nav a:nth-child(2)::before {
    content: "02";
  }

  .nav a:nth-child(3)::before {
    content: "03";
  }

  .nav a:nth-child(4)::before {
    content: "04";
  }

  .nav a:nth-child(5)::before {
    content: "05";
  }

  .nav a::after {
    position: static;
    width: auto;
    height: auto;
    margin-left: 18px;
    color: var(--muted);
    background: transparent;
    content: ">";
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0;
    transform: none;
    transition: transform 260ms var(--ease), color 260ms var(--ease);
  }

  .nav a:hover,
  .nav a:focus-visible,
  .nav a[aria-current="page"] {
    border-color: rgba(var(--accent-rgb), 0.34);
    color: var(--gold-light);
    background:
      linear-gradient(90deg, rgba(var(--accent-rgb), 0.16), rgba(var(--gold-rgb), 0.03)),
      rgba(var(--ink-rgb), 0.2);
    transform: translateX(4px) translateY(0);
  }

  .nav a:hover::before,
  .nav a:focus-visible::before,
  .nav a[aria-current="page"]::before,
  .nav a:hover::after,
  .nav a:focus-visible::after,
  .nav a[aria-current="page"]::after {
    color: var(--gold-light);
    transform: translateX(4px);
  }

  body.menu-open .site-header {
    background: transparent;
    backdrop-filter: none;
  }

  .hero,
  .page-hero,
  .section-title,
  .why-work,
  .split-panel,
  .instagram-panel,
  .about,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-lead {
    grid-column: auto;
    margin: -12px 0 0;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 220px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .card-a {
    top: 5%;
    right: 4%;
  }

  .card-b {
    bottom: 0;
    left: 0;
  }

  .about-heading {
    position: static;
  }

  .project-card:nth-child(even) {
    transform: none;
  }

  .page-motion {
    justify-self: start;
    width: min(520px, 100%);
    height: 210px;
  }

  .process-card-featured {
    grid-template-columns: 1fr;
    min-height: 300px;
  }

  .process-list .process-card {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 260px;
  }

  .process-list .process-card:nth-child(even),
  .process-list .process-card:nth-child(odd) {
    margin-right: 0;
    margin-left: 0;
  }

  .process-sticky {
    justify-content: flex-start;
    padding-top: 88px;
  }

  .process-horizontal-head {
    display: block;
  }

  .process-horizontal-head p:not(.kicker) {
    margin-top: 0;
  }

  .delivery-tags {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  main,
  section,
  .section,
  .page-main,
  .hero,
  .home-intro,
  .instagram-section,
  .contact,
  .contact-options,
  .portfolio {
    overflow-x: hidden;
  }

  .brand strong {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  h2 {
    font-size: clamp(3.25rem, 14vw, 5rem);
  }

  .page-hero h1 {
    font-size: clamp(3.45rem, 14.6vw, 5.25rem);
    line-height: 0.94;
    text-wrap: balance;
  }

  .instagram-handle {
    width: 100%;
    font-size: clamp(1.18rem, 5.9vw, 1.82rem);
    letter-spacing: -0.035em;
  }

  .instagram-panel {
    padding: 24px 18px;
  }

  .split-panel,
  .contact-panel {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    overflow: hidden;
  }

  .split-panel > *,
  .contact-panel > *,
  .contact-links,
  .contact-links .button,
  .tag-list,
  .tag-list li {
    min-width: 0;
    max-width: 100%;
  }

  .tools-section .split-panel h2 {
    font-size: clamp(2.7rem, 11.2vw, 4.1rem);
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .home-cta .contact-panel h2,
  .page-cta .contact-panel h2 {
    font-size: clamp(2.55rem, 11vw, 4.05rem);
    text-wrap: balance;
  }

  .instagram-panel h2 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9.2vw, 3.28rem);
    line-height: 1.02;
    text-wrap: balance;
    overflow-wrap: normal;
  }

  .instagram-actions {
    max-width: 100%;
  }

  .instagram-actions .button {
    width: 100%;
    white-space: normal;
  }

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

  .page-motion {
    height: 176px;
  }

  .motion-card {
    width: 128px;
  }

  .motion-card-right {
    right: 0;
  }

  .motion-card-left {
    left: 0;
  }

  .about-motion {
    height: 104px;
  }

  .contact-motion {
    height: 112px;
  }

  .page-contact {
    min-height: auto;
    padding-top: 118px;
  }

  .page-contact .contact-panel {
    width: 100%;
    padding: 22px;
    overflow: hidden;
  }

  .page-contact .contact-panel > *,
  .page-contact .contact-links,
  .page-contact .contact-links a,
  .instagram-panel > *,
  .instagram-actions,
  .instagram-tags,
  .contact-options .split-panel > *,
  .contact-options .option-list,
  .contact-options .option-list a {
    min-width: 0;
  }

  .page-contact h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(1.82rem, 8.4vw, 3rem);
    line-height: 1.04;
    text-wrap: balance;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .page-contact .contact-panel p {
    margin-bottom: 28px;
    overflow-wrap: anywhere;
  }

  .page-contact .contact-links {
    gap: 16px;
  }

  .page-contact .contact-links a:not(.button) {
    font-size: clamp(0.95rem, 4.8vw, 1.12rem);
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page-contact .button {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }

  .page-contact .contact-motion {
    width: 100%;
    max-width: 300px;
    margin-top: 4px;
    transform: scale(0.92);
    transform-origin: left center;
  }

  .home-cta .button,
  .page-cta .button,
  .contact-panel .button {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }

  .contact-options .split-panel {
    padding: 24px;
    overflow: hidden;
  }

  .contact-options .split-panel h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
    overflow-wrap: anywhere;
  }

  .contact-options .option-list strong {
    font-size: clamp(0.98rem, 4.5vw, 1.15rem);
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .policy-copy a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .process-card-featured {
    min-height: auto;
  }

  .process-list {
    gap: 12px;
  }

  .process-list .process-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .process-list .process-card::after {
    right: 20px;
    bottom: 18px;
    width: 42%;
    opacity: 0.45;
  }

  .process-list .delivery-tags {
    justify-self: start;
    max-width: 100%;
  }

  .process-horizontal {
    min-height: auto !important;
    overflow: hidden;
  }

  .process-sticky {
    position: relative;
    justify-content: flex-start;
    gap: 22px;
    min-height: auto;
    max-height: none;
    padding: 82px 0 54px;
    overflow: visible;
  }

  .process-horizontal-head {
    width: min(100% - 36px, 1540px);
    margin-bottom: 0;
  }

  .process-horizontal-head h2 {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(1.95rem, 7.4vw, 2.72rem);
    line-height: 0.96;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
  }

  .process-section .process-horizontal-head h2,
  .brief-horizontal .process-horizontal-head h2 {
    width: 100%;
    font-size: clamp(1.95rem, 7.4vw, 2.72rem);
    line-height: 0.96;
  }

  .process-horizontal-head h2 br {
    display: block;
  }

  .process-horizontal-head p:not(.kicker) {
    margin-top: 0;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .process-horizontal-track {
    display: grid;
    width: auto;
    gap: 14px;
    padding-right: 20px;
    padding-left: 20px;
    transform: none !important;
  }

  .values-horizontal .process-horizontal-track {
    padding-right: 20px;
  }

  .brief-horizontal .process-horizontal-track {
    padding-right: 20px;
  }

  .home-horizontal .process-horizontal-track {
    padding-right: 20px;
  }

  .process-h-card {
    width: 100%;
    flex-basis: 65vw;
    min-width: 240px;
    max-width: 100%;
    min-height: clamp(250px, 38svh, 300px);
    padding: 22px;
    transform: none !important;
    opacity: 1 !important;
  }

  .process-h-card span,
  .process-h-card h3,
  .process-h-card p,
  .process-horizontal-head {
    transform: none !important;
  }

  .process-h-card span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 0.78rem;
  }

  .process-h-card h3 {
    margin-top: 24px;
    font-size: clamp(1.45rem, 6.4vw, 2rem);
  }

  .home-horizontal .process-h-card h3,
  .brief-horizontal .process-h-card h3 {
    font-size: clamp(1.45rem, 6.4vw, 2rem);
  }

  .process-h-card p {
    margin-top: 12px;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .process-card-featured::after {
    opacity: 0.55;
  }

  .portfolio-grid,
  .home-cards,
  .process-grid,
  .values-grid,
  .brief-grid,
  .tag-list,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .project-card-inner {
    grid-template-rows: auto 138px;
  }

  .archive-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-stats {
    gap: 12px;
    bottom: 28px;
  }

  .hero-stats div {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    padding-top: 12px;
  }

  .scroll-link {
    display: none;
  }

  .orbital-card {
    width: 150px;
    padding: 16px;
  }

  .web-symbol,
  .graphic-symbol {
    min-height: 92px;
  }

  .graphic-symbol i {
    min-height: 34px;
  }

  .card-a {
    right: 0;
  }

  .monogram {
    width: 260px;
  }

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

  .contact-panel {
    padding: 24px;
  }

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

  .cookie-consent {
    inset: 0;
    padding: 12px;
  }

  .cookie-banner,
  .cookie-preferences-panel {
    width: 100%;
    max-height: calc(100svh - 24px);
    overflow: auto;
    padding: 24px;
  }

  .cookie-banner h2,
  .cookie-preferences-panel h2 {
    padding-right: 42px;
    font-size: clamp(1.7rem, 10vw, 2.6rem);
  }

  .cookie-actions {
    display: grid;
  }

  .cookie-actions .button {
    width: 100%;
  }

  .cookie-option {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-status,
  .cookie-switch,
  .cookie-toggle-state {
    justify-self: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-horizontal {
    min-height: auto;
    overflow: hidden;
  }

  .process-sticky {
    position: relative;
    min-height: auto;
  }

  .process-horizontal-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .process-horizontal-track,
  .process-h-card,
  .process-h-card span,
  .process-h-card h3,
  .process-h-card p,
  .process-horizontal-head {
    transform: none !important;
  }

  .process-h-card {
    opacity: 1 !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .touch-feedback {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    -webkit-tap-highlight-color: transparent;
    transition: transform 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
  }

  .touch-feedback.is-tapped {
    border-color: rgba(var(--accent-rgb), 0.42);
    box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.12);
    transform: scale(0.98) !important;
  }

  .tap-ripple {
    position: absolute;
    z-index: -1;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(var(--accent-rgb), 0.22);
    box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.12);
    transform: translate(-50%, -50%) scale(0);
    animation: tapRipple 520ms var(--ease) forwards;
  }

  @keyframes tapRipple {
    0% {
      opacity: 0.34;
      transform: translate(-50%, -50%) scale(0);
    }

    100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(18);
    }
  }
}

@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;
  }
}
