@font-face {
  font-family: "Inter";
  src: url("assets/Inter-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

.not-found { width: var(--frame); margin: 0 auto; padding: 160px 0 100px; min-height: 80vh; }
.not-found h1 { font-size: clamp(36px, 6vw, 64px); line-height: 1.1; letter-spacing: -0.055em; }
.not-found p { max-width: 40ch; color: var(--muted); }
.not-found .not-found-code { color: var(--accent); }
.not-found .action { margin-top: 24px; }
.preview-unavailable { position: absolute; inset: 0; display: grid; place-items: center; padding: 24px; background: #101010; color: #fff; font-size: 18px; }

@font-face {
  font-family: "Inter";
  src: url("assets/Inter-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --background: #000000;
  --surface: #151515;
  --surface-hover: #191919;
  --foreground: #ffffff;
  --muted: #8c8c8c;
  --quiet: #626262;
  --border: #2b2b2b;
  --accent: #a2d88d;
  --accent-rgb: 162, 216, 141;
  --accent-hover: #b8e4a6;
  --accent-surface: #111a0e;
  --radius-control: 10px;
  --radius-panel: 18px;
  --frame: min(calc(100% - 64px), 1120px);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  transform: translateY(-150%);
  background: #fff;
  color: #111;
}

.skip-link:focus {
  transform: translateY(0);
}

.brand-mark {
  display: block;
  width: 58px;
  height: auto;
  flex: 0 0 auto;
}

.reel-mark {
  width: 118px;
  height: auto;
}

.site-header,
.hero,
.section-shell,
.proof-section,
.site-footer {
  width: var(--frame);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: 78px;
  padding: 0;
  background: transparent;
  isolation: isolate;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 8px -18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  corner-shape: squircle;
  background: rgba(19, 22, 20, 0.58);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 28px rgba(0, 0, 0, 0.2);
  opacity: 0;
  content: "";
  pointer-events: none;
  transition: opacity 180ms ease;
}

.site-header.is-glass::before {
  opacity: 1;
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header::before { background: rgba(18, 20, 18, 0.96); }
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 26px;
}

.site-nav a {
  color: #a0a0a0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav .nav-brief {
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #111;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-nav .nav-brief:hover,
.site-nav .nav-brief[aria-current="page"] {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  color: #111;
}

.hero {
  position: relative;
  display: flex;
  min-height: 704px;
  align-items: center;
  justify-content: center;
  padding: 104px 12px 148px;
  isolation: isolate;
  overflow: clip;
}

.ascii-logo {
  display: block;
  width: 100%;
  height: 100%;
}

.ascii-logo-hero {
  position: absolute;
  z-index: -1;
  inset: 20px 0 112px;
  width: 100%;
  height: calc(100% - 132px);
  opacity: 0.9;
  pointer-events: none;
  touch-action: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 34px 18px;
  text-align: center;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.94);
}

.hero-copy::before {
  position: absolute;
  z-index: -1;
  inset: -62px -94px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 40%, transparent 72%);
  content: "";
  pointer-events: none;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(44px, 5.2vw, 66px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.05;
  text-wrap: balance;
}

.hero-emphasis {
  color: var(--accent);
}

.keep-together {
  white-space: nowrap;
}

.hero-copy > p {
  margin-bottom: 0;
  color: #b0b0b0;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.hero-actions .action {
  min-height: 48px;
  padding: 0 24px;
  font-size: 14px;
}

.action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.action-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #111;
}

.action-primary:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.action-secondary {
  background: #1b1b1b;
}

.action-secondary:hover {
  border-color: #555;
  background: #242424;
}

.client-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 118px;
  padding: 16px 32px 22px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), var(--background) 48%);
  text-align: center;
}

.client-strip > p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
}

#client-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 42px;
}

.client-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.client-item img {
  width: min(130px, 100%);
  max-height: 30px;
  object-fit: contain;
  filter: grayscale(1) brightness(2);
}

.section-heading h2,
.work-heading h2,
.process-heading h2,
.proof-heading h2,
.brief-heading h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(40px, 4.2vw, 52px);
  font-weight: 400;
  letter-spacing: -0.048em;
  line-height: 1.1;
}

.reel-section {
  padding: 36px 12px 48px;
}

.reel-heading {
  display: flex;
  align-items: end;
  padding-bottom: 30px;
}

.reel-heading,
.work-heading,
.process-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d0d0d;
}

.media-frame video {
  width: 100%;
  height: 100%;
  background: #090909;
  object-fit: contain;
}

