:root {
  color-scheme: dark;
  --black: #030302;
  --ink: #0b0907;
  --ink-2: #16120d;
  --smoke: #29241e;
  --paper: #f5efe4;
  --paper-2: #ded2bf;
  --champagne: #d7b36a;
  --gold: #f5aa18;
  --bronze: #8e6b3b;
  --stone: #8e887d;
  --sage: #75846f;
  --white: #fffaf0;
  --muted: rgba(255, 250, 240, 0.68);
  --border: rgba(255, 250, 240, 0.15);
  --shadow: rgba(0, 0, 0, 0.42);
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(215, 179, 106, 0.08), transparent 28rem),
    linear-gradient(135deg, #080605 0%, #16120d 44%, #0c0a08 100%);
  font-family:
    "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.preloader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  color: var(--white);
  background: var(--black);
  transition:
    opacity 700ms ease,
    visibility 700ms ease;
}

.preloader img {
  width: 112px;
  height: 82px;
  object-fit: contain;
  animation: logoPulse 1600ms ease-in-out infinite;
}

.preloader span {
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--champagne), var(--white));
  box-shadow: 0 0 18px rgba(245, 170, 24, 0.72);
}

.cursor-glow {
  position: fixed;
  z-index: 2;
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 50%);
  width: 42vmax;
  height: 42vmax;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.17;
  background: radial-gradient(circle, rgba(215, 179, 106, 0.22), transparent 62%);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition:
    background 240ms ease,
    box-shadow 240ms ease,
    padding 240ms ease,
    border-color 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-top: 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(215, 179, 106, 0.16);
  background: rgba(7, 6, 5, 0.84);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 820;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  width: 54px;
  height: 40px;
  object-fit: contain;
  background: #000;
}

.brand span,
.footer-brand span {
  white-space: nowrap;
}

.site-nav,
.header-actions,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.9rem;
  font-weight: 720;
}

.site-nav {
  justify-self: center;
}

.site-nav a,
.header-actions a:not(.button),
.site-footer a {
  position: relative;
}

.site-nav a::after,
.header-actions a:not(.button)::after,
.site-footer a::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 190ms ease;
}

.site-nav a:hover::after,
.header-actions a:not(.button):hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: #100d08;
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(245, 170, 24, 0.18);
  font-weight: 830;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

/* AS Studio v2: expanded brand, project folders, and client brief. */
.studio-header {
  padding-top: 24px;
  padding-bottom: 24px;
}

.studio-header .brand {
  gap: 15px;
  font-size: 1.16rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-header .brand img {
  width: 78px;
  height: 56px;
  background: transparent;
}

.studio-header.is-scrolled,
.studio-header.is-open {
  padding-top: 13px;
  padding-bottom: 13px;
}

.studio-header.is-scrolled .brand img,
.studio-header.is-open .brand img {
  width: 62px;
  height: 44px;
}

.hero-reimagined {
  align-items: center;
  min-height: max(760px, 100svh);
  padding-top: 158px;
  padding-bottom: 120px;
}

.hero-still img {
  filter: saturate(0.78) contrast(1.04) brightness(0.72);
}

.hero-reimagined .hero-shade {
  background: linear-gradient(90deg, rgba(3, 3, 2, 0.9), rgba(3, 3, 2, 0.48) 52%, rgba(3, 3, 2, 0.34)), linear-gradient(0deg, rgba(3, 3, 2, 0.84), transparent 54%, rgba(3, 3, 2, 0.28));
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(90deg, transparent 49.85%, rgba(245, 239, 228, 0.26) 50%, transparent 50.15%), linear-gradient(0deg, transparent 49.85%, rgba(245, 239, 228, 0.14) 50%, transparent 50.15%);
  background-size: 180px 180px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.hero-title-v2 {
  max-width: 880px;
  font-size: clamp(4.9rem, 10.8vw, 10.7rem);
  line-height: 0.88;
}

.hero-title-v2 em {
  display: block;
  max-width: 670px;
  margin-top: 25px;
  color: var(--champagne);
  font-size: clamp(1.45rem, 3.2vw, 3.4rem);
  font-style: italic;
  line-height: 1.02;
}

.hero-reimagined .hero-copy {
  max-width: 570px;
}

.hero-index {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 5vw, 74px);
  bottom: 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 360px;
}

.hero-index span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 74px);
  bottom: 24px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.32);
  border-radius: 50%;
  color: var(--white);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.hero-scroll:hover {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--ink);
  transform: translateY(4px);
}

.studio-atlas {
  overflow: hidden;
  background: #0b0907;
}

.atlas-copy {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-bottom: 54px;
}

.atlas-stage {
  position: relative;
  width: min(1500px, calc(100% - 36px));
  height: min(68vw, 720px);
  min-height: 470px;
  margin: 0 auto 42px;
  overflow: hidden;
  border: 1px solid rgba(245, 170, 24, 0.26);
  background-color: #14100b;
  box-shadow: 0 46px 100px rgba(0, 0, 0, 0.42);
}

.atlas-stage::before,
.atlas-stage::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.atlas-stage::before {
  inset: 14px;
  border: 1px solid rgba(255, 250, 240, 0.14);
}

.atlas-stage::after {
  top: 0;
  bottom: 0;
  left: 16%;
  width: 1px;
  background: rgba(255, 250, 240, 0.13);
}

.atlas-stage canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: none;
}

.atlas-stage canvas:active {
  cursor: grabbing;
}

.atlas-controls {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.atlas-controls button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 3px;
  color: var(--white);
  background: rgba(3, 3, 2, 0.56);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.atlas-controls button:hover,
.atlas-controls button.is-active {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-2px);
}

.atlas-label {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 34px;
  margin: 0;
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.material-card {
  width: 100%;
  padding: 0;
  color: inherit;
  cursor: zoom-in;
}

.material-card:focus-visible,
.project-folder:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible,
.project-modal-close:focus-visible,
.voice-capture:focus-visible,
.icon-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.project-archives {
  color: var(--white);
  background: #0b0907;
}

.project-folder-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 48px auto 0;
}

.project-folder {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 250, 240, 0.15);
  border-radius: 8px;
  color: var(--white);
  background: #17120e;
  cursor: pointer;
  text-align: left;
  isolation: isolate;
  transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.project-folder:nth-child(3n + 1) {
  grid-row: span 2;
  min-height: 760px;
}

.project-folder::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 3, 2, 0.88), transparent 58%), linear-gradient(120deg, rgba(215, 179, 106, 0.26), transparent 45%);
  transition: opacity 300ms ease;
}

.project-folder:hover {
  border-color: var(--gold);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.36);
  transform: translateY(-6px);
}

.project-folder:hover::after {
  opacity: 0.72;
}

.project-folder img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 500ms ease;
}

.project-folder:hover img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.08);
}

.folder-meta {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
}

.folder-number,
.folder-count {
  display: block;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.folder-meta h3 {
  max-width: 560px;
  margin: 8px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 0.94;
}

.folder-meta p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
}

.folder-count {
  margin-top: 17px;
  color: rgba(255, 250, 240, 0.74);
}

.transformation {
  overflow: hidden;
  padding-bottom: clamp(72px, 9vw, 130px);
  background: #17120e;
}

.transformation-copy {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-bottom: 48px;
}

.before-after-real {
  width: min(1480px, calc(100% - 36px));
  min-height: min(60vw, 760px);
  margin: 0 auto 16px;
  border: 1px solid rgba(255, 250, 240, 0.15);
  border-radius: 8px;
  cursor: col-resize;
}

.before-after-real img {
  height: min(60vw, 760px);
  min-height: 460px;
}

.transformation > .reveal-range {
  width: min(1480px, calc(100% - 36px));
  display: block;
  margin: 0 auto;
}

.studio-motion {
  border-top: 1px solid rgba(245, 170, 24, 0.2);
}

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

.reel-grid-two video {
  aspect-ratio: 9 / 14;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.reel-grid-two video:hover {
  border-color: var(--gold);
  box-shadow: 0 32px 74px rgba(0, 0, 0, 0.48);
  transform: translateY(-6px);
}

.brief-section {
  color: var(--white);
  background: #0b0907;
}

.brief-intake {
  width: min(var(--max), 100%);
  margin: 50px auto 0;
  padding: clamp(20px, 4vw, 44px);
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: #15110d;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
}

.brief-fields-wide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.brief-fields-wide label,
.brief-story > label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.04em;
}

.brief-fields-wide input,
.brief-fields-wide select,
.brief-story textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 250, 240, 0.055);
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.brief-fields-wide input,
.brief-fields-wide select {
  min-height: 50px;
  padding: 0 13px;
}

.brief-story textarea {
  min-height: 138px;
  resize: vertical;
  padding: 14px;
  line-height: 1.55;
}

.brief-fields-wide input:focus,
.brief-fields-wide select:focus,
.brief-story textarea:focus {
  border-color: var(--gold);
  background: rgba(245, 170, 24, 0.06);
  box-shadow: 0 0 0 3px rgba(245, 170, 24, 0.14);
}

.brief-fields-wide select option {
  color: var(--ink);
}

.brief-story {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
}

.brief-story-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.voice-capture {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--ink);
  background: var(--gold);
  cursor: pointer;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.voice-capture:hover,
.voice-capture[aria-pressed="true"] {
  background: #ffc85a;
  box-shadow: 0 14px 32px rgba(245, 170, 24, 0.22);
  transform: translateY(-2px);
}

.voice-capture[aria-pressed="true"] i {
  animation: micPulse 900ms ease-in-out infinite;
}

.voice-status {
  min-height: 1.35em;
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.82rem;
}

.prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.prompt-chips button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 3px;
  color: rgba(255, 250, 240, 0.86);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.prompt-chips button:hover {
  border-color: var(--champagne);
  color: var(--ink);
  background: var(--champagne);
  transform: translateY(-2px);
}

.reference-upload {
  position: relative;
  min-height: 136px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 7px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px dashed rgba(245, 170, 24, 0.56);
  border-radius: 4px;
  color: rgba(255, 250, 240, 0.78);
  cursor: pointer;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease;
}

.reference-upload:hover {
  border-color: var(--gold);
  background: rgba(245, 170, 24, 0.08);
}

.reference-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.reference-upload strong {
  color: var(--white);
  font-size: 0.88rem;
}

.reference-upload small {
  color: var(--champagne);
}

.brief-response {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
  margin-top: 30px;
  padding: 25px;
  border-left: 2px solid var(--gold);
  background: rgba(245, 170, 24, 0.075);
}

.brief-response .eyebrow {
  margin-bottom: 8px;
}

.brief-response h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  font-weight: 500;
  line-height: 1.02;
}

.brief-response p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.74);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-2px);
}

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

.is-disabled {
  opacity: 0.48;
  pointer-events: none;
}

.contact-v2 {
  min-height: 680px;
}

.contact-v2 .contact-image {
  cursor: zoom-in;
}

.site-footer {
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer .footer-brand img {
  width: 64px;
  height: 48px;
  background: transparent;
}

.lightbox,
.project-modal {
  position: fixed;
  z-index: 110;
  inset: 0;
  background: rgba(3, 3, 2, 0.94);
  backdrop-filter: blur(16px);
}

.lightbox {
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 76px);
}

.lightbox figure {
  width: min(1360px, 100%);
  max-height: 100%;
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close,
.project-modal-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(3, 3, 2, 0.42);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lightbox-close,
.project-modal-close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
}

