:root {
  --ink: #1a2b3c;
  --ink-2: #1f3347;
  --paper: #f8f9fa;
  --paper-2: #ffffff;
  --muted: #8a9ba8;
  --line: rgba(248, 248, 246, 0.10);
  --line-dark: rgba(26, 43, 60, 0.10);
  --line-light: rgba(248, 248, 246, 0.16);
  --orange: #ff5a00;
  --orange-2: #ff6f14;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
  --radius-panel: 22px;
  --display: "Inter", "Avenir Next", Helvetica, Arial, sans-serif;
  --body: "Lato", "Avenir Next", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
  transition: background 180ms ease, color 180ms ease;
}

body[data-theme="light"] {
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 4vw, 56px);
  min-height: 64px;
  padding: 16px clamp(18px, 3vw, 34px);
  color: var(--paper);
  background: rgba(7, 19, 24, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.has-scrolled {
  background: rgba(7, 19, 24, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(243, 244, 242, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-divider {
  width: 1px;
  height: 15px;
  background: rgba(243, 244, 242, 0.56);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  margin-left: auto;
  color: rgba(248, 248, 246, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.header-logo {
  width: 40px;
  height: 44px;
  margin-left: 4px;
  object-fit: contain;
}

.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 0;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.control-button {
  min-width: 38px;
  min-height: 30px;
  padding: 6px 10px;
  color: rgba(243, 244, 242, 0.72);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.control-button.is-active,
.control-button:hover {
  color: var(--paper);
  background: var(--orange);
}

.theme-button {
  min-width: 64px;
}

.service-grid .is-expanded {
  position: relative;
}

.service-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  min-height: 260px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 180ms ease, transform 180ms ease;
}

.service-link:hover {
  background: rgba(255, 90, 0, 0.09);
  transform: translateY(-4px);
  z-index: 1;
}

.service-link article {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: auto;
  padding: 28px;
  border: 0;
  background: none;
}

.service-link article:hover {
  background: none;
  transform: none;
}

body[data-theme="light"] .service-link:hover {
  background: rgba(255, 90, 0, 0.08);
}

body[data-theme="light"] .service-link {
  border-color: rgba(7, 19, 24, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

body[data-theme="light"] .service-link article {
  background: none;
}

.site-nav a {
  position: relative;
}

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

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

.nav-toggle {
  display: none;
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(380px, 1.4fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: clamp(48px, 7vw, 94px) clamp(20px, 4vw, 56px) clamp(28px, 5vw, 64px);
  overflow: hidden;
}

.hero-copy {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 1040px;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: clamp(48px, 8vw, 112px);
}

h2 {
  margin-bottom: 0;
  color: var(--orange);
  font-size: clamp(34px, 5.2vw, 72px);
}

h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.06;
}

.hero-copy > p:not(.eyebrow),
.hero-subtitle {
  max-width: 700px;
  color: rgba(248, 248, 246, 0.74);
  font-size: clamp(18px, 2vw, 24px);
}

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

.dummy-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.dummy-strip span {
  padding: 8px 11px;
  color: rgba(243, 244, 242, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--orange);
  border-color: var(--orange);
}

.button-secondary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(248, 248, 246, 0.36);
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: clamp(20px, 3vw, 40px);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}

.statement {
  color: var(--paper);
  background: var(--ink);
  padding: clamp(78px, 11vw, 150px) clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement p {
  max-width: 1280px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
}

.statement span:last-child {
  color: var(--orange);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.metrics article {
  min-height: 180px;
  padding: clamp(24px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  color: var(--orange);
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 12px;
  color: rgba(243, 244, 242, 0.72);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.split-section,
.services,
.portfolio,
.client-directory,
.client-showcase {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 56px);
}

.services,
.portfolio,
.process,
.visual-context,
.client-directory {
  color: var(--paper);
  background: var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(34px, 6vw, 100px);
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.copy-stack {
  color: rgba(243, 244, 242, 0.72);
  font-size: clamp(18px, 2vw, 24px);
}

/* ---- about media (replaces video card) ---- */
.about-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.about-media img {
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
  border-radius: var(--radius-panel);
}

body[data-theme="light"] .about-media img {
  filter: brightness(0.95);
}

/* ---- video card (about section) ---- */
.video-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-card-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-panel);
  cursor: pointer;
}

.video-card-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-panel);
}

.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 0;
  cursor: pointer;
  transition: background 200ms ease;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.5);
}

.play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-size: 1.6rem;
  color: #ffffff;
  background: var(--orange);
  border-radius: 50%;
  transition: transform 200ms ease;
  line-height: 1;
  padding-left: 4px;
}

.play-button:hover .play-icon {
  transform: scale(1.1);
}

.video-card-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: #000;
}

.video-card-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-card-label .eyebrow {
  margin: 0;
}

.video-card-label strong {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.15;
}

body[data-theme="light"] .play-button {
  background: rgba(0, 0, 0, 0.25);
}

body[data-theme="light"] .play-button:hover {
  background: rgba(0, 0, 0, 0.4);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.vision-grid article {
  min-height: 360px;
  padding: clamp(28px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.vision-grid article > span,
.service-grid span,
.portfolio-grid span,
.client-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.vision-grid p,
.service-grid p,
.client-note p,
.why p {
  color: rgba(243, 244, 242, 0.68);
  font-size: 17px;
}

.vision-grid .image-card {
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border-right: 0;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(20px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 68px);
}

#services .section-heading,
#process .section-heading {
  position: relative;
}

#services .section-heading > .eyebrow {
  position: absolute;
  left: 0;
  top: 0;
}

#process .section-heading > .eyebrow {
  position: absolute;
  left: 0;
  top: 0;
}

.process-title {
  grid-column: 1 / -1;
  text-align: center;
}

.section-title-center {
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 68px);
  font-size: clamp(28px, 4vw, 52px);
}

.section-heading h2,
.section-heading > p:not(.eyebrow) {
  text-align: center;
}

.svc-heading-group {
  grid-column: 1 / -1;
  text-align: center;
}

.svc-heading-group h2 {
  text-align: center;
}

.svc-subtitle {
  color: rgba(248, 248, 246, 0.78);
  font-size: clamp(14px, 1.6vw, 19px);
  line-height: 1.7;
  max-width: 720px;
  margin: 12px auto 0;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.02);
}

.service-grid article {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 180ms ease, transform 180ms ease;
}

.service-grid article:hover {
  background: rgba(255, 90, 0, 0.09);
  transform: translateY(-4px);
}

.visual-context {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

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

.visual-columns article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.04);
}

