:root {
  --bg: #151515;
  --bg-deep: #0d0e0e;
  --panel: rgba(232, 229, 222, 0.08);
  --text: #eeece6;
  --muted: #b9b5ab;
  --soft: #d8d4ca;
  --line: rgba(238, 236, 230, 0.16);
  --accent: #9bd5ca;
  --accent-strong: #c8eee5;
  --section-wash: 238 236 230;
  --mobile-gutter: 22px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg-deep);
  overflow-y: auto;
  overflow-x: clip;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}

main {
  display: block;
  position: relative;
  z-index: 1;
}

.section-theme-wash {
  display: none;
}

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

.card-media-link,
.card-title-link,
.service-title-link {
  color: inherit;
  text-decoration: none;
}

.card-media-link {
  display: block;
}

.card-title-link,
.service-title-link {
  outline-offset: 5px;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  padding: 12px 10px 12px 16px;
  border: 1px solid rgba(238, 236, 230, 0.18);
  border-radius: 12px;
  color: var(--soft);
  background: rgba(18, 18, 18, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(1.16);
  -webkit-backdrop-filter: blur(22px) saturate(1.16);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-links,
.nav-cta {
  min-height: 44px;
  border: 1px solid var(--line);
  background: rgba(18, 18, 18, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 160ms ease;
}

.nav-panel {
  display: contents;
}

.nav-toggle {
  display: none;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 24px;
  max-width: 113px;
  transition: filter 180ms ease, opacity 180ms ease;
}

.brand-logo-mark {
  display: none;
}

.site-header.is-on-light .brand-logo {
  filter: none;
}

.site-header.is-on-light {
  color: var(--soft);
  border-color: rgba(238, 236, 230, 0.18);
  background: rgba(18, 18, 18, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 54px rgba(0, 0, 0, 0.24);
}

.site-header.is-on-light .nav-links {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(238, 236, 230, 0.1);
}

.site-header.is-on-light .nav-links a {
  color: var(--muted);
}

.site-header.is-on-light .nav-links a[aria-current="page"],
.articles-page .nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(238, 236, 230, 0.1);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(238, 236, 230, 0.1);
}

.site-header.is-on-light .nav-links a:hover,
.site-header.is-on-light .nav-links a:focus-visible {
  color: var(--text);
  background: rgba(238, 236, 230, 0.1);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  border: 1px solid rgba(238, 236, 230, 0.22);
  color: var(--text);
  background: rgba(238, 236, 230, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.site-header.is-on-light .nav-cta {
  color: var(--text);
  border-color: rgba(238, 236, 230, 0.22);
  background: rgba(238, 236, 230, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 36px rgba(0, 0, 0, 0.18);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(238, 236, 230, 0.4);
  background: rgba(238, 236, 230, 0.16);
}

.site-header.is-on-light .nav-cta:hover,
.site-header.is-on-light .nav-cta:focus-visible {
  color: var(--text);
  border-color: rgba(238, 236, 230, 0.4);
  background: rgba(238, 236, 230, 0.16);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 112px max(24px, calc((100vw - 1180px) / 2)) 30px;
  background: #151515;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 14, 14, 0.82) 0%, rgba(21, 21, 21, 0.58) 38%, rgba(21, 21, 21, 0.12) 72%, rgba(13, 14, 14, 0.28) 100%),
    radial-gradient(circle at 30% 35%, rgba(155, 213, 202, 0.14), transparent 36%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  opacity: 0.88;
  filter: blur(5px);
  transform: scale(1.18);
  transform-origin: 74% center;
}

.hero-content {
  width: min(780px, 100%);
  padding-top: 0;
  text-align: center;
}

h1 {
  --headline-size: clamp(3.9rem, 9.1vw, 8.125rem);
  max-width: 13ch;
  margin: 0 auto;
  color: var(--text);
  font-size: var(--headline-size);
  line-height: 0.94;
  letter-spacing: 0;
}

.break-headline {
  cursor: default;
}

.break-headline > span {
  display: inline-block;
  font-size: 0;
}

.break-headline .word {
  display: inline-block;
  font-size: var(--headline-size);
  white-space: nowrap;
}

.break-headline .word + .word {
  margin-left: 0.28em;
}

.break-headline .char {
  display: inline-block;
  font-size: 1em;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transform-origin: center;
  transition:
    transform 520ms cubic-bezier(0.2, 0.8, 0.18, 1),
    color 520ms ease,
    text-shadow 520ms ease;
  will-change: transform;
}

.break-headline:hover .char,
.break-headline:focus-visible .char {
  color: #f5f2ea;
  text-shadow: 0 0 18px rgba(155, 213, 202, 0.24);
  transform: translate3d(var(--x), var(--y), 0) rotate(var(--r));
}

.hero-copy {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--bg-deep);
  background: var(--text);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #d8d4ca;
}

.button.secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(238, 236, 230, 0.06);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(238, 236, 230, 0.32);
  background: rgba(238, 236, 230, 0.1);
}

.about-section {
  color: #171717;
  background: #eeece6;
  padding: 88px max(24px, calc((100vw - 1180px) / 2)) 104px;
  scroll-margin-top: 0;
}

.about-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 26px;
  color: #5d5a54;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(42px, 8vw, 116px);
  align-items: start;
}

.about-grid h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(2.15rem, 4.4vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.about-grid h2::after {
  content: "|";
  display: inline-block;
  margin-left: 0.08em;
  color: #111111;
  font-weight: 400;
  animation: about-cursor-blink 850ms steps(1, end) infinite;
}

@keyframes about-cursor-blink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

.about-copy {
  display: grid;
  gap: 24px;
  padding-top: 8px;
}

.about-copy p {
  margin: 0;
  color: #3e3b36;
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}

.about-copy .reveal-copy {
  filter: blur(4px);
  transform: translateY(10px);
  transition:
    opacity 360ms ease,
    filter 360ms ease,
    transform 360ms cubic-bezier(0.2, 0.8, 0.18, 1);
}

.about-copy .reveal-copy:nth-child(2) {
  transition-delay: 70ms;
}

.about-copy .reveal-copy:nth-child(3) {
  transition-delay: 140ms;
}

.ethos-section {
  position: relative;
  color: var(--text);
  background: #111111;
  padding: 104px max(24px, calc((100vw - 1180px) / 2)) 110px;
}

.ethos-inner {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.ethos-section .section-kicker {
  color: #b9b5ab;
}

.ethos-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(42px, 8vw, 116px);
  align-items: start;
}

.ethos-grid h2 {
  position: relative;
  margin: 0;
  padding: clamp(34px, 5vw, 58px) 0 0 clamp(24px, 4vw, 54px);
  color: var(--text);
  font-size: clamp(2rem, 3.7vw, 3.65rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.ethos-grid h2::before {
  content: "“";
  position: absolute;
  top: -0.12em;
  left: 0;
  color: rgba(238, 236, 230, 0.18);
  font-size: clamp(4.2rem, 9vw, 8rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.ethos-grid h2::after {
  content: "";
  position: absolute;
  left: clamp(24px, 4vw, 54px);
  bottom: -22px;
  width: clamp(70px, 11vw, 142px);
  height: 1px;
  background: rgba(238, 236, 230, 0.36);
}

.ethos-copy {
  display: grid;
  gap: 24px;
  padding-top: 8px;
}

.ethos-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.services-section {
  color: var(--text);
  background: #111111;
  padding: 84px max(24px, calc((100vw - 1180px) / 2)) 54px;
}

.services-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.services-section .section-kicker {
  color: #b9b5ab;
}

.services-grid {
  display: flex;
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 118px;
  flex: 0 0 min(46%, 520px);
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.services-intro h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.1rem, 4.1vw, 3.95rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.services-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

.services-list {
  display: grid;
  flex: 1 1 0;
  min-width: 360px;
  align-self: start;
  border-top: 1px solid rgba(238, 236, 230, 0.18);
}

.service-item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(238, 236, 230, 0.18);
}

.service-item h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.service-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.service-card-link {
  display: none;
}

.works-section {
  color: var(--text);
  background: #111111;
  padding: 58px max(24px, calc((100vw - 1180px) / 2)) 58px;
}

.works-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.works-section .section-kicker {
  margin-bottom: 8px;
  color: var(--muted);
}

.works-heading {
  display: block;
  max-width: 760px;
  margin-bottom: 22px;
}

.works-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.95rem, 3.35vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.works-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(238, 236, 230, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(238, 236, 230, 0.12), rgba(238, 236, 230, 0.045));
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(238, 236, 230, 0.18);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.work-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: -35% -65%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(238, 236, 230, 0.18) 48%, rgba(255, 255, 255, 0.34) 50%, rgba(238, 236, 230, 0.14) 53%, transparent 66%);
  opacity: 0;
  transform: translateX(-48%) rotate(8deg);
  transition:
    opacity 180ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.18, 1);
}

.work-card:hover::before,
.work-card:focus-within::before {
  opacity: 1;
  transform: translateX(48%) rotate(8deg);
}

.work-image {
  position: relative;
  z-index: 0;
  display: block;
  width: calc(100% - 16px);
  margin: 8px 8px 0;
  border: 1px solid rgba(238, 236, 230, 0.14);
  border-radius: 6px;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  background: rgba(238, 236, 230, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.work-card-content {
  position: relative;
  z-index: 2;
  min-height: 230px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.work-meta {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.05;
}

.work-card p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.works-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.testimonials-section {
  color: var(--text);
  background: #111111;
  padding: 26px max(24px, calc((100vw - 1180px) / 2)) 62px;
}

.testimonials-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
  align-items: start;
}

.testimonials-heading {
  max-width: 820px;
}

.testimonials-heading .section-kicker {
  margin-bottom: 8px;
  color: var(--muted);
}

.testimonials-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
}

.testimonial-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.testimonial-card {
  flex: 0 0 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(238, 236, 230, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(238, 236, 230, 0.13), rgba(238, 236, 230, 0.045)),
    rgba(238, 236, 230, 0.04);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(238, 236, 230, 0.12);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  scroll-snap-align: start;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text);
  width: min(100%, 860px);
  max-width: none;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
}

.testimonial-carousel {
  min-width: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}

.testimonial-controls button {
  min-height: 40px;
  border: 1px solid rgba(238, 236, 230, 0.18);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--soft);
  background: rgba(238, 236, 230, 0.06);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  color: var(--text);
  border-color: rgba(238, 236, 230, 0.34);
  background: rgba(238, 236, 230, 0.11);
  transform: translateY(-1px);
}

.testimonial-controls button:disabled {
  opacity: 0.36;
  cursor: default;
  transform: none;
}

.testimonial-card div {
  width: min(100%, 860px);
  display: grid;
  justify-items: center;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(238, 236, 230, 0.14);
  text-align: center;
}

.testimonial-card strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.notes-section {
  position: relative;
  isolation: isolate;
  color: #141414;
  background: #eeece6;
  padding: 92px max(24px, calc((100vw - 1180px) / 2)) 86px;
}

.notes-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.notes-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.notes-heading h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.95rem, 3.35vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.note-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.1);
}

.note-image {
  display: block;
  width: calc(100% - 16px);
  margin: 8px 8px 0;
  border-radius: 6px;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  background: #151515;
}

.note-content {
  display: flex;
  min-height: 230px;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.note-meta {
  margin: 0 0 10px;
  color: #5d5a54;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note-card h3 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.05;
}

.note-content p:not(.note-meta) {
  margin: 10px 0 0;
  color: #3e3b36;
  font-size: 0.94rem;
  line-height: 1.45;
}

.note-content a {
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: #111111;
  font-size: 0.88rem;
  font-weight: 800;
}

.note-content a::after {
  content: "->";
  margin-left: 8px;
  transition: transform 160ms ease;
}

.note-content a:hover::after,
.note-content a:focus-visible::after {
  transform: translateX(4px);
}

.notes-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.notes-actions .button.primary {
  color: var(--text);
  background: #111111;
}

.notes-actions .button.primary:hover,
.notes-actions .button.primary:focus-visible {
  background: #2a2926;
}

.contact-section {
  position: relative;
  isolation: isolate;
  min-height: 92svh;
  overflow: hidden;
  padding: 112px 0 0;
  color: var(--text);
  background: #0d0e0e;
}

.contact-particles,
.contact-noise {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-particles {
  opacity: 0.82;
  filter: contrast(1.15) brightness(0.9);
}

.contact-noise {
  z-index: -2;
  background:
    radial-gradient(circle at 18% 22%, rgba(238, 236, 230, 0.12), transparent 26%),
    radial-gradient(circle at 76% 68%, rgba(238, 236, 230, 0.08), transparent 30%),
    linear-gradient(120deg, rgba(13, 14, 14, 0.5), rgba(17, 17, 17, 0.22));
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(13, 14, 14, 0.78), rgba(13, 14, 14, 0.42) 44%, rgba(13, 14, 14, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(238, 236, 230, 0.1), transparent 38%);
  pointer-events: none;
}

.contact-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.contact-copy {
  max-width: 720px;
}

.contact-copy .section-kicker {
  color: var(--muted);
}

.contact-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.35rem, 4.25vw, 4.1rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.contact-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-details a,
.contact-details > span {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.contact-details svg {
  width: 20px;
  height: 20px;
  margin-top: 0.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.72;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(238, 236, 230, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(238, 236, 230, 0.14), rgba(238, 236, 230, 0.055));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(238, 236, 230, 0.18);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(238, 236, 230, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(13, 14, 14, 0.52);
  font: inherit;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(238, 236, 230, 0.48);
}

.contact-form button {
  width: 100%;
  margin-top: 4px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form-status {
  min-height: 1.5em;
  margin: 4px 2px 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.contact-form-status:empty {
  display: none;
}

.contact-form-status.is-success {
  color: #d9eadb;
}

.contact-form-status.is-error {
  color: #f0c8c8;
}

.contact-form-status a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-footer {
  display: grid;
  grid-template-columns:
    minmax(180px, 1fr)
    minmax(90px, 0.45fr)
    minmax(170px, 0.8fr)
    minmax(250px, 1.15fr)
    auto;
  gap: 28px;
  width: 100%;
  margin-top: 72px;
  padding: 42px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(238, 236, 230, 0.2);
  border-bottom: 1px solid rgba(238, 236, 230, 0.12);
  color: var(--text);
  background: rgba(238, 236, 230, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(238, 236, 230, 0.16),
    0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.contact-footer-brand img {
  display: block;
  width: 88px;
  height: auto;
  filter: brightness(0) invert(1);
}

.contact-footer-brand p {
  max-width: 280px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.contact-footer-nav,
.contact-footer-details,
.contact-footer-social {
  display: grid;
  align-content: start;
  gap: 10px;
  color: inherit;
  font-style: normal;
}

.contact-footer-social nav {
  display: flex;
  gap: 8px;
}

.contact-footer-nav {
  justify-items: start;
}

.contact-footer-nav a {
  font-size: 0.78rem;
  line-height: 1.35;
}

.contact-footer strong {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-footer a {
  width: fit-content;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 500;
}

.contact-footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(238, 236, 230, 0.18);
  border-radius: 6px;
  color: var(--soft);
  background: rgba(238, 236, 230, 0.055);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.contact-footer-social a:hover,
.contact-footer-social a:focus-visible {
  color: var(--text);
  border-color: rgba(238, 236, 230, 0.42);
  background: rgba(238, 236, 230, 0.11);
  text-decoration: none;
  transform: translateY(-2px);
}

.contact-footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-footer-social a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.contact-social-dot {
  fill: currentColor;
  stroke: none;
}

.contact-footer a:hover,
.contact-footer a:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-footer-details p {
  max-width: 390px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.site-footer {
  color: #4d4a45;
  background: #eeece6;
  padding: 58px max(24px, calc((100vw - 1180px) / 2)) 30px;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(260px, 0.9fr) auto;
  gap: 42px;
  align-items: start;
}

.footer-brand img {
  display: block;
  width: 116px;
  height: auto;
  filter: none !important;
  mix-blend-mode: difference;
}

.footer-intro > p {
  max-width: 290px;
  margin-top: 22px;
  color: #5d5a54;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: #3f3c37;
  font-size: 0.82rem;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #111111;
}

.footer-contact {
  display: grid;
  gap: 10px;
  color: inherit;
  font-style: normal;
}

.footer-contact > strong,
.footer-social-block > strong {
  margin-bottom: 4px;
  color: #111111;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact p {
  max-width: 360px;
  color: #5d5a54;
  line-height: 1.6;
}

.footer-socials {
  display: grid;
  gap: 8px;
}

.footer-socials a {
  width: 128px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 6px;
  color: #3f3c37;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.32);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: #111111;
  border-color: rgba(17, 17, 17, 0.34);
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 17px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials span {
  font-size: 0.74rem;
  font-weight: 700;
}

.footer-socials a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.footer-social-dot {
  fill: currentColor;
  stroke: none;
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-copyright {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  color: #777269;
}

.site-footer.global-site-footer {
  width: 100%;
  padding: 0;
  border-top: 1px solid rgba(238, 236, 230, 0.2);
  border-bottom: 1px solid rgba(238, 236, 230, 0.1);
  color: var(--text);
  background: rgba(28, 28, 28, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(238, 236, 230, 0.1),
    0 -24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
}

.global-footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(180px, 1fr)
    minmax(90px, 0.45fr)
    minmax(100px, 0.5fr)
    minmax(170px, 0.8fr)
    minmax(250px, 1.15fr)
    auto;
  gap: 28px;
  padding: 42px 0 28px;
}

.global-footer-brand img {
  display: block;
  width: clamp(148px, 14vw, 190px);
  height: auto;
  max-height: 104px;
  filter: brightness(0) invert(1);
}

.global-footer-brand p {
  max-width: 280px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.global-footer-nav,
.global-footer-contact,
.global-footer-social {
  display: grid;
  align-content: start;
  gap: 10px;
  color: inherit;
  font-style: normal;
}

.global-footer-nav {
  justify-items: start;
}

.global-footer-inner strong {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.global-footer-inner a {
  width: fit-content;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.global-footer-inner a:hover,
.global-footer-inner a:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.global-footer-contact p {
  max-width: 390px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.global-footer-social nav {
  display: flex;
  gap: 8px;
}

.global-footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(238, 236, 230, 0.18);
  border-radius: 6px;
  color: var(--soft);
  background: rgba(238, 236, 230, 0.055);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.global-footer-social a:hover,
.global-footer-social a:focus-visible {
  color: var(--text);
  border-color: rgba(238, 236, 230, 0.42);
  background: rgba(238, 236, 230, 0.11);
  text-decoration: none;
  transform: translateY(-2px);
}

.global-footer-social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.global-footer-social a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.global-footer-social-dot {
  fill: currentColor;
  stroke: none;
}

.global-footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(238, 236, 230, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.global-footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.global-footer-bottom nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.global-footer-bottom a {
  font-size: 0.76rem;
}

.contact-section > .global-site-footer {
  margin-top: 72px;
}

.about-page {
  background: #0d0e0e;
}

.about-page-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: contrast(1.1) brightness(0.82);
  pointer-events: none;
}

.about-page main,
.about-page .site-footer {
  position: relative;
  z-index: 1;
}

.about-simple {
  background:
    linear-gradient(180deg, rgba(13, 14, 14, 0.72), rgba(13, 14, 14, 0.52) 48%, rgba(13, 14, 14, 0.76)),
    radial-gradient(circle at 78% 14%, rgba(238, 236, 230, 0.08), transparent 32%),
    radial-gradient(circle at 10% 74%, rgba(238, 236, 230, 0.055), transparent 30%);
}

.about-simple-section {
  min-height: 100svh;
  padding: 150px max(24px, calc((100vw - 1020px) / 2)) 86px;
}

.about-simple-inner {
  width: min(1020px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.about-simple-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(238, 236, 230, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(238, 236, 230, 0.105), rgba(238, 236, 230, 0.038));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(238, 236, 230, 0.12);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.about-simple-card .section-kicker {
  grid-column: 1;
  margin: 0;
  color: var(--muted);
}

.about-simple-card h1,
.about-simple-card h2 {
  grid-column: 1;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-simple-copy {
  grid-column: 2;
  display: grid;
  gap: 18px;
  padding-left: clamp(20px, 3vw, 42px);
  border-left: 1px solid rgba(238, 236, 230, 0.16);
}

.about-simple-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.76;
}

.founder-simple {
  background: linear-gradient(145deg, rgba(238, 236, 230, 0.13), rgba(238, 236, 230, 0.05));
}

.founder-simple .founder-signature {
  margin-top: 10px;
  color: var(--text) !important;
  font-size: 0.96rem;
  font-weight: 800;
}

.founder-signature-image {
  display: block;
  width: min(145px, 44vw);
  height: auto;
  margin-top: 8px;
  filter: brightness(0) invert(1);
  opacity: 0.84;
}

.legal-page {
  background: #0d0e0e;
}

.legal-page main,
.legal-page .site-footer {
  position: relative;
  z-index: 1;
}

.legal-main {
  min-height: 100svh;
  padding: 150px max(24px, calc((100vw - 980px) / 2)) 92px;
  background:
    linear-gradient(180deg, rgba(13, 14, 14, 0.76), rgba(13, 14, 14, 0.58) 48%, rgba(13, 14, 14, 0.82)),
    radial-gradient(circle at 84% 8%, rgba(238, 236, 230, 0.08), transparent 32%),
    radial-gradient(circle at 8% 58%, rgba(238, 236, 230, 0.055), transparent 30%);
}

.legal-hero {
  width: min(900px, 100%);
  margin: 0 auto 24px;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-updated {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(238, 236, 230, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(238, 236, 230, 0.105), rgba(238, 236, 230, 0.04));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(238, 236, 230, 0.12);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.legal-content section + section {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(238, 236, 230, 0.12);
}

.legal-content h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}

.legal-content p {
  margin: 0;
}

.legal-content p + p,
.legal-content ul + p {
  margin-top: 14px;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 7px;
}

.legal-content a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.work-page {
  background: #0d0e0e;
}

.work-page main,
.work-page .site-footer {
  position: relative;
  z-index: 1;
}

.work-main {
  background: #0d0e0e;
}

.work-page-hero {
  padding: 160px max(24px, calc((100vw - 1080px) / 2)) 54px;
}

.work-page-hero-inner {
  width: min(860px, 100%);
}

.work-page-hero .section-kicker {
  color: var(--muted);
}

.work-page-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.work-page-hero p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.work-overview {
  padding: 32px max(24px, calc((100vw - 1180px) / 2)) 92px;
}

.work-filter {
  width: min(1180px, 100%);
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(238, 236, 230, 0.14);
  border-radius: 999px;
  background: rgba(238, 236, 230, 0.055);
  box-shadow: inset 0 1px 0 rgba(238, 236, 230, 0.12);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.work-filter-button {
  min-height: 42px;
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(238, 236, 230, 0.72);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.work-filter-button:hover,
.work-filter-button:focus-visible {
  color: var(--text);
  border-color: rgba(238, 236, 230, 0.26);
  background: rgba(238, 236, 230, 0.1);
  transform: translateY(-1px);
}

.work-filter-button.is-active {
  color: #101111;
  border-color: rgba(238, 236, 230, 0.42);
  background: var(--text);
}

.work-overview-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(238, 236, 230, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(238, 236, 230, 0.12), rgba(238, 236, 230, 0.045));
  box-shadow:
    0 22px 66px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(238, 236, 230, 0.16);
  backdrop-filter: blur(22px) saturate(1.16);
  -webkit-backdrop-filter: blur(22px) saturate(1.16);
}

.portfolio-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.portfolio-card[hidden] {
  display: none;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: -35% -65%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(238, 236, 230, 0.16) 48%, rgba(255, 255, 255, 0.3) 50%, rgba(238, 236, 230, 0.12) 53%, transparent 66%);
  opacity: 0;
  transform: translateX(-48%) rotate(8deg);
  transition:
    opacity 180ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.18, 1);
}

.portfolio-card:hover::before,
.portfolio-card:focus-within::before {
  opacity: 1;
  transform: translateX(48%) rotate(8deg);
}

.portfolio-card img {
  display: block;
  width: calc(100% - 18px);
  margin: 9px 9px 0;
  border: 1px solid rgba(238, 236, 230, 0.14);
  border-radius: 6px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(238, 236, 230, 0.06);
}

.portfolio-card-content {
  position: relative;
  z-index: 2;
  padding: 18px;
}

.portfolio-card-content p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-card-content h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.04;
}

.portfolio-card-content span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.portfolio-card-content strong {
  display: block;
  width: fit-content;
  margin-top: 20px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.articles-page {
  color: #141414;
  background: #eeece6;
}

.articles-page main,
.articles-page .site-footer {
  position: relative;
  z-index: 1;
}

.articles-page .site-header {
  color: #111111;
}

.articles-page .brand-logo,
.articles-page .footer-brand img {
  filter: brightness(0);
}

.articles-page .nav-links {
  border-color: transparent;
  background: transparent;
}

.articles-page .nav-links a {
  color: rgba(17, 17, 17, 0.72);
}

.articles-page .nav-links a:hover,
.articles-page .nav-links a:focus-visible {
  color: #111111;
  background: rgba(17, 17, 17, 0.07);
}

.articles-page .nav-cta {
  color: #111111;
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(238, 236, 230, 0.66);
}

.articles-main {
  background:
    radial-gradient(circle at 82% 8%, rgba(17, 17, 17, 0.055), transparent 28%),
    #eeece6;
}

.articles-hero {
  padding: 164px max(24px, calc((100vw - 1080px) / 2)) 70px;
}

.articles-hero-inner {
  width: min(900px, 100%);
}

.articles-hero .section-kicker {
  color: #5d5a54;
}

.articles-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #111111;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.articles-hero p:last-child {
  max-width: 660px;
  margin: 28px 0 0;
  color: #4d4a45;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
}

.articles-featured,
.articles-index {
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}

.articles-featured {
  padding-bottom: 28px;
}

.featured-article {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  color: #111111;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.featured-article:hover,
.featured-article:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 32px 82px rgba(17, 17, 17, 0.14);
}

.featured-article-image {
  min-height: 420px;
  padding: 10px 0 10px 10px;
}

.featured-article-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 6px;
  object-fit: cover;
  background: #151515;
}

.featured-article-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}

.article-meta {
  margin: 0 0 18px;
  color: #666159;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-article h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.featured-article-content > p:not(.article-meta) {
  margin: 20px 0 0;
  color: #4d4a45;
  font-size: 1rem;
  line-height: 1.65;
}

.featured-article-content > span,
.article-card-content > span {
  width: fit-content;
  margin-top: 28px;
  color: #111111;
  font-size: 0.88rem;
  font-weight: 800;
}

.featured-article-content > span::after,
.article-card-content > span::after {
  content: "->";
  margin-left: 8px;
}

.articles-index {
  padding-top: 8px;
  padding-bottom: 96px;
}

.article-search {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.article-search label {
  color: #4d4a45;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-search-field {
  width: min(420px, 100%);
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.article-search-field:focus-within {
  border-color: rgba(17, 17, 17, 0.48);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}

.article-search-field svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: #5d5a54;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.article-search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0;
  color: #111111;
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
}

.article-search-field input::placeholder {
  color: #777269;
}

.article-empty-state {
  width: min(1180px, 100%);
  margin: 52px auto 0;
  padding: 40px 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
  color: #5d5a54;
  text-align: center;
}

.article-filter {
  width: min(1180px, 100%);
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.article-filter-button {
  min-height: 40px;
  appearance: none;
  border: 1px solid rgba(17, 17, 17, 0.13);
  border-radius: 999px;
  padding: 0 14px;
  color: #514e48;
  background: rgba(255, 255, 255, 0.18);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.article-filter-button:hover,
.article-filter-button:focus-visible {
  color: #111111;
  border-color: rgba(17, 17, 17, 0.28);
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.article-filter-button.is-active {
  color: #eeece6;
  border-color: #111111;
  background: #111111;
}

.article-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 52px rgba(17, 17, 17, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.article-card[hidden] {
  display: none;
}

.article-card:hover,
.article-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 26px 64px rgba(17, 17, 17, 0.13);
}

.article-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: #111111;
}

.article-card img {
  display: block;
  width: calc(100% - 20px);
  margin: 10px 10px 0;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #151515;
  transition: transform 420ms ease;
}

.article-card:hover img {
  transform: scale(1.015);
}

.article-card-content {
  display: flex;
  min-height: 290px;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.article-card h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.08;
}

.article-card-content > p:not(.article-meta) {
  margin: 14px 0 0;
  color: #4d4a45;
  font-size: 0.92rem;
  line-height: 1.55;
}

.article-card-content > span {
  margin-top: auto;
  padding-top: 24px;
}

.articles-cta {
  padding: 92px max(24px, calc((100vw - 1080px) / 2));
  color: var(--text);
  background: #111111;
}

.articles-cta-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.articles-cta h2 {
  max-width: 18ch;
  margin: 0 auto 28px;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.articles-page .site-footer {
  color: var(--text);
  background: #111111;
}

.articles-page .site-footer .footer-brand img {
  filter: none;
}

.article-page {
  color: #171717;
  background: #eeece6;
}

.article-page main,
.article-page .site-footer {
  position: relative;
  z-index: 1;
}

.article-page .site-header {
  color: #111111;
}

.article-page .brand-logo {
  filter: brightness(0);
}

.article-page .nav-links {
  border-color: transparent;
  background: transparent;
}

.article-page .nav-links a {
  color: #4d4a45;
}

.article-page .nav-links a:hover,
.article-page .nav-links a:focus-visible,
.article-page .nav-links a[aria-current="page"] {
  color: #111111;
  background: rgba(17, 17, 17, 0.08);
}

.article-page .nav-cta {
  color: #111111;
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(238, 236, 230, 0.66);
}

.article-hero {
  padding: 166px max(24px, calc((100vw - 1080px) / 2)) 76px;
}

.article-hero-inner {
  width: min(970px, 100%);
}

.article-back {
  display: inline-block;
  margin-bottom: 72px;
  color: #5d5a54;
  font-size: 0.82rem;
  font-weight: 800;
}

.article-hero .article-meta {
  margin-bottom: 24px;
}

.article-hero h1 {
  max-width: 13ch;
  margin: 0;
  color: #111111;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.article-standfirst {
  max-width: 760px;
  margin: 34px 0 0;
  color: #46433e;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.65;
}

.article-byline {
  display: flex;
  gap: 10px;
  margin-top: 34px;
  font-size: 0.8rem;
}

.article-byline span {
  color: #777269;
}

.article-byline strong {
  color: #111111;
}

.article-lead-image {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.article-lead-image img {
  display: block;
  width: 100%;
  max-height: 780px;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  background: #111111;
}

.article-lead-image figcaption,
.article-inline-image figcaption {
  margin-top: 9px;
  color: #777269;
  font-size: 0.7rem;
  line-height: 1.5;
}

.article-layout {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px minmax(0, 680px);
  justify-content: space-between;
  gap: clamp(60px, 10vw, 150px);
  padding: 110px 0 130px;
}

.article-sidebar {
  align-self: stretch;
}

.article-sidebar-inner {
  position: sticky;
  top: 118px;
}

.article-sidebar-inner > p,
.article-share > span {
  display: block;
  margin: 0 0 12px;
  color: #777269;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-sidebar nav {
  display: grid;
}

.article-sidebar nav a {
  padding: 11px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.13);
  color: #4d4a45;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

.article-share {
  margin-top: 44px;
}

.article-share a,
.article-share button {
  display: block;
  width: fit-content;
  border: 0;
  padding: 5px 0;
  color: #4d4a45;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.article-share a:hover,
.article-share a:focus-visible,
.article-share button:hover,
.article-share button:focus-visible {
  color: #111111;
  text-decoration: underline;
}

.article-body {
  min-width: 0;
}

.article-body > p,
.article-body section > p:not(.article-section-index) {
  margin: 0;
  color: #3f3c37;
  font-size: 1.04rem;
  line-height: 1.85;
}

.article-body section > p + p {
  margin-top: 22px;
}

.article-dropcap::first-letter {
  float: left;
  margin: 8px 11px 0 0;
  color: #111111;
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 0.72;
}

.article-body section {
  scroll-margin-top: 120px;
  margin-top: 88px;
}

.article-section-index {
  margin: 0 0 16px !important;
  color: #777269 !important;
  font-size: 0.7rem !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.article-body h2 {
  max-width: 15ch;
  margin: 0 0 28px;
  color: #111111;
  font-size: clamp(2.15rem, 4.3vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.article-richtext {
  margin-top: 82px;
}

.article-richtext h2,
.article-richtext h3 {
  scroll-margin-top: 120px;
  color: #111111;
  letter-spacing: 0;
}

.article-richtext h2 {
  max-width: 15ch;
  margin: 82px 0 28px;
  font-size: clamp(2.15rem, 4.3vw, 4rem);
  line-height: 1;
}

.article-richtext h3 {
  margin: 48px 0 20px;
  font-size: clamp(1.4rem, 2.7vw, 2.15rem);
  line-height: 1.1;
}

.article-richtext p {
  margin: 0 0 22px;
  color: #3f3c37;
  font-size: 1.04rem;
  line-height: 1.85;
}

.article-richtext blockquote {
  margin: 54px 0;
  padding: 28px 30px;
  border-left: 3px solid #111111;
  color: #111111;
  background: rgba(17, 17, 17, 0.055);
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
}

.article-richtext ul,
.article-richtext ol {
  margin: 28px 0;
  padding-left: 24px;
  color: #3f3c37;
}

.article-richtext li {
  margin: 10px 0;
  padding-left: 5px;
  line-height: 1.7;
}

.article-richtext a {
  color: #111111;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-pullquote {
  position: relative;
  width: min(850px, calc(100vw - 48px));
  margin: 96px 0 96px clamp(-150px, -10vw, -80px);
  padding: 54px;
  color: var(--text);
  background: #111111;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.04;
}

.article-pullquote::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 20px;
  color: rgba(238, 236, 230, 0.24);
  font-size: 4rem;
  line-height: 1;
}

.article-inline-image {
  width: min(920px, calc(100vw - 48px));
  margin: 90px 0 90px clamp(-100px, -7vw, -55px);
}

.article-inline-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111111;
}

.article-principles {
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  list-style: none;
}

.article-principles li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.article-principles li > span {
  color: #777269;
  font-size: 0.7rem;
  font-weight: 800;
}

.article-principles strong {
  color: #111111;
  font-size: 1.08rem;
}

.article-principles p {
  margin: 7px 0 0;
  color: #5d5a54;
  font-size: 0.9rem;
  line-height: 1.55;
}

.article-end {
  margin-top: 92px;
  padding-top: 30px;
  border-top: 2px solid #111111;
}

.article-end p {
  margin: 0;
  color: #111111;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
}

.article-end a {
  display: inline-block;
  margin-top: 22px;
  color: #111111;
  font-size: 0.86rem;
  font-weight: 800;
}

.article-related {
  padding: 100px max(24px, calc((100vw - 1080px) / 2));
  color: var(--text);
  background: #111111;
}

.article-related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.article-related-heading h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.96;
  text-align: right;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.article-related-card {
  padding: 10px 10px 24px;
  border: 1px solid rgba(238, 236, 230, 0.14);
  border-radius: 8px;
  background: rgba(238, 236, 230, 0.055);
}

.article-related-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 5px;
  background: #222323;
}

.article-related-card p {
  margin: 18px 8px 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-related-card h3 {
  max-width: 18ch;
  margin: 0 8px;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.article-page .site-footer {
  color: var(--text);
  background: #111111;
}

.faq-page {
  color: var(--text);
  background: #0d0e0e;
}

.faq-page main,
.faq-page .site-footer {
  position: relative;
  z-index: 1;
}

.faq-main {
  min-height: 100svh;
  background: #0d0e0e;
}

.faq-section {
  padding: 156px max(24px, calc((100vw - 1080px) / 2)) 96px;
}

.faq-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 126px;
}

.faq-heading .section-kicker {
  color: var(--muted);
}

.faq-heading h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.8rem, 5.7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.faq-heading > p:last-child {
  max-width: 34rem;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(238, 236, 230, 0.14);
  border-radius: 8px;
  background: rgba(238, 236, 230, 0.055);
  box-shadow: inset 0 1px 0 rgba(238, 236, 230, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.faq-item summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: var(--text);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 1.35rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

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

.faq-answer {
  padding: 0 20px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-answer p + p {
  margin-top: 14px;
}

.faq-cta {
  grid-column: 2;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(238, 236, 230, 0.16);
  border-radius: 8px;
  background: rgba(238, 236, 230, 0.07);
  box-shadow: inset 0 1px 0 rgba(238, 236, 230, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.faq-cta p {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.05;
}

.faq-cta .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.case-page {
  background: #0d0e0e;
}

.case-page main {
  position: relative;
  z-index: 1;
}

.case-page img {
  max-width: 100%;
}

.case-index {
  margin: 0 0 18px;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.62;
}

.case-hero {
  padding: 166px max(24px, calc((100vw - 1180px) / 2)) 84px;
}

.case-web-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: 44px;
  background:
    radial-gradient(circle at 80% 18%, rgba(238, 236, 230, 0.09), transparent 28%),
    #0d0e0e;
}

.case-hero-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.case-deck {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.case-hero-meta {
  align-self: end;
}

.case-hero-meta dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.case-hero-meta dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(238, 236, 230, 0.16);
}

.case-hero-meta dt,
.case-hero-meta dd {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.case-hero-meta dt {
  color: rgba(238, 236, 230, 0.48);
}

.case-hero-meta dd {
  color: var(--text);
  font-weight: 600;
}

.web-browser {
  grid-column: 1 / -1;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(238, 236, 230, 0.18);
  border-radius: 8px;
  background: rgba(238, 236, 230, 0.06);
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.38);
}

.web-browser-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(238, 236, 230, 0.12);
}

.web-browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(238, 236, 230, 0.3);
}

.web-browser-bar p {
  margin: 0 auto;
  padding-right: 42px;
  color: rgba(238, 236, 230, 0.42);
  font-size: 0.72rem;
}

.web-browser > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.3;
  object-fit: cover;
}

.case-web-story {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  justify-content: center;
  gap: clamp(42px, 8vw, 112px);
  padding: 110px 24px 120px;
  color: #151515;
  background: #eeece6;
}

.case-chapter-nav {
  position: sticky;
  top: 122px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.case-chapter-nav p {
  margin: 0 0 10px;
  color: #6c6860;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-chapter-nav a {
  padding: 9px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.13);
  color: #4d4a45;
  font-size: 0.84rem;
  font-weight: 700;
}

.case-web-chapters {
  display: grid;
  gap: 90px;
}

.case-chapter h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.case-chapter > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: #4d4a45;
  font-size: 1rem;
  line-height: 1.75;
}

.web-device-pair {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 18px;
  align-items: end;
  padding: 28px;
  border-radius: 8px;
  background: #151515;
}

.web-screen {
  overflow: hidden;
  border: 1px solid rgba(238, 236, 230, 0.18);
  border-radius: 6px;
  background: #232424;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.web-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-screen-wide {
  height: 400px;
}

.web-screen-mobile {
  height: 330px;
}

.web-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 17, 17, 0.15);
  border-left: 1px solid rgba(17, 17, 17, 0.15);
}

.web-flow-grid > div {
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid rgba(17, 17, 17, 0.15);
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
}

.web-flow-grid span {
  color: #777269;
  font-size: 0.72rem;
  font-weight: 800;
}

.web-flow-grid h3 {
  margin: 46px 0 10px;
  font-size: 1.35rem;
}

.web-flow-grid p {
  margin: 0;
  color: #5d5a54;
  line-height: 1.55;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.case-outcome h2 {
  max-width: 22ch;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.08;
}

.case-outcome-description {
  max-width: 680px;
  margin: 18px 0 0;
  color: #5d5a54;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

.case-results div {
  min-height: 0;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 0;
  border: 0;
}

.case-results strong {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
}

.case-results span {
  color: #5d5a54;
  font-size: 0.82rem;
  line-height: 1.4;
}

.case-next {
  padding: 76px max(24px, calc((100vw - 1080px) / 2));
  color: var(--text);
  background: #111111;
}

.case-next > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-next a {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(238, 236, 230, 0.18);
}

.case-next a span {
  color: var(--muted);
  font-size: 0.88rem;
}

.case-next a strong {
  font-size: clamp(1.7rem, 4vw, 3.8rem);
  line-height: 1;
}

.case-graphic {
  color: #111111;
  background: #eeece6;
}

.case-graphic .site-header {
  color: #111111;
}

.case-graphic .brand-logo {
  filter: brightness(0);
}

.case-graphic .nav-links {
  border-color: transparent;
  background: transparent;
}

.case-graphic .nav-links a {
  color: #4d4a45;
}

.case-graphic .nav-links a:hover,
.case-graphic .nav-links a:focus-visible,
.case-graphic .nav-links a[aria-current="page"] {
  color: #111111;
  background: rgba(17, 17, 17, 0.08);
}

.case-graphic .nav-cta {
  color: #111111;
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(238, 236, 230, 0.66);
}

.graphic-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(220px, 0.34fr) minmax(360px, 0.8fr);
  gap: 28px;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1280px) / 2)) 46px;
}

.graphic-hero-title h1 {
  margin: 0;
  font-size: clamp(4.8rem, 11vw, 10.5rem);
  line-height: 0.72;
  letter-spacing: 0;
  text-transform: uppercase;
}

.graphic-hero-note {
  padding-bottom: 8px;
}

.graphic-hero-note > p {
  margin: 0 0 34px;
  color: #4d4a45;
  line-height: 1.65;
}

.graphic-hero-note dl {
  margin: 0;
}

.graphic-hero-note dl div {
  padding: 10px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.graphic-hero-note dt,
.graphic-hero-note dd {
  margin: 0;
  font-size: 0.75rem;
}

.graphic-hero-note dt {
  color: #777269;
}

.graphic-hero-note dd {
  margin-top: 4px;
  font-weight: 700;
}

.graphic-hero-art {
  margin: 0;
}

.graphic-hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #111111;
}

.graphic-hero-art figcaption,
.graphic-panel figcaption {
  margin-top: 8px;
  color: #6c6860;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.graphic-manifesto {
  padding: 120px max(24px, calc((100vw - 1080px) / 2));
  color: var(--text);
  background: #111111;
}

.graphic-manifesto > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.graphic-manifesto h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.graphic-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px 16px;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
}

.graphic-panel {
  margin: 0;
}

.graphic-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111111;
}

.graphic-panel-tall {
  grid-column: 1 / 7;
}

.graphic-panel-tall img {
  aspect-ratio: 4 / 5;
}

.graphic-caption {
  grid-column: 8 / 13;
  align-self: center;
}

.graphic-caption h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.graphic-caption > p:last-child {
  max-width: 470px;
  margin: 24px 0 0;
  color: #4d4a45;
  line-height: 1.7;
}

.graphic-panel-wide {
  grid-column: 1 / 10;
}

.graphic-panel-wide img {
  aspect-ratio: 16 / 8;
}

.graphic-panel-small {
  grid-column: 10 / 13;
  align-self: end;
}

.graphic-panel-small img {
  aspect-ratio: 3 / 4;
}

.graphic-deliverables {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(40px, 9vw, 130px);
  padding: 100px max(24px, calc((100vw - 1080px) / 2));
  border-top: 1px solid rgba(17, 17, 17, 0.16);
}

.graphic-deliverables h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  line-height: 0.98;
}

.graphic-deliverables ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.graphic-deliverables li {
  display: flex;
  gap: 22px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
}

.graphic-deliverables li span {
  color: #777269;
  font-size: 0.72rem;
}

.case-next-light {
  color: #111111;
  background: #d8d5ce;
}

.case-next-light a {
  border-color: rgba(17, 17, 17, 0.18);
}

.case-next-light > p,
.case-next-light a span {
  color: #5d5a54;
}

.branding-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.64fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 70px;
  background:
    radial-gradient(circle at 76% 26%, rgba(238, 236, 230, 0.1), transparent 30%),
    #0d0e0e;
}

.branding-hero-copy h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.branding-hero-copy > p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.branding-hero-mark {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(238, 236, 230, 0.16);
  background: rgba(238, 236, 230, 0.06);
}

.branding-hero-mark img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.branding-foundation {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(380px, 1fr);
  gap: clamp(48px, 10vw, 140px);
  padding: 110px max(24px, calc((100vw - 1080px) / 2));
  color: #111111;
  background: #eeece6;
}

.branding-statement h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.4rem, 5.3vw, 5rem);
  line-height: 0.98;
}

.branding-foundation-copy > p {
  margin: 0 0 42px;
  color: #4d4a45;
  font-size: 1.04rem;
  line-height: 1.75;
}

.branding-foundation-copy dl {
  margin: 0;
}

.branding-foundation-copy dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}

.branding-foundation-copy dt,
.branding-foundation-copy dd {
  margin: 0;
  font-size: 0.82rem;
}

.branding-foundation-copy dt {
  color: #777269;
}

.branding-foundation-copy dd {
  font-weight: 700;
}

.branding-system {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  padding: 16px max(16px, calc((100vw - 1280px) / 2)) 100px;
  color: #111111;
  background: #eeece6;
}

.brand-token,
.brand-application,
.brand-principle {
  min-height: 290px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.26);
}

.brand-token > span {
  color: #6c6860;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-token-word {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-token-word strong {
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.9;
}

.brand-token-word p {
  margin: 0;
  letter-spacing: 0.36em;
}

.brand-token-color {
  grid-column: span 3;
}

.brand-token-color div {
  height: calc(100% - 36px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.brand-token-color i {
  display: flex;
  align-items: end;
  padding: 10px;
  color: #eeece6;
  background: #111111;
  font-size: 0.62rem;
  font-style: normal;
}

.brand-token-color i:nth-child(2) {
  color: #111111;
  background: #eeece6;
}

.brand-token-color i:nth-child(3) {
  color: #111111;
  background: #9d9a92;
}

.brand-token-type {
  grid-column: span 4;
}

.brand-token-type strong {
  display: block;
  margin-top: 28px;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.8;
}

.brand-token-type p {
  max-width: 28ch;
  margin: 32px 0 0;
  color: #5d5a54;
  line-height: 1.5;
}

.brand-application {
  grid-column: span 5;
  padding: 10px;
}

.brand-application-wide {
  grid-column: span 7;
}

.brand-application img {
  display: block;
  width: 100%;
  height: calc(100% - 28px);
  min-height: 340px;
  object-fit: cover;
}

.brand-application figcaption {
  padding: 8px 5px 0;
  color: #6c6860;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.brand-principle {
  grid-column: 1 / -1;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text);
  background: #111111;
}

.brand-principle blockquote {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 0.92;
}

.branding-outcome {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(50px, 10vw, 150px);
  padding: 110px max(24px, calc((100vw - 1080px) / 2));
}

.branding-outcome h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
}

.branding-outcome > p {
  align-self: end;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-page-hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  padding: 170px max(24px, calc((100vw - 1180px) / 2)) 82px;
  background:
    radial-gradient(circle at 76% 18%, rgba(238, 236, 230, 0.1), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(238, 236, 230, 0.045), transparent 32%),
    #0d0e0e;
}

.about-page-orb {
  position: absolute;
  right: -10vw;
  bottom: -22vh;
  width: min(46vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 236, 230, 0.11), rgba(238, 236, 230, 0.025) 46%, transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}

.about-page-hero-inner {
  position: relative;
  width: min(980px, 100%);
}

.about-page-hero .section-kicker {
  color: var(--muted);
}

.about-page-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(3.2rem, 6.8vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.about-page-intro {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin-top: 34px;
}

.about-page-intro p,
.story-body p,
.founder-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.7;
}

.about-accordion-section,
.about-closing {
  padding: 82px max(24px, calc((100vw - 1080px) / 2));
  background: #111111;
}

.about-closing {
  padding-top: 34px;
}

.about-accordion-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.glass-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 0.78fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(238, 236, 230, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(238, 236, 230, 0.13), rgba(238, 236, 230, 0.045));
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(238, 236, 230, 0.16);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  overflow: hidden;
}

.glass-story::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(24px, 4vw, 42px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(238, 236, 230, 0.22), transparent);
}

.story-heading span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 2.55vw, 2.35rem);
  font-weight: 700;
  line-height: 1.08;
}

.story-body {
  display: grid;
  gap: 18px;
}

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

.principles-list article {
  padding-top: 18px;
  border-top: 1px solid rgba(238, 236, 230, 0.14);
}

.principles-list h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.2;
}

.founder-note {
  color: #141414;
  background: #eeece6;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
}

.founder-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.founder-note .section-kicker {
  color: #5d5a54;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.8fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.founder-grid h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(2.1rem, 4.1vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.founder-copy p {
  color: #3e3b36;
}

.founder-signature {
  margin-top: 12px;
  color: #111111 !important;
  font-weight: 800;
}

.founder-signature span {
  color: #5d5a54;
  font-size: 0.92rem;
  font-weight: 700;
}

.closing-story .hero-actions {
  margin-top: 8px;
}

main h1:not(.break-headline),
main h2 {
  font-weight: 400 !important;
}

.break-headline {
  font-weight: 800;
}

.portfolio-card-content h2,
.article-card h2,
.subservice-grid h2 {
  font-weight: 700 !important;
}

button,
.button,
.nav-cta,
.work-filter-button,
.admin-button,
.cms-button,
.service-card-link,
.service-enquiry,
.portfolio-card-content strong,
.note-card a,
.article-end a {
  font-weight: 500 !important;
}

.services-page {
  color: var(--text);
  background: #0d0e0e;
}

.services-page main,
.services-page .site-footer {
  position: relative;
  z-index: 1;
}

.services-main {
  overflow: clip;
  background: #0d0e0e;
}

.services-page > .about-page-particles,
.work-page > .about-page-particles,
.faq-page > .about-page-particles {
  display: none;
}

.services-page-hero {
  padding: 158px max(24px, calc((100vw - 1120px) / 2)) 72px;
}

.services-page-hero-inner {
  width: min(820px, 100%);
}

.services-page-hero .section-kicker {
  color: var(--muted);
}

.services-page-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.services-page-hero p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.72;
}

.services-catalogue {
  padding: 40px max(24px, calc((100vw - 1120px) / 2)) 110px;
}

.services-catalogue-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.services-index {
  position: sticky;
  top: 128px;
}

.services-index > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.services-index nav {
  display: grid;
}

.services-index a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid rgba(238, 236, 230, 0.11);
  color: rgba(238, 236, 230, 0.42);
  font-size: 0.7rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.services-index a:last-child {
  border-bottom: 1px solid rgba(238, 236, 230, 0.11);
}

.services-index a span {
  color: rgba(238, 236, 230, 0.68);
  font-size: 0.76rem;
}

.services-index a:hover,
.services-index a:focus-visible,
.services-index a.is-active,
.services-index a.is-active span {
  color: var(--text);
  text-decoration: none;
}

.services-chapters {
  min-width: 0;
  border-top: 1px solid rgba(238, 236, 230, 0.2);
}

.service-chapter {
  scroll-margin-top: 110px;
  border-bottom: 1px solid rgba(238, 236, 230, 0.2);
}

.service-chapter details {
  background: rgba(238, 236, 230, 0);
  transition: background 240ms ease;
}

.service-chapter details[open] {
  background: rgba(238, 236, 230, 0.045);
  box-shadow: inset 0 1px 0 rgba(238, 236, 230, 0.055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.service-chapter summary {
  min-height: 150px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 32px;
  gap: 22px;
  align-items: center;
  padding: 28px 18px;
  cursor: pointer;
  list-style: none;
}

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

.service-number {
  align-self: start;
  padding-top: 7px;
  color: rgba(238, 236, 230, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-summary-copy {
  display: grid;
  gap: 10px;
}

.service-label {
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 700;
  line-height: 1.08;
}

.service-summary-copy > span:last-child {
  max-width: 580px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(238, 236, 230, 0.24);
  border-radius: 50%;
}

.service-toggle::before,
.service-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.service-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-chapter details[open] .service-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-detail {
  padding: 0 18px 36px 84px;
}

.service-intro {
  max-width: 660px;
  margin: 0 0 30px;
  color: var(--soft);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}

.subservice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(238, 236, 230, 0.13);
  border-radius: 7px;
  background: rgba(238, 236, 230, 0.13);
}

.subservice-grid > div {
  min-height: 158px;
  padding: 22px;
  background: rgba(13, 14, 14, 0.84);
}

.subservice-grid h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.35;
}

.subservice-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.service-enquiry {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
}

.service-enquiry span {
  transition: transform 180ms ease;
}

.service-enquiry:hover,
.service-enquiry:focus-visible {
  text-decoration: none;
}

.service-enquiry:hover span,
.service-enquiry:focus-visible span {
  transform: translateX(4px);
}

.services-closing {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 110px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(238, 236, 230, 0.18);
  border-radius: 8px;
  background: rgba(238, 236, 230, 0.075);
  box-shadow: inset 0 1px 0 rgba(238, 236, 230, 0.11);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.services-closing .section-kicker {
  color: var(--muted);
}

.services-closing h2 {
  max-width: 690px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.65rem, 3.3vw, 3rem);
  line-height: 1.08;
}

@media (min-width: 821px) {
  .articles-page .site-header,
  .article-page .site-header,
  .case-graphic .site-header {
    color: var(--soft);
    border-color: rgba(238, 236, 230, 0.18);
    background: rgba(18, 18, 18, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 54px rgba(0, 0, 0, 0.24);
  }

  .articles-page .brand-logo,
  .article-page .brand-logo,
  .case-graphic .brand-logo {
    filter: none;
  }

  .articles-page .nav-links a,
  .article-page .nav-links a,
  .case-graphic .nav-links a {
    color: var(--muted);
  }

  .articles-page .nav-cta,
  .article-page .nav-cta,
  .case-graphic .nav-cta {
    color: var(--text);
    border-color: rgba(238, 236, 230, 0.22);
    background: rgba(238, 236, 230, 0.09);
  }
}

.reveal-fade,
.reveal-copy {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(8px);
  transition:
    opacity 1000ms ease,
    filter 1000ms ease,
    transform 1000ms cubic-bezier(0.2, 0.8, 0.18, 1);
}

.reveal-fade:nth-child(2) {
  transition-delay: 120ms;
}

.reveal-copy:nth-child(2) {
  transition-delay: 180ms;
}

.reveal-copy:nth-child(3) {
  transition-delay: 320ms;
}

.reveal-fade.is-visible,
.reveal-copy.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-fade,
  .reveal-copy,
  .work-card {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .about-grid h2::after {
    animation: none;
  }
}

@media (max-width: 820px) {
  .global-footer-inner {
    width: calc(100% - (var(--mobile-gutter) * 2));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding: 34px 0 26px;
  }

  .global-footer-brand,
  .global-footer-contact,
  .global-footer-copyright {
    grid-column: 1 / -1;
  }

  .contact-section > .global-site-footer {
    margin-top: 36px;
  }

  .site-header {
    z-index: 100;
    top: max(12px, env(safe-area-inset-top));
    left: var(--mobile-gutter);
    right: var(--mobile-gutter);
    grid-template-columns: 1fr auto;
    width: auto;
    gap: 10px;
    min-height: 62px;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid rgba(238, 236, 230, 0.16);
    border-radius: 14px;
    background: rgba(30, 30, 30, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 48px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(22px) saturate(1.14);
    -webkit-backdrop-filter: blur(22px) saturate(1.14);
  }

  .brand {
    min-height: 44px;
  }

  .brand-logo-word {
    display: none;
  }

  .brand-logo-mark {
    display: block;
    width: 58px;
    height: auto;
    max-width: 58px;
    max-height: 34px;
    object-fit: contain;
    filter: none !important;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    justify-self: end;
    display: grid;
    place-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(238, 236, 230, 0.18);
    border-radius: 50%;
    color: var(--text);
    background: rgba(54, 54, 54, 0.68);
    box-shadow:
      inset 0 1px 0 rgba(238, 236, 230, 0.12),
      0 14px 38px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-header.is-menu-open .nav-toggle span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .site-header.is-on-light .nav-toggle {
    color: var(--text);
    border-color: rgba(238, 236, 230, 0.28);
    background: rgba(54, 54, 54, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(238, 236, 230, 0.12),
      0 14px 38px rgba(0, 0, 0, 0.24);
  }

  .site-header.is-on-light {
    color: var(--soft);
    border-color: rgba(238, 236, 230, 0.16);
    background: rgba(30, 30, 30, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 18px 48px rgba(0, 0, 0, 0.24);
  }

  .nav-panel {
    position: fixed;
    inset: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    width: 100%;
    min-height: 100dvh;
    padding: 104px var(--mobile-gutter) max(24px, env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    background: rgba(48, 48, 48, 0.84);
    box-shadow:
      inset 0 1px 0 rgba(238, 236, 230, 0.13),
      0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(30px) saturate(1.08) brightness(1.12);
    -webkit-backdrop-filter: blur(30px) saturate(1.08) brightness(1.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .site-header.is-menu-open .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header.is-on-light .nav-panel {
    color: var(--text);
    background: rgba(48, 48, 48, 0.84);
    box-shadow:
      inset 0 1px 0 rgba(238, 236, 230, 0.13),
      0 24px 70px rgba(0, 0, 0, 0.36);
  }

  .site-header.is-on-light .nav-panel .nav-links a {
    color: var(--muted);
  }

  .site-header.is-on-light .nav-panel .nav-links a[aria-current="page"],
  .site-header.is-on-light .nav-panel .nav-links a:hover,
  .site-header.is-on-light .nav-panel .nav-links a:focus-visible {
    color: var(--text);
    background: rgba(238, 236, 230, 0.1);
  }

  .site-header.is-on-light .nav-panel .nav-cta {
    color: var(--bg-deep);
    border-color: transparent;
    background: var(--text);
  }

  .nav-links {
    display: grid;
    align-content: center;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-links a {
    justify-content: center;
    min-height: clamp(54px, 9vh, 76px);
    padding: 0 16px;
    border-bottom: 1px solid rgba(238, 236, 230, 0.11);
    border-radius: 0;
    font-size: clamp(1.3rem, 5.8vw, 2rem);
    font-weight: 500;
    transition:
      color 160ms ease,
      background 160ms ease,
      border-color 160ms ease,
      transform 160ms ease;
  }

  .nav-panel .nav-links a:not([aria-current="page"]):hover,
  .nav-panel .nav-links a:not([aria-current="page"]):focus-visible {
    width: min(320px, calc(100% - 24px));
    min-height: 52px;
    margin: 7px auto;
    border: 1px solid rgba(238, 236, 230, 0.2);
    border-radius: 999px;
    color: var(--text);
    background: rgba(238, 236, 230, 0.11);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 12px 30px rgba(0, 0, 0, 0.16);
    transform: translateY(-1px);
  }

  .nav-panel .nav-links a[aria-current="page"] {
    width: min(320px, calc(100% - 24px));
    min-height: 52px;
    margin: 7px auto;
    border: 1px solid rgba(238, 236, 230, 0.22);
    border-radius: 999px;
    color: var(--text);
    background: rgba(238, 236, 230, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 12px 32px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px) saturate(1.18);
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
  }

  .nav-cta {
    width: min(540px, 100%);
    min-width: 0;
    min-height: 54px;
    margin: 20px auto 0;
    border: 1px solid rgba(238, 236, 230, 0.24);
    border-radius: 999px;
    color: var(--text);
    background: rgba(238, 236, 230, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 16px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px) saturate(1.18);
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
  }

  .nav-panel .nav-cta:hover,
  .nav-panel .nav-cta:focus-visible,
  .site-header.is-on-light .nav-panel .nav-cta,
  .site-header.is-on-light .nav-panel .nav-cta:hover,
  .site-header.is-on-light .nav-panel .nav-cta:focus-visible {
    color: var(--text);
    border-color: rgba(238, 236, 230, 0.4);
    background: rgba(238, 236, 230, 0.16);
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 100svh;
    padding: 112px var(--mobile-gutter) 24px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(13, 14, 14, 0.44) 0%, rgba(21, 21, 21, 0.76) 58%, rgba(13, 14, 14, 0.9) 100%),
      radial-gradient(circle at 58% 28%, rgba(238, 236, 230, 0.18), transparent 38%);
  }

  .hero-media {
    inset: 0 -18%;
    opacity: 1;
  }

  .hero-media img {
    object-position: 62% center;
    filter: blur(4px);
    transform: scale(1.08);
    transform-origin: 62% center;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 12vw, 4.85rem);
  }

  .hero-copy {
    max-width: 34rem;
  }

  .about-section {
    padding: 48px var(--mobile-gutter) 54px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-copy {
    padding-top: 0;
  }

  .ethos-section {
    padding: 54px var(--mobile-gutter) 60px;
  }

  .ethos-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ethos-copy {
    padding-top: 0;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-intro {
    position: static;
    flex: none;
    display: block;
  }

  .services-lede {
    max-width: none;
  }

  .services-list {
    min-width: 0;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 18px 18px 0;
    border-top: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .services-list::-webkit-scrollbar {
    display: none;
  }

  .service-item {
    display: flex;
    flex-direction: column;
    flex: 0 0 min(76vw, 284px);
    min-height: 188px;
    padding: 16px;
    border: 1px solid rgba(238, 236, 230, 0.16);
    border-radius: 8px;
    background: rgba(238, 236, 230, 0.06);
    scroll-snap-align: start;
  }

  .service-item p {
    margin-top: 14px;
  }

}

@media (max-width: 900px) {
  .services-section {
    min-height: calc(100svh + 260svh);
    padding: 0 var(--mobile-gutter);
  }

  .services-inner {
    position: sticky;
    top: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100svh - 104px);
    overflow: hidden;
  }

  .services-page-hero {
    padding: 132px var(--mobile-gutter) 54px;
  }

  .services-page-hero h1 {
    font-size: clamp(2.65rem, 10vw, 4.5rem);
  }

  .services-catalogue {
    padding: 26px var(--mobile-gutter) 76px;
  }

  .services-catalogue-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .services-index {
    position: static;
    min-width: 0;
  }

  .services-index > p {
    margin-bottom: 12px;
  }

  .services-index nav {
    width: 100%;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .services-chapters,
  .service-chapter,
  .service-chapter details {
    width: 100%;
    min-width: 0;
  }

  .services-index nav::-webkit-scrollbar {
    display: none;
  }

  .services-index a {
    flex: 0 0 auto;
    display: inline-flex;
    gap: 7px;
    padding: 10px 12px;
    border: 1px solid rgba(238, 236, 230, 0.14);
    border-radius: 6px;
    background: rgba(238, 236, 230, 0.045);
    scroll-snap-align: start;
  }

  .services-index a:last-child {
    border-bottom: 1px solid rgba(238, 236, 230, 0.14);
  }

  .services-index a.is-active {
    border-color: rgba(238, 236, 230, 0.38);
    background: rgba(238, 236, 230, 0.1);
  }

  .services-closing {
    width: calc(100% - (var(--mobile-gutter) * 2));
    margin-bottom: 76px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
  }

  .services-intro {
    position: static;
    flex: none;
    display: block;
  }

  .services-lede {
    max-width: none;
    margin-top: 14px;
  }

  .services-list {
    min-width: 0;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 0 18px;
    border-top: 0;
    scroll-snap-type: none;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    pointer-events: auto;
  }

  .services-list::-webkit-scrollbar {
    display: none;
  }

  .service-item {
    flex: 0 0 min(72vw, 264px);
    min-height: 178px;
    padding: 14px;
    border: 1px solid rgba(238, 236, 230, 0.16);
    border-radius: 8px;
    background: rgba(238, 236, 230, 0.06);
    scroll-snap-align: start;
  }

  .service-item p {
    margin-top: 10px;
  }

  .service-card-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    margin-top: auto;
    padding-top: 8px;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 800;
  }

  .service-card-link::after {
    content: "->";
    margin-left: 8px;
    transition: transform 160ms ease;
  }

  .service-card-link:hover::after,
  .service-card-link:focus-visible::after {
    transform: translateX(4px);
  }

  .works-section {
    padding: 48px var(--mobile-gutter) 34px;
  }

  .works-heading {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 12px;
  }

  .works-stack {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-card,
  .work-card:nth-child(2),
  .work-card:nth-child(3) {
    min-height: 0;
    margin-top: 0;
  }

  .work-image {
    aspect-ratio: 16 / 9;
  }

  .work-card-content {
    min-height: 210px;
    padding: 14px;
  }

  .work-meta {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .testimonials-section {
    padding: 10px var(--mobile-gutter) 48px;
  }

  .testimonials-inner {
    gap: 14px;
  }

  .testimonial-grid {
    gap: 12px;
    padding-bottom: 14px;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 0;
    padding: 18px;
  }

  .testimonial-card blockquote {
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .testimonial-controls {
    justify-content: flex-start;
  }

  .notes-section {
    padding: 70px var(--mobile-gutter) 50px;
  }

  .notes-heading {
    margin-bottom: 24px;
  }

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

  .note-card {
    min-height: 0;
  }

  .note-image {
    aspect-ratio: 16 / 9;
  }

  .note-content {
    min-height: 210px;
    padding: 14px;
  }

  .note-meta {
    margin-bottom: 14px;
  }

  .contact-section {
    min-height: auto;
    padding: 78px 0 0;
  }

  .contact-inner {
    width: calc(100% - (var(--mobile-gutter) * 2));
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-form {
    padding: 14px;
  }

  .contact-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 36px;
    padding: 30px var(--mobile-gutter);
  }

  .contact-footer-brand {
    grid-column: 1 / -1;
  }

  .contact-footer-details {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 30px;
    justify-items: start;
  }

  .footer-intro,
  .footer-copyright {
    grid-column: 1 / -1;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-copyright {
    width: 100%;
  }

  .about-page-hero {
    min-height: auto;
    padding: 136px var(--mobile-gutter) 64px;
  }

  .about-page-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .about-simple-section {
    padding: 130px var(--mobile-gutter) 58px;
  }

  .about-simple-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .about-simple-card .section-kicker,
  .about-simple-card h1,
  .about-simple-card h2,
  .about-simple-copy {
    grid-column: 1;
  }

  .about-simple-card h1,
  .about-simple-card h2 {
    margin-top: 0;
  }

  .about-simple-copy {
    padding-left: 0;
    border-left: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(238, 236, 230, 0.16);
  }

  .work-page-hero {
    padding: 138px var(--mobile-gutter) 42px;
  }

  .work-page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .work-overview {
    padding: 24px var(--mobile-gutter) 64px;
  }

  .legal-main {
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  .work-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    margin-bottom: 18px;
    padding: 7px;
    scrollbar-width: none;
  }

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

  .work-filter-button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  .work-overview-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .portfolio-card img {
    width: calc(100% - 24px);
    margin: 12px 12px 0;
  }

  .portfolio-card-content {
    padding: 18px 20px 22px;
  }

  .portfolio-card-content h2 {
    font-size: clamp(1.32rem, 8.5vw, 1.85rem);
    line-height: 1.08;
  }

  .portfolio-card-content span {
    font-size: 0.94rem;
  }

  .articles-hero {
    padding: 138px var(--mobile-gutter) 52px;
  }

  .articles-hero h1 {
    font-size: clamp(2.75rem, 13vw, 5rem);
  }

  .articles-featured,
  .articles-index {
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-article-image {
    min-height: 0;
    padding: 8px 8px 0;
  }

  .featured-article-image img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .featured-article-content {
    padding: 24px 18px 28px;
  }

  .articles-index {
    padding-top: 18px;
    padding-bottom: 64px;
  }

  .article-search {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 16px;
  }

  .article-search-field {
    width: 100%;
  }

  .article-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .article-filter::-webkit-scrollbar {
    display: none;
  }

  .article-filter-button {
    flex: 0 0 auto;
  }

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

  .article-card img {
    aspect-ratio: 16 / 10;
  }

  .article-card-content {
    min-height: 230px;
  }

  .articles-cta {
    padding: 72px var(--mobile-gutter);
  }

  .article-hero {
    padding: 138px var(--mobile-gutter) 56px;
  }

  .article-back {
    margin-bottom: 46px;
  }

  .article-hero h1 {
    font-size: clamp(3rem, 15vw, 5.6rem);
  }

  .article-lead-image {
    width: calc(100% - 20px);
  }

  .article-lead-image img {
    aspect-ratio: 16 / 10;
  }

  .article-layout {
    width: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 72px var(--mobile-gutter) 84px;
  }

  .article-sidebar-inner {
    position: static;
  }

  .article-sidebar nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .article-sidebar nav::-webkit-scrollbar {
    display: none;
  }

  .article-sidebar nav a {
    flex: 0 0 auto;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 6px;
    padding: 10px 12px;
  }

  .article-share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
  }

  .article-share > span {
    margin: 0;
  }

  .article-share a,
  .article-share button {
    padding: 4px 0;
  }

  .article-pullquote,
  .article-inline-image {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .article-pullquote {
    margin-top: 72px;
    margin-bottom: 72px;
    padding: 42px 24px;
  }

  .article-inline-image {
    margin-top: 68px;
    margin-bottom: 68px;
  }

  .article-related {
    padding: 72px var(--mobile-gutter);
  }

  .article-related-heading {
    align-items: start;
    flex-direction: column;
  }

  .article-related-heading h2 {
    text-align: left;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 138px var(--mobile-gutter) 64px;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading h1 {
    font-size: clamp(2.7rem, 13vw, 4.8rem);
  }

  .faq-cta {
    grid-column: 1;
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

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

  .case-web-hero,
  .branding-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 138px var(--mobile-gutter) 56px;
  }

  .case-hero-copy h1,
  .branding-hero-copy h1 {
    font-size: clamp(3.2rem, 17vw, 6rem);
  }

  .case-hero-meta {
    align-self: auto;
  }

  .web-browser {
    margin-top: 10px;
  }

  .case-web-story {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 72px var(--mobile-gutter);
  }

  .case-chapter-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-chapter-nav p {
    grid-column: 1 / -1;
  }

  .case-web-chapters {
    gap: 64px;
  }

  .web-device-pair {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 28%;
    padding: 14px;
  }

  .web-screen-wide {
    height: 290px;
  }

  .web-screen-mobile {
    height: 230px;
  }

  .case-results {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-results div {
    min-height: 0;
    grid-template-columns: minmax(70px, auto) 1fr;
    align-items: baseline;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  }

  .graphic-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 138px var(--mobile-gutter) 54px;
  }

  .graphic-hero-title h1 {
    font-size: clamp(4.2rem, 24vw, 7rem);
  }

  .graphic-hero-note {
    max-width: 560px;
  }

  .graphic-hero-art img {
    aspect-ratio: 16 / 11;
  }

  .graphic-manifesto {
    padding: 76px var(--mobile-gutter);
  }

  .graphic-gallery {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px var(--mobile-gutter);
  }

  .graphic-panel-tall,
  .graphic-caption,
  .graphic-panel-wide,
  .graphic-panel-small {
    grid-column: 1;
  }

  .graphic-panel-small {
    width: min(72%, 360px);
    justify-self: end;
  }

  .graphic-deliverables,
  .branding-foundation,
  .branding-outcome {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 72px var(--mobile-gutter);
  }

  .branding-hero-mark {
    padding: 8px;
  }

  .branding-system {
    grid-template-columns: 1fr;
    padding: 10px 10px 64px;
  }

  .brand-token-word,
  .brand-token-color,
  .brand-token-type,
  .brand-application,
  .brand-application-wide,
  .brand-principle {
    grid-column: 1;
  }

  .brand-token,
  .brand-application {
    min-height: 250px;
  }

  .brand-application img {
    min-height: 260px;
  }

  .brand-principle {
    min-height: 340px;
  }

  .case-next {
    padding: 58px var(--mobile-gutter);
  }

  .case-next a {
    align-items: start;
    flex-direction: column;
  }

  .about-accordion-section,
  .about-closing,
  .founder-note {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .glass-story {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .glass-story::before {
    display: none;
  }

  .principles-list,
  .founder-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .global-footer-inner {
    grid-template-columns: 1fr;
    padding: 30px 0 24px;
  }

  .global-footer-brand,
  .global-footer-contact,
  .global-footer-copyright {
    grid-column: 1;
  }

  .services-page-hero {
    padding-top: 112px;
  }

  .services-page-hero h1 {
    font-size: 2.65rem;
  }

  .service-chapter summary {
    min-height: 126px;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 10px;
    padding: 22px 8px;
  }

  .service-number {
    padding-top: 5px;
  }

  .service-label {
    font-size: 1.4rem;
  }

  .service-summary-copy > span:last-child {
    font-size: 0.8rem;
  }

  .service-detail {
    padding: 0 8px 30px 46px;
  }

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

  .subservice-grid > div {
    min-height: 0;
    padding: 18px;
  }

  .services-closing {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

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

  .contact-footer {
    grid-template-columns: 1fr;
    padding: 28px var(--mobile-gutter);
  }

  .contact-footer-brand {
    grid-column: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-intro,
  .footer-copyright {
    grid-column: 1;
  }

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

  .brand {
    min-height: 44px;
  }

  .brand-logo {
    height: 21.6px;
    max-width: 103px;
  }

  .brand-logo-mark {
    width: 58px;
    height: auto;
    max-width: 58px;
    max-height: 34px;
  }

  .nav-cta {
    min-width: 0;
    padding: 0 13px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-media {
    inset: 0 -28%;
  }

  .hero-media img {
    object-position: 58% center;
    transform: scale(1.04);
    transform-origin: 58% center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