.lightbox-nav {
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

.lightbox-close:hover,
.project-modal-close:hover,
.lightbox-nav:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.project-modal {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  overflow: auto;
}

.project-modal-copy {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  padding: clamp(96px, 11vw, 150px) clamp(26px, 5vw, 74px) 40px;
  border-right: 1px solid rgba(255, 250, 240, 0.15);
}

.project-modal-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.8vw, 6.5rem);
  font-weight: 500;
  line-height: 0.9;
}

.project-modal-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.72);
}

.project-modal-copy > span {
  display: block;
  margin-top: 26px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 88px 28px 28px;
}

.project-modal-gallery button {
  min-height: 300px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 6px;
  background: #17120e;
  cursor: zoom-in;
}

.project-modal-gallery button:nth-child(5n + 1) {
  grid-column: span 2;
  min-height: 540px;
}

.project-modal-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 540ms ease, filter 540ms ease;
}

.project-modal-gallery button:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

@keyframes micPulse {
  50% {
    transform: scale(1.16);
  }
}

@media (max-width: 1100px) {
  .service-grid-expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-voice-bridge {
    grid-template-columns: 1fr;
  }

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

  .project-folder:nth-child(3n + 1) {
    grid-row: auto;
    min-height: 540px;
  }

  .atlas-stage {
    height: 650px;
  }
}

@media (max-width: 680px) {
  .studio-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .studio-header .brand {
    gap: 9px;
    font-size: 0.88rem;
  }

  .studio-header .brand img,
  .studio-header.is-scrolled .brand img,
  .studio-header.is-open .brand img {
    width: 64px;
    height: 46px;
  }

  .hero-reimagined {
    min-height: 760px;
    padding-top: 134px;
  }

  .hero-title-v2 {
    font-size: clamp(4rem, 17vw, 5.8rem);
  }

  .hero-title-v2 em {
    margin-top: 18px;
    font-size: 1.55rem;
  }

  .hero-index {
    right: 18px;
    bottom: 58px;
    justify-content: flex-start;
    max-width: calc(100% - 36px);
  }

  .hero-scroll {
    right: 18px;
    bottom: 18px;
  }

  .atlas-copy {
    padding-bottom: 32px;
  }

  .atlas-stage {
    width: calc(100% - 24px);
    height: 560px;
    min-height: 0;
    margin-bottom: 24px;
  }

  .atlas-controls {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .atlas-controls button {
    flex: 1;
    padding: 0 8px;
    font-size: 0.65rem;
  }

  .atlas-label {
    top: 24px;
    right: 24px;
  }

  .project-folder-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

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

  .service-card-visual {
    min-height: 320px;
  }

  .home-voice-stack {
    grid-template-columns: 1fr;
  }

  .home-voice-stack figure:nth-child(2) {
    margin-bottom: 0;
  }

  .project-folder,
  .project-folder:nth-child(3n + 1) {
    min-height: 460px;
  }

  .folder-meta {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .before-after-real,
  .transformation > .reveal-range {
    width: calc(100% - 24px);
  }

  .before-after-real img {
    height: 460px;
  }

  .reel-grid-two {
    grid-template-columns: 1fr;
  }

  .brief-intake {
    margin-top: 32px;
    padding: 20px 16px;
  }

  .brief-fields-wide {
    grid-template-columns: 1fr;
  }

  .brief-story-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .voice-capture {
    width: 100%;
  }

  .brief-response {
    padding: 18px;
  }

  .project-modal {
    display: block;
  }

  .project-modal-copy {
    position: relative;
    min-height: auto;
    padding: 92px 22px 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.15);
  }

  .project-modal-gallery {
    grid-template-columns: 1fr;
    padding: 16px 12px 28px;
  }

  .project-modal-gallery button,
  .project-modal-gallery button:nth-child(5n + 1) {
    grid-column: auto;
    min-height: 300px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-nav.prev {
    left: calc(50% - 56px);
  }

  .lightbox-nav.next {
    right: calc(50% - 56px);
  }

  .lightbox-nav:hover {
    transform: scale(1.06);
  }
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(245, 170, 24, 0.27);
}

.button-small {
  min-height: 38px;
  padding-inline: 16px;
  font-size: 0.82rem;
}

.button-ghost,
.button-ghost-dark {
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.32);
  background: rgba(255, 250, 240, 0.08);
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

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

.button-ghost-dark:hover {
  color: var(--ink);
  border-color: var(--champagne);
  background: var(--champagne);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 74px) 68px;
  background: var(--black);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.05);
  transform-origin: center;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 3, 2, 0.84), rgba(3, 3, 2, 0.34) 57%, rgba(3, 3, 2, 0.18)),
    linear-gradient(0deg, rgba(3, 3, 2, 0.86), rgba(3, 3, 2, 0.12) 52%, rgba(3, 3, 2, 0.42));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 14vw, 13.5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.78;
}

.hero-title span {
  display: block;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 5vw, 74px);
  bottom: 54px;
  width: min(390px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(5, 4, 3, 0.38);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 112px;
  padding: 18px;
  border-left: 1px solid rgba(255, 250, 240, 0.12);
}

.hero-panel div:first-child {
  border-left: 0;
}

.hero-panel span {
  display: block;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-panel p {
  margin: 12px 0 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 250, 240, 0.08);
  border-bottom: 1px solid rgba(255, 250, 240, 0.08);
  background: rgba(255, 250, 240, 0.045);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 32px;
  padding: 17px 0;
  animation: marquee 34s linear infinite;
}

.marquee span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services {
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(117, 132, 111, 0.16), transparent 42%),
    var(--paper);
}

.services .eyebrow {
  color: var(--bronze);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(11, 9, 7, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.78), rgba(245, 239, 228, 0.94)),
    var(--white);
  box-shadow: 0 26px 70px rgba(11, 9, 7, 0.08);
}

.service-card span,
.style-finder .tool-copy > span,
.palette-builder .tool-copy > span,
.scope-compass .tool-copy > span,
.reveal-tool .tool-copy > span {
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.service-card h3 {
  margin: 70px 0 0;
  font-size: clamp(1.26rem, 1.8vw, 1.7rem);
  line-height: 1.08;
}

.service-card p {
  margin-top: auto;
  color: rgba(11, 9, 7, 0.66);
}

.service-grid-expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  color: var(--paper);
  background: #17120e;
  isolation: isolate;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.service-card-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 3, 2, 0.2), rgba(3, 3, 2, 0.78)),
    linear-gradient(120deg, rgba(245, 170, 24, 0.18), transparent 54%);
}

.service-card-visual img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.66);
  transform: scale(1.02);
  transition: transform 640ms ease, filter 360ms ease;
}

.service-card-visual:hover,
.service-card-visual:focus-within {
  border-color: rgba(245, 170, 24, 0.82);
  box-shadow: 0 30px 80px rgba(38, 25, 11, 0.25);
}

.service-card-visual:hover img {
  filter: saturate(1) brightness(0.78);
  transform: scale(1.08);
}

.service-card-visual span {
  position: relative;
  z-index: 1;
  margin: 26px 28px 0;
  color: var(--gold);
}

.service-card-visual h3 {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin: auto 28px 0;
  color: var(--paper);
}

.service-card-visual p {
  position: relative;
  z-index: 1;
  margin: 16px 28px 28px;
  color: rgba(255, 250, 240, 0.76);
}

.home-voice-bridge {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 0.86fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 24% 30%, rgba(245, 170, 24, 0.22), transparent 35%),
    #17120e;
}

.home-voice-copy {
  max-width: 720px;
}

.home-voice-copy .eyebrow {
  color: var(--gold);
}

.home-voice-copy .section-title {
  color: var(--paper);
}

.home-voice-copy p:not(.eyebrow) {
  max-width: 54ch;
  color: rgba(255, 250, 240, 0.72);
  line-height: 1.7;
}

.home-voice-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.home-voice-stack figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.16);
  background: rgba(255, 250, 240, 0.08);
}

.home-voice-stack figure:nth-child(2) {
  margin-bottom: 42px;
}

.home-voice-stack img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 520ms ease, filter 320ms ease;
}

.home-voice-stack figure:hover img {
  filter: saturate(1.05) brightness(1.05);
  transform: scale(1.05);
}

.home-voice-stack figcaption {
  padding: 14px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(76px, 9vw, 132px) clamp(18px, 5vw, 74px);
}

.split-grid,
.section-heading,
.material-board,
.service-grid,
.gallery-grid,
.idea-grid,
.tool-grid,
.process-list,
.site-footer {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.split-grid,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.74fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.4vw, 5.7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.lead-copy,
.section-note {
  color: rgba(255, 250, 240, 0.72);
  font-size: 1.05rem;
}

.lead-copy p:first-child,
.section-note {
  margin-top: 0;
}

.material-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(44px, 7vw, 78px);
}

.material-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  min-height: 260px;
  background: var(--ink-2);
}

.material-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.material-card:hover img {
  transform: scale(1.07);
  filter: saturate(1) contrast(1.08);
}

.material-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 3, 2, 0.5);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.feature-work {
  padding: clamp(80px, 10vw, 150px) clamp(18px, 5vw, 74px);
  background: var(--paper);
  color: var(--ink);
}

.feature-copy,
.feature-case {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.feature-copy {
  margin-bottom: 52px;
}

.feature-work .eyebrow,
.ideas .eyebrow,
.process .eyebrow {
  color: var(--bronze);
}

.feature-case {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  margin-top: 34px;
}

.feature-case.reverse {
  grid-template-columns: minmax(320px, 0.54fr) minmax(0, 1fr);
}

.feature-case.reverse .case-media {
  order: 2;
}

.case-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.case-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
}

.case-copy {
  padding: 6px 0;
}

.case-copy span,
.gallery-card span,
.idea-card span,
.process-list span {
  color: var(--bronze);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.case-copy h3,
.idea-card h3,
.process-list h3 {
  margin: 22px 0 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.case-copy p,
.idea-card p,
.process-list p {
  color: rgba(11, 9, 7, 0.67);
}

.gallery {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.04), transparent 18rem),
    var(--ink);
}

.gallery-tools {
  width: min(var(--max), 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px auto 0;
}

.filter-button {
  min-height: 39px;
  padding: 0 15px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.74);
  background: rgba(255, 250, 240, 0.04);
  cursor: pointer;
  transition:
    color 190ms ease,
    background 190ms ease,
    border-color 190ms ease,
    transform 190ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--ink);
  border-color: var(--champagne);
  background: var(--champagne);
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background: var(--smoke);
  cursor: pointer;
}

.gallery-card:nth-child(8n + 1),
.gallery-card:nth-child(8n + 6) {
  grid-column: span 6;
  min-height: 430px;
}

.gallery-card:nth-child(8n + 4) {
  grid-column: span 5;
}

.gallery-card:nth-child(8n + 5) {
  grid-column: span 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
  transition:
    transform 650ms ease,
    filter 650ms ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.05);
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(3, 3, 2, 0.72), transparent 48%),
    linear-gradient(120deg, rgba(215, 179, 106, 0.14), transparent 42%);
  opacity: 0.72;
  transition: opacity 220ms ease;
}

.gallery-card:hover::after {
  opacity: 0.92;
}

.gallery-caption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: block;
}

.gallery-kicker {
  display: block;
  color: var(--champagne);
  font-size: 0.98rem;
}