.context-slider {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.context-slider img,
.marked-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.context-slider img {
  object-fit: cover;
}

.context-slider img.is-active,
.marked-slide.is-active {
  opacity: 1;
}

.marked-slide img {
  opacity: 1;
  transform: none;
}

.visual-columns article > span,
.visual-columns h3 {
  display: block;
  padding: 0 22px;
}

.visual-columns article > span {
  margin-top: 22px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-columns h3 {
  padding-bottom: 24px;
  font-size: clamp(24px, 3vw, 40px);
}

.process {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

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

.process-grid article {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.04);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.process-grid p,
.portfolio-grid p {
  color: rgba(243, 244, 242, 0.68);
  font-size: 15px;
}

.expertise {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.expertise-copy p:not(.eyebrow),
.client-note p {
  max-width: 640px;
  color: rgba(248, 248, 246, 0.72);
  font-size: 19px;
}

.expertise img,
.client-showcase img {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow);
}

.marked-board {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow);
}

.marked-board img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.xmark {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(10deg);
  pointer-events: none;
}

.xmark::before,
.xmark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112%;
  height: 18%;
  content: "";
  background: #ff562f;
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.xmark::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

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

.portfolio-grid article {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.portfolio-media.context-slider {
  aspect-ratio: 16 / 9;
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.portfolio-grid article > div:not(.portfolio-media) {
  padding: 22px;
}

.portfolio-grid h3 {
  font-size: clamp(22px, 2vw, 30px);
}

.text-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.why {
  color: var(--paper);
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 56px);
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why h2 {
  max-width: 1180px;
}

.why p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 24px;
  font-size: 20px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.contact-panel {
  display: grid;
  gap: 28px;
}

address {
  display: grid;
  gap: 16px;
  color: rgba(248, 248, 246, 0.74);
  font-style: normal;
  font-size: 18px;
}

address strong {
  color: var(--paper);
}

address a {
  color: var(--orange);
  font-weight: 800;
}

.dummy-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.04);
}

.dummy-form label {
  display: grid;
  gap: 7px;
  color: rgba(243, 244, 242, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dummy-form input,
.dummy-form select,
.dummy-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--paper);
  background: rgba(7, 19, 24, 0.9);
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.dummy-form textarea {
  resize: vertical;
}

.dummy-form input::placeholder,
.dummy-form textarea::placeholder {
  color: rgba(243, 244, 242, 0.42);
}

.required-star {
  color: var(--orange);
}

.form-feedback {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.form-feedback.is-success {
  color: #0f7b3a;
  background: rgba(15, 123, 58, 0.12);
  border: 1px solid rgba(15, 123, 58, 0.3);
}

.form-feedback.is-error {
  color: #d93636;
  background: rgba(217, 54, 54, 0.12);
  border: 1px solid rgba(217, 54, 54, 0.3);
}

.dummy-form .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

body[data-theme="light"] .form-feedback.is-success {
  color: #0a5c2b;
  background: rgba(15, 123, 58, 0.08);
  border-color: rgba(15, 123, 58, 0.2);
}

body[data-theme="light"] .form-feedback.is-error {
  color: #b32626;
  background: rgba(217, 54, 54, 0.08);
  border-color: rgba(217, 54, 54, 0.2);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: rgba(248, 248, 246, 0.62);
  font-size: 13px;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.client-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  padding: clamp(76px, 10vw, 150px) clamp(18px, 4vw, 56px) clamp(56px, 7vw, 96px);
}

.client-hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
}

.client-hero > p {
  color: rgba(248, 248, 246, 0.72);
  font-size: 19px;
}

/* ---- services page */
.services-hero {
  max-width: 740px;
  margin: 0 auto;
  padding: 72px 28px 80px;
  text-align: center;
}

.services-hero h1 {
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.4;
}

.services-hero > p {
  max-width: 540px;
  margin: 18px auto 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 72px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail .service-copy span {
  font-variant-numeric: tabular-nums;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted);
}

.service-detail .service-copy h2 {
  position: relative;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  margin: 8px 0 16px;
  line-height: 1.3;
  padding-right: 2rem;
  cursor: pointer;
  user-select: none;
}

.service-detail .service-copy h2::before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "+";
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-detail.is-expanded .service-copy h2::before {
  transform: translateY(-50%) rotate(45deg);
  color: var(--orange);
}

.service-detail .service-copy p,
.service-detail .service-copy .svc-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease 0.05s, margin 0.3s ease 0.05s;
  margin: 0;
  padding: 0;
}
.service-detail.is-expanded .service-copy p,
.service-detail.is-expanded .service-copy .svc-desc {
  max-height: 2000px;
  opacity: 1;
  margin-bottom: 24px;
}

.service-detail .service-copy .svc-summary {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--muted);
}

.service-detail .service-media {
  border-radius: var(--radius-panel);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-detail .service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 20px;
  }
}