.media-status {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 18px 24px;
  transform: translate(-50%, -50%);
  background: rgba(13, 13, 13, 0.94);
  color: #c5c5c5;
  font-size: 14px;
  text-align: center;
  pointer-events: none;
}

.media-status[hidden],
.media-retry[hidden] {
  display: none;
}

.media-close,
.media-retry {
  border: 1px solid #454545;
  border-radius: 0;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
  pointer-events: auto;
}

.media-close {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 26px;
  line-height: 1;
}

.media-retry {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.media-close:hover,
.media-retry:hover {
  border-color: var(--accent);
  background: var(--accent-surface);
}

.reel-frame.is-playing::before,
.reel-frame.is-playing::after {
  display: none;
}

.media-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.reel-frame {
  aspect-ratio: 16 / 9;
  background-image: var(--media-poster, none);
  background-position: center;
  background-size: cover;
}

.reel-frame::before,
.reel-frame::after {
  position: absolute;
  z-index: 0;
  background: rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
}

.reel-frame::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.reel-frame::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.reel-frame.has-poster::before,
.reel-frame.has-poster::after {
  display: none;
}

.reel-center {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
}

#reel-status {
  color: #777;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: none;
}

.reel-frame.has-poster .reel-center {
  display: none;
}

.media-trigger.is-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: #111;
}

.media-trigger.is-missing > span {
  font-size: 14px;
}

.media-trigger.is-missing > small {
  color: var(--muted);
  font-size: 11px;
}

.work-section {
  padding: 64px 12px 80px;
}

.work-heading {
  margin-bottom: 42px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project {
  min-width: 0;
}

.project-frame {
  aspect-ratio: 530 / 323;
  background-image: var(--media-poster, none);
  background-position: center;
  background-size: cover;
}

.project-trigger > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.project-trigger:hover > img {
  transform: scale(1.012);
}

.project-placeholder {
  position: absolute;
  inset: 0;
  display: block;
  background: #f1f1ee;
  color: #111;
  transition: background-color 220ms ease;
}

.project:nth-child(even) .project-placeholder {
  background: #171717;
  color: #fff;
}

.project:nth-child(3) .project-placeholder {
  background: #d8d8d3;
  color: #111;
}

.project:nth-child(4) .project-placeholder {
  background: #0e0e0e;
  color: #fff;
}

.project-trigger:hover .project-placeholder {
  background: var(--accent);
  color: #111;
}

.project-frame.has-poster .project-placeholder {
  display: none;
}

.project-frame .project-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.project-frame.has-preview .project-preview { opacity: 1; }
.project-frame.has-preview .project-placeholder { display: none; }
.media-missing-notice {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-size: 14px;
}

.project-placeholder::before,
.project-placeholder::after {
  position: absolute;
  background: currentColor;
  content: "";
  opacity: 0.12;
}

.project-placeholder::before {
  top: 50%;
  right: 9%;
  left: 9%;
  height: 1px;
}

.project-placeholder::after {
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
}

.project-index {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.62;
}

.project-placeholder-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.project-placeholder-center strong {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
  text-transform: lowercase;
}

.project-placeholder-center small {
  font-size: 12px;
  letter-spacing: 0.02em;
  opacity: 0.58;
  text-transform: none;
}

.process-section {
  position: relative;
  padding: 72px 12px 80px;
}

.process-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
}