.gallery-title {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.15rem;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.12;
}

.gallery-card.is-hidden {
  display: none;
}

.reel {
  display: grid;
  grid-template-columns: minmax(320px, 0.64fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(76px, 9vw, 132px) clamp(18px, 5vw, 74px);
  background:
    linear-gradient(90deg, rgba(215, 179, 106, 0.12), transparent 48%),
    #060504;
}

.reel-copy {
  max-width: 620px;
}

.reel-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 500;
}

.reel-copy p:not(.eyebrow) {
  color: var(--muted);
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.reel-grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.ideas,
.toolbox,
.process {
  color: var(--ink);
  background: var(--paper);
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: rgba(11, 9, 7, 0.14);
}

.idea-card {
  min-height: 282px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: #fffaf0;
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.idea-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  background: #fff6e5;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
}

.idea-card p {
  margin-top: auto;
}

.toolbox {
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(117, 132, 111, 0.16), transparent 36%),
    linear-gradient(0deg, rgba(255, 250, 240, 0.035), transparent 22rem),
    var(--ink);
}

.tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 14px;
  margin-top: 48px;
}

.style-finder,
.palette-builder,
.scope-compass,
.reveal-tool {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.05);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.style-finder {
  min-height: 660px;
  grid-row: span 2;
  display: grid;
  align-content: end;
}

.style-preview {
  position: absolute;
  inset: 0;
}

.style-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(3, 3, 2, 0.88), rgba(3, 3, 2, 0.18) 58%, rgba(3, 3, 2, 0.38)),
    linear-gradient(120deg, rgba(215, 179, 106, 0.24), transparent 44%);
}

.style-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition:
    opacity 260ms ease,
    transform 700ms ease;
}

.style-finder:hover .style-preview img {
  transform: scale(1.06);
}

.tool-copy {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.tool-copy h3 {
  margin: 16px 0 0;
  font-size: clamp(1.4rem, 2.4vw, 2.6rem);
  line-height: 1.02;
}

.tool-copy p {
  color: rgba(255, 250, 240, 0.72);
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tool-tags span,
.segmented-control button,
.palette-options button {
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.78);
  background: rgba(255, 250, 240, 0.08);
  font-size: 0.78rem;
  font-weight: 820;
}

.tool-tags span {
  padding: 8px 11px;
}

.segmented-control,
.palette-options {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 28px 28px;
}

.segmented-control button,
.palette-options button {
  min-height: 38px;
  padding: 0 14px;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.segmented-control button:hover,
.segmented-control button.is-active,
.palette-options button:hover,
.palette-options button.is-active {
  color: var(--ink);
  border-color: var(--champagne);
  background: var(--champagne);
  transform: translateY(-1px);
}

.palette-builder,
.scope-compass,
.reveal-tool {
  min-height: 322px;
}

.palette-preview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 0 28px 24px;
}

.palette-preview span {
  min-height: 84px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(0, 0, 0, 0.08)),
    var(--swatch);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.12);
}

.scope-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 28px;
}

.scope-controls label {
  display: grid;
  gap: 9px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.82rem;
  font-weight: 760;
}

.scope-controls input,
.scope-controls select {
  width: 100%;
  accent-color: var(--champagne);
}

.scope-controls select {
  height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 250, 240, 0.08);
}

.scope-controls select option {
  color: var(--ink);
}

.scope-output {
  margin: 24px 28px 28px;
  padding: 20px;
  border: 1px solid rgba(215, 179, 106, 0.2);
  border-radius: 8px;
  background: rgba(215, 179, 106, 0.08);
}

.scope-output strong {
  display: block;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.scope-output span {
  display: block;
  margin-top: 10px;
  font-weight: 840;
}

.scope-output p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.7);
}

.before-after {
  position: relative;
  min-height: 254px;
  margin: 0 28px 18px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
}

.before-after img {
  width: 100%;
  height: 254px;
  object-fit: cover;
}

.before-after .after-image {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--reveal, 55%)) 0 0);
}

.before-after::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal, 55%);
  width: 2px;
  content: "";
  background: var(--champagne);
  box-shadow: 0 0 20px rgba(215, 179, 106, 0.8);
}

.before-after span {
  position: absolute;
  top: 14px;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 3, 2, 0.52);
  font-size: 0.74rem;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-after span:first-of-type {
  left: 14px;
}

.before-after span:last-of-type {
  right: 14px;
}

.reveal-range {
  width: calc(100% - 56px);
  margin: 0 28px 28px;
  accent-color: var(--champagne);
}

.process {
  background: #e7ddce;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin-top: 50px;
  list-style: none;
}

.process-list li {
  min-height: 250px;
  padding-top: 26px;
  border-top: 1px solid rgba(11, 9, 7, 0.24);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.72fr);
  min-height: 760px;
  background: var(--black);
}

.contact-image {
  min-height: 460px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px);
}

.contact-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5.4vw, 5.5rem);
  line-height: 0.96;
  font-weight: 500;
}

.contact-panel p:not(.eyebrow) {
  color: var(--muted);
}

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

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  color: rgba(255, 250, 240, 0.72);
  font-style: normal;
}

.contact-details a {
  color: var(--champagne);
  font-weight: 820;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.82rem;
  font-weight: 760;
}

.contact-form label:nth-child(4),
.submit {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.17);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 250, 240, 0.055);
  outline: 0;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
  padding: 12px 13px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(215, 179, 106, 0.18);
}

.contact-form select option {
  color: var(--ink);
}

.brief-builder {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.045);
}

.brief-builder h3 {
  margin: 0;
  font-size: 1rem;
}

.brief-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.brief-builder label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.8rem;
  font-weight: 760;
}

.brief-builder select {
  height: 44px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid rgba(255, 250, 240, 0.17);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 250, 240, 0.055);
}

.brief-builder select option {
  color: var(--ink);
}

.brief-builder .button {
  width: 100%;
  margin-top: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 5vw, 74px);
  color: rgba(255, 250, 240, 0.7);
  background: #000;
}

.site-footer p {
  margin: 0;
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(1120px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.lightbox figcaption {
  margin-top: 14px;
  color: rgba(255, 250, 240, 0.76);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  width: 19px;
  height: 2px;
  content: "";
  background: var(--white);
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-nav {
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(215, 179, 106, 0.28);
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

.lightbox-nav::before {
  width: 12px;
  height: 12px;
  content: "";
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.lightbox-nav.prev::before {
  transform: rotate(-45deg) translate(2px, 2px);
}

.lightbox-nav.next::before {
  transform: rotate(135deg) translate(2px, 2px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.76;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 14px;
  }

  .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 250, 240, 0.12);
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
    padding-top: 10px;
  }

  .split-grid,
  .section-heading,
  .feature-case,
  .feature-case.reverse,
  .reel,
  .contact {
    grid-template-columns: 1fr;
  }

  .feature-case.reverse .case-media {
    order: 0;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(560px, 100%);
    margin-top: 38px;
  }

  .material-board,
  .service-grid,
  .idea-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .style-finder {
    min-height: 560px;
  }

  .gallery-card,
  .gallery-card:nth-child(8n + 1),
  .gallery-card:nth-child(8n + 4),
  .gallery-card:nth-child(8n + 5),
  .gallery-card:nth-child(8n + 6) {
    grid-column: span 6;
  }

  .contact-image {
    min-height: 640px;
  }
}

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

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

  .brand img,
  .footer-brand img {
    width: 46px;
    height: 34px;
  }

  .hero {
    min-height: 100svh;
    padding: 126px 18px 48px;
  }

  .hero-title {
    font-size: clamp(4.6rem, 24vw, 6.4rem);
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 240, 0.12);
  }

  .hero-panel div:first-child {
    border-top: 0;
  }

  .section-pad,
  .feature-work,
  .reel {
    padding-inline: 18px;
  }

  .material-board,
  .service-grid,
  .idea-grid,
  .process-list,
  .reel-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
  }

  .service-card h3 {
    margin-top: 44px;
  }

  .tool-copy,
  .segmented-control,
  .palette-options {
    padding-inline: 18px;
  }

  .segmented-control,
  .palette-options {
    padding-bottom: 22px;
  }

  .style-finder {
    min-height: 620px;
  }

  .palette-preview,
  .scope-controls,
  .brief-fields {
    grid-template-columns: 1fr;
  }

  .palette-preview {
    padding-inline: 18px;
  }

  .palette-preview span {
    min-height: 54px;
  }

  .scope-controls {
    padding-inline: 18px;
  }

  .scope-output,
  .before-after {
    margin-inline: 18px;
  }

  .reveal-range {
    width: calc(100% - 36px);
    margin-inline: 18px;
  }

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

  .gallery-card,
  .gallery-card:nth-child(8n + 1),
  .gallery-card:nth-child(8n + 4),
  .gallery-card:nth-child(8n + 5),
  .gallery-card:nth-child(8n + 6) {
    grid-column: auto;
    min-height: 340px;
  }

  .contact-image {
    min-height: 480px;
  }

  .contact-panel {
    padding: 50px 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

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

  .lightbox {
    padding: 18px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final cascade for the AS Studio v2 composition. */
.site-header.studio-header {
  padding-top: 24px;
  padding-bottom: 24px;
}

.site-header.studio-header.is-scrolled,
.site-header.studio-header.is-open {
  padding-top: 13px;
  padding-bottom: 13px;
}

.hero.hero-reimagined {
  align-items: center;
  min-height: max(760px, 100svh);
  padding-top: 158px;
  padding-bottom: 120px;
}

.brief-intake .brief-fields-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lightbox {
  z-index: 110;
  padding: clamp(18px, 5vw, 76px);
  background: rgba(3, 3, 2, 0.94);
  backdrop-filter: blur(16px);
}

.lightbox figure {
  width: min(1360px, 100%);
  max-height: 100%;
}

.lightbox figure img {
  max-height: calc(100vh - 140px);
  object-fit: contain;
}

.lightbox-close::before,
.lightbox-close::after,
.lightbox-nav::before {
  content: none;
}

@media (max-width: 1100px) {
  .brief-intake .brief-fields-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header.studio-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero.hero-reimagined {
    min-height: 760px;
    padding-top: 134px;
  }

  .brief-intake .brief-fields-wide {
    grid-template-columns: 1fr;
  }
}

.atlas-stage {
  width: 100%;
  border: 0;
  box-shadow: none;
}

.atlas-stage::before {
  display: none;
}

.lightbox {
  z-index: 120;
}

.project-modal {
  z-index: 110;
}

.project-modal[hidden] {
  display: none;
}

.hero-reimagined .reveal {
  opacity: 1;
  transform: none;
}

/* Multi-page studio extension: partners, art, project archive, and concierge. */
.partners {
  color: var(--ink);
  background: #f7f3eb;
}

.partners .eyebrow,
.partners .section-note {
  color: var(--bronze);
}

.partner-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 50px auto 0;
  background: rgba(17, 14, 10, 0.18);
}

.partner-mark {
  min-height: 164px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #fff;
}

.partner-mark img {
  width: min(210px, 100%);
  max-height: 94px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.1) saturate(0.78);
  transition: transform 260ms ease, filter 260ms ease;
}

.partner-mark:hover img {
  filter: contrast(1.25) saturate(1);
  transform: scale(1.06);
}

.art-architecture {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 120px);
  align-items: center;
  padding: clamp(76px, 10vw, 150px) clamp(18px, 7vw, 110px);
  overflow: hidden;
  background: #17110c;
}