.client-showcase {
  color: var(--ink);
  background: var(--paper-2);
}

.client-directory {
  border-top: 1px solid var(--line);
}

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

.client-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.client-grid article img {
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  filter: brightness(1) contrast(1.1);
}

.client-grid article:has(span) {
  display: grid;
  align-content: space-between;
  min-height: 154px;
}

.client-grid strong {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
  text-transform: uppercase;
}

.client-note {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.client-note h2 {
  max-width: 1000px;
}

.client-note .button {
  margin-top: 24px;
}

.dummy-cases {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 56px);
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.case-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
}

.case-table > div {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.2fr;
  border-bottom: 1px solid var(--line);
}

.case-table > div:last-child {
  border-bottom: 0;
}

.case-table span {
  padding: 18px;
  color: rgba(243, 244, 242, 0.76);
  border-right: 1px solid var(--line);
  font-size: 15px;
}

.case-table span:first-child {
  color: var(--orange);
  font-weight: 900;
}

.case-table span:last-child {
  border-right: 0;
}

body[data-theme="light"] .site-header {
  color: var(--ink);
  background: rgba(243, 244, 242, 0.92);
  border-bottom-color: rgba(7, 19, 24, 0.14);
}

body[data-theme="light"] .site-header.has-scrolled {
  background: rgba(243, 244, 242, 0.97);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

body[data-theme="light"] .brand,
body[data-theme="light"] .site-nav {
  color: rgba(7, 19, 24, 0.78);
}

body[data-theme="light"] .brand-divider {
  background: rgba(7, 19, 24, 0.35);
}

body[data-theme="light"] .header-controls {
  border-color: rgba(7, 19, 24, 0.14);
  background: rgba(7, 19, 24, 0.04);
}

body[data-theme="light"] .control-button {
  color: rgba(7, 19, 24, 0.68);
}

body[data-theme="light"] .control-button.is-active,
body[data-theme="light"] .control-button:hover {
  color: #ffffff;
}

body[data-theme="light"] .section-dark,
body[data-theme="light"] .statement,
body[data-theme="light"] .metrics,
body[data-theme="light"] .split-section,
body[data-theme="light"] .vision-grid,
body[data-theme="light"] .services,
body[data-theme="light"] .portfolio,
body[data-theme="light"] .process,
body[data-theme="light"] .visual-context,
body[data-theme="light"] .why,
body[data-theme="light"] .contact,
body[data-theme="light"] .client-directory,
body[data-theme="light"] .client-note,
body[data-theme="light"] .dummy-cases,
body[data-theme="light"] .services-hero,
body[data-theme="light"] .service-detail,
body[data-theme="light"] .service-detail.section-dark,
body[data-theme="light"] .client-hero,
body[data-theme="light"] .site-footer {
  color: var(--ink);
  background: var(--paper);
  border-color: rgba(7, 19, 24, 0.14);
}

body[data-theme="light"] .hero-copy > p:not(.eyebrow),
body[data-theme="light"] .copy-stack,
body[data-theme="light"] .vision-grid p,
body[data-theme="light"] .service-grid p,
body[data-theme="light"] .client-note p,
body[data-theme="light"] .why p,
body[data-theme="light"] .expertise-copy p:not(.eyebrow),
body[data-theme="light"] .process-grid p,
body[data-theme="light"] .portfolio-grid p,
body[data-theme="light"] .client-hero > p,
body[data-theme="light"] address,
body[data-theme="light"] .case-table span {
  color: rgba(7, 19, 24, 0.68);
}

body[data-theme="light"] .dummy-strip span,
body[data-theme="light"] .metrics span {
  color: rgba(7, 19, 24, 0.68);
  border-color: rgba(7, 19, 24, 0.14);
}

body[data-theme="light"] .service-grid,
body[data-theme="light"] .visual-columns article,
body[data-theme="light"] .process-grid article,
body[data-theme="light"] .portfolio-grid article,
body[data-theme="light"] .dummy-form,
body[data-theme="light"] .client-grid article,
body[data-theme="light"] .case-table {
  border-color: rgba(7, 19, 24, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

body[data-theme="light"] .service-grid article,
body[data-theme="light"] .metrics article,
body[data-theme="light"] .vision-grid article,
body[data-theme="light"] .case-table > div,
body[data-theme="light"] .case-table span {
  border-color: rgba(7, 19, 24, 0.14);
}

body[data-theme="light"] .service-grid article:hover {
  background: rgba(255, 90, 0, 0.08);
}

body[data-theme="light"] .dummy-form label {
  color: rgba(7, 19, 24, 0.68);
}

body[data-theme="light"] .dummy-form input,
body[data-theme="light"] .dummy-form select,
body[data-theme="light"] .dummy-form textarea {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(7, 19, 24, 0.16);
}

body[data-theme="light"] .dummy-form input::placeholder,
body[data-theme="light"] .dummy-form textarea::placeholder {
  color: rgba(7, 19, 24, 0.42);
}

body[data-theme="light"] address strong {
  color: var(--ink);
}

body[data-theme="light"] .site-footer {
  color: rgba(7, 19, 24, 0.62);
}

body[data-theme="light"] .client-showcase {
  color: var(--ink);
  background: #ffffff;
}

body[data-theme="light"] .services-hero p {
  color: rgba(7, 19, 24, 0.68);
}

body[data-theme="light"] .service-detail .service-copy p,
body[data-theme="light"] .service-detail .service-copy span {
  color: rgba(7, 19, 24, 0.68);
}

body[data-theme="light"] .expertise img,
body[data-theme="light"] .client-showcase img,
body[data-theme="light"] .marked-board {
  border-color: rgba(7, 19, 24, 0.14);
}

body[data-theme="light"] .button-secondary {
  color: var(--ink);
  border-color: rgba(7, 19, 24, 0.36);
}

body[data-theme="light"] .button-secondary:hover {
  background: rgba(7, 19, 24, 0.06);
}

/* ---- production house bts hero ---- */
.production-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: clamp(48px, 7vw, 94px) clamp(20px, 4vw, 56px) clamp(28px, 5vw, 64px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.production-copy {
  max-width: 700px;
}

.production-copy > p:not(.eyebrow) {
  color: rgba(248, 248, 246, 0.72);
  font-size: clamp(17px, 1.8vw, 22px);
  margin-bottom: 28px;
}

.production-media {
  position: relative;
  border-radius: var(--radius-panel);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: var(--shadow);
}

.video-wrapper {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.video-wrapper.is-active {
  opacity: 1;
  pointer-events: auto;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-nav {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.video-nav-btn {
  min-width: 90px;
  padding: 10px 16px;
  color: rgba(243, 244, 242, 0.72);
  background: transparent;
  border: 1px solid rgba(248, 248, 246, 0.2);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.video-nav-btn:hover {
  color: var(--paper);
  border-color: var(--paper);
}

.video-nav-btn.is-active {
  color: var(--paper);
  background: var(--orange);
  border-color: var(--orange);
}

@media (max-width: 1080px) {
  .production-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .production-media {
    aspect-ratio: 16 / 9;
    max-width: 100%;
  }
  .video-nav {
    justify-content: center;
  }
}

@media (max-width: 780px) {
  .production-hero {
    padding: 48px 20px;
  }
}

/* ---- portfolio pages ---- */
.portfolio-hero {
  position: relative;
  padding: clamp(48px, 6vw, 90px) clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.portfolio-hero > div {
  max-width: 620px;
}

.portfolio-hero .hero-row {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
}

.portfolio-hero .hero-row h1 {
  flex: 1;
  min-width: 0;
}

.portfolio-hero .hero-img {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(360px, 38vw, 640px);
  max-width: 50%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-panel);
  object-fit: cover;
}

.portfolio-hero .hero-desc {
  max-width: 620px;
  margin-top: 12px;
}

.portfolio-hero h1 {
  font-size: clamp(24px, 3vw, 42px);
}

.portfolio-hero p {
  max-width: 620px;
  color: rgba(248, 248, 246, 0.72);
  font-size: 19px;
  margin-bottom: 32px;
}

/* ---- portfolio hub ---- */
.portfolio-hub-hero {
  padding: clamp(76px, 10vw, 140px) clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.portfolio-hub-hero h1 {
  font-size: clamp(36px, 6vw, 80px);
}

.portfolio-hub-hero p {
  max-width: 620px;
  color: rgba(248, 248, 246, 0.72);
  font-size: 19px;
  margin-top: 18px;
}

.portfolio-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
  padding: clamp(56px, 7vw, 100px) clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: var(--paper);
}

.pf-link-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.pf-link-card:hover {
  background: rgba(255, 90, 0, 0.09);
  transform: translateY(-3px);
}

.pf-num {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.pf-link-card strong {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  line-height: 1.1;
}

.pf-link-card p {
  color: rgba(243, 244, 242, 0.68);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.pf-clients {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: auto;
}

.portfolio-hub-cta {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 56px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.portfolio-hub-cta h2 {
  max-width: 600px;
  margin: 0 auto 16px;
}

.portfolio-hub-cta p {
  max-width: 500px;
  margin: 0 auto 28px;
  color: rgba(248, 248, 246, 0.72);
  font-size: 18px;
}

body[data-theme="light"] .portfolio-hub-hero p,
body[data-theme="light"] .portfolio-hub-cta p,
body[data-theme="light"] .portfolio-hero p {
  color: rgba(7, 19, 24, 0.68);
}

body[data-theme="light"] .portfolio-hub-grid,
body[data-theme="light"] .portfolio-hub-hero,
body[data-theme="light"] .portfolio-hub-cta,
body[data-theme="light"] .portfolio-hero {
  color: var(--ink);
  background: var(--paper);
  border-color: rgba(7, 19, 24, 0.14);
}

body[data-theme="light"] .pf-link-card {
  border-color: rgba(7, 19, 24, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

body[data-theme="light"] .pf-link-card:hover {
  background: rgba(255, 90, 0, 0.08);
}

body[data-theme="light"] .pf-link-card p {
  color: rgba(7, 19, 24, 0.68);
}

body[data-theme="light"] .portfolio-hub-grid {
  background: var(--paper);
  color: var(--ink);
}

body[data-theme="light"] .portfolio-hub-grid .pf-link-card strong {
  color: var(--ink);
}

/* ---- featured project card in services ---- */
.pf-card {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.pf-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pf-client {
  display: block;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2px;
}

.pf-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--muted);
}

.pf-desc {
  font-size: 13px !important;
  line-height: 1.5;
  color: rgba(243, 244, 242, 0.65) !important;
  margin-bottom: 10px !important;
}

.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.pf-tags span {
  padding: 4px 8px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.pf-link {
  display: inline-block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.pf-link:hover {
  opacity: 0.7;
}

.pf-card-simple {
  padding: 0;
  border: 0;
  background: none;
}

.pf-card-simple > a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition: background 180ms ease;
}

.pf-card-simple > a:hover {
  background: rgba(255, 90, 0, 0.09);
}

.pf-link-arrow {
  display: inline-block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 4px;
}

body[data-theme="light"] .pf-card-simple > a {
  border-color: rgba(7, 19, 24, 0.14);
  background: rgba(255, 255, 255, 0.5);
}

body[data-theme="light"] .pf-card-simple > a:hover {
  background: rgba(255, 90, 0, 0.08);
}

body[data-theme="light"] .pf-card {
  border-color: rgba(7, 19, 24, 0.14);
  background: rgba(255, 255, 255, 0.5);
}

body[data-theme="light"] .pf-desc {
  color: rgba(7, 19, 24, 0.65) !important;
}

body[data-theme="light"] .pf-tags span {
  color: rgba(7, 19, 24, 0.68);
  border-color: rgba(7, 19, 24, 0.14);
}

.portfolio-work {
  padding: clamp(56px, 7vw, 100px) clamp(18px, 4vw, 56px);
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.portfolio-work h2 {
  margin-bottom: 40px;
  font-size: clamp(28px, 4vw, 48px);
}

.portfolio-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.2fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.portfolio-feature-media img {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 8px;
}

.portfolio-feature-info h2 {
  margin-bottom: 16px;
}

.portfolio-feature-info p {
  color: rgba(248, 248, 246, 0.74);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  margin-bottom: 20px;
}

.portfolio-list {
  display: grid;
  gap: 18px;
  max-width: 1000px;
}

.portfolio-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.03);
  transition: background 180ms ease;
}

.portfolio-list article:hover {
  background: rgba(255, 255, 255, 0.06);
}

.portfolio-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.portfolio-media strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.1;
}

.portfolio-info h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 1.8vw, 22px);
}

.portfolio-info p {
  color: rgba(243, 244, 242, 0.68);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portfolio-tags span {
  padding: 5px 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-cta {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 56px);
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.portfolio-cta h2 {
  max-width: 600px;
  margin: 0 auto 16px;
}

.portfolio-cta p {
  max-width: 500px;
  margin: 0 auto 28px;
  color: rgba(248, 248, 246, 0.72);
  font-size: 18px;
}

body[data-theme="light"] .portfolio-hero p,
body[data-theme="light"] .portfolio-info p,
body[data-theme="light"] .portfolio-cta p {
  color: rgba(7, 19, 24, 0.68);
}

body[data-theme="light"] .portfolio-feature-info p {
  color: rgba(7, 19, 24, 0.68);
}

body[data-theme="light"] .portfolio-work,
body[data-theme="light"] .portfolio-hero,
body[data-theme="light"] .portfolio-cta {
  color: var(--ink);
  background: var(--paper);
  border-color: rgba(7, 19, 24, 0.14);
}

body[data-theme="light"] .portfolio-list article {
  border-color: rgba(7, 19, 24, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

body[data-theme="light"] .portfolio-list article:hover {
  background: rgba(255, 255, 255, 0.9);
}

body[data-theme="light"] .portfolio-tags span {
  color: rgba(7, 19, 24, 0.68);
  border-color: rgba(7, 19, 24, 0.14);
}

@media (max-width: 780px) {
  .portfolio-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

body[data-theme="light"] .production-copy > p:not(.eyebrow) {
  color: rgba(7, 19, 24, 0.68);
}

body[data-theme="light"] .video-nav-btn {
  color: rgba(7, 19, 24, 0.68);
  border-color: rgba(7, 19, 24, 0.2);
}

body[data-theme="light"] .video-nav-btn:hover {
  color: var(--ink);
  border-color: var(--ink);
}

body[data-theme="light"] .video-nav-btn.is-active {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
}

body[data-theme="light"] .nav-toggle {
  color: var(--ink);
  border-color: rgba(7, 19, 24, 0.14);
}

@media (max-width: 1080px) {
  .hero,
  .expertise,
  .client-hero {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .header-controls {
    order: 4;
    margin-left: auto;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 64px;
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    color: var(--paper);
    background: transparent;
    border: 1px solid var(--line);
  }

  .header-controls {
    margin-left: auto;
  }

  .header-logo {
    display: none;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    margin: -5px 0;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  body[data-theme="light"] .site-nav {
    background: var(--paper);
    border-bottom-color: rgba(7, 19, 24, 0.14);
  }

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

  .site-nav a {
    width: 100%;
    padding: 14px 0;
  }

  .hero {
    min-height: auto;
  }

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

  .vision-grid,
  .service-grid,
  .portfolio-grid,
  .client-grid,
  .process-grid,
  .metrics,
  .case-table > div {
    grid-template-columns: 1fr;
  }

  .metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-table span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-table span:last-child {
    border-bottom: 0;
  }

  .vision-grid article {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .portfolio-grid article {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* ---- service slider hero ---- */

.service-slider {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(48px, 7vw, 94px) clamp(20px, 4vw, 56px) clamp(40px, 5vw, 70px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(300px, 1.4fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-width: 100%;
  padding: 0;
}

.slide-copy {
  max-width: 700px;
}

.slide-copy h2 {
  margin-bottom: 20px;
}

.slide-copy > p:not(.eyebrow) {
  color: rgba(248, 248, 246, 0.74);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.6;
}

.slide-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.slide-media img {
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 4px;
}

/* slider navigation */
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: clamp(32px, 4vw, 56px);
}

.slider-prev,
.slider-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(248, 248, 246, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  font-size: 24px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(248, 248, 246, 0.1);
  border-color: var(--paper);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(248, 248, 246, 0.4);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
  padding: 0;
}

.dot.is-active {
  background: var(--orange);
  border-color: var(--orange);
}

.dot:hover {
  border-color: var(--paper);
}

body[data-theme="light"] .service-slider {
  background: #f4f1ea;
  color: var(--ink);
}

body[data-theme="light"] .slide-copy > p:not(.eyebrow) {
  color: rgba(7, 19, 24, 0.7);
}

body[data-theme="light"] .slider-prev,
body[data-theme="light"] .slider-next {
  color: var(--ink);
  border-color: rgba(7, 19, 24, 0.25);
}

body[data-theme="light"] .slider-prev:hover,
body[data-theme="light"] .slider-next:hover {
  background: rgba(7, 19, 24, 0.08);
  border-color: var(--ink);
}

body[data-theme="light"] .dot {
  border-color: rgba(7, 19, 24, 0.3);
}

body[data-theme="light"] .dot.is-active {
  background: var(--orange);
  border-color: var(--orange);
}

@media (max-width: 1080px) {
  .slider-slide {
    grid-template-columns: 1fr;
  }

  .slide-media {
    order: -1;
  }

  .slide-media img {
    max-height: 50vh;
  }
}

@media (max-width: 640px) {
  .slider-nav {
    gap: 12px;
  }

  .slider-prev,
  .slider-next {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ---- mobile friendly additions ---- */

/* Portfolio feature: collapse to single column */
@media (max-width: 780px) {
  .portfolio-feature {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .portfolio-feature-media img {
    max-height: 40vh;
  }

  .portfolio-feature-info p {
    font-size: 15px;
  }

  .services-hero h1,
  .portfolio-hero h1,
  .portfolio-hub-hero h1 {
    font-size: 28px;
  }

  .services-hero p,
  .portfolio-hero p,
  .portfolio-hub-hero p {
    font-size: 16px;
  }

  .pf-link-card {
    padding: 20px;
  }

  .pf-num {
    font-size: 14px;
  }

  .pf-link-card strong {
    font-size: 18px;
  }

  /* About section */
  /* Already collapses via .split-section grid-template-columns: 1fr at 780px */

  /* Contact section */
  .contact-form {
    gap: 16px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 15px;
    padding: 12px 16px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .site-header {
    padding: 0 14px;
  }

  .brand span {
    font-size: 20px;
  }

  .hero-copy h1 {
    font-size: 28px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .service-grid {
    gap: 12px;
  }

  .service-link article {
    padding: 16px;
  }

  .service-link article h3 {
    font-size: 14px;
  }

  .service-link article p {
    font-size: 12px;
  }

  .service-detail {
    padding: 32px 16px;
    gap: 20px;
  }

  .service-copy h2 {
    font-size: 22px;
  }

  .svc-summary {
    font-size: 14px;
  }

  .svc-desc {
    font-size: 13px;
  }

  .portfolio-hub-grid {
    grid-template-columns: 1fr;
    padding: 32px 14px;
    gap: 12px;
  }

  .site-footer {
    padding: 32px 16px;
    font-size: 12px;
  }

  .service-slider {
    padding: 32px 14px;
  }

  .slide-copy h2 {
    font-size: 22px;
  }

  .slide-media {
    min-height: 200px;
  }

  .hero {
    padding: 40px 14px;
  }

  .split-section,
  .contact,
  .section-heading {
    padding: 40px 14px;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .client-grid article {
    min-height: 90px;
    padding: 14px;
  }

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

  .metrics article strong {
    font-size: 28px;
  }
}

/* ---- hover underline animation for service titles ---- */

.service-link article h3,
.service-copy h2,
.pf-link-card strong {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.service-link article h3::after,
.service-copy h2::after,
.pf-link-card strong::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link article:hover h3::after,
.service-copy h2:hover::after,
.pf-link-card:hover strong::after {
  transform: scaleX(1);
}

/* Service detail sections - the whole card is clickable via parent */
.service-link {
  text-decoration: none;
}

.service-link article:hover h3 {
  color: var(--orange);
  transition: color 0.25s ease;
}

.pf-link-card:hover strong {
  color: var(--orange);
  transition: color 0.25s ease;
}

/* Light mode support */
body[data-theme="light"] .service-link article h3::after,
body[data-theme="light"] .service-copy h2::after,
body[data-theme="light"] .pf-link-card strong::after {
  background: var(--orange);
}

/* ---- Keep Exploring section ---- */
.ke-section {
  border-top: 1px solid var(--line);
}

.ke-top {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 56px);
  transition: background 1s ease;
  background-size: 200% 200%;
}

.ke-top:hover {
  animation: keGlow 3s ease infinite alternate;
}

@keyframes keGlow {
  0% { background: linear-gradient(135deg, rgba(255,90,0,0.06) 0%, transparent 30%, rgba(255,90,0,0.04) 60%, transparent 100%); }
  33% { background: linear-gradient(135deg, transparent 0%, rgba(255,90,0,0.10) 30%, transparent 70%, rgba(255,90,0,0.06) 100%); }
  66% { background: linear-gradient(135deg, rgba(255,90,0,0.08) 0%, transparent 40%, rgba(255,90,0,0.10) 70%, transparent 100%); }
  100% { background: linear-gradient(135deg, rgba(255,90,0,0.03) 0%, rgba(255,90,0,0.08) 20%, transparent 50%, rgba(255,90,0,0.10) 80%, rgba(255,90,0,0.04) 100%); }
}

.ke-top-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ke-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}

.ke-heading {
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--paper);
  margin: 0;
  padding: 4px 12px;
  border-radius: 8px;
  display: inline-block;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.ke-heading:hover {
  color: var(--orange);
  background: rgba(255,90,0,0.08);
  transform: scale(1.02);
}

body[data-theme="light"] .ke-heading {
  color: var(--ink);
}

body[data-theme="light"] .ke-heading:hover {
  color: var(--orange);
  background: rgba(255,90,0,0.06);
}

body[data-theme="light"] .ke-top:hover {
  animation: keGlowLight 3s ease infinite alternate;
}

@keyframes keGlowLight {
  0% { background: linear-gradient(135deg, rgba(255,90,0,0.04) 0%, transparent 30%, rgba(255,90,0,0.03) 60%, transparent 100%); }
  33% { background: linear-gradient(135deg, transparent 0%, rgba(255,90,0,0.07) 30%, transparent 70%, rgba(255,90,0,0.04) 100%); }
  66% { background: linear-gradient(135deg, rgba(255,90,0,0.06) 0%, transparent 40%, rgba(255,90,0,0.07) 70%, transparent 100%); }
  100% { background: linear-gradient(135deg, rgba(255,90,0,0.02) 0%, rgba(255,90,0,0.06) 20%, transparent 50%, rgba(255,90,0,0.08) 80%, rgba(255,90,0,0.03) 100%); }
}

@media (max-width: 780px) {
  .ke-heading { font-size: 36px; }
}

/* ---- footer ---- */
.site-footer-new {
  background: var(--ink-2);
  color: var(--paper);
  display: block !important;
  padding: 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.fn-top {
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}
.fn-top-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: flex-end; }
.fn-lang {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: transparent;
  border: 1px solid var(--line); border-radius: 999px;
  color: rgba(248,248,246,0.72); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.25s ease;
}
.fn-lang:hover { color: var(--orange); border-color: var(--orange); }
.fn-arrow { font-size: 16px; transition: transform 0.25s ease; }
.fn-lang:hover .fn-arrow { transform: translateX(4px); }

.fn-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(48px, 6vw, 80px) clamp(18px, 4vw, 56px);
  max-width: 1200px; margin: 0 auto;
}
.fn-col h4 {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--muted); margin-bottom: 20px;
}
.fn-col a {
  display: block; font-size: 14px; font-weight: 400;
  color: rgba(248,248,246,0.68); text-decoration: none;
  padding: 5px 0; transition: color 0.2s ease;
}
.fn-col a:hover { color: var(--orange); }

.fn-legal {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 16px clamp(18px, 4vw, 56px);
}
.fn-legal-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.fn-company { font-size: 12px; color: rgba(248,248,246,0.45); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.fn-links { display: flex; gap: 16px; flex-wrap: wrap; }
.fn-links a { font-size: 11px; color: rgba(248,248,246,0.45); text-decoration: none; transition: color 0.2s ease; }
.fn-links a:hover { color: var(--orange); }

.fn-bottom { padding: 20px clamp(18px, 4vw, 56px); }
.fn-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.fn-social { display: flex; align-items: center; gap: 12px; }
.fn-social span { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-right: 4px; }
.fn-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border: 1px solid rgba(248,248,246,0.18);
  border-radius: 50%; color: rgba(248,248,246,0.5); text-decoration: none;
  font-size: 9px; font-weight: 700; transition: all 0.25s ease;
}
.fn-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.fn-copy { display: flex; align-items: center; gap: 16px; font-size: 11px; color: rgba(248,248,246,0.4); }
.fn-brand { font-size: 18px; font-weight: 900; letter-spacing: -1px; color: rgba(248,248,246,0.2); }

/* Light mode */
body[data-theme="light"] .site-footer-new { background: var(--paper-2); color: var(--ink); }
body[data-theme="light"] .fn-top, body[data-theme="light"] .fn-legal { border-color: var(--line-dark); }
body[data-theme="light"] .fn-lang { border-color: var(--line-dark); color: rgba(26,43,60,0.6); }
body[data-theme="light"] .fn-lang:hover { color: var(--orange); border-color: var(--orange); }
body[data-theme="light"] .fn-col a { color: rgba(26,43,60,0.6); }
body[data-theme="light"] .fn-col a:hover { color: var(--orange); }
body[data-theme="light"] .fn-company, body[data-theme="light"] .fn-links a { color: rgba(26,43,60,0.4); }
body[data-theme="light"] .fn-links a:hover { color: var(--orange); }
body[data-theme="light"] .fn-social a { border-color: rgba(26,43,60,0.14); color: rgba(26,43,60,0.4); }
body[data-theme="light"] .fn-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
body[data-theme="light"] .fn-copy { color: rgba(26,43,60,0.35); }
body[data-theme="light"] .fn-brand { color: rgba(26,43,60,0.15); }

@media (max-width: 780px) {
  .fn-grid { grid-template-columns: repeat(2, 1fr); }
  .fn-legal-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .fn-grid { grid-template-columns: 1fr; }
  .fn-bottom-inner { flex-direction: column-reverse; align-items: flex-start; }
}

/* ---- portfolio ads slider ---- */
.portfolio-slider-feature {
  display: flex;
  flex-direction: row-reverse;
  gap: clamp(28px, 5vw, 70px);
  align-items: flex-start;
}
.portfolio-slider-feature .portfolio-feature-info {
  flex: 0 0 auto;
  max-width: 400px;
}
.portfolio-slider-feature .portfolio-feature-media {
  flex: 1;
  min-width: 0;
}
.slider-slide-ads {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.slider-slide-ads img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .portfolio-slider-feature {
    flex-direction: column;
  }
  .portfolio-slider-feature .portfolio-feature-info {
    max-width: 100%;
  }
}