.process-heading p {
  margin: 0 2px 4px 0;
  color: var(--muted);
  font-size: 14px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.process-row {
  position: relative;
  display: flex;
  min-height: 342px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.process-row:last-child {
  border-right: 1px solid var(--border);
}

.process-number {
  margin-bottom: 110px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.process-row h3 {
  margin: 0 0 16px;
  font-size: clamp(27px, 2.7vw, 34px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.process-row p {
  margin: 0;
  color: #989898;
  font-size: 16px;
  line-height: 1.55;
}

.process-row > * {
  position: relative;
  z-index: 1;
}

.process-row:last-child {
  background: radial-gradient(ellipse at 100% 0%, rgba(223, 247, 198, 0.48), transparent 65%), linear-gradient(145deg, #a2ce8f, #8cbb79);
  border-color: #b4d6a3;
  color: #172512;
  box-shadow: inset 0 1px 0 rgba(244, 255, 235, 0.4), 0 0 32px -10px rgba(162, 216, 141, 0.2);
}

.process-row:last-child .process-number,
.process-row:last-child h3 {
  color: #172512;
}

.process-row:last-child p {
  color: #2c4225;
}

.process-row > .process-signature {
  position: absolute;
  z-index: 0;
  top: 26px;
  right: 26px;
  width: 118px;
  height: 55px;
  background: rgba(32, 64, 23, 0.18);
  mask: url("assets/ulc-symbol.png") center / contain no-repeat;
  pointer-events: none;
}

.process-reassurance {
  max-width: 620px;
  margin: 24px 0 0;
  color: #989898;
  font-size: 14px;
  line-height: 1.7;
}

.process-reassurance a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: #516d45;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.process-reassurance a:hover {
  color: var(--accent-hover);
}

.process-meta {
  margin-top: 34px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: none;
}

.proof-section {
  min-height: 640px;
  padding: 104px 12px 74px;
}

.proof-heading {
  text-align: center;
}

.proof-heading h2 {
  font-size: 48px;
}

.proof-heading p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 82px;
}

.quote-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 22px 22px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.quote-card blockquote {
  width: 100%;
  max-width: 245px;
  margin: 0 auto 42px;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.28;
}

.quote-card footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 17px;
  border-top: 1px solid #303030;
}

.quote-card footer span {
  color: #a5a5a5;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.quote-card footer small {
  color: #666;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: none;
}

.brief-section {
  padding: 112px 72px 128px;
}

.brief-page .brief-section {
  width: var(--frame);
  margin: 0 auto;
}

.brief-heading {
  margin-bottom: 78px;
  text-align: center;
}

.brief-heading h2,
.brief-heading h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.brief-heading > span {
  display: block;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.brief-confirmation {
  max-width: 620px;
  margin: 0 auto;
  padding: 24px 0 32px;
  text-align: center;
}

.confirmation-status {
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 14px;
}

.brief-confirmation h1 {
  margin: 0 0 28px;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.confirmation-copy {
  max-width: 460px;
  margin: 0 auto 12px;
  color: #b0b0b0;
  font-size: 17px;
  line-height: 1.65;
}

.confirmation-copy strong {
  color: #fff;
  font-weight: 500;
}

.confirmation-note {
  margin-bottom: 0;
  color: #989898;
  font-size: 15px;
}

.brief-confirmation .confirmation-home {
  min-height: 48px;
  margin-top: 32px;
  padding: 0 24px;
  font-size: 14px;
}

.brief-form {
  display: flex;
  max-width: 880px;
  flex-direction: column;
  gap: 44px;
  margin: 0 auto;
}

.brief-row {
  display: grid;
  gap: 32px;
}

.brief-row-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brief-field {
  display: block;
  min-width: 0;
}

.brief-field > span,
.brief-options legend {
  display: block;
  margin-bottom: 10px;
  color: #a8a8a8;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.brief-field > span small {
  margin-left: 5px;
  color: #989898;
  font-size: 13px;
  text-transform: none;
}

.brief-hint {
  display: block;
  max-width: 650px;
  margin: 0 0 14px;
  color: #989898;
  font-size: 14px;
  line-height: 1.6;
}

.brief-field input,
.brief-field textarea,
.brief-field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #444;
  border-radius: 0;
  outline: 0;
  background-color: transparent;
  color: #fff;
  box-shadow: none;
}

.brief-field input,
.brief-field select {
  height: 56px;
}

.brief-field input {
  padding: 0;
  font-size: 17px;
}

.brief-field select {
  padding: 0 32px 0 0;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8c8c8c 50%),
    linear-gradient(135deg, #8c8c8c 50%, transparent 50%);
  background-position:
    calc(100% - 5px) 50%,
    100% 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  font-size: 15px;
}

.brief-field textarea {
  min-height: 190px;
  padding: 14px 0;
  resize: vertical;
  font-size: 17px;
  line-height: 1.5;
}

.brief-field input::placeholder,
.brief-field textarea::placeholder {
  color: #858585;
  opacity: 1;
}

.brief-field input:focus,
.brief-field textarea:focus,
.brief-field select:focus,
.brief-field.is-emphasized input {
  border-bottom-color: #fff;
}

.brief-input-large {
  height: 70px !important;
  font-size: 27px !important;
  letter-spacing: -0.03em;
}

.brief-options {
  margin: 0;
  padding: 0;
  border: 0;
}

.deliverable-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.deliverable-options label {
  position: relative;
  min-height: 58px;
  cursor: pointer;
}

.deliverable-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.deliverable-options span {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  padding: 0 18px;
  border: 1px solid #3a3a3a;
  color: #b3b3b3;
  font-size: 14px;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.deliverable-options span::before {
  width: 14px;
  height: 14px;
  margin-right: 12px;
  border: 1px solid #666;
  border-radius: 50%;
  content: "";
}

.deliverable-options label:hover span {
  border-color: #676767;
  background: #161616;
  color: #fff;
}

.deliverable-options input:checked + span {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.deliverable-options input:checked + span::before {
  border: 4px solid #111;
  background: #fff;
}

.deliverable-options input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.brief-submit-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.brief-submit,
.reset-brief {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: var(--accent);
  color: #111;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.brief-submit:hover,
.reset-brief:hover {
  background: var(--accent-hover);
}

.brief-success {
  max-width: 880px;
  min-height: 500px;
  margin: 0 auto;
  padding: 64px;
  border: 1px solid var(--border);
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}

.brief-success:not([hidden]) {
  display: flex;
}

.brief-success .brand-mark {
  margin-bottom: auto;
  transform: scale(1.5);
  transform-origin: top left;
}

.brief-success > p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: none;
}

.brief-success h3 {
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.brief-success > span {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
}

.reset-brief {
  margin-top: 34px;
}

.faq-section {
  display: grid;
  grid-template-columns: 34% 66%;
  padding: 72px 0 78px;
}

.faq-heading {
  padding: 6px 24px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 18px;
  width: 100%;
  min-height: 74px;
  align-items: center;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.faq-item button:hover,
.faq-item.is-open button {
  background: var(--surface-hover);
}

.faq-question {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.faq-symbol {
  justify-self: end;
  color: #888;
  font-size: 16px;
}

.faq-item.is-open .faq-symbol {
  color: var(--accent);
}

.faq-panel {
  background: var(--surface-hover);
}

.faq-panel p {
  max-width: 650px;
  margin: 0;
  padding: 0 62px 24px 22px;
  color: #929292;
  font-size: 15px;
  line-height: 1.55;
}

.site-footer {
  width: 100%;
  padding: 72px 0 0;
}

.footer-top {
  width: var(--frame);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-self: end;
  flex-wrap: wrap;
  gap: 12px 30px;
}

.footer-links a {
  color: #a8a8a8;
  font-size: 15px;
  letter-spacing: -0.02em;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links a[aria-disabled="true"] {
  color: #707070;
  cursor: default;
}

.footer-ascii-stage {
  position: relative;
  width: calc(100% - 16px);
  height: auto;
  min-height: 150px;
  aspect-ratio: 2.65;
  margin-left: 8px;
  margin-top: 44px;
  overflow: hidden;
  background: #000;
}

.ascii-logo-footer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.96;
  pointer-events: none;
}


.noscript {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  margin: 0;
  padding: 14px;
  background: #fff;
  color: #111;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.brief-field input:focus-visible,
.brief-field select:focus-visible,
.brief-field textarea:focus-visible {
  outline: 0;
}

.site-nav .nav-brief,
.action,
.brief-submit,
.media-close,
.media-retry,
.brief-field input,
.brief-field textarea,
.brief-field select,
.deliverable-options span {
  border-radius: var(--radius-control);
  corner-shape: squircle;
}

.media-frame,
.process-row {
  border-radius: var(--radius-panel);
  corner-shape: squircle;
}

@supports (corner-shape: squircle) {
  :root {
    --radius-control: 16px;
    --radius-panel: 28px;
  }
}

@media (max-width: 760px) {
  :root {
    --frame: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 62px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 62px;
    padding: 0;
  }

  .site-header::before {
    inset: 6px -6px;
    border-radius: 20px;
  }

  .brand-mark {
    width: 50px;
  }

  .site-nav {
    justify-self: end;
  }

  .site-nav a {
    width: auto;
  }

  .site-nav .nav-brief {
    justify-content: center;
    min-height: 40px;
    margin-top: 0;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    min-height: 610px;
    padding: 88px 18px 145px;
  }

  .ascii-logo-hero {
    inset: 34px 0 118px;
    width: 100%;
    height: calc(100% - 152px);
    opacity: 0.82;
  }

  .hero-copy {
    padding: 28px 4px;
  }

  .hero-copy::before {
    inset: -42px -24px;
  }

  .hero h1 {
    font-size: clamp(36px, 7.5vw, 48px);
    line-height: 1.12;
  }

  .hero-copy > p {
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 27px;
  }

  .action {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .client-strip {
    min-height: 130px;
    padding: 16px 12px 20px;
  }

  .client-strip > p {
    font-size: 11px;
  }

  #client-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    max-width: 320px;
    margin: 0 auto;
  }

  .client-item {
    min-width: 0;
    font-size: 14px;
  }

  .section-heading h2,
  .work-heading h2,
  .process-heading h2,
  .proof-heading h2,
  .faq-heading h2 {
    font-size: 28px;
  }

  .reel-section {
    padding: 44px 10px 42px;
  }

  .reel-heading {
    gap: 20px;
    padding-bottom: 28px;
  }

  .reel-frame {
    aspect-ratio: 1.36 / 1;
  }

  .reel-center {
    gap: 20px;
  }

  .reel-mark {
    width: 92px;
  }

  #reel-status {
    max-width: 210px;
    font-size: 8px;
    text-align: center;
  }

  .work-section {
    padding: 54px 10px 62px;
  }

  .work-heading {
    margin-bottom: 34px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-frame {
    aspect-ratio: 315 / 250;
  }

  .project-placeholder-center strong {
    font-size: 42px;
  }

  .process-section {
    padding: 58px 10px 62px;
  }

  .process-heading {
    align-items: baseline;
    gap: 14px;
    flex-direction: row;
    margin-bottom: 30px;
  }

  .process-heading p {
    margin: 0;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-row {
    min-height: 234px;
    padding: 22px;
    border-right: 1px solid var(--border);
  }

  .process-row:last-child {
    border-color: #b4d6a3;
  }

  .process-row h3 {
    margin-top: 0;
    font-size: 30px;
  }

  .process-row p {
    font-size: 15px;
  }

  .process-number {
    margin-bottom: 36px;
  }

  .process-row > .process-signature {
    top: 22px;
    right: 22px;
    width: 90px;
    height: 42px;
  }

  .process-meta {
    margin-top: 28px;
  }

  .proof-section {
    min-height: 0;
    padding: 84px 10px 88px;
  }

  .proof-heading h2 {
    max-width: 310px;
    margin: 0 auto;
    font-size: 32px;
  }

  .proof-heading p {
    font-size: 14px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 62px;
  }

  .quote-card {
    min-height: 156px;
  }

  .brief-section,
  .brief-page .brief-section {
    padding: 84px 12px 92px;
  }

  .brief-heading {
    margin-bottom: 58px;
    text-align: left;
  }

  .brief-heading h2,
  .brief-heading h1 {
    font-size: 40px;
  }

  .brief-heading > span {
    font-size: 14px;
  }

  .brief-confirmation {
    padding: 0;
    text-align: left;
  }

  .confirmation-copy {
    font-size: 16px;
  }

  .brief-form {
    gap: 40px;
  }

  .brief-row-two {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brief-field input,
  .brief-field textarea {
    font-size: 16px;
  }

  .brief-input-large {
    font-size: 22px !important;
  }

  .deliverable-options {
    grid-template-columns: 1fr;
  }

  .brief-field textarea {
    min-height: 220px;
  }

  .brief-submit {
    width: 100%;
  }

  .brief-success {
    min-height: 500px;
    padding: 34px 24px;
  }

  .brief-success h3 {
    font-size: 30px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    padding: 58px 0 64px;
  }

  .faq-heading {
    padding: 0 10px 30px;
  }

  .faq-item button {
    min-height: 70px;
    padding: 0 14px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-panel p {
    padding: 0 42px 22px 14px;
    font-size: 14px;
  }

  .site-footer {
    padding: 52px 0 0;
  }

  .footer-top {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-links {
    justify-self: start;
    gap: 10px 22px;
  }

  .footer-links a:first-child {
    flex-basis: 100%;
  }

  .footer-ascii-stage {
    margin-top: 32px;
  }
}

@media (max-width: 390px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .action {
    width: 100%;
  }

  .client-item {
    font-size: 13px;
  }

  .brief-section {
    padding-right: 8px;
    padding-left: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
[data-home-section][hidden],
[data-work-link][hidden] {
  display: none !important;
}

.footer-links a[hidden],
.footer-top[hidden] { display: none !important; }

.work-attribution { max-width: 650px; margin: 16px 0 28px; color: #a0a0a0; font-size: 14px; line-height: 1.6; }

.work-film-dialog {
  width: min(1100px, calc(100vw - 48px), calc((100dvh - 140px) * 16 / 9));
  max-width: none;
  max-height: calc(100dvh - 48px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  overflow: visible;
}
.work-film-dialog::backdrop { background: rgba(0, 0, 0, 0.88); }
.work-film-dialog h2 { margin: 0 48px 18px 0; font-size: clamp(18px, 2vw, 24px); font-weight: 500; letter-spacing: -0.03em; }
.work-film-frame { aspect-ratio: 16 / 9; border-radius: 8px; background: #090909; }
.work-film-dialog .media-close { width: 36px; height: 36px; }
@media (max-width: 600px) {
  .work-film-dialog { width: min(calc(100vw - 24px), calc((100dvh - 100px) * 16 / 9)); }
  .work-film-dialog h2 { margin-bottom: 12px; }
}