.art-copy {
  max-width: 580px;
}

.art-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 1.04rem;
}

.art-figure {
  position: relative;
  margin: 0;
}

.art-figure::before {
  position: absolute;
  z-index: 0;
  top: -12%;
  right: -8%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 170, 24, 0.5);
  content: "";
  transform: rotate(12deg);
}

.art-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  cursor: zoom-in;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 600ms ease, filter 600ms ease;
}

.art-figure:hover img {
  filter: saturate(1.04) contrast(1.06);
  transform: scale(1.025);
}

.art-figure figcaption {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link,
.archive-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link i,
.archive-link i {
  transition: transform 180ms ease;
}

.text-link:hover i,
.archive-link:hover i {
  transform: translate(3px, -3px);
}

.archive-link {
  width: min(var(--max), 100%);
  justify-content: flex-end;
  margin: 34px auto 0;
}

.reel-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reel-grid-three video {
  min-height: 410px;
  aspect-ratio: 9 / 14;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.reel-grid-three video:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 66px rgba(0, 0, 0, 0.42);
  transform: translateY(-6px);
}

.concierge-promo {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(300px, 0.55fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  overflow: hidden;
  padding: clamp(70px, 9vw, 126px) clamp(18px, 7vw, 110px);
  background: #ece2d0;
  color: var(--ink);
}

.concierge-promo-copy {
  position: relative;
  z-index: 1;
  max-width: 550px;
}

.concierge-promo-copy .eyebrow {
  color: var(--bronze);
}

.concierge-promo-copy p:not(.eyebrow) {
  color: rgba(11, 9, 7, 0.68);
  font-size: 1.06rem;
}

.concierge-promo-copy .text-link {
  color: var(--bronze);
}

.concierge-orb {
  position: relative;
  z-index: 1;
  width: min(32vw, 390px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  border: 1px solid rgba(11, 9, 7, 0.62);
  border-radius: 50%;
  color: var(--white);
  background: #17110c;
  box-shadow: 0 32px 70px rgba(11, 9, 7, 0.25);
  text-align: center;
  transition: color 280ms ease, background 280ms ease, transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 280ms ease;
}

.concierge-orb::before,
.concierge-orb::after {
  position: absolute;
  border: 1px solid rgba(11, 9, 7, 0.32);
  border-radius: 50%;
  content: "";
}

.concierge-orb::before {
  inset: -16px;
}

.concierge-orb::after {
  inset: 18px;
  border-color: rgba(245, 170, 24, 0.48);
}

.concierge-orb i,
.concierge-orb span,
.concierge-orb small {
  position: relative;
  z-index: 1;
}

.concierge-orb i {
  width: 34px;
  height: 34px;
}

.concierge-orb span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-style: italic;
  line-height: 0.88;
}

.concierge-orb small {
  color: var(--champagne);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.concierge-orb:hover {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 38px 76px rgba(11, 9, 7, 0.34);
  transform: rotate(-5deg) scale(1.04);
}

.concierge-orb:hover small {
  color: var(--ink);
}

.concierge-promo-image {
  width: 100%;
  height: min(52vw, 520px);
  min-height: 390px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.06);
}

.page-hero {
  position: relative;
  min-height: 56svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 170px clamp(18px, 7vw, 110px) 78px;
  background: #0b0907;
}

.page-hero-media,
.page-hero::after {
  position: absolute;
  inset: 0;
}

.page-hero-media img,
.page-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.06) brightness(0.72);
}

.page-hero::after {
  content: "";
  background: linear-gradient(90deg, rgba(3, 3, 2, 0.86), rgba(3, 3, 2, 0.22)), linear-gradient(0deg, rgba(3, 3, 2, 0.72), transparent 62%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
}

.page-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8vw, 8rem);
  font-weight: 500;
  line-height: 0.88;
}

.page-hero-copy {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.8);
  font-size: 1.08rem;
}

.project-directory {
  color: var(--white);
  background: #0b0907;
}

.region-filter {
  width: min(var(--max), 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px auto 0;
}

.region-filter button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 3px;
  color: rgba(255, 250, 240, 0.8);
  background: transparent;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.region-filter button:hover,
.region-filter button.is-active {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-2px);
}

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

.directory-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.15);
  border-radius: 7px;
  background: #17120e;
  isolation: isolate;
  transition: border-color 240ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.directory-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 3, 2, 0.88), transparent 65%);
}

.directory-card:hover {
  border-color: var(--gold);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.38);
  transform: translateY(-5px);
}

.directory-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.06);
  transition: transform 720ms ease, filter 320ms ease;
}

.directory-card:hover img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.06);
}

.directory-card-copy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.directory-card-copy span {
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.directory-card-copy h2 {
  margin: 7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 0.94;
}

.detail-intro {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.48fr);
  gap: clamp(28px, 7vw, 100px);
  padding: clamp(64px, 9vw, 120px) 0 48px;
  margin: 0 auto;
}

.detail-intro p {
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.06rem;
}

.detail-facts {
  display: grid;
  gap: 14px;
  align-content: start;
}

.detail-facts div {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 250, 240, 0.16);
}

.detail-facts span {
  display: block;
  color: var(--champagne);
  font-size: 0.68rem;
  font-weight: 830;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-facts strong {
  display: block;
  margin-top: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 500;
}

.detail-gallery {
  width: min(1520px, 100%);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
  padding: 0 18px clamp(76px, 9vw, 132px);
}

.detail-gallery button {
  min-height: 330px;
  grid-column: span 4;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 6px;
  background: #17120e;
  cursor: zoom-in;
}

.detail-gallery button:nth-child(7n + 1),
.detail-gallery button:nth-child(7n + 5) {
  min-height: 500px;
  grid-column: span 6;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.detail-gallery button:hover img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.06);
}

@media (max-width: 1100px) {
  .partner-grid,
  .project-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .art-architecture,
  .concierge-promo,
  .detail-intro {
    grid-template-columns: 1fr;
  }

  .concierge-orb {
    width: min(56vw, 390px);
  }

  .concierge-promo-image {
    width: min(620px, 100%);
    justify-self: end;
  }
}

@media (max-width: 680px) {
  .partner-grid,
  .project-directory-grid {
    grid-template-columns: 1fr;
  }

  .partner-mark {
    min-height: 136px;
  }

  .art-architecture,
  .concierge-promo {
    padding-right: 18px;
    padding-left: 18px;
  }

  .art-figure img,
  .concierge-promo-image {
    min-height: 390px;
  }

  .concierge-orb {
    width: min(82vw, 340px);
    justify-self: center;
  }

  .reel-grid-three {
    grid-template-columns: 1fr;
  }

  .reel-grid-three video {
    min-height: 0;
  }

  .page-hero {
    min-height: 620px;
    padding-top: 136px;
    padding-bottom: 56px;
  }

  .detail-intro {
    display: block;
    padding-right: 18px;
    padding-left: 18px;
  }

  .detail-facts {
    margin-top: 34px;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-gallery button,
  .detail-gallery button:nth-child(7n + 1),
  .detail-gallery button:nth-child(7n + 5) {
    min-height: 340px;
    grid-column: auto;
  }
}

.concierge-page {
  background: #0b0907;
}

.concierge-hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 160px 18px 92px;
  background: #14100b;
  text-align: center;
}

.concierge-hero-image,
.concierge-hero-shade {
  position: absolute;
  inset: 0;
}

.concierge-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.06) brightness(0.52);
}

.concierge-hero-shade {
  background: linear-gradient(0deg, rgba(3, 3, 2, 0.88), rgba(3, 3, 2, 0.2) 60%, rgba(3, 3, 2, 0.55));
}

.concierge-intro {
  position: absolute;
  z-index: 1;
  top: 142px;
  left: 50%;
  width: min(760px, calc(100% - 36px));
  transform: translateX(-50%);
}

.concierge-intro h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7.3vw, 7.8rem);
  font-weight: 500;
  line-height: 0.88;
}

.concierge-intro p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px auto 0;
  color: rgba(255, 250, 240, 0.8);
  font-size: 1.06rem;
}

.concierge-voice-orb {
  position: relative;
  z-index: 1;
  width: min(39vw, 474px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 15px;
  margin-top: 150px;
  border: 1px solid rgba(255, 250, 240, 0.66);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 12, 8, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: color 260ms ease, background 260ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 260ms ease;
}

.concierge-voice-orb::before,
.concierge-voice-orb::after {
  position: absolute;
  border: 1px solid rgba(245, 170, 24, 0.56);
  border-radius: 50%;
  content: "";
}

.concierge-voice-orb::before {
  inset: 14px;
}

.concierge-voice-orb::after {
  inset: -24px;
  border-color: rgba(255, 250, 240, 0.24);
}

.concierge-voice-orb i,
.concierge-voice-orb span,
.concierge-voice-orb small {
  position: relative;
  z-index: 1;
}

.concierge-voice-orb i {
  width: 42px;
  height: 42px;
}

.concierge-voice-orb span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  font-style: italic;
  line-height: 0.85;
}

.concierge-voice-orb small {
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.concierge-voice-orb:hover,
.concierge-voice-orb[aria-pressed="true"] {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 42px 106px rgba(0, 0, 0, 0.52);
  transform: scale(1.04);
}

.concierge-voice-orb:hover small,
.concierge-voice-orb[aria-pressed="true"] small {
  color: var(--ink);
}

.concierge-live {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 25px;
  left: 24px;
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.82rem;
}

.concierge-workspace {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 86px);
  color: var(--white);
  background: #0b0907;
}

.concierge-agent-rail {
  align-self: start;
  position: sticky;
  top: 114px;
  padding: 0 26px 28px 0;
  border-right: 1px solid rgba(255, 250, 240, 0.16);
}

.agent-count {
  display: block;
  margin: 26px 0 14px;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
}

.concierge-agent-rail h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.concierge-agent-rail p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.7);
}

.agent-answer {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 26px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.34);
}

.agent-answer input {
  min-width: 0;
  min-height: 48px;
  border: 0;
  color: var(--white);
  background: transparent;
  outline: 0;
}

.agent-answer button,
.agent-voice-link {
  border: 0;
  color: var(--champagne);
  background: transparent;
  cursor: pointer;
}

.agent-answer button {
  width: 44px;
  display: grid;
  place-items: center;
}

.agent-voice-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 780;
}

.concierge-form {
  min-width: 0;
}

.concierge-heading {
  max-width: 760px;
  padding-bottom: 50px;
}

.visual-question,
.concierge-details,
.concierge-story {
  display: grid;
  grid-template-columns: minmax(180px, 0.26fr) minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 250, 240, 0.15);
}

.question-copy span {
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.question-copy h3 {
  max-width: 240px;
  margin: 15px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
}

.visual-choice-grid {
  display: grid;
  gap: 10px;
}

.visual-choice-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visual-choice-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-choice {
  position: relative;
  min-height: 254px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 5px;
  color: var(--white);
  background: #17120e;
  cursor: pointer;
  isolation: isolate;
  transition: border-color 180ms ease, transform 220ms ease;
}

.visual-choice::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 3, 2, 0.82), transparent 62%);
}

.visual-choice:hover,
.visual-choice.is-selected {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.visual-choice.is-selected::before {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(245, 170, 24, 0.2);
}

.visual-choice img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
  transition: transform 500ms ease, filter 500ms ease;
}

.visual-choice:hover img,
.visual-choice.is-selected img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.07);
}

.visual-choice strong {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.finish-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.finish-tier-grid button {
  min-height: 174px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 5px;
  color: var(--white);
  background: #17120e;
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.finish-tier-grid button:hover,
.finish-tier-grid button.is-selected {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-4px);
}

.finish-tier-grid span {
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.finish-tier-grid button:hover span,
.finish-tier-grid button.is-selected span {
  color: var(--ink);
}

.finish-tier-grid strong {
  margin-top: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.finish-tier-grid small {
  margin-top: 7px;
  font-size: 0.7rem;
}

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

.concierge-input-grid label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.75rem;
  font-weight: 780;
}

.concierge-input-grid input,
.concierge-input-grid select,
.concierge-story textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 250, 240, 0.055);
  outline: 0;
}

.concierge-input-grid input,
.concierge-input-grid select {
  min-height: 50px;
  padding: 0 13px;
}

.concierge-input-grid input:focus,
.concierge-input-grid select:focus,
.concierge-story textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 170, 24, 0.13);
}

.concierge-input-grid select option {
  color: var(--ink);
}

.story-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.story-prompts button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 3px;
  color: rgba(255, 250, 240, 0.85);
  background: transparent;
  cursor: pointer;
  font-size: 0.74rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.story-prompts button:hover {
  color: var(--ink);
  background: var(--champagne);
  transform: translateY(-2px);
}

.concierge-story textarea {
  min-height: 170px;
  padding: 14px;
  resize: vertical;
}

.concierge-upload {
  margin-top: 14px;
}

.concierge-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
  margin-top: 34px;
  padding: 28px;
  border-left: 2px solid var(--gold);
  background: rgba(245, 170, 24, 0.075);
}

.concierge-summary h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.concierge-summary p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.74);
}

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

@media (max-width: 1100px) {
  .concierge-workspace {
    grid-template-columns: 1fr;
  }

  .concierge-agent-rail {
    position: relative;
    top: auto;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  }

  .visual-question,
  .concierge-details,
  .concierge-story {
    grid-template-columns: 1fr;
  }

  .visual-choice-grid-four,
  .finish-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .concierge-hero {
    min-height: 790px;
  }

  .concierge-intro {
    top: 126px;
  }

  .concierge-intro h1 {
    font-size: 3.5rem;
  }

  .concierge-voice-orb {
    width: min(77vw, 330px);
    margin-top: 130px;
  }

  .visual-choice-grid-four,
  .visual-choice-grid-three,
  .finish-tier-grid,
  .concierge-input-grid {
    grid-template-columns: 1fr;
  }

  .visual-choice {
    min-height: 320px;
  }

  .concierge-summary {
    padding: 20px;
  }
}

@media (max-width: 680px) {
  .atlas-stage {
    width: 100%;
  }

  .site-header.studio-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .site-header.studio-header .menu-toggle {
    display: block;
    position: absolute;
    top: 17px;
    right: 14px;
    z-index: 2;
    justify-self: end;
    color: var(--white);
  }

  .hero.hero-reimagined {
    display: block;
  }

  .hero-reimagined .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
  }

  .hero-reimagined .eyebrow,
  .hero-reimagined .hero-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-reimagined .eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.1em;
  }

  .hero-reimagined .hero-copy {
    width: 100%;
    font-size: 1rem;
  }

  .hero-index {
    right: 18px;
    left: 18px;
    max-width: none;
  }

  .hero-index span {
    max-width: 100%;
    font-size: 0.64rem;
  }
}

/* Archive upgrades: an animated entrance, a transparent developer ribbon, and richer project taxonomy. */
.preloader {
  overflow: hidden;
  transition: opacity 1100ms ease, visibility 1100ms ease;
}

.preloader::before {
  position: absolute;
  width: 178px;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 170, 24, 0.58);
  border-top-color: transparent;
  border-left-color: rgba(255, 250, 240, 0.2);
  border-radius: 50%;
  content: "";
  animation: preloaderOrbit 2200ms linear infinite;
}

.preloader::after {
  position: absolute;
  width: 286px;
  height: 1px;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 28px rgba(245, 170, 24, 0.72);
  animation: preloaderLine 1300ms ease-in-out infinite alternate;
}

.preloader img,
.preloader span {
  position: relative;
  z-index: 1;
}

@keyframes preloaderOrbit { to { transform: rotate(360deg); } }
@keyframes preloaderLine { from { transform: scaleX(0.25); opacity: 0.35; } to { transform: scaleX(1); opacity: 1; } }

.partner-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 54px;
  padding: 12px 0;
}

.partner-track {
  display: flex;
  width: max-content;
  gap: clamp(42px, 6vw, 104px);
  align-items: center;
  padding: 0 clamp(28px, 5vw, 90px);
  animation: partnerRibbon 38s linear infinite;
}

.partner-slider:hover .partner-track,
.partner-slider:focus-within .partner-track {
  animation-play-state: paused;
}

.partner-mark {
  flex: 0 0 clamp(210px, 19vw, 330px);
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
}

.partner-mark img {
  width: 100%;
  max-height: 146px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: grayscale(1) contrast(1.08) opacity(0.72);
  transition: transform 340ms ease, filter 340ms ease;
}

.partner-mark:hover img {
  filter: grayscale(0) contrast(1.08) opacity(1);
  transform: scale(1.08);
}

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

.project-taxonomy {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 44px auto 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 250, 240, 0.16);
  background: #15110d;
}

.filter-stack { min-width: 0; }

.filter-stack > p {
  margin: 0 0 12px;
  color: var(--champagne);
  font-size: 0.7rem;
  font-weight: 840;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-taxonomy .region-filter {
  width: auto;
  margin: 0;
}

.project-taxonomy .region-filter button {
  min-height: 34px;
  padding: 0 11px;
  font-size: 0.64rem;
}

.directory-count {
  width: min(var(--max), 100%);
  margin: 30px auto 0;
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.directory-card[data-tilt] {
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
}

.directory-card[data-tilt]:hover {
  transform: perspective(1100px) translateY(-5px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.directory-card-copy small,
.directory-card-copy em {
  display: block;
  color: rgba(255, 250, 240, 0.74);
  font-family: inherit;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-card-copy small { margin-top: 12px; }
.directory-card-copy small b { color: var(--gold); }

.directory-card-copy em {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.directory-card:hover .directory-card-copy em,
.directory-card:focus-visible .directory-card-copy em {
  opacity: 1;
  transform: translateY(0);
}

.directory-card-copy em svg { width: 15px; height: 15px; }

.directory-empty {
  display: grid;
  grid-column: 1 / -1;
  min-height: 280px;
  place-content: center;
  justify-items: start;
  padding: clamp(28px, 5vw, 72px);
  border: 1px dashed rgba(245, 170, 24, 0.55);
  background: #15110d;
}

.directory-empty h2 {
  max-width: 510px;
  margin: 12px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 0.96;
}

.directory-empty button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.motion-archive {
  color: var(--ink);
  background: #f7f3eb;
}

.motion-archive .eyebrow,
.motion-archive .section-note { color: var(--bronze); }

.motion-video-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 42px auto 0;
}

.motion-video-grid video {
  width: 100%;
  min-height: 320px;
  border: 1px solid rgba(17, 14, 10, 0.16);
  object-fit: cover;
  background: #111;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.motion-video-grid video:hover {
  box-shadow: 0 24px 48px rgba(38, 25, 11, 0.18);
  transform: translateY(-6px);
}

.reel-grid-five {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.reel-grid-five video { min-height: clamp(260px, 37vw, 520px); }

.reel-grid-nine {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.reel-grid-nine video { min-height: clamp(250px, 31vw, 440px); }

@media (max-width: 1100px) {
  .project-taxonomy { grid-template-columns: 1fr; }
  .motion-video-grid,
  .reel-grid-five,
  .reel-grid-nine { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .partner-mark { flex-basis: 204px; min-height: 130px; }
  .project-taxonomy { padding: 20px; }
  .motion-video-grid,
  .reel-grid-five,
  .reel-grid-nine { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .motion-video-grid video { min-height: 235px; }
  .reel-grid-five video:last-child { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .preloader::before,
  .preloader::after,
  .partner-track { animation: none; }
  .directory-card[data-tilt],
  .directory-card[data-tilt]:hover { transform: none; }
}

/* Current interaction pass: stable loading, richer pointer feedback, and full archive motion. */
.preloader::before {
  inset: 0;
  margin: auto;
}

.preloader::after {
  top: calc(50% + 98px);
  left: 50%;
  margin-left: -143px;
}

.preloader span {
  max-width: 290px;
  color: var(--champagne);
  font-size: 0.62rem;
  line-height: 1.4;
  text-align: center;
}

.cursor-marker {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 240, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(245, 170, 24, 0.18);
  mix-blend-mode: difference;
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease;
}

body.has-pointer-target .cursor-marker {
  width: 32px;
  height: 32px;
  border-color: var(--gold);
  background: rgba(245, 170, 24, 0.18);
}

main > section.section-transition {
  opacity: 0.86;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 760ms cubic-bezier(0.18, 0.8, 0.22, 1);
}

main > section.section-transition.is-section-active {
  opacity: 1;
  transform: translateY(0);
}

.developer-marquees {
  display: grid;
  gap: 18px;
  width: 100%;
  overflow: hidden;
  margin-top: 54px;
  padding: 12px 0;
}

.developer-track {
  display: flex;
  width: max-content;
  gap: 14px;
  align-items: center;
  padding: 0 14px;
}

.developer-track span {
  display: grid;
  min-width: max-content;
  min-height: 68px;
  place-items: center;
  padding: 0 clamp(20px, 3vw, 46px);
  border: 1px solid rgba(11, 9, 7, 0.17);
  color: #251d14;
  background: transparent;
  font-size: clamp(0.72rem, 1.3vw, 1rem);
  font-weight: 840;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.developer-track span:hover {
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-4px);
}

.developer-track-forward { animation: developerForward 62s linear infinite; }
.developer-track-reverse { animation: developerReverse 68s linear infinite; }
.developer-marquees:hover .developer-track { animation-play-state: paused; }

@keyframes developerForward { to { transform: translateX(-50%); } }
@keyframes developerReverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.developer-logo-marquees {
  gap: clamp(28px, 4vw, 48px);
  padding-block: clamp(8px, 1.4vw, 18px);
}

.developer-logo-track {
  gap: clamp(40px, 6vw, 92px);
}

.developer-track-forward.developer-track-slow {
  animation-duration: 78s;
}

.developer-logo {
  display: grid;
  place-items: center;
  width: clamp(190px, 16vw, 270px);
  height: 104px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 260ms ease, opacity 260ms ease;
}

.developer-logo img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.24) brightness(0.82);
  opacity: 0.86;
  mix-blend-mode: multiply;
  transition: filter 260ms ease, opacity 260ms ease, transform 260ms ease, mix-blend-mode 260ms ease;
}

.developer-logo:hover,
.developer-logo:focus-within {
  transform: translateY(-3px) scale(1.035);
}

.developer-logo:hover img,
.developer-logo:focus-within img {
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  transform: scale(1.04);
}

.agent-voice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.motion-video-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.motion-archive-item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 14, 10, 0.16);
  background: #17120e;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.motion-archive-item:hover {
  box-shadow: 0 22px 46px rgba(38, 25, 11, 0.2);
  transform: translateY(-7px);
}

.motion-archive-item video {
  min-height: 300px;
  border: 0;
}

.motion-archive-item figcaption {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--paper);
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.motion-archive-item figcaption span { color: var(--gold); }

@media (max-width: 1100px) {
  .motion-video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .developer-logo { width: 190px; height: 90px; }
  .developer-logo img { height: 66px; }
}

@media (max-width: 680px) {
  .cursor-marker { display: none; }
  main > section.section-transition { opacity: 1; transform: none; }
  .developer-track span { min-height: 56px; }
  .developer-logo { width: 150px; height: 74px; }
  .developer-logo img { height: 52px; }
  .motion-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .motion-archive-item video { min-height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  .developer-track-forward,
  .developer-track-reverse { animation: none; }
  main > section.section-transition { opacity: 1; transform: none; }
  .cursor-marker { display: none; }
}

/* Project Voice, visual guides, and the final motion polish. */
.preloader {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0;
}

.preloader::before {
  top: calc(50% - 86px);
  right: auto;
  bottom: auto;
  left: 50%;
  width: 154px;
  height: 154px;
  margin: 0 0 0 -77px;
}

.preloader::after {
  top: calc(50% + 95px);
  left: 50%;
  margin-left: -112px;
  width: 224px;
}

.preloader img {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 72px;
  margin-top: -22px;
}

.preloader span {
  position: absolute;
  top: calc(50% + 119px);
  z-index: 1;
  max-width: 320px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.brand img,
.brand span {
  transition: transform 240ms ease, color 240ms ease, filter 240ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  filter: drop-shadow(0 0 16px rgba(245, 170, 24, 0.78));
  transform: rotate(-8deg) scale(1.12);
}

.brand:hover span,
.brand:focus-visible span { color: var(--gold); }

.cursor-glow {
  z-index: 44;
  width: 48vmax;
  height: 48vmax;
  opacity: 0.22;
  background: rgba(245, 170, 24, 0.62);
  filter: blur(90px);
}

.cursor-marker {
  z-index: 140;
  width: 17px;
  height: 17px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  border-color: rgba(255, 236, 183, 0.92);
  border-radius: 0;
  background: rgba(245, 170, 24, 0.06);
  box-shadow: 0 0 0 4px rgba(245, 170, 24, 0.12), 0 0 22px rgba(245, 170, 24, 0.78);
  mix-blend-mode: normal;
}

.cursor-marker::before,
.cursor-marker::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: rgba(255, 248, 229, 0.94);
  transform: translate(-50%, -50%);
}

.cursor-marker::before { width: 25px; height: 1px; }
.cursor-marker::after { width: 1px; height: 25px; }

body.has-pointer-target .cursor-marker {
  width: 29px;
  height: 29px;
  border-color: #fff7de;
  background: rgba(245, 170, 24, 0.2);
  box-shadow: 0 0 0 7px rgba(245, 170, 24, 0.14), 0 0 36px rgba(245, 170, 24, 0.92);
}

@media (pointer: fine) {
  body,
  body a,
  body button,
  body input,
  body select,
  body textarea,
  body video { cursor: none !important; }
}

.landing-motion-video {
  min-height: 0 !important;
  aspect-ratio: 4 / 5;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.reel-grid-five .landing-motion-video:nth-child(3) { object-position: 54% center; }
.reel-grid-five .landing-motion-video:nth-child(4) { object-position: 48% center; }

.motion-video-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.motion-film-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 14, 10, 0.18);
  border-radius: 0;
  background: #17120e;
  isolation: isolate;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.motion-film-card:hover,
.motion-film-card:focus-within {
  z-index: 1;
  border-color: rgba(245, 170, 24, 0.76);
  box-shadow: 0 24px 54px rgba(38, 25, 11, 0.25);
  transform: translateY(-7px);
}

.motion-film-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  border: 0 !important;
  object-fit: cover;
  object-position: center;
  background: #17120e;
}

.motion-film-card::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 88px;
  content: "";
  pointer-events: none;
  background: rgba(3, 3, 2, 0.76);
}

.motion-film-toggle {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid rgba(255, 250, 240, 0.5);
  border-radius: 2px;
  color: var(--white);
  background: rgba(3, 3, 2, 0.55);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.motion-film-toggle svg { width: 14px; height: 14px; }
.motion-film-toggle:hover,
.motion-film-card.is-playing .motion-film-toggle { border-color: var(--gold); color: var(--ink); background: var(--gold); transform: translateY(-2px); }

.motion-film-card figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 70px;
  padding: 13px 15px;
  color: var(--paper);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.motion-film-card figcaption span { color: var(--gold); }

.voice-note-modal {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 3, 2, 0.78);
  backdrop-filter: blur(16px);
}

.voice-note-modal[hidden] { display: none; }
.modal-open { overflow: hidden; }

.project-thanks-modal {
  position: fixed;
  z-index: 131;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 3, 2, 0.78);
  backdrop-filter: blur(16px);
}

.project-thanks-modal[hidden] { display: none; }

.project-thanks-card {
  position: relative;
  width: min(640px, 100%);
  padding: clamp(34px, 6vw, 76px);
  border-top: 4px solid var(--gold);
  background: #17120e;
  color: var(--paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
}

.project-thanks-card h2 { max-width: 12ch; margin: 12px 0 16px; font-size: clamp(2.2rem, 5vw, 4.6rem); line-height: 0.94; }
.project-thanks-card p:not(.eyebrow) { max-width: 52ch; color: rgba(255, 250, 240, 0.74); line-height: 1.65; }
.project-thanks-card .button { margin-top: 18px; }

.voice-note-modal-copy {
  position: relative;
  width: min(640px, 100%);
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(245, 170, 24, 0.58);
  background: #17120e;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
}

.voice-note-modal-copy h2 { max-width: 12ch; margin: 10px 0 14px; font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: 0.96; }
.voice-note-modal-copy p { max-width: 55ch; color: rgba(255, 250, 240, 0.74); }

.voice-note-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
}

.voice-record-button,
.voice-record-disc {
  display: inline-grid;
  place-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  color: var(--paper);
  background: #17120e;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.voice-record-button { min-width: 188px; min-height: 188px; margin: 20px 0 12px; border-radius: 50%; box-shadow: 0 0 0 14px rgba(245, 170, 24, 0.08); }
.voice-record-button svg { width: 28px; height: 28px; }
.voice-record-button.is-recording,
.voice-record-disc.is-recording { border-color: #fff7de; background: var(--gold); color: var(--ink); animation: recordPulse 1000ms ease-in-out infinite; }
.voice-note-status { min-height: 42px; font-size: 0.88rem; }
.voice-note-modal audio { display: block; width: min(360px, 100%); margin: 12px 0; }
.voice-note-modal-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 18px; }

@keyframes recordPulse { 50% { box-shadow: 0 0 0 22px rgba(245, 170, 24, 0.05); } }

.project-voice-page { background: #f2ede2; color: #17120e; }
.project-voice-page .site-header { color: var(--white); }

.form-honeypot {
  position: absolute !important;
  left: -100vw !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.voice-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  min-height: min(820px, 100svh);
  padding-top: 92px;
  background: #17120e;
  color: var(--paper);
}

.voice-hero-media { grid-column: 2; grid-row: 1; min-height: 580px; overflow: hidden; }
.voice-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.voice-hero-copy { grid-column: 1; grid-row: 1; align-self: center; padding: clamp(38px, 8vw, 124px); }
.voice-hero-copy h1 { max-width: 10ch; margin: 16px 0 22px; font-size: clamp(3.1rem, 7vw, 7.8rem); line-height: 0.87; }
.voice-hero-copy p { max-width: 47ch; color: rgba(255, 250, 240, 0.72); font-size: 1rem; line-height: 1.65; }
.voice-hero-copy .text-link { margin-top: 34px; color: var(--gold); }
.voice-hero-note { grid-column: 1; grid-row: 1; align-self: end; display: flex; align-items: end; gap: 14px; padding: 0 clamp(38px, 8vw, 124px) 36px; }
.voice-hero-note span { color: var(--gold); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.14em; }
.voice-hero-note p { max-width: 27ch; margin: 0; color: rgba(255, 250, 240, 0.58); font-size: 0.76rem; line-height: 1.45; }

.voice-board { display: grid; gap: 70px; max-width: 1480px; margin: 0 auto; padding-top: clamp(62px, 10vw, 150px); padding-bottom: clamp(74px, 10vw, 150px); }
.voice-big-form { display: grid; gap: 70px; }
.voice-record-panel { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr); align-items: center; gap: clamp(32px, 7vw, 120px); padding: clamp(28px, 5vw, 64px); border-top: 2px solid var(--gold); border-bottom: 1px solid rgba(23, 18, 14, 0.22); }
.voice-record-panel h2 { margin: 10px 0 16px; font-size: clamp(2.4rem, 5vw, 5.4rem); line-height: 0.9; }
.voice-record-panel p { max-width: 45ch; color: rgba(23, 18, 14, 0.7); line-height: 1.65; }
.voice-recorder { display: grid; justify-items: center; text-align: center; }
.voice-record-disc { width: 188px; height: 188px; border-radius: 50%; box-shadow: 0 0 0 14px rgba(245, 170, 24, 0.13); }
.voice-record-disc svg { width: 28px; height: 28px; }
.voice-recorder > p { min-height: 38px; max-width: 34ch; margin: 20px 0 8px; font-size: 0.82rem; }
.voice-recorder audio { width: min(320px, 100%); }
.voice-recorder .text-link { margin-top: 12px; color: #7d5520; }
.voice-quick-fields { display: grid; width: min(360px, 100%); grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; text-align: left; }
.voice-quick-fields label { display: grid; gap: 6px; border-bottom: 1px solid rgba(23, 18, 14, 0.28); padding-bottom: 6px; }
.voice-quick-fields span { color: #6f5633; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.voice-quick-fields input { min-width: 0; border: 0; border-radius: 0; background: transparent; color: #17120e; font: inherit; outline: none; }
.voice-quick-fields input:focus { box-shadow: 0 2px 0 var(--gold); }
.voice-audio-upload { display: inline-flex; align-items: center; gap: 8px; margin: 14px 0; color: #705b42; font-size: 0.76rem; }
.voice-audio-upload input { max-width: 210px; font-size: 0.7rem; }
.voice-any-upload {
  width: min(430px, 100%);
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border: 1px dashed rgba(112, 91, 66, 0.5);
  background: rgba(255, 250, 240, 0.35);
  text-align: left;
}
.voice-any-upload input { max-width: 150px; }
.voice-any-upload span { display: grid; gap: 4px; }
.voice-any-upload b { color: #4d3821; font-size: 0.73rem; line-height: 1.25; }
.voice-any-upload small { color: #836946; font-size: 0.68rem; }
.voice-recorder [data-voice-quick-submit] { margin-top: 3px; }

.voice-choice-section { display: grid; gap: 26px; }
.voice-section-heading { display: grid; grid-template-columns: minmax(170px, 0.35fr) 1fr; align-items: end; gap: 22px; border-bottom: 1px solid rgba(23, 18, 14, 0.22); padding-bottom: 18px; }
.voice-section-heading h2 { max-width: 17ch; margin: 0; font-size: clamp(2rem, 4vw, 4.5rem); line-height: 0.96; }
.voice-section-heading .eyebrow { margin: 0; color: #8c642e; }
.voice-image-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.voice-image-cards-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.voice-choice-card { position: relative; min-height: 330px; overflow: hidden; padding: 0; border: 1px solid rgba(23, 18, 14, 0.24); border-radius: 0; text-align: left; background: #17120e; }
.voice-choice-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 620ms ease, filter 420ms ease; }
.voice-choice-card::after { position: absolute; inset: 0; content: ""; background: rgba(3, 3, 2, 0.36); transition: background 260ms ease; }
.voice-choice-card span { position: absolute; z-index: 1; right: 18px; bottom: 16px; left: 18px; display: grid; gap: 4px; color: var(--paper); }
.voice-choice-card b { font-size: 1.05rem; }
.voice-choice-card small { color: rgba(255, 250, 240, 0.76); font-size: 0.72rem; }
.voice-choice-card:hover img,
.voice-choice-card.is-selected img { transform: scale(1.07); }
.voice-choice-card:hover::after { background: rgba(3, 3, 2, 0.2); }
.voice-choice-card.is-selected { border: 3px solid var(--gold); }

.voice-details-panel,
.voice-story-panel { display: grid; gap: 28px; padding: clamp(26px, 4vw, 52px); border-left: 4px solid var(--gold); background: #e8e0d2; }
.voice-detail-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.voice-detail-grid label { display: grid; gap: 8px; min-width: 0; padding: 12px 0; border-bottom: 1px solid rgba(23, 18, 14, 0.25); }
.voice-detail-grid span { color: #6f5633; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.voice-detail-grid input,
.voice-detail-grid select,
.voice-story-fields textarea { width: 100%; min-width: 0; border: 0; border-radius: 0; color: #17120e; background: transparent; font: inherit; outline: none; }
.voice-detail-grid input:focus,
.voice-detail-grid select:focus,
.voice-story-fields textarea:focus { border-color: var(--gold); box-shadow: 0 2px 0 var(--gold); }
.voice-story-fields { display: grid; grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr); gap: 18px; }
.voice-story-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 0.68fr);
  gap: 20px;
  align-items: stretch;
}

.voice-story-visual {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100%;
  overflow: hidden;
  color: var(--paper);
  background: #17120e;
  isolation: isolate;
}

.voice-story-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(3, 3, 2, 0.1), rgba(3, 3, 2, 0.72));
}

.voice-story-visual img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.74) saturate(0.92);
}

.voice-story-visual div {
  padding: 22px;
}

.voice-story-visual span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.voice-story-visual p {
  margin: 12px 0 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.85rem;
  line-height: 1.55;
}
.voice-prompt-chips { display: flex; flex-wrap: wrap; align-content: start; gap: 8px; }
.voice-prompt-chips button { padding: 8px 10px; border: 1px solid rgba(23, 18, 14, 0.25); border-radius: 999px; color: #513d23; background: transparent; font-size: 0.71rem; font-weight: 740; }
.voice-prompt-chips button:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.voice-story-fields textarea { min-height: 174px; padding: 18px; border: 1px solid rgba(23, 18, 14, 0.25); background: #f5f0e7; line-height: 1.55; }
.voice-upload { grid-column: 2; display: flex; align-items: center; gap: 14px; min-height: 84px; padding: 16px; border: 1px dashed rgba(23, 18, 14, 0.42); color: #17120e; background: rgba(255, 250, 240, 0.38); }
.voice-upload input { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; }
.voice-upload svg { width: 28px; height: 28px; color: #8c642e; }
.voice-upload span { display: grid; gap: 5px; }
.voice-upload small { color: #705b42; }
.voice-brief-result { padding: clamp(26px, 4vw, 54px); border: 1px solid rgba(23, 18, 14, 0.22); background: #17120e; color: var(--paper); }
.voice-brief-result h2 { max-width: 16ch; margin: 12px 0; font-size: clamp(2rem, 4vw, 4rem); line-height: 0.96; }
.voice-brief-result p { max-width: 74ch; color: rgba(255, 250, 240, 0.72); line-height: 1.65; }
.voice-submit-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.voice-submit-actions .button { display: inline-flex; align-items: center; gap: 9px; }
.voice-submit-status { color: #705b42; font-size: 0.82rem; line-height: 1.45; }

.guides-page { background: #f2ede2; color: #17120e; }
.guides-page .site-header { color: var(--white); }
.guides-hero { position: relative; min-height: min(760px, 88svh); display: grid; align-items: end; padding: 150px clamp(24px, 7vw, 120px) 74px; color: var(--paper); background: #17120e; overflow: hidden; }
.guides-hero-media { position: absolute; inset: 0; }
.guides-hero-media::after { position: absolute; inset: 0; content: ""; background: rgba(3, 3, 2, 0.54); }
.guides-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.guides-hero-copy { position: relative; z-index: 1; max-width: 820px; }
.guides-hero-copy h1 { max-width: 12ch; margin: 16px 0 20px; font-size: clamp(3.2rem, 8vw, 8rem); line-height: 0.86; }
.guides-hero-copy p { max-width: 54ch; margin: 0; color: rgba(255, 250, 240, 0.78); line-height: 1.65; }
.guides-index { max-width: 1480px; margin: 0 auto; }
.guide-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 46px; }
.guide-card { min-width: 0; overflow: hidden; border: 1px solid rgba(23, 18, 14, 0.19); border-radius: 0; background: #f8f4ec; transition: transform 260ms ease, box-shadow 260ms ease; }
.guide-card:hover { z-index: 1; box-shadow: 0 20px 44px rgba(38, 25, 11, 0.16); transform: translateY(-6px); }
.guide-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; cursor: zoom-in; transition: transform 520ms ease; }
.guide-card:hover img { transform: scale(1.04); }
.guide-card > div { padding: 20px; }
.guide-card span { color: #9a6e2e; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; }
.guide-card h2 { margin: 14px 0 10px; font-size: 1.35rem; line-height: 1.02; }
.guide-card p { margin: 0; color: rgba(23, 18, 14, 0.72); font-size: 0.88rem; line-height: 1.52; }
.guide-card small { display: block; margin-top: 17px; color: #654b2a; font-size: 0.75rem; line-height: 1.45; }
.guide-card-link { display: inline-flex !important; align-items: center; gap: 8px; margin-top: 18px; color: #9a6e2e !important; font-size: 0.7rem !important; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.guide-card-link svg { width: 15px; height: 15px; }
.guides-cta { margin: 0; color: var(--paper); background: #17120e; text-align: center; }
.guides-cta h2 { max-width: 16ch; margin: 12px auto 28px; font-size: clamp(2.4rem, 5vw, 5.6rem); line-height: 0.92; }

.guide-detail-page { background: #f2ede2; color: #17120e; }
.guide-detail-page .site-header { color: var(--white); }
.guide-detail-hero { position: relative; display: grid; min-height: min(860px, 96svh); overflow: hidden; color: var(--paper); background: #17120e; }
.guide-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.guide-detail-hero::after { position: absolute; inset: 0; content: ""; background: rgba(3, 3, 2, 0.58); }
.guide-detail-hero-copy { position: relative; z-index: 1; align-self: end; max-width: 1020px; padding: 150px clamp(24px, 8vw, 140px) 82px; }
.detail-back { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 0.74rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.detail-back svg { width: 15px; height: 15px; }
.guide-detail-hero-copy h1 { max-width: 10ch; margin: 24px 0 20px; font-size: clamp(3.8rem, 9vw, 9rem); line-height: 0.82; }
.guide-detail-hero-copy p:not(.eyebrow) { max-width: 57ch; margin: 0; color: rgba(255, 250, 240, 0.78); font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.65; }
.guide-detail-content { max-width: 1420px; margin: 0 auto; }
.guide-detail-intro { display: grid; grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr); gap: 28px; padding: clamp(28px, 6vw, 90px) 0; border-bottom: 1px solid rgba(23, 18, 14, 0.24); }
.guide-detail-intro > p:last-child { max-width: 55ch; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 3vw, 3.1rem); line-height: 1.1; }
.guide-reading-grid { display: grid; grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr); gap: clamp(34px, 7vw, 120px); padding: clamp(48px, 8vw, 120px) 0; }
.guide-reading-copy { display: grid; gap: 64px; }
.guide-reading-copy section { position: relative; padding-left: clamp(44px, 7vw, 92px); }
.guide-reading-copy section > span { position: absolute; top: 6px; left: 0; color: #a57a39; font-size: 0.76rem; font-weight: 900; letter-spacing: 0.12em; }
.guide-reading-copy h2 { max-width: 17ch; margin: 0 0 16px; font-size: clamp(2rem, 4vw, 4.6rem); line-height: 0.96; }
.guide-reading-copy p { max-width: 58ch; margin: 0; color: rgba(23, 18, 14, 0.76); font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.72; }
.guide-reading-copy img { width: 100%; max-height: 660px; margin-top: 28px; object-fit: cover; cursor: zoom-in; }
.guide-reading-aside { display: grid; align-content: start; gap: 22px; }
.guide-reading-aside > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; cursor: zoom-in; }
.guide-reading-aside > div { padding: 24px; border-left: 4px solid var(--gold); background: #e6ddcf; }
.guide-reading-aside ol,
.guide-reading-aside ul { display: grid; gap: 12px; margin: 16px 0 0; padding-left: 20px; color: rgba(23, 18, 14, 0.76); line-height: 1.45; }
.guide-reading-aside li::marker { color: #9a6e2e; font-weight: 900; }
.guide-checklist { background: #17120e !important; color: var(--paper); }
.guide-checklist ul { color: rgba(255, 250, 240, 0.75); list-style: square; }
.guide-detail-next { padding: clamp(64px, 10vw, 140px) clamp(24px, 8vw, 140px); color: var(--paper); background: #17120e; }
.guide-detail-next h2 { max-width: 13ch; margin: 12px 0 28px; font-size: clamp(2.6rem, 6vw, 6.8rem); line-height: 0.9; }
.guide-detail-next > div { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.guide-detail-next .text-link { color: var(--gold); }

@media (max-width: 1100px) {
  .voice-hero { grid-template-columns: 1fr 0.72fr; }
  .voice-image-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .voice-detail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .voice-story-layout { grid-template-columns: 1fr; }
  .voice-story-visual { min-height: 320px; }
  .guide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .motion-video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .guide-reading-grid { grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr); gap: 42px; }
}

@media (max-width: 760px) {
  .preloader::before { top: calc(50% - 76px); width: 128px; height: 128px; margin-left: -64px; }
  .preloader::after { top: calc(50% + 80px); width: 190px; margin-left: -95px; }
  .preloader span { top: calc(50% + 99px); max-width: 250px; }
  .voice-note-modal-copy h2 { max-width: 100%; }
  .voice-hero { grid-template-columns: 1fr; min-height: 760px; padding-top: 78px; }
  .voice-hero-media { grid-column: 1; grid-row: 1; opacity: 0.46; }
  .voice-hero-copy { grid-column: 1; grid-row: 1; padding: 44px 26px 110px; }
  .voice-hero-copy h1 { max-width: 10ch; }
  .voice-hero-note { grid-column: 1; padding: 0 26px 28px; }
  .voice-record-panel { grid-template-columns: 1fr; }
  .voice-quick-fields { grid-template-columns: 1fr; }
  .voice-section-heading { grid-template-columns: 1fr; gap: 10px; }
  .voice-image-cards,
  .voice-image-cards-three { grid-template-columns: 1fr 1fr; }
  .voice-choice-card { min-height: 230px; }
  .voice-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .voice-any-upload { flex-direction: column; align-items: stretch; text-align: center; }
  .voice-any-upload input { max-width: 100%; }
  .voice-story-fields { grid-template-columns: 1fr; }
  .voice-story-visual { min-height: 260px; }
  .voice-upload { grid-column: auto; }
  .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-detail-hero { min-height: 720px; }
  .guide-detail-hero-copy { padding: 124px 26px 52px; }
  .guide-detail-hero-copy h1 { max-width: 11ch; }
  .guide-detail-intro,
  .guide-reading-grid { grid-template-columns: 1fr; }
  .guide-detail-intro { gap: 12px; }
  .guide-reading-aside { grid-template-columns: 1fr 1fr; align-items: start; }
  .guide-reading-aside > div { min-height: 100%; }
  .motion-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .motion-film-card { aspect-ratio: 3 / 4; }
  .motion-film-toggle { top: 10px; right: 10px; min-height: 32px; padding: 0 8px; }
  .motion-film-toggle span { display: none; }
  .motion-film-card figcaption { min-height: 64px; padding: 10px; font-size: 0.61rem; }
  .landing-motion-video { aspect-ratio: 3 / 4; }
}

@media (max-width: 460px) {
  .voice-image-cards,
  .voice-image-cards-three,
  .voice-detail-grid,
  .guide-grid,
  .guide-reading-aside { grid-template-columns: 1fr; }
  .voice-choice-card { min-height: 290px; }
  .voice-record-disc { width: 160px; height: 160px; }
}

@media (prefers-reduced-motion: reduce) {
  .voice-record-button.is-recording,
  .voice-record-disc.is-recording { animation: none; }
  .guide-card,
  .guide-card img,
  .motion-film-card,
  .voice-choice-card img { transition: none; }
}

.transformation-studies {
  padding-bottom: clamp(86px, 10vw, 150px);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto;
}

.comparison-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.06), transparent 46%),
    #0e0b09;
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.28);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.comparison-card:hover {
  border-color: rgba(245, 170, 24, 0.42);
  box-shadow: 0 38px 94px rgba(0, 0, 0, 0.38);
  transform: translateY(-6px);
}

.comparison-card-wide {
  grid-column: 1 / -1;
}

.comparison-card-copy {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 2.3vw, 32px);
}

.comparison-card-copy span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.comparison-card-copy h3 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.45rem, 2.2vw, 2.7rem);
  line-height: 0.98;
}

.comparison-card-copy p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.55;
}

.comparison-card .before-after-real {
  width: 100%;
  min-height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(255, 250, 240, 0.1);
  border-bottom: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 0;
  aspect-ratio: var(--pair-ratio, 4 / 5);
}

.comparison-card .before-after-real img {
  height: 100%;
  min-height: 0;
}

.comparison-card .reveal-range {
  width: calc(100% - 36px);
  margin: 18px;
}

.comparison-card-wide .comparison-card-copy {
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 0.64fr);
  align-items: end;
}

.comparison-card-wide .comparison-card-copy p {
  justify-self: end;
}

@media (max-width: 900px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .comparison-card-wide {
    grid-column: auto;
  }

  .comparison-card-wide .comparison-card-copy {
    grid-template-columns: 1fr;
  }

  .comparison-card-wide .comparison-card-copy p {
    justify-self: start;
  }
}

@media (max-width: 540px) {
  .comparison-card {
    --pair-ratio: 4 / 5;
  }

  .comparison-card-wide {
    --pair-ratio: 16 / 11;
  }
}

/* Final homepage presentation refinements. */
.service-grid-expanded {
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.service-card-visual {
  display: flex;
  flex-direction: column;
  min-height: clamp(590px, 45vw, 700px);
  padding: clamp(22px, 2.2vw, 36px);
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 8%, rgba(245, 170, 24, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(242, 237, 226, 0.98));
  isolation: isolate;
}

.service-card-visual::after {
  display: none;
}

.service-card-visual img {
  position: relative;
  inset: auto;
  z-index: 1;
  width: 100%;
  height: clamp(300px, 22vw, 410px);
  aspect-ratio: 4 / 5;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 18, 14, 0.1);
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02) saturate(0.94);
  transform: none;
  box-shadow: 0 20px 46px rgba(23, 18, 14, 0.12);
}

.service-card-visual:first-child img {
  object-position: center 45%;
}

.service-card-visual:hover,
.service-card-visual:focus-within {
  border-color: rgba(154, 110, 46, 0.44);
  box-shadow: 0 30px 80px rgba(38, 25, 11, 0.18);
}

.service-card-visual:hover img {
  filter: contrast(1.04) saturate(1.04);
  transform: scale(1.035);
}

.service-card-visual span {
  z-index: 1;
  margin: 20px 0 0;
  color: #9a6e2e;
}

.service-card-visual h3 {
  z-index: 1;
  max-width: 14ch;
  margin: auto 0 0;
  color: var(--ink);
}

.service-card-visual p {
  z-index: 1;
  margin: 16px 0 0;
  color: rgba(23, 18, 14, 0.66);
  line-height: 1.48;
}

.home-voice-suite {
  position: relative;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.92fr);
  min-height: clamp(760px, 82svh, 940px);
  overflow: hidden;
  background:
    radial-gradient(circle at 19% 31%, rgba(245, 170, 24, 0.28), transparent 35%),
    linear-gradient(90deg, #17120e 0%, #17120e 56%, #24170d 100%);
}

.home-voice-suite::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(245, 170, 24, 0.2) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 250, 240, 0.06) 1px, transparent 1px);
  background-size: 18vw 100%, 100% 50%;
  opacity: 0.28;
  pointer-events: none;
}

.home-voice-suite > * {
  position: relative;
  z-index: 1;
}

.home-voice-suite .section-title {
  max-width: 11ch;
}

.home-voice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.home-voice-actions .text-link {
  color: var(--gold);
}

.home-voice-visual {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(5, minmax(92px, 1fr));
  gap: 14px;
  min-height: 560px;
}

.voice-route-card,
.voice-stage-card {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.26);
}

.voice-route-primary {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
  padding: clamp(24px, 3vw, 42px);
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 170, 24, 0.25), transparent 32%),
    rgba(255, 250, 240, 0.08);
}

.voice-route-card span,
.voice-stage-card figcaption {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.voice-route-card strong {
  display: block;
  max-width: 8ch;
  margin: 18px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.6vw, 4.4rem);
  font-weight: 500;
  line-height: 0.94;
}

.voice-route-card p {
  max-width: 31ch;
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  line-height: 1.58;
}

.voice-orb-mini {
  display: grid;
  width: 116px;
  height: 116px;
  margin-top: 32px;
  place-items: center;
  border: 1px solid rgba(245, 170, 24, 0.84);
  border-radius: 50%;
  color: var(--gold);
  background: #17120e;
  box-shadow: 0 0 0 14px rgba(245, 170, 24, 0.08), 0 0 46px rgba(245, 170, 24, 0.16);
}

.voice-orb-mini svg {
  width: 30px;
  height: 30px;
}

.voice-stage-card {
  position: relative;
  margin: 0;
}

.voice-stage-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02) brightness(0.86);
  transition: transform 520ms ease, filter 320ms ease;
}

.voice-stage-card:hover img {
  filter: saturate(1.05) contrast(1.04) brightness(0.96);
  transform: scale(1.05);
}

.voice-stage-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  background: rgba(11, 9, 7, 0.72);
  backdrop-filter: blur(10px);
}

.voice-stage-unfinished {
  grid-column: 4 / 7;
  grid-row: 1 / 3;
}

.voice-stage-site {
  grid-column: 3 / 5;
  grid-row: 4 / 6;
}

.voice-stage-finished {
  grid-column: 5 / 7;
  grid-row: 3 / 6;
}

.developer-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 30%, rgba(245, 170, 24, 0.16), transparent 34%),
    linear-gradient(180deg, #f7f2e8, #eee5d6);
}

.developer-showcase::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(154, 110, 46, 0.13) 38% 38.14%, transparent 38.14% 100%),
    linear-gradient(90deg, rgba(23, 18, 14, 0.04) 1px, transparent 1px);
  background-size: 230px 230px, 15vw 100%;
  opacity: 0.75;
  pointer-events: none;
}

.developer-showcase > * {
  position: relative;
  z-index: 1;
}

.developer-logo-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  width: min(var(--max), 100%);
  margin: clamp(42px, 6vw, 78px) auto 0;
  padding: clamp(30px, 4vw, 58px) 0;
  border-top: 1px solid rgba(23, 18, 14, 0.18);
  border-bottom: 1px solid rgba(23, 18, 14, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.42), rgba(255, 250, 240, 0.08)),
    linear-gradient(135deg, rgba(154, 110, 46, 0.1) 0 1px, transparent 1px 100%);
  background-size: auto, 34px 34px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.76), inset 0 -1px 0 rgba(23, 18, 14, 0.08);
}

.developer-logo-intro {
  padding: clamp(24px, 3vw, 38px);
  border-left: 4px solid var(--gold);
  background: rgba(255, 250, 240, 0.52);
  backdrop-filter: blur(12px);
}

.developer-logo-intro > span {
  color: #9a6e2e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.developer-logo-intro strong {
  display: block;
  max-width: 12ch;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 4.3rem);
  font-weight: 500;
  line-height: 0.98;
}

.developer-logo-intro p {
  max-width: 36ch;
  color: rgba(23, 18, 14, 0.66);
  line-height: 1.55;
}

.developer-map-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.developer-map-points span {
  padding: 7px 10px;
  border: 1px solid rgba(154, 110, 46, 0.3);
  color: #654b2a;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.developer-logo-marquees {
  display: grid;
  gap: clamp(24px, 3.2vw, 42px);
  min-width: 0;
  margin-top: 0;
  padding: clamp(8px, 1.3vw, 18px) 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.developer-logo-track {
  align-items: center;
  gap: clamp(48px, 6.2vw, 96px);
  padding-inline: 0;
}

.developer-logo {
  width: clamp(158px, 12vw, 232px);
  height: 92px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.developer-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: clamp(58px, 5.8vw, 78px);
  height: auto;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.28) brightness(0.72);
  opacity: 0.92;
  mix-blend-mode: multiply;
}

.developer-logo:hover img,
.developer-logo:focus-within img {
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}

@media (max-width: 1100px) {
  .home-voice-suite {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-voice-visual {
    min-height: 520px;
  }

  .developer-logo-stage {
    grid-template-columns: 1fr;
  }

  .developer-logo-intro {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .service-card-visual {
    min-height: 520px;
  }

  .service-card-visual img {
    height: 260px;
  }

  .home-voice-suite {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .home-voice-suite .section-title {
    max-width: 10ch;
  }

  .home-voice-visual {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .voice-route-primary,
  .voice-stage-unfinished,
  .voice-stage-site,
  .voice-stage-finished {
    grid-column: auto;
    grid-row: auto;
  }

  .voice-stage-card {
    min-height: 250px;
  }

  .developer-logo-stage {
    gap: 26px;
  }

  .developer-logo-marquees {
    mask-image: none;
  }

  .developer-logo {
    width: 170px;
    height: 76px;
  }

  .developer-logo img {
    width: auto;
    max-width: 100%;
    max-height: 58px;
    height: auto;
  }
}
