/* Official Inter CDN, loaded through the shared stylesheet for every page. */
@import url('https://rsms.me/inter/inter.css');

:root {
  --ink: #17130f;
  --ink-soft: #302923;
  --muted: #6f675f;
  --faint: #9c9289;
  --white: #ffffff;
  --warm: #fffaf4;
  --warm-deep: #fff0e5;
  --line: #e9e1d8;
  --line-strong: #d9cbbd;
  --orange: #f36522;
  --orange-bright: #ff914f;
  --orange-deep: #d94b0d;
  --peach: #ffd0b1;
  --shadow-small: 0 14px 40px rgba(68, 39, 18, .08);
  --shadow-large: 0 40px 100px rgba(74, 41, 17, .15);
  --shell: 1240px;
  --header-height: 72px;
  --ease: cubic-bezier(.2, .78, .24, 1);
  --font-primary: InterVariable, Inter, "Helvetica Neue", Arial, ui-sans-serif, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-primary);
  font-size: 16px;
  font-optical-sizing: auto;
  font-feature-settings: 'liga' 1, 'calt' 1;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
img, svg, video { display: block; }

:focus-visible {
  outline: 3px solid rgba(243, 101, 34, .34);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.page-shell,
.nav-shell {
  width: min(calc(100% - 10vw), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  transition: padding .28s var(--ease), background-color .28s ease;
}

.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: var(--header-height);
  padding: 8px 10px 8px 18px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(223, 211, 199, .9);
  border-radius: 1000px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-small), inset 0 1px rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  font-weight: 780;
  letter-spacing: -.045em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(145deg, var(--orange-deep), var(--orange-bright));
  box-shadow: inset 0 1px rgba(255, 255, 255, .38), 0 7px 20px rgba(217, 75, 13, .2);
  font-size: 18px;
}

.brand-name { font-size: 22px; }
.brand-name span { color: var(--orange); }

/* Original supplied logo; keep the wordmark and preserve the logo artwork. */
.brand-logo { width: 46px; height: 40px; flex: 0 0 auto; object-fit: contain; mix-blend-mode: multiply; }
.footer-brand .brand-logo { width: 58px; height: 52px; }

@media (max-width: 560px) {
  .site-header .brand-logo { width: 40px; height: 36px; }
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-item { display: flex; align-items: center; }

.nav-link,
.nav-trigger {
  padding: 10px 0;
  position: relative;
  color: var(--ink-soft);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 680;
  letter-spacing: -.01em;
}

.nav-trigger { display: inline-flex; align-items: center; gap: 5px; }
.nav-trigger svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .2s var(--ease); }
.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-link-planned { cursor: default; }
.nav-link-planned::before { content: ""; width: 4px; height: 4px; position: absolute; top: 5px; right: -7px; border-radius: 50%; background: var(--orange); opacity: .8; }

.nav-link:not(.nav-link-planned)::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transition: right .24s var(--ease);
}

.nav-link:not(.nav-link-planned):hover::after,
.nav-link:not(.nav-link-planned):focus-visible::after,
.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.nav-trigger[aria-expanded="true"]::after { right: 0; }

.nav-flyout {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  right: 0;
  z-index: 12;
  border: 1px solid rgba(218, 202, 187, .92);
  border-radius: 28px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 34px 90px rgba(42, 28, 17, .18), inset 0 1px rgba(255, 255, 255, .9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(.985);
  transform-origin: top center;
  transition: opacity .22s ease, visibility .22s ease, transform .28s var(--ease);
}

.nav-flyout.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }

.services-flyout {
  padding: 19px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
}

.flyout-heading {
  padding: 19px 18px;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(145deg, #2b211a, var(--ink));
}

.flyout-heading > span { color: var(--orange-bright); font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.flyout-heading p { margin: 39px 0 0; color: rgba(255, 255, 255, .68); font-size: 14px; line-height: 1.55; }
.service-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.service-menu-grid a { min-height: 86px; padding: 15px 16px; display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center; border: 1px solid var(--line); border-radius: 18px; background: var(--warm); transition: transform .22s var(--ease), border-color .22s ease, background .22s ease; }
.service-menu-grid a:hover { transform: translateY(-2px); border-color: var(--line-strong); background: var(--white); }
.service-menu-grid i { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; color: var(--orange-deep); background: var(--warm-deep); font-size: 10px; font-style: normal; font-weight: 850; }
.service-menu-grid span { display: grid; gap: 3px; }
.service-menu-grid strong { color: var(--ink); font-size: 14px; letter-spacing: -.02em; }
.service-menu-grid small { color: var(--muted); font-size: 11px; }
.service-menu-grid b { color: var(--orange-deep); font-size: 15px; }

.contact-flyout {
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) minmax(210px, .78fr);
  gap: 11px;
  color: var(--white);
  border-color: rgba(255, 255, 255, .08);
  background: rgba(25, 21, 17, .97);
  box-shadow: 0 34px 90px rgba(19, 12, 8, .32);
}

.contact-option { min-height: 132px; padding: 21px; display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, .08); border-radius: 20px; background: rgba(255, 255, 255, .035); transition: background .22s ease, border-color .22s ease, transform .22s var(--ease); }
.contact-option:hover { transform: translateY(-2px); border-color: rgba(255, 145, 79, .28); background: rgba(255, 255, 255, .06); }
.contact-option > span { color: var(--orange-bright); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.contact-option strong { margin-top: 13px; font-size: 15px; letter-spacing: -.02em; }
.contact-option small { margin-top: auto; color: rgba(255, 255, 255, .48); font-size: 11px; line-height: 1.45; }
.contact-call { min-height: 132px; padding: 23px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-radius: 20px; color: var(--ink); background: linear-gradient(135deg, var(--orange), var(--orange-bright)); font-size: 16px; font-weight: 820; letter-spacing: -.025em; }
.contact-call svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform .2s var(--ease); }
.contact-call:hover svg { transform: translateX(5px); }

.button {
  min-height: 54px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 1000px;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -.02em;
  transition: color .2s ease, background .2s ease, transform .2s var(--ease), box-shadow .2s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s var(--ease);
}

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

.button-solid {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-deep) 7%, var(--orange) 57%, var(--orange-bright));
  box-shadow: 0 13px 28px rgba(217, 75, 13, .2), inset 0 1px rgba(255, 255, 255, .3);
}

.button-solid:hover,
.button-solid:focus-visible {
  color: var(--orange-deep);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(81, 50, 25, .14), 0 0 0 1px var(--line-strong);
  transform: translateY(-2px);
}

.button-small { min-height: 54px; padding-inline: 20px; }

.button-quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, .62);
  box-shadow: inset 0 0 0 1px rgba(218, 202, 187, .9);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  color: var(--orange-deep);
  background: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  margin-left: auto;
  display: none;
  position: relative;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--warm);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .25s var(--ease), top .25s var(--ease);
}

.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 27px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  min-height: 100vh;
  padding: 165px 0 115px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, var(--warm) 0%, var(--white) 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 260px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .25;
  background-image:
    linear-gradient(rgba(102, 72, 49, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 72, 49, .08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 68%);
}

.hero-glow {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
  animation: glowPulse 11s ease-in-out infinite;
}

.hero-glow-left {
  width: 68vw;
  height: 68vw;
  top: -33vw;
  left: -30vw;
  background: radial-gradient(circle, rgba(255, 220, 194, .98), rgba(255, 154, 88, .5) 31%, rgba(243, 101, 34, .2) 54%, rgba(255, 255, 255, 0) 72%);
}

.hero-glow-right {
  width: 58vw;
  height: 58vw;
  top: 13vw;
  right: -31vw;
  background: radial-gradient(circle, rgba(255, 204, 169, .8), rgba(255, 139, 70, .35) 35%, rgba(243, 101, 34, .12) 59%, rgba(255, 255, 255, 0) 74%);
  animation-delay: -4.5s;
}

@keyframes glowPulse {
  0%, 100% { filter: blur(18px) brightness(1); transform: scale(1); }
  50% { filter: blur(18px) brightness(1.13); transform: scale(1.035); }
}

.hero-inner {
  min-height: calc(100vh - 280px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  gap: clamp(44px, 5.8vw, 88px);
  align-items: center;
}

.hero-copy { width: 100%; }

.eyebrow {
  padding: 10px 15px 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(243, 101, 34, .24);
  border-radius: 1000px;
  color: var(--orange-deep);
  background: rgba(255, 255, 255, .64);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(243, 101, 34, .12);
}

.hero h1 {
  max-width: 660px;
  margin: 30px 0 28px;
  font-size: clamp(54px, 4.5vw, 68px);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1.04;
}

.dynamic-line {
  min-height: 1.18em;
  margin-top: .1em;
  padding: .03em 0 .1em;
  display: block;
  overflow: hidden;
  line-height: 1.02;
}

.dynamic-word {
  width: max-content;
  max-width: 100%;
  display: block;
  padding-right: .08em;
  color: transparent;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-bright), var(--orange-deep)) 0 0 / 210% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gradientMove 4.5s linear infinite;
  clip-path: inset(0 0 0 0);
  font-size: .82em;
  line-height: 1.02;
  white-space: nowrap;
  transform: translateY(0);
  transition: opacity .24s ease, transform .32s var(--ease), clip-path .32s var(--ease);
  will-change: opacity, transform, clip-path;
}

.dynamic-word.is-changing {
  opacity: 0;
  transform: translateY(.24em);
  clip-path: inset(0 0 82% 0);
}

@keyframes gradientMove { to { background-position: 210% 0; } }

.hero-lede {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 470;
  letter-spacing: -.022em;
  line-height: 1.58;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-points {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 28px;
  color: var(--ink-soft);
  list-style: none;
  font-size: 13px;
  font-weight: 680;
}

.hero-points li { display: inline-flex; align-items: center; gap: 9px; }

.hero-points li span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--warm-deep);
}

.hero-points li span::after {
  content: "";
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--orange-deep);
  border-bottom: 1.5px solid var(--orange-deep);
  transform: translateY(-1px) rotate(-45deg);
}

.showreel-wrap {
  min-width: 0;
  margin-top: 0;
  padding: 18px 18px 15px;
  border: 1px solid rgba(230, 191, 162, .9);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .76), rgba(255, 230, 211, .82));
  box-shadow: 0 34px 90px rgba(91, 48, 20, .14), inset 0 1px rgba(255, 255, 255, .92);
}

.showreel-card {
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(207, 190, 173, .92);
  border-radius: 24px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow-large), inset 0 1px rgba(255, 255, 255, .14);
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s ease;
}

.showreel-card:hover,
.showreel-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 48px 110px rgba(74, 41, 17, .19);
}

.showreel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s ease;
}

.showreel-card:hover img { transform: scale(1.018); filter: saturate(1.08); }

.showreel-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 13, 10, .45), rgba(16, 13, 10, .06) 40%, rgba(16, 13, 10, .58));
}

.showreel-topline,
.showreel-bottom {
  position: absolute;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .085em;
}

.showreel-topline { top: 24px; }
.showreel-bottom { bottom: 24px; }

.status { display: inline-flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, .75); }
.status i { width: 8px; height: 8px; border-radius: 50%; background: #63d985; box-shadow: 0 0 0 5px rgba(99, 217, 133, .13); }

.showreel-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.play-button {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: var(--orange-deep);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  transition: transform .3s var(--ease), background .25s ease;
}

.showreel-card:hover .play-button { transform: scale(1.08); background: var(--warm-deep); }
.play-button svg { width: 30px; height: 30px; fill: currentColor; }

.showreel-center strong { font-size: clamp(24px, 3vw, 42px); letter-spacing: -.045em; }
.showreel-center small { margin-top: 8px; color: rgba(255, 255, 255, .66); font-size: 12px; font-weight: 700; letter-spacing: .04em; }

.media-line {
  height: 4px;
  margin-inline: 14px;
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, .22);
}

.media-line i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 36%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  animation: previewProgress 8s ease-in-out infinite;
}

@keyframes previewProgress { 0%, 7% { width: 5%; } 88%, 100% { width: 92%; } }

.showreel-note {
  margin: 14px 5px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--faint);
  font-size: 13px;
}

.showreel-note span { color: var(--orange-deep); font-weight: 800; }

.audience-band {
  padding: 100px 0 92px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.audience-heading {
  margin-bottom: 42px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.audience-heading p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 43px);
  font-weight: 680;
  letter-spacing: -.052em;
  line-height: 1.08;
}

.audience-heading > span {
  max-width: 300px;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.ticker { width: 100%; overflow: hidden; }

.ticker-track {
  width: max-content;
  display: flex;
  animation: tickerMove 44s linear infinite;
}

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

.ticker-set { display: flex; }

.ticker-set span {
  min-width: max-content;
  margin-right: 14px;
  padding: 18px 24px 18px 18px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 1000px;
  color: var(--ink-soft);
  background: var(--warm);
  box-shadow: inset 0 1px var(--white);
  font-size: 15px;
  font-weight: 700;
}

.ticker-set i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-deep);
  background: var(--warm-deep);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

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

.about {
  padding: 96px 0;
  overflow: hidden;
  background: var(--white);
}

.about-stage {
  min-height: 830px;
  padding: 54px 56px 48px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid #eadacd;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98) 0%, rgba(255, 250, 244, .97) 46%, rgba(255, 225, 204, .92) 100%);
  box-shadow: 0 38px 100px rgba(87, 48, 20, .13), inset 0 1px rgba(255, 255, 255, .95);
}

.about-glow {
  width: 800px;
  height: 620px;
  position: absolute;
  right: -180px;
  bottom: -350px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 111, 36, .88), rgba(255, 151, 86, .56) 34%, rgba(255, 218, 193, .16) 61%, transparent 73%);
  filter: blur(10px);
  animation: aboutGlow 9s ease-in-out infinite;
}

.about-rings i {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(217, 75, 13, .13);
  border-radius: 50%;
}

.about-rings i:nth-child(1) { width: 470px; height: 470px; top: -310px; right: -70px; }
.about-rings i:nth-child(2) { width: 620px; height: 620px; top: -405px; right: -145px; }
.about-rings i:nth-child(3) { width: 780px; height: 780px; top: -500px; right: -225px; }

@keyframes aboutGlow {
  0%, 100% { opacity: .78; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.about-pill {
  padding: 9px 14px;
  display: inline-flex;
  border: 1px solid rgba(217, 75, 13, .2);
  border-radius: 1000px;
  color: var(--orange-deep);
  background: rgba(255, 255, 255, .68);
  box-shadow: inset 0 1px var(--white);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-head h2 {
  max-width: 1060px;
  margin: 36px 0 0;
  font-size: clamp(51px, 6.1vw, 86px);
  font-weight: 680;
  letter-spacing: -.064em;
  line-height: .99;
}

.about-head h2 em { color: var(--orange-deep); font-style: normal; }

.about-proof {
  margin-top: 104px;
  display: grid;
  grid-template-columns: minmax(240px, .34fr) minmax(0, 1fr);
  gap: 38px;
  align-items: end;
}

.about-copy { padding: 0 4px 8px; }
.about-copy > span { color: var(--orange-deep); font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.about-copy p { max-width: 360px; margin: 18px 0 27px; color: var(--ink-soft); font-size: 16px; font-weight: 580; line-height: 1.65; }
.about-copy a { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 5px; border-bottom: 1px solid rgba(217, 75, 13, .35); color: var(--orange-deep); font-size: 13px; font-weight: 820; }
.about-copy a b { transition: transform .2s var(--ease); }
.about-copy a:hover b { transform: translate(3px, -3px); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-card {
  min-height: 205px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 20px 45px rgba(66, 37, 17, .08), inset 0 1px rgba(255, 255, 255, .8);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 28px 60px rgba(74, 41, 17, .13);
}

.stat-card > span { color: var(--muted); font-size: 11px; font-weight: 780; letter-spacing: .025em; }
.stat-card strong { margin: auto 0 2px; display: flex; align-items: baseline; color: var(--orange-deep); font-size: clamp(45px, 5vw, 66px); font-weight: 690; letter-spacing: -.065em; line-height: .9; }
.stat-card strong b { font: inherit; }
.stat-card p { margin: 13px 0 0; color: var(--ink-soft); font-size: 15px; font-weight: 780; }

.stat-card-dark {
  color: var(--white);
  border-color: #30261f;
  background: linear-gradient(145deg, #2d221b, var(--ink) 72%);
  box-shadow: 0 24px 52px rgba(37, 22, 12, .18);
}

.stat-card-dark > span,
.stat-card-dark p { color: rgba(255, 255, 255, .62); }
.stat-card-dark strong { color: var(--orange-bright); }

.stat-card-orange {
  border-color: transparent;
  color: var(--ink);
  background: linear-gradient(145deg, var(--orange), var(--orange-bright));
  box-shadow: 0 24px 55px rgba(217, 75, 13, .22);
}

.stat-card-orange > span,
.stat-card-orange p { color: rgba(35, 24, 16, .68); }
.stat-card-orange strong { color: var(--ink); }
.stat-card:nth-child(2) { transition-delay: .07s; }
.stat-card:nth-child(3) { transition-delay: .14s; }
.stat-card:nth-child(4) { transition-delay: .21s; }

.what-we-do {
  padding: 144px 0 154px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px),
    #15110e;
  background-size: 72px 72px;
}

.work-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 145, 79, .12);
  border-radius: 50%;
  pointer-events: none;
}

.work-orbit-one { width: 780px; height: 780px; top: -450px; right: -150px; }
.work-orbit-two { width: 560px; height: 560px; bottom: -420px; left: -160px; }

.what-we-do::before {
  content: "";
  width: 820px;
  height: 640px;
  position: absolute;
  top: -360px;
  right: -190px;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 101, 34, .25), rgba(243, 101, 34, 0) 68%);
  filter: blur(18px);
}

.section-intro,
.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, .5fr);
  gap: 9vw;
  align-items: end;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--orange-bright);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(255, 145, 79, .12);
}

.section-intro h2,
.services-heading h2 {
  max-width: 910px;
  margin: 25px 0 0;
  font-size: clamp(50px, 6vw, 84px);
  font-weight: 680;
  letter-spacing: -.064em;
  line-height: .99;
}

.section-intro > p,
.services-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .57);
  font-size: 17px;
  line-height: 1.68;
}

.work-grid {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.work-card {
  --spot-x: 50%;
  --spot-y: 0%;
  min-height: 430px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .105);
  border-radius: 30px;
  background: rgba(255, 255, 255, .047);
  box-shadow: inset 0 1px rgba(255, 255, 255, .045), 0 26px 70px rgba(0, 0, 0, .11);
  transition: transform .35s var(--ease), border-color .3s ease, background .3s ease;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(440px circle at var(--spot-x) var(--spot-y), rgba(255, 145, 79, .12), transparent 46%);
  opacity: .72;
  transition: opacity .3s ease;
}

.work-card > * { position: relative; z-index: 1; }

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 145, 79, .4);
  background: rgba(255, 255, 255, .061);
}

.work-card:hover::before { opacity: 1; }
.work-card-system { grid-column: span 8; min-height: 570px; }
.work-card-team { grid-column: span 4; min-height: 570px; }
.work-card-updates,
.work-card-review,
.work-card-quality { grid-column: span 4; min-height: 500px; }
.work-card-scale { grid-column: span 12; min-height: 450px; }

.work-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.work-card-heading i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  color: var(--orange-bright);
  font-size: 11px;
  font-style: normal;
}

.work-card h3 {
  max-width: 690px;
  margin: auto 0 13px;
  font-size: clamp(28px, 2.7vw, 42px);
  letter-spacing: -.05em;
  line-height: 1.04;
}

.work-card > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .57);
  font-size: 16px;
  line-height: 1.64;
}

.system-console {
  margin: 48px 0 42px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 24px;
  background: rgba(13, 10, 8, .55);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .19);
}

.system-console::after {
  content: "";
  width: 26%;
  height: 1px;
  position: absolute;
  left: -30%;
  bottom: 0;
  background: linear-gradient(90deg, transparent, var(--orange-bright), transparent);
  animation: consoleScan 4.8s var(--ease) infinite;
}

@keyframes consoleScan { 0%, 18% { left: -30%; opacity: 0; } 32%, 72% { opacity: 1; } 88%, 100% { left: 104%; opacity: 0; } }

.console-bar {
  padding: 2px 3px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 720;
}

.console-bar span { display: inline-flex; align-items: center; gap: 8px; }
.console-bar span i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-bright); box-shadow: 0 0 0 5px rgba(255, 145, 79, .1); }
.console-bar small { color: rgba(255, 255, 255, .38); font-size: 11px; font-weight: 650; }

.workflow-map {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.workflow-map > div {
  min-height: 104px;
  padding: 14px 11px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 16px;
  background: rgba(255, 255, 255, .038);
}

.workflow-map > div > i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .04);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.workflow-map > div.is-complete,
.workflow-map > div.is-active { border-color: rgba(255, 145, 79, .24); background: rgba(255, 145, 79, .055); }
.workflow-map > div.is-complete > i { color: var(--ink); background: var(--orange-bright); border-color: var(--orange-bright); }
.workflow-map > div.is-active > i { color: var(--orange-bright); border-color: rgba(255, 145, 79, .5); box-shadow: 0 0 0 5px rgba(255, 145, 79, .08); animation: activeStep 2.2s ease-in-out infinite; }
@keyframes activeStep { 50% { box-shadow: 0 0 0 9px rgba(255, 145, 79, 0); } }
.workflow-map span { display: grid; gap: 3px; font-size: 12px; font-weight: 780; white-space: nowrap; }
.workflow-map small { color: rgba(255, 255, 255, .42); font-size: 11px; font-weight: 600; }
.workflow-map > b { width: 10px; height: 1px; position: relative; overflow: hidden; background: rgba(255, 255, 255, .11); }
.workflow-map > b::after { content: ""; width: 100%; height: 100%; position: absolute; inset: 0; background: var(--orange-bright); transform: translateX(-100%); animation: workflowLine 4s var(--ease) infinite; }
.workflow-map > b:nth-of-type(2)::after { animation-delay: .22s; }
.workflow-map > b:nth-of-type(3)::after { animation-delay: .44s; }
.workflow-map > b:nth-of-type(4)::after { animation-delay: .66s; }
@keyframes workflowLine { 0%, 15% { transform: translateX(-100%); } 40%, 75% { transform: translateX(0); } 100% { transform: translateX(100%); } }

.role-stack {
  height: 292px;
  margin: 40px 0 31px;
  position: relative;
}

.role-stack > span {
  width: calc(100% - 42px);
  min-height: 72px;
  padding: 12px 15px;
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: linear-gradient(145deg, #2b211a, #201914);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
  transition: border-color .25s ease, transform .3s var(--ease);
}

.role-stack > span:nth-child(1) { top: 0; }
.role-stack > span:nth-child(2) { top: 65px; left: 14px; }
.role-stack > span:nth-child(3) { top: 130px; left: 28px; }
.role-stack > span:nth-child(4) { top: 195px; left: 42px; }
.role-stack > span:hover { z-index: 3; border-color: rgba(255, 145, 79, .4); transform: translateX(-5px); }
.role-stack > span > i { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; color: var(--ink); background: var(--orange-bright); font-size: 11px; font-style: normal; font-weight: 850; }
.role-stack small { display: grid; gap: 3px; color: rgba(255, 255, 255, .82); font-size: 13px; font-weight: 760; }
.role-stack small b { color: rgba(255, 255, 255, .4); font-size: 11px; font-weight: 600; }

.activity-feed {
  margin: 43px 0 38px;
  display: grid;
  gap: 9px;
}

.activity-feed > div {
  min-height: 76px;
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 17px;
  background: rgba(13, 10, 8, .42);
  box-shadow: 0 13px 30px rgba(0, 0, 0, .08);
  transition: border-color .25s ease, transform .25s var(--ease);
}

.activity-feed > div:hover { border-color: rgba(255, 145, 79, .28); transform: translateX(4px); }
.activity-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: var(--ink); background: var(--orange-bright); font-size: 12px; font-style: normal; font-weight: 850; }
.activity-feed span { display: grid; gap: 2px; }
.activity-feed strong { font-size: 13px; }
.activity-feed small { color: rgba(255, 255, 255, .42); font-size: 11px; }
.activity-feed time { color: rgba(255, 255, 255, .35); font-size: 11px; font-weight: 700; }

.review-window,
.quality-panel {
  margin: 43px 0 38px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 21px;
  background: rgba(13, 10, 8, .52);
  box-shadow: 0 23px 55px rgba(0, 0, 0, .2);
}

.review-window { padding: 14px; }
.review-preview { min-height: 145px; padding: 16px; position: relative; overflow: hidden; display: flex; justify-content: space-between; align-items: flex-start; border-radius: 15px; color: rgba(255, 255, 255, .55); background: radial-gradient(circle at 72% 28%, rgba(255, 145, 79, .25), transparent 34%), linear-gradient(135deg, #3a2519, #1c1713 70%); font-size: 11px; font-weight: 760; }
.review-preview::after { content: ""; width: 120%; height: 1px; position: absolute; left: -10%; top: 55%; background: linear-gradient(90deg, transparent, rgba(255, 145, 79, .58), transparent); animation: frameScan 3.9s ease-in-out infinite; }
@keyframes frameScan { 0%, 100% { transform: translateY(-38px); opacity: 0; } 30%, 68% { opacity: 1; } 50% { transform: translateY(38px); } }
.review-preview strong { color: var(--orange-bright); }
.review-play { width: 42px; height: 42px; position: absolute; inset: 50% auto auto 50%; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--orange-bright); box-shadow: 0 0 0 9px rgba(255, 145, 79, .1); font-size: 12px; font-style: normal; transform: translate(-50%, -50%); }
.review-timeline { height: 4px; margin: 15px 2px 0; position: relative; border-radius: 20px; background: rgba(255, 255, 255, .1); }
.review-timeline span { width: 47%; height: 100%; display: block; border-radius: inherit; background: var(--orange-bright); }
.review-timeline i { width: 10px; height: 10px; position: absolute; top: -3px; left: calc(47% - 5px); border-radius: 50%; background: var(--white); box-shadow: 0 0 0 5px rgba(255, 145, 79, .12); }
.review-window > p { margin: 17px 0; padding: 13px; border-left: 2px solid var(--orange); border-radius: 0 11px 11px 0; color: rgba(255, 255, 255, .78); background: rgba(255, 255, 255, .04); font-size: 12px; }
.review-status { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .55); font-size: 11px; font-weight: 730; }
.review-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-bright); box-shadow: 0 0 0 4px rgba(255, 145, 79, .1); }

.quality-panel { padding: 18px; }
.quality-score { padding-bottom: 16px; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.quality-score span { color: rgba(255, 255, 255, .48); font-size: 12px; font-weight: 720; }
.quality-score strong { color: var(--orange-bright); font-size: 12px; }
.quality-panel ul { margin: 10px 0 0; padding: 0; display: grid; list-style: none; }
.quality-panel li { min-height: 43px; display: flex; align-items: center; gap: 11px; border-bottom: 1px solid rgba(255, 255, 255, .065); color: rgba(255, 255, 255, .72); font-size: 13px; font-weight: 680; }
.quality-panel li:last-child { border-bottom: 0; }
.quality-panel li i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; color: var(--ink); background: var(--orange-bright); font-size: 11px; font-style: normal; font-weight: 900; transform: scale(.8); opacity: .2; }
.work-card-quality.is-visible .quality-panel li i { animation: qualityCheck .4s var(--ease) forwards; }
.work-card-quality.is-visible .quality-panel li:nth-child(2) i { animation-delay: .12s; }
.work-card-quality.is-visible .quality-panel li:nth-child(3) i { animation-delay: .24s; }
.work-card-quality.is-visible .quality-panel li:nth-child(4) i { animation-delay: .36s; }
@keyframes qualityCheck { to { transform: scale(1); opacity: 1; } }

.scale-layout {
  margin-top: 46px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
}

.scale-label { color: var(--orange-bright); font-size: 12px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.scale-layout h3 { max-width: 580px; margin: 20px 0 17px; }
.scale-layout p { max-width: 580px; margin: 0; color: rgba(255, 255, 255, .57); font-size: 16px; line-height: 1.64; }

.production-queue { padding: 18px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 23px; background: rgba(13, 10, 8, .52); box-shadow: 0 26px 60px rgba(0, 0, 0, .18); }
.queue-head { padding: 2px 3px 15px; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255, 255, 255, .08); color: rgba(255, 255, 255, .66); font-size: 12px; font-weight: 760; }
.queue-head small { color: rgba(255, 255, 255, .36); font-size: 11px; }
.production-queue > div:not(.queue-head):not(.queue-progress) { min-height: 67px; display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, .065); }
.production-queue > div > i { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .1); border-radius: 10px; color: var(--orange-bright); font-size: 11px; font-style: normal; font-weight: 820; }
.production-queue > div > span { display: grid; gap: 2px; }
.production-queue > div > span strong { font-size: 13px; }
.production-queue > div > span small { color: rgba(255, 255, 255, .4); font-size: 11px; }
.production-queue > div > b { padding: 5px 8px; border-radius: 30px; color: rgba(255, 255, 255, .44); background: rgba(255, 255, 255, .055); font-size: 11px; font-weight: 720; }
.production-queue > div > b.queue-ready { color: #ffc49f; background: rgba(255, 145, 79, .12); }
.production-queue > div > b.queue-active { color: var(--orange-bright); background: rgba(255, 145, 79, .09); }
.queue-progress { height: 3px; margin-top: 16px; overflow: hidden; border-radius: 10px; background: rgba(255, 255, 255, .075); }
.queue-progress span { width: 54%; height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg, var(--orange-deep), var(--orange-bright)); animation: queuePulse 3.4s ease-in-out infinite; }
@keyframes queuePulse { 50% { width: 72%; filter: brightness(1.18); } }

.services {
  padding: 140px 0 150px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--warm) 0%, var(--white) 100%);
}

.services-heading > p { color: var(--muted); }
.services-heading .section-kicker { color: var(--orange-deep); }

.service-tabs {
  margin-top: 66px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-small);
}

.service-tabs button {
  min-height: 68px;
  padding: 12px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 16px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 760;
  transition: color .22s ease, background .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}

.service-tabs button span { color: var(--faint); font-size: .75rem; }
.service-tabs button:hover { color: var(--ink); background: var(--warm); }
.service-tabs button[aria-selected="true"] { color: var(--white); background: linear-gradient(135deg, #302218, var(--ink)); box-shadow: inset 0 0 0 1px rgba(255, 145, 79, .2), 0 12px 26px rgba(42, 28, 17, .16); }
.service-tabs button[aria-selected="true"] span { color: var(--orange-bright); }

.service-panels { margin-top: 18px; }
.service-panel[hidden] { display: none; }

.service-panel {
  min-height: 0;
  padding: 20px;
  display: block;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-large);
}

.service-panel.is-active { animation: panelIn .48s var(--ease) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.service-overview { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 24px; }

.service-copy {
  min-width: 0;
  padding: 36px 25px 32px;
  display: flex;
  flex-direction: column;
}

.service-number { color: var(--orange-deep); font-size: .75rem; font-weight: 820; letter-spacing: .045em; text-transform: uppercase; }
.service-copy h3 { margin: 48px 0 23px; font-size: clamp(34px, 3.6vw, 50px); font-weight: 680; letter-spacing: -.055em; line-height: 1.03; }
.service-copy > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.service-copy ul { margin: 34px 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.service-copy li { display: flex; align-items: flex-start; gap: 11px; color: var(--ink-soft); font-size: .875rem; font-weight: 670; }
.service-copy li::before { content: "✓"; width: 19px; height: 19px; margin-top: 1px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 6px; color: var(--orange-deep); background: var(--warm-deep); font-size: .75rem; }

.text-link {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--orange-deep);
  font-size: 14px;
  font-weight: 820;
}

.text-link span { margin-left: 5px; transition: transform .2s var(--ease); }
.text-link:hover span { display: inline-block; transform: translate(3px, -3px); }

.service-stage {
  min-width: 0;
  min-height: 610px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 145, 79, .23), transparent 29%),
    linear-gradient(145deg, #282019, #17130f 72%);
}

.service-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent);
}

.service-stage > * { position: relative; z-index: 1; }
.stage-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255, 255, 255, .58); font-size: .75rem; font-weight: 760; }
.stage-top i { padding: 7px 10px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 1000px; color: var(--orange-bright); font-style: normal; white-space: nowrap; }
.stage-bottom { margin-top: auto; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: rgba(255, 255, 255, .4); font-size: .75rem; }
.stage-bottom strong { color: rgba(255, 255, 255, .64); font-weight: 650; }
.services:not(.is-in-view) .service-stage *,
.service-panel:not(.is-active) * { animation-play-state: paused; }

/* Automation: a sequenced workflow, not a simulated client portal. */
.automation-workspace { margin: 34px 0 26px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr); gap: 16px; }
.production-steps { display: grid; gap: 7px; }
.production-steps > div { min-height: 54px; padding: 10px; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 13px; color: rgba(255, 255, 255, .48); background: rgba(0, 0, 0, .16); transition: background .35s ease, border-color .35s ease, color .35s ease; }
.production-steps i { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 8px; color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .06); font-size: .75rem; font-style: normal; font-weight: 780; }
.production-steps span { font-size: .75rem; font-weight: 680; }
.production-steps b { width: 5px; height: 5px; margin-left: auto; flex: 0 0 auto; border-radius: 50%; background: rgba(255, 255, 255, .14); }
.production-steps .is-current { color: var(--white); border-color: rgba(255, 145, 79, .4); background: rgba(255, 145, 79, .1); }
.production-steps .is-current i { color: var(--ink); background: var(--orange-bright); }
.production-steps .is-current b { background: var(--orange-bright); box-shadow: 0 0 0 4px rgba(255, 145, 79, .1); }
.production-steps .is-done i { color: var(--orange-bright); }
.production-detail { padding: 22px 19px; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid rgba(255, 255, 255, .1); border-radius: 20px; background: radial-gradient(circle at 80% 10%, rgba(255, 145, 79, .12), transparent 50%), rgba(10, 8, 6, .35); }
.detail-label { color: rgba(255, 255, 255, .42); font-size: .75rem; }
.production-symbol { width: 92px; height: 82px; margin: 25px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; transform: rotate(-5deg); }
.production-symbol span { border: 1px solid rgba(255, 145, 79, .4); border-radius: 10px; background: rgba(255, 145, 79, .09); animation: symbolSignal 4s ease-in-out infinite; }
.production-symbol span:nth-child(2) { animation-delay: .3s; }
.production-symbol span:nth-child(3) { animation-delay: .6s; }
.production-symbol span:nth-child(4) { background: var(--orange-bright); animation-delay: .9s; }
@keyframes symbolSignal { 50% { transform: translateY(-4px); border-color: var(--orange-bright); } }
.production-detail > strong { max-width: 240px; font-size: clamp(24px, 2.1vw, 30px); font-weight: 680; letter-spacing: -.045em; line-height: 1.1; }
.production-detail > p { margin: 15px 0 20px; color: rgba(255, 255, 255, .53); font-size: .875rem; line-height: 1.55; }
.detail-tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px; }
.detail-tags span { padding: 5px 7px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 7px; color: rgba(255, 255, 255, .6); font-size: .75rem; }
.production-strip { min-height: 54px; padding: 10px; position: relative; overflow: hidden; display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 13px; background: rgba(0, 0, 0, .18); }
.production-strip span { padding: 9px 4px; border-radius: 6px; color: rgba(255, 255, 255, .65); background: rgba(255, 145, 79, .1); font-size: .75rem; text-align: center; }
.production-strip > i { width: 2px; position: absolute; inset: 0 auto 0 6%; background: var(--orange-bright); box-shadow: 0 0 18px rgba(255, 145, 79, .5); animation: stripPlayhead 12s linear infinite; }
@keyframes stripPlayhead { from { left: 6%; } to { left: 94%; } }

/* Long-form: monitor and multi-track finishing sequence. */
.edit-monitor { margin-top: 32px; min-height: 250px; padding: 17px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(255, 255, 255, .12); border-radius: 20px; background: radial-gradient(ellipse at 70% 30%, rgba(255, 145, 79, .22), transparent 54%), #100d0a; box-shadow: 0 20px 45px rgba(0, 0, 0, .2); }
.monitor-top, .monitor-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; color: rgba(255, 255, 255, .45); font-size: .75rem; }
.monitor-bottom { margin-top: 18px; }
.monitor-frame { min-height: 148px; margin: 22px 12px 0; padding: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; border: 1px solid rgba(255, 255, 255, .18); background: linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, .055) 50%, transparent 50.2%), linear-gradient(transparent 49.8%, rgba(255, 255, 255, .055) 50%, transparent 50.2%); }
.monitor-frame > span { font-size: clamp(30px, 3.1vw, 46px); font-weight: 680; letter-spacing: -.055em; }
.monitor-frame > small { color: var(--orange-bright); font-size: .75rem; }
.edit-timeline { margin-top: 20px; padding: 15px 12px; position: relative; overflow: hidden; border: 1px solid rgba(255, 255, 255, .09); border-radius: 15px; background: rgba(0, 0, 0, .24); }
.timeline-ruler { margin: 0 0 12px 27px; display: flex; justify-content: space-between; color: rgba(255, 255, 255, .4); font-size: .75rem; }
.timeline-lane { min-height: 34px; margin-top: 7px; display: flex; gap: 7px; align-items: center; }
.timeline-lane > b { width: 23px; flex: 0 0 auto; color: rgba(255, 255, 255, .4); font-size: .75rem; font-weight: 650; }
.timeline-lane > span { min-width: 0; min-height: 32px; padding: 8px 9px; flex: 1; border-radius: 5px; color: rgba(255, 255, 255, .65); font-size: .75rem; }
.timeline-lane > span:last-child:not(:first-of-type) { flex: .4; }
.clip-orange { color: var(--ink) !important; background: linear-gradient(90deg, var(--orange), var(--orange-bright)); }
.clip-muted { background: rgba(255, 255, 255, .12); }
.clip-audio { background: repeating-linear-gradient(90deg, rgba(255, 145, 79, .05) 0 3px, rgba(255, 145, 79, .18) 3px 4px), #2b231c; }
.timeline-playhead { width: 1px; position: absolute; inset: 12px auto 12px 15%; background: var(--peach); box-shadow: 0 0 12px rgba(255, 145, 79, .4); animation: timelinePlayhead 9s linear infinite; }
.timeline-playhead::before { content: ""; position: absolute; top: 0; left: -3px; border: 4px solid transparent; border-top-color: var(--peach); }
@keyframes timelinePlayhead { from { left: 15%; } to { left: 92%; } }

/* Short-form: source-to-target reframing and caption safe areas. */
.reframe-workspace { margin: 40px 0 30px; display: grid; grid-template-columns: minmax(0, 1fr) 24px minmax(0, .83fr); gap: 12px; align-items: center; }
.reframe-source { aspect-ratio: 16 / 11; min-width: 0; padding: 14px; position: relative; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255, 255, 255, .13); border-radius: 17px; background: linear-gradient(135deg, rgba(255, 145, 79, .17), rgba(0, 0, 0, .3)); }
.reframe-source > span, .reframe-source > small, .reframe-target > span, .reframe-target > small { color: rgba(255, 255, 255, .52); font-size: .75rem; }
.source-focus { width: 35%; height: 60%; position: absolute; top: 22%; left: 36%; border: 1px solid var(--orange-bright); box-shadow: 0 0 0 999px rgba(0, 0, 0, .15); animation: focusTrack 6s ease-in-out infinite; }
.source-focus i { position: absolute; width: 9px; height: 9px; border: 2px solid var(--orange-bright); }
.source-focus i:first-child { top: -4px; left: -4px; border-right: 0; border-bottom: 0; }
.source-focus i:last-child { bottom: -4px; right: -4px; border-left: 0; border-top: 0; }
@keyframes focusTrack { 50% { transform: translateX(-14%); } }
.reframe-connection { display: grid; place-items: center; color: var(--orange-bright); }
.reframe-connection b { font-size: 22px; font-weight: 500; }
.reframe-target { aspect-ratio: 9 / 16; min-width: 0; padding: 15px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255, 145, 79, .34); border-radius: 22px; background: radial-gradient(circle at 70% 22%, rgba(255, 145, 79, .28), transparent 46%), #1b1410; box-shadow: 0 25px 45px rgba(0, 0, 0, .22); }
.caption-study { margin: 20px 0; z-index: 1; }
.caption-study small { color: rgba(255, 255, 255, .5); font-size: .75rem; }
.caption-study strong { display: block; margin-top: 14px; font-size: clamp(30px, 2.9vw, 42px); font-weight: 750; letter-spacing: -.06em; line-height: 1.05; }
.caption-study em { color: var(--orange-bright); font-style: normal; }
.target-safe-area { position: absolute; inset: 15% 10% 18%; border: 1px dashed rgba(255, 145, 79, .27); pointer-events: none; }
.reframe-tools { display: flex; flex-wrap: wrap; gap: 8px; }
.reframe-tools span { padding: 9px 11px; display: flex; gap: 7px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 10px; color: rgba(255, 255, 255, .6); font-size: .75rem; }
.reframe-tools i { color: var(--orange-bright); font-style: normal; }

/* Management: organized publishing, with no invented growth metrics. */
.channel-calendar { margin-top: 34px; padding: 19px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 19px; background: rgba(0, 0, 0, .25); }
.calendar-title { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.calendar-title strong { font-size: .875rem; font-weight: 720; }
.calendar-title span { color: rgba(255, 255, 255, .4); font-size: .75rem; }
.channel-week { margin-top: 22px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 7px; }
.channel-week > div { display: grid; gap: 7px; }
.channel-week b { margin-bottom: 5px; color: rgba(255, 255, 255, .44); font-size: .75rem; font-weight: 600; text-align: center; }
.channel-week i, .calendar-item { min-height: 39px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .075); border-radius: 7px; background: rgba(255, 255, 255, .035); font-size: .75rem; }
.calendar-item { color: var(--ink); background: var(--orange-bright); border-color: transparent; }
.calendar-short { color: var(--peach); background: rgba(255, 145, 79, .13); border-color: rgba(255, 145, 79, .17); }
.channel-task-list { margin-top: 20px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 17px; background: rgba(0, 0, 0, .14); }
.channel-task-list > div { padding: 15px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.channel-task-list > div:last-child { border-bottom: 0; }
.channel-task-list i { color: var(--orange-bright); font-size: .75rem; font-style: normal; font-weight: 720; }
.channel-task-list span { font-size: .875rem; }
.channel-task-list b { margin-left: auto; color: rgba(255, 255, 255, .45); font-size: .75rem; font-weight: 600; }
.channel-task-list .task-highlight { color: var(--orange-bright); }

/* Six replaceable media bays per editing service. Empty media = format study. */
.service-gallery { margin-top: 30px; padding: 28px 20px 12px; border-top: 1px solid var(--line); }
.gallery-heading { margin-bottom: 25px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.gallery-heading > div > span { color: var(--orange-deep); font-size: .75rem; font-weight: 780; letter-spacing: .05em; text-transform: uppercase; }
.gallery-heading h4 { max-width: 680px; margin: 10px 0 0; font-size: clamp(23px, 2.2vw, 31px); font-weight: 680; letter-spacing: -.045em; line-height: 1.15; }
.gallery-heading > p { margin: 0; color: var(--muted); font-size: .75rem; }
.format-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 17px; }
.portrait-gallery { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.format-card { min-width: 0; }
.format-visual { aspect-ratio: 16 / 9; position: relative; overflow: hidden; border: 1px solid #423024; border-radius: 16px; background: radial-gradient(ellipse at 90% 12%, rgba(255, 145, 79, .22), transparent 60%), #1b1510; transition: border-color .3s ease, transform .3s var(--ease); }
.portrait-gallery .format-visual { aspect-ratio: 9 / 16; }
.format-card:hover .format-visual { border-color: var(--orange); transform: translateY(-3px); }
.format-demo { position: absolute; inset: 0; padding: 14px; display: flex; flex-direction: column; justify-content: space-between; }
.format-tag { width: fit-content; color: rgba(255, 255, 255, .5); font-size: .75rem; font-weight: 680; }
.format-guide { position: absolute; inset: 25% 17% 27%; border: 1px solid rgba(255, 145, 79, .4); background: linear-gradient(90deg, transparent 49.7%, rgba(255, 145, 79, .17) 50%, transparent 50.3%), linear-gradient(transparent 49.7%, rgba(255, 145, 79, .17) 50%, transparent 50.3%); }
.treatment-split .format-guide { background: linear-gradient(90deg, rgba(255, 145, 79, .1) 48%, transparent 48% 52%, rgba(255, 255, 255, .09) 52%); }
.treatment-story .format-guide { border: 0; background: repeating-linear-gradient(90deg, rgba(255, 145, 79, .15) 0 23%, transparent 23% 26%); }
.treatment-detail .format-guide { inset: 22% 25% 27%; border-width: 2px; box-shadow: 0 0 0 13px rgba(255, 145, 79, .055); }
.treatment-chapters .format-guide { border: 0; background: repeating-linear-gradient(0deg, rgba(255, 145, 79, .16) 0 22%, transparent 22% 27%); }
.treatment-sequence .format-guide { transform: rotate(-5deg); border-radius: 8px; box-shadow: 7px 7px 0 rgba(255, 145, 79, .06); }
.format-wave { height: 22px; margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 3px; }
.format-wave i { width: 3px; height: var(--bar-height); display: block; border-radius: 2px; background: rgba(255, 145, 79, .52); }
.portrait-gallery .format-guide { inset: 21% 15% 31%; }
.portrait-gallery .format-wave { height: 25px; }
.format-caption { margin-top: 12px; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 7px; align-items: baseline; }
.format-caption > span { color: var(--orange-deep); font-size: .75rem; font-weight: 720; }
.format-caption h5 { margin: 0; font-size: .875rem; font-weight: 750; letter-spacing: -.02em; line-height: 1.4; }
.format-caption p { grid-column: 2; margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.format-media-button { width: 100%; height: 100%; position: absolute; inset: 0; padding: 0; overflow: hidden; display: block; border: 0; color: var(--white); background: transparent; cursor: pointer; }
.format-media-button > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.format-media-button::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0, 0, 0, .3)); }
.format-play { width: 48px; height: 48px; position: absolute; inset: 50% auto auto 50%; z-index: 1; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--orange-bright); box-shadow: 0 0 0 7px rgba(255, 255, 255, .1); font-size: .875rem; transform: translate(-50%, -50%); transition: box-shadow .3s ease; }
.format-media-button:hover .format-play { box-shadow: 0 0 0 12px rgba(255, 255, 255, .12); }

/* Process: a client-facing playbook with four selectable stages. */
.process { padding: 136px 0 104px; overflow: hidden; background: radial-gradient(ellipse at 8% 44%, rgba(255, 145, 79, .09), transparent 40%), var(--white); }
.process-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 8vw; align-items: end; }
.process-heading .section-kicker { color: var(--orange-deep); }
.process-heading h2 { max-width: 820px; margin: 25px 0 0; font-size: clamp(46px, 5.7vw, 74px); font-weight: 680; letter-spacing: -.06em; line-height: 1.02; }
.process-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 17px; line-height: 1.68; }
.process-layout { margin-top: 72px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(26px, 4.6vw, 64px); align-items: stretch; }
.process-display { min-width: 0; padding: 31px; position: relative; overflow: hidden; display: flex; flex-direction: column; border: 1px solid #3f2b1d; border-radius: 32px; color: var(--white); background: radial-gradient(ellipse at 80% 10%, rgba(255, 145, 79, .2), transparent 48%), linear-gradient(145deg, #2b2017, #17130f 68%); box-shadow: 0 30px 75px rgba(53, 31, 15, .16); }
.process-display-head { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.process-display-head > span { display: flex; gap: 10px; align-items: center; color: rgba(255, 255, 255, .75); font-size: .875rem; font-weight: 720; }
.process-display-head i { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; color: var(--ink); background: var(--orange-bright); font-size: .875rem; font-style: normal; font-weight: 800; }
.process-display-head > strong { color: var(--orange-bright); font-size: .75rem; font-weight: 750; letter-spacing: .03em; }
.process-route { margin: 26px 0 34px; display: flex; align-items: center; gap: 8px; }
.process-route span { color: rgba(255, 255, 255, .38); font-size: .75rem; font-weight: 670; transition: color .35s ease; }
.process-route i { height: 1px; min-width: 8px; flex: 1; background: rgba(255, 255, 255, .12); }
.process-route .is-current, .process-route .is-done { color: var(--orange-bright); }
.process-visuals { min-height: 490px; }
.process-visual[hidden] { display: none; }
.process-visual-label { color: rgba(255, 255, 255, .46); font-size: .75rem; font-weight: 680; letter-spacing: .055em; text-transform: uppercase; }
.process-visual h3 { margin: 19px 0 28px; font-size: clamp(31px, 3vw, 42px); font-weight: 680; letter-spacing: -.05em; line-height: 1.08; }
.process-visual.is-active h3 { animation: processTitleIn .45s var(--ease) both; }
@keyframes processTitleIn { from { opacity: .1; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.process-paper { padding: 21px; border: 1px solid #f1dccb; border-radius: 21px; color: var(--ink); background: linear-gradient(145deg, #fffdfb, #fff4e9); box-shadow: 0 22px 45px rgba(0, 0, 0, .2); }
.process-visual.is-active .process-paper { animation: processPaperIn .6s var(--ease) both; }
@keyframes processPaperIn { from { opacity: .2; transform: translateY(15px) rotate(-1deg); } to { opacity: 1; transform: none; } }
.paper-heading { padding-bottom: 17px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; border-bottom: 1px solid #e9d9cc; }
.paper-heading > strong { font-size: .875rem; font-weight: 780; }
.paper-heading > span { padding: 5px 8px; border: 1px solid #ecd3be; border-radius: 6px; color: #9c380d; background: #ffead9; font-size: .75rem; font-weight: 650; }
.brief-field { padding: 16px 0; display: grid; grid-template-columns: minmax(72px, .4fr) minmax(0, 1fr); gap: 16px; border-bottom: 1px solid #e9d9cc; }
.brief-field > span { color: var(--muted); font-size: .75rem; }
.brief-field > strong { font-size: .875rem; font-weight: 670; line-height: 1.5; }
.brief-reference { margin-top: 16px; padding: 12px; display: flex; align-items: center; gap: 9px; border: 1px dashed #d7baa3; border-radius: 10px; color: var(--muted); font-size: .75rem; }
.brief-reference i { color: #9c380d; font-size: 20px; font-style: normal; line-height: 1; }
.plan-item { padding: 18px 0; display: flex; gap: 13px; align-items: center; border-bottom: 1px solid #e9d9cc; }
.plan-item:last-child { padding-bottom: 3px; border-bottom: 0; }
.plan-item > i { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; color: var(--ink); background: var(--orange-bright); font-size: .875rem; font-style: normal; font-weight: 800; }
.plan-item > span { display: grid; gap: 5px; }
.plan-item strong { font-size: .875rem; font-weight: 720; }
.plan-item small { color: var(--muted); font-size: .75rem; }
.process-visual.is-active .plan-item > i, .process-visual.is-active .delivery-file > i { animation: processCheckIn .4s var(--ease) both; }
.process-visual.is-active .plan-item:nth-of-type(3) > i, .process-visual.is-active .delivery-file:nth-of-type(3) > i { animation-delay: .15s; }
.process-visual.is-active .plan-item:nth-of-type(4) > i, .process-visual.is-active .delivery-file:nth-of-type(4) > i { animation-delay: .3s; }
@keyframes processCheckIn { from { opacity: .3; transform: scale(.75); } to { opacity: 1; transform: none; } }
.process-edit-track { margin: 23px 0; padding: 10px; position: relative; overflow: hidden; display: grid; grid-template-columns: .65fr 1fr .65fr; gap: 7px; border-radius: 11px; background: #ebdbcd; }
.process-edit-track > span { padding: 13px 7px; border-radius: 6px; color: var(--ink); background: var(--orange-bright); font-size: .75rem; font-weight: 670; text-align: center; }
.process-edit-track > span:nth-child(2) { background: #ffc394; }
.process-edit-track > i { width: 2px; position: absolute; inset: 5px auto 5px 10%; background: var(--ink); animation: processReviewPlayhead 7s linear infinite; }
@keyframes processReviewPlayhead { from { left: 10%; } to { left: 90%; } }
.process:not(.is-in-view) .process-edit-track > i, .process.is-paused .process-edit-track > i { animation-play-state: paused; }
.process-review-note { padding: 15px; display: grid; gap: 9px; border-left: 2px solid var(--orange); border-radius: 0 10px 10px 0; background: #ffead9; }
.process-review-note > span { color: #9c380d; font-size: .75rem; font-weight: 670; }
.process-review-note > strong { font-size: .875rem; font-weight: 680; line-height: 1.5; }
.review-loop { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; color: var(--muted); font-size: .75rem; font-weight: 680; }
.review-loop i { color: #9c380d; font-style: normal; }
.delivery-file { padding: 19px 0; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #e9d9cc; }
.delivery-file:last-child { padding-bottom: 5px; border-bottom: 0; }
.delivery-file > i { width: 30px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #f0b788; border-radius: 8px; color: #9c380d; background: #ffead9; font-size: .875rem; font-style: normal; font-weight: 800; }
.delivery-file > span { display: grid; gap: 4px; }
.delivery-file strong { font-size: .875rem; font-weight: 720; }
.delivery-file small { color: var(--muted); font-size: .75rem; }
.delivery-file > b { margin-left: auto; color: #aa9584; font-size: .75rem; font-weight: 600; }
.process-display-footer { margin-top: auto; padding-top: 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 15px; }
.process-display-footer > span { color: rgba(255, 255, 255, .45); font-size: .75rem; }
.process-toggle { min-height: 39px; padding: 8px 11px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 10px; color: rgba(255, 255, 255, .77); background: rgba(255, 255, 255, .045); cursor: pointer; font-size: .75rem; transition: border-color .2s ease, background .2s ease; }
.process-toggle[hidden] { display: none; }
.process-toggle:hover { border-color: rgba(255, 145, 79, .5); background: rgba(255, 145, 79, .1); }
.process-toggle i { color: var(--orange-bright); font-size: .875rem; font-style: normal; }
.process-progress { height: 3px; position: absolute; inset: auto 0 0; background: rgba(255, 255, 255, .08); }
.process-progress > span { width: 25%; height: 100%; display: block; border-radius: 3px; background: linear-gradient(90deg, var(--orange-deep), var(--orange-bright)); transition: width .55s var(--ease); }
.process-steps { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.process-steps > li { display: flex; }
.process-step { width: 100%; padding: 21px 19px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 17px; align-items: start; border: 1px solid var(--line); border-radius: 21px; color: var(--ink); background: rgba(255, 255, 255, .86); cursor: pointer; text-align: left; transition: border-color .3s ease, background .3s ease, box-shadow .3s ease; }
.process-step:hover { border-color: #ddb08b; background: #fffaf6; }
.process-step.is-active { border-color: #f0b183; background: linear-gradient(130deg, #fffaf5, var(--white)); box-shadow: 0 15px 35px rgba(74, 41, 17, .075); }
.process-step-number { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 13px; color: var(--muted); background: var(--warm); font-size: .875rem; font-weight: 750; transition: background .3s ease, border-color .3s ease, color .3s ease; }
.process-step.is-active .process-step-number { color: var(--ink); border-color: transparent; background: var(--orange-bright); }
.process-step-copy { display: grid; gap: 8px; }
.process-step-copy > small { color: #9c380d; font-size: .75rem; font-weight: 750; letter-spacing: .035em; text-transform: uppercase; }
.process-step-copy > strong { font-size: clamp(22px, 2vw, 27px); font-weight: 680; letter-spacing: -.035em; line-height: 1.13; }
.process-step-copy > span { color: var(--muted); font-size: 1rem; font-weight: 400; line-height: 1.6; }
.process-step > i { padding-top: 5px; color: #bfb0a3; font-size: 19px; font-style: normal; transition: color .3s ease; }
.process-step.is-active > i { color: var(--orange-deep); }
.process-handoff { margin-top: 44px; padding-top: 28px; display: flex; flex-wrap: wrap; gap: 17px; align-items: center; justify-content: center; border-top: 1px solid var(--line); color: var(--muted); font-size: .875rem; }
.process-handoff > i { color: var(--orange-deep); font-size: 23px; font-style: normal; }

.pricing { padding: 112px 0 100px; background: radial-gradient(ellipse at 50% 24%, rgba(255, 145, 79, .09), transparent 50%), var(--warm); }
.pricing-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: 8vw; align-items: end; }
.pricing-heading .section-kicker { color: var(--orange-deep); }
.pricing-heading h2 { margin: 25px 0 0; font-size: clamp(44px, 5.7vw, 74px); font-weight: 680; letter-spacing: -.055em; line-height: 1.05; }
.pricing-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 1.0625rem; line-height: 1.68; }
.pricing-tabs { margin-top: 54px; padding: 7px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.pricing-tabs button { min-height: 58px; padding: 14px 10px; border: 0; border-radius: 16px; color: var(--muted); background: transparent; cursor: pointer; font-size: .875rem; font-weight: 680; line-height: 1.4; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.pricing-tabs button:hover { color: var(--ink); background: var(--warm); }
.pricing-tabs button[aria-selected="true"] { color: var(--white); background: var(--ink); box-shadow: 0 8px 20px rgba(42, 28, 17, .12); }
.pricing [hidden] { display: none; }
.pricing-panels > [role="tabpanel"]:not([hidden]) { animation: pricingPanelIn .32s var(--ease) both; }
@keyframes pricingPanelIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .pricing-panels > [role="tabpanel"]:not([hidden]) { animation: none; } }
.pricing-service-intro { margin: 29px 0 31px; display: grid; gap: 9px; }
.pricing-eyebrow { color: #9c380d; font-size: .875rem; font-weight: 720; }
.pricing-service-intro p { max-width: 820px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.price-card { min-width: 0; padding: clamp(24px, 2.4vw, 34px); border: 1px solid var(--line); border-radius: 30px; background: var(--white); box-shadow: 0 15px 40px rgba(68, 39, 18, .045); }
.price-card-head { min-height: 36px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; }
.price-card-head h3 { margin: 0; font-size: 1.5rem; font-weight: 720; letter-spacing: -.035em; line-height: 1.2; }
.price-card-badge { padding: 5px 9px; border: 1px solid rgba(255, 145, 79, .3); border-radius: 100px; color: #ffc296; background: rgba(255, 145, 79, .08); font-size: .75rem; font-weight: 650; }
.price-card-note { min-height: 52px; margin: 15px 0 27px; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.price-amount { margin: 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 9px; }
.price-amount strong { font-size: clamp(40px, 3.8vw, 52px); font-weight: 680; letter-spacing: -.045em; line-height: 1.16; font-variant-numeric: tabular-nums; }
.price-amount > span { color: var(--muted); font-size: .875rem; }
.price-volume { margin: 13px 0 26px; color: #9c380d; font-size: 1rem; font-weight: 680; }
.price-enquiry { width: 100%; min-height: 52px; padding: 13px 15px; justify-content: center; border: 1px solid var(--line-strong); color: var(--ink); background: var(--warm); font-size: .875rem; text-align: center; line-height: 1.45; }
.price-enquiry:hover { border-color: #ed9d69; color: var(--ink); background: #ffeadb; }
.price-feature-list { margin: 28px 0 0; padding: 23px 0 0; display: grid; gap: 13px; border-top: 1px solid var(--line); list-style: none; }
.price-feature-list li { padding-left: 23px; position: relative; color: var(--ink-soft); font-size: .875rem; line-height: 1.5; }
.price-feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange-deep); font-size: 1rem; font-weight: 700; }
.price-card-featured { border-color: #6b4227; color: var(--white); background: radial-gradient(ellipse at 100% 0%, rgba(255, 145, 79, .22), transparent 55%), var(--ink); box-shadow: 0 22px 55px rgba(68, 39, 18, .14); }
.price-card-featured .price-card-note, .price-card-featured .price-amount > span { color: #ccc0b6; }
.price-card-featured .price-volume, .price-card-featured .price-feature-list li::before { color: #ffb87e; }
.price-card-featured .price-enquiry { border-color: transparent; color: var(--ink); background: linear-gradient(120deg, #ffb176, #ff914f); }
.price-card-featured .price-enquiry:hover { background: #ffc296; }
.price-card-featured .price-feature-list { border-color: #443428; }
.price-card-featured .price-feature-list li { color: #eee4dc; }
.pricing-scope { margin-top: 54px; padding: clamp(24px, 4vw, 50px); position: relative; border: 1px solid #e9ded4; border-radius: 32px; background: radial-gradient(ellipse at 100% 0%, #fff0e4, transparent 35%), var(--white); box-shadow: 0 24px 65px rgba(68, 39, 18, .05); }
.pricing-scope-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 36px; align-items: end; }
.pricing-scope-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--orange-deep); font-size: .875rem; font-weight: 650; }
.pricing-scope-kicker::before { content: ""; width: 26px; height: 2px; background: var(--orange); }
.pricing-scope-heading h3 { max-width: 620px; margin: 17px 0 0; font-size: clamp(30px, 3.6vw, 46px); font-weight: 600; letter-spacing: -.045em; line-height: 1.12; }
.pricing-scope-heading p { margin: 0; color: #655d56; font-size: 1rem; line-height: 1.7; }
.pricing-scope-facts { margin: 30px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; list-style: none; }
.pricing-scope-facts li { padding: 8px 13px; border: 1px solid #eddfd3; border-radius: 9px; color: #755138; background: #fff9f4; font-size: .875rem; font-weight: 500; line-height: 1.5; }
.benefit-columns { margin-top: 39px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 70px); }
.benefit-group-title { margin: 0; padding: 0 0 19px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #e6d8cc; color: var(--ink); font-size: 1rem; font-weight: 600; }
.benefit-group-title > span { color: #ae4817; font-size: .75rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.benefit-list { margin: 0; padding: 0; list-style: none; }
.benefit-row { padding: 24px 0; display: grid; grid-template-columns: 54px minmax(0, 1fr); align-items: start; gap: 19px; border-bottom: 1px solid #efe7e0; }
.benefit-icon { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid #f1d7c2; border-radius: 15px; color: #c64c15; background: linear-gradient(145deg, #fffaf5, #ffecde); box-shadow: inset 0 1px #fff; transition: color .25s ease, background .25s ease, border-color .25s ease; }
.benefit-icon svg { width: 25px; height: 25px; }
.benefit-copy h5 { margin: 0 0 9px; color: var(--ink); font-size: 1.125rem; font-weight: 600; letter-spacing: -.022em; line-height: 1.3; }
.benefit-copy p { margin: 0; color: #655d56; font-size: 1rem; font-weight: 400; line-height: 1.65; }
.benefit-row:hover .benefit-icon { border-color: #f29c63; color: #a93808; background: #ffe1cc; }
.revision-note { margin-top: 34px; padding: 24px; display: flex; align-items: flex-start; gap: 19px; border: 1px solid #f4bd96; border-radius: 19px; background: linear-gradient(115deg, #fff4ea, #fffaf6); }
.revision-infinity { width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; color: #983909; background: #ffd9ba; font-size: 2rem; line-height: 1; }
.revision-note strong { display: block; margin: 1px 0 8px; color: var(--ink); font-size: 1.0625rem; font-weight: 600; letter-spacing: -.015em; }
.revision-note p { margin: 0; color: #71513c; font-size: 1rem; line-height: 1.65; }
.package-boundaries { margin-top: 28px; }
.package-boundaries > strong { color: var(--ink); font-size: 1rem; font-weight: 600; }
.package-boundaries > p { margin: 9px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.package-extras { margin-top: 19px; display: flex; flex-wrap: wrap; gap: 9px 12px; align-items: center; }
.package-extras > span:first-child { margin-right: 3px; color: var(--muted); font-size: .875rem; }
.package-extra { padding: 5px 10px; border: 1px solid var(--line); border-radius: 7px; color: #65513f; background: #fcfaf7; font-size: .875rem; }
.management-comparison { margin-top: 43px; padding-top: 32px; border-top: 1px solid #e6d8cc; }
.comparison-heading { display: grid; gap: 13px; }
.comparison-heading h4 { margin: 0; font-size: clamp(25px, 2.4vw, 32px); font-weight: 600; letter-spacing: -.035em; line-height: 1.2; }
.comparison-heading p { max-width: 750px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.comparison-scroll-hint { display: none; margin: 17px 0 0; color: #a04415; font-size: .875rem; }
.comparison-categories { margin-top: 28px; overflow: hidden; border: 1px solid #e9ded4; border-radius: 22px; }
.comparison-category + .comparison-category { border-top: 1px solid #e9ded4; }
.comparison-summary { padding: 21px 24px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 17px; align-items: center; background: var(--white); cursor: pointer; list-style: none; transition: background .2s ease; }
.comparison-summary::-webkit-details-marker { display: none; }
.comparison-summary::marker { content: ""; }
.comparison-summary:hover, .comparison-category[open] > .comparison-summary { background: #fff7f0; }
.comparison-category-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #efd5c1; border-radius: 12px; color: #c04a15; background: #fff0e4; }
.comparison-category-icon svg { width: 22px; height: 22px; }
.comparison-summary-copy { display: grid; gap: 6px; }
.comparison-summary-copy > strong { color: var(--ink); font-size: 1rem; font-weight: 600; line-height: 1.35; }
.comparison-summary-copy > span { color: var(--muted); font-size: .875rem; line-height: 1.55; }
.comparison-toggle { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid #ead8c9; border-radius: 50%; color: #a44316; background: #fffaf6; font-size: 21px; line-height: 1; transition: transform .25s var(--ease); }
.comparison-category[open] .comparison-toggle { transform: rotate(45deg); }
.comparison-table-scroll { overflow-x: auto; overscroll-behavior-inline: contain; border-top: 1px solid #eaded4; }
.comparison-table-scroll:focus-visible { outline-offset: -3px; }
.comparison-table { width: 100%; min-width: 730px; border-spacing: 0; table-layout: fixed; border-collapse: separate; text-align: left; }
.comparison-table th, .comparison-table td { padding: 19px 17px; border-bottom: 1px solid #efe5dd; overflow-wrap: anywhere; vertical-align: middle; }
.comparison-table th:first-child { width: 37%; }
.comparison-table thead th { color: var(--ink); background: #fcfaf7; font-size: 1rem; font-weight: 600; }
.comparison-table thead th:not(:first-child) { text-align: center; }
.comparison-table thead strong { display: block; margin-bottom: 6px; font-size: 1rem; font-weight: 600; }
.comparison-table thead span { color: #ac4414; font-size: .875rem; font-weight: 500; }
.comparison-table tbody th { color: var(--ink); background: var(--white); font-size: .875rem; font-weight: 400; }
.comparison-table tbody th strong { display: block; margin-bottom: 7px; font-size: 1rem; font-weight: 600; line-height: 1.35; }
.comparison-table tbody th > span { display: block; color: var(--muted); font-size: .875rem; line-height: 1.55; }
.comparison-table tbody td { color: #6c4630; background: var(--white); font-size: .875rem; text-align: center; line-height: 1.55; }
.comparison-table .comparison-featured { background: #fff5ec; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-check { display: inline-flex; vertical-align: middle; color: #c64c15; }
.comparison-check svg { width: 23px; height: 23px; }
.comparison-excluded { color: #a79b91; font-size: 1.125rem; }
.comparison-value { font-weight: 500; }
.sr-only { width: 1px; height: 1px; padding: 0; position: absolute; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.pricing-footnote { margin-top: 44px; padding-top: 26px; display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: 24px; border-top: 1px solid var(--line-strong); }
.pricing-footnote > span { color: var(--ink-soft); font-size: .875rem; font-weight: 650; }
.pricing-footnote p { margin: 0; color: var(--muted); font-size: .875rem; line-height: 1.65; }
.pricing-fallback { margin-top: 35px; }
.pricing-fallback p { max-width: 700px; color: var(--muted); }

@media (max-width: 1050px) {
  .pricing-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-heading { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .pricing-heading > p { max-width: 620px; }
  .pricing-scope-heading { grid-template-columns: minmax(0, 1fr); gap: 23px; }
}

@media (max-width: 800px) {
  .pricing { padding: 80px 0; }
  .pricing-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .price-card { padding: 28px; }
  .price-card-note { min-height: 0; margin-bottom: 22px; }
  .price-amount strong { font-size: 3rem; }
  .pricing-footnote { grid-template-columns: minmax(0, 1fr); gap: 13px; }
  .benefit-columns { grid-template-columns: minmax(0, 1fr); gap: 29px; }
  .comparison-scroll-hint { display: block; }
}

@media (max-width: 560px) {
  .pricing-tabs { margin-top: 32px; padding: 5px; gap: 4px; }
  .pricing-tabs button { padding: 13px 8px; }
  .pricing-scope { margin-top: 38px; padding: 23px 18px; border-radius: 23px; }
  .pricing-scope-facts { gap: 8px; }
  .pricing-scope-facts li { padding: 7px 9px; }
  .benefit-row { grid-template-columns: 45px minmax(0, 1fr); gap: 13px; padding: 23px 0; }
  .benefit-icon { width: 45px; height: 45px; border-radius: 12px; }
  .benefit-icon svg { width: 23px; height: 23px; }
  .revision-note { padding: 18px 15px; gap: 13px; }
  .revision-infinity { width: 35px; height: 35px; font-size: 1.625rem; }
  .comparison-summary { padding: 17px 14px; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .comparison-category-icon { display: none; }
  .comparison-categories { border-radius: 16px; }
}

.about-head h2, .services-heading h2, .process-heading h2, .pricing-heading h2 { font-weight: 600; letter-spacing: -.05em; line-height: 1.06; }
.service-copy h3, .process-visual h3 { font-weight: 600; letter-spacing: -.045em; }
.price-card-head h3 { font-weight: 600; letter-spacing: -.025em; }
.price-amount strong { font-weight: 600; letter-spacing: -.045em; }
.nav-link, .nav-trigger { font-weight: 600; }

/* Dedicated pricing uses the same cards, data and typography as every service. */
.pricing-page-section { padding: 153px 0 75px; background: radial-gradient(ellipse at 5% 0%, #ffdfc5, transparent 34%), radial-gradient(ellipse at 100% 26%, #fff0e2, transparent 35%), var(--warm); }
.pricing-page-heading { margin-top: 31px; gap: 6vw; }
.pricing-page-heading h1 { margin: 21px 0 0; font-size: clamp(42px, 5vw, 66px); font-weight: 600; letter-spacing: -.05em; line-height: 1.08; }
.pricing-page-heading h1 > span { color: var(--orange-deep); }
.pricing-page-notes { margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 26px; list-style: none; }
.pricing-page-notes li { display: flex; align-items: baseline; gap: 9px; color: var(--muted); font-size: .8125rem; line-height: 1.6; }
.pricing-page-notes li::before { content: "✓"; color: var(--orange-deep); font-weight: 700; }
.pricing-page .pricing-tabs { margin-top: 33px; }
.pricing-page .nav-link[aria-current="page"], .pricing-page .mobile-menu a[aria-current="page"] { color: var(--orange-deep); }
.pricing-consult { padding: 55px 0 80px; }
.pricing-consult-panel { padding: clamp(28px, 4.5vw, 58px); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 45px; align-items: center; border: 1px solid var(--line); border-radius: 32px; background: radial-gradient(ellipse at 100% 100%, #ffe0c8, transparent 65%), var(--warm); }
.pricing-consult-panel h2 { margin: 21px 0 18px; font-size: clamp(30px, 3.5vw, 43px); font-weight: 600; letter-spacing: -.045em; line-height: 1.14; }
.pricing-consult-panel p { max-width: 620px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.pricing-consult-actions { display: grid; justify-items: start; gap: 15px; }
.pricing-consult-note { max-width: 260px; color: var(--muted); font-size: .8125rem; line-height: 1.6; }
@media (max-width: 1050px) {
  .pricing-page-heading { gap: 22px; }
  .pricing-consult-panel { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .pricing-consult-actions { grid-template-columns: auto auto; align-items: center; justify-content: start; }
  .pricing-consult-note { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 560px) {
  .pricing-page-section { padding: 125px 0 55px; }
  .pricing-page-heading { margin-top: 25px; }
  .pricing-page-heading h1 { font-size: clamp(36px, 10vw, 48px); }
  .pricing-page-notes { gap: 9px; flex-direction: column; }
  .pricing-consult { padding: 35px 0 55px; }
  .pricing-consult-panel { padding: 28px 23px; border-radius: 23px; }
  .pricing-consult-actions { grid-template-columns: minmax(0, 1fr); }
}

/* The channel notebook: typographic editorial cards, with real guide content. */
.notebook, .guide { padding: 153px 0 90px; }
.notebook { background: radial-gradient(ellipse at 0% 0%, #ffe0c7, transparent 40%), var(--warm); }
.notebook-heading { margin-top: 33px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 6vw; align-items: end; }
.notebook-heading h1 { max-width: 680px; margin: 22px 0 0; font-size: clamp(44px, 5.7vw, 72px); font-weight: 600; letter-spacing: -.055em; line-height: 1.08; }
.notebook-heading > p { max-width: 480px; margin: 0 0 6px; color: var(--muted); font-size: 1.0625rem; line-height: 1.75; }
.notebook-featured { margin-top: 42px; padding: clamp(28px, 4.5vw, 54px); display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 6vw; align-items: center; border: 1px solid #4d3423; border-radius: 32px; color: var(--white); background: radial-gradient(ellipse at 100% 100%, #5e301b, transparent 65%), var(--ink); box-shadow: 0 22px 65px rgba(68, 39, 18, .12); }
.notebook-kicker { color: #ffb686; font-size: .8125rem; font-weight: 650; letter-spacing: .075em; text-transform: uppercase; }
.notebook-meta { display: flex; flex-wrap: wrap; gap: 9px 20px; align-items: center; color: var(--muted); font-size: .875rem; line-height: 1.6; }
.notebook-meta > span:first-child { color: var(--orange-deep); font-weight: 600; }
.notebook-featured .notebook-meta { margin-top: 22px; color: #ccc0b6; }
.notebook-featured .notebook-meta > span:first-child { color: #ffb686; }
.notebook-featured h2 { max-width: 650px; margin: 17px 0 19px; font-size: clamp(28px, 3.5vw, 43px); font-weight: 600; letter-spacing: -.04em; line-height: 1.17; }
.notebook-featured h2 a:hover { color: #ffd0b1; }
.notebook-featured-copy > p { max-width: 620px; margin: 0 0 28px; color: #e0d5cb; font-size: 1rem; line-height: 1.75; }
.notebook-featured-outline { padding-left: 34px; border-left: 1px solid #6a4b35; }
.notebook-featured-outline ol { margin: 23px 0; padding: 0; list-style: none; }
.notebook-featured-outline li { padding: 17px 0; display: grid; grid-template-columns: 29px minmax(0, 1fr); gap: 14px; align-items: baseline; border-bottom: 1px solid #6a4b35; }
.notebook-featured-outline li:first-child { padding-top: 0; }
.notebook-featured-outline li > span { color: #ffb686; font-size: .8125rem; font-variant-numeric: tabular-nums; }
.notebook-featured-outline strong { font-size: 1rem; font-weight: 550; line-height: 1.6; }
.notebook-featured-outline > p { margin: 0; color: #ddd0c4; font-size: .875rem; line-height: 1.8; }
.notebook-list-heading { margin: 54px 0 23px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: baseline; }
.notebook-list-heading h2 { margin: 0; font-size: 1.5rem; font-weight: 600; letter-spacing: -.03em; }
.notebook-list-heading > span { color: var(--muted); font-size: .875rem; }
.notebook-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.notebook-card { min-width: 0; border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow-small); transition: transform .2s var(--ease), border-color .2s ease; }
.notebook-card:hover, .notebook-card:focus-within { transform: translateY(-3px); border-color: #dca079; }
.notebook-card > a { height: 100%; padding: clamp(26px, 3.4vw, 40px); display: flex; flex-direction: column; border-radius: inherit; }
.notebook-card h3 { max-width: 540px; margin: 25px 0 17px; font-size: clamp(25px, 2.7vw, 34px); font-weight: 600; letter-spacing: -.035em; line-height: 1.2; }
.notebook-card p { margin: 0 0 31px; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.notebook-read { margin-top: auto; display: inline-flex; gap: 12px; align-items: center; color: var(--orange-deep); font-size: .875rem; font-weight: 650; }
.notebook-read svg, .guide-related svg { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.6; }
.blog-page .nav-link[aria-current], .blog-page .mobile-menu a[aria-current], .guide-page .nav-link[aria-current], .guide-page .mobile-menu a[aria-current] { color: var(--orange-deep); }
.guide { background: linear-gradient(180deg, var(--warm), var(--white) 440px); }
.guide-heading { margin: 34px 0 49px; padding-bottom: 35px; border-bottom: 1px solid var(--line); }
.guide-heading h1 { max-width: 1080px; margin: 22px 0; font-size: clamp(36px, 5vw, 60px); font-weight: 600; letter-spacing: -.05em; line-height: 1.12; }
.guide-heading > p { max-width: 850px; margin: 0 0 21px; color: var(--muted); font-size: 1.125rem; line-height: 1.75; }
.guide-byline { color: var(--muted); font-size: .875rem; }
.guide-layout { display: grid; grid-template-columns: minmax(0, 235px) minmax(0, 760px); gap: clamp(30px, 5vw, 75px); align-items: start; }
.guide-sidebar { position: sticky; top: 115px; }
.guide-toc h2 { margin: 0 0 20px; font-size: .875rem; font-weight: 650; }
.guide-toc ol { margin: 0; padding: 0 0 0 20px; color: var(--muted); font-size: .875rem; line-height: 1.65; }
.guide-toc li { padding: 0 0 15px 5px; }
.guide-toc a:hover { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 4px; }
.guide-body { min-width: 0; }
.guide-takeaway { padding: 26px 28px; border: 1px solid var(--line); border-left: 3px solid var(--orange); border-radius: 0 18px 18px 0; background: var(--warm); }
.guide-takeaway .section-kicker { font-size: .8125rem; }
.guide-takeaway p { margin: 14px 0 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.85; }
.guide-section { margin-top: 42px; }
.guide-section h2 { margin: 0 0 18px; font-size: clamp(25px, 2.7vw, 31px); font-weight: 600; letter-spacing: -.03em; line-height: 1.25; }
.guide-section > p, .guide-section > ul { margin: 0 0 18px; color: var(--ink-soft); font-size: 1rem; line-height: 1.9; }
.guide-section > ul { padding-left: 23px; }
.guide-section li { padding-left: 5px; margin-bottom: 10px; }
.guide-section a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }
.guide-section p.guide-source { color: var(--muted); font-size: .875rem; line-height: 1.75; }
.guide-related { margin-top: 45px; padding: 26px 0; display: grid; gap: 14px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.guide-related h2 { margin: 0 0 5px; font-size: 1.25rem; font-weight: 600; letter-spacing: -.025em; }
.guide-related a { display: flex; gap: 14px; align-items: center; justify-content: space-between; color: var(--orange-deep); font-size: 1rem; line-height: 1.65; }
.guide-related a:hover { text-decoration: underline; text-underline-offset: 4px; }
.guide-back { margin-top: 27px; display: inline-flex; gap: 13px; color: var(--muted); font-size: .875rem; font-weight: 600; }
.guide-back:hover { color: var(--orange-deep); }
@media (max-width: 900px) {
  .notebook-heading, .notebook-featured { grid-template-columns: minmax(0, 1fr); gap: 27px; }
  .notebook-heading > p { max-width: 680px; }
  .notebook-featured-outline { padding: 25px 0 0; border-left: 0; border-top: 1px solid #6a4b35; }
  .notebook-featured-outline ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .notebook-featured-outline li { padding-top: 0; border-bottom: 0; }
  .guide-layout { grid-template-columns: minmax(0, 1fr); gap: 29px; }
  .guide-sidebar { position: static; max-width: 760px; }
  .guide-toc ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 30px; }
  .guide-body { max-width: 760px; }
}
@media (max-width: 560px) {
  .notebook, .guide { padding: 125px 0 65px; }
  .notebook-heading { margin-top: 25px; gap: 20px; }
  .notebook-heading h1 { font-size: clamp(38px, 10vw, 49px); }
  .notebook-featured { margin-top: 29px; padding: 28px 24px; border-radius: 24px; }
  .notebook-featured-outline ol, .notebook-grid, .guide-toc ol { grid-template-columns: minmax(0, 1fr); }
  .notebook-featured-outline ol { gap: 0; }
  .notebook-featured-outline li { padding: 12px 0; border-bottom: 1px solid #6a4b35; }
  .notebook-list-heading { margin-top: 37px; }
  .notebook-card { border-radius: 24px; }
  .guide-heading { margin: 27px 0 30px; padding-bottom: 26px; }
  .guide-heading h1 { font-size: clamp(34px, 9vw, 43px); }
  .guide-heading > p { font-size: 1.0625rem; }
  .guide-toc li { padding-bottom: 10px; }
  .guide-takeaway { padding: 23px 21px; }
  .guide-section { margin-top: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  .notebook-card { transition: none; }
  .notebook-card:hover, .notebook-card:focus-within { transform: none; }
}

/* Closing invitation: abstract brand lighting, no fabricated client imagery. */
.project-close { padding: 82px 0 55px; background: var(--white); }
.project-close-panel {
  overflow: hidden;
  padding: 30px 42px 0;
  border: 1px solid #ecd7c5;
  border-radius: 40px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255, 145, 79, .48), transparent 48%),
    radial-gradient(ellipse at 0% 100%, rgba(255, 208, 177, .55), transparent 46%),
    linear-gradient(135deg, #fffdfb, #fff4e8);
  box-shadow: 0 28px 75px rgba(87, 48, 20, .07), inset 0 1px rgba(255, 255, 255, .9);
}
.project-close-meta { display: flex; justify-content: space-between; gap: 20px; color: var(--ink-soft); font-size: 12px; letter-spacing: -.01em; }
.project-close-meta > span:first-child { font-weight: 700; letter-spacing: .08em; }
.project-close-copy { max-width: 960px; margin: 70px auto 62px; text-align: center; }
.project-close .section-kicker { color: var(--orange-deep); }
.project-close-copy h2 { margin: 23px 0 27px; font-size: clamp(43px, 5.5vw, 76px); font-weight: 600; letter-spacing: -.055em; line-height: 1.07; }
.project-close-copy h2 > span { color: var(--orange-deep); }
.project-close-copy > p { max-width: 630px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.7; }
.project-close-actions { margin-top: 34px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.project-close-copy > .project-close-note { margin-top: 23px; color: var(--ink-soft); font-size: 12px; }
.project-close-services { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(201, 171, 145, .4); }
.project-close-services > a { min-width: 0; padding: 24px 17px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 10px; border-right: 1px solid rgba(201, 171, 145, .4); transition: background .2s ease, color .2s ease; }
.project-close-services > a:first-child { padding-left: 0; }
.project-close-services > a:last-child { border-right: 0; padding-right: 0; }
.project-close-services > a > span { color: var(--orange-deep); font-size: 10px; font-weight: 600; }
.project-close-services strong { font-size: 13px; font-weight: 600; line-height: 1.4; letter-spacing: -.015em; }
.project-close-services i { color: var(--orange-deep); font-size: 19px; font-style: normal; transition: transform .2s var(--ease); }
.project-close-services > a:hover, .project-close-services > a:focus-visible { color: var(--orange-deep); background: rgba(255, 255, 255, .5); }
.project-close-services > a:hover i, .project-close-services > a:focus-visible i { transform: translate(2px, -2px); }

/* Native FAQ keeps its answers available even if scripts are blocked. */
.faq { padding: 95px 0 120px; background: var(--white); }
.faq-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 90px; align-items: start; }
.faq-intro .section-kicker { color: var(--orange-deep); }
.faq-intro h2 { margin: 24px 0 26px; font-size: clamp(40px, 4.2vw, 58px); font-weight: 600; letter-spacing: -.05em; line-height: 1.08; }
.faq-intro h2 > span { color: var(--muted); }
.faq-intro > p { max-width: 355px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.faq-help { max-width: 355px; margin-top: 34px; padding: 22px 24px; display: grid; gap: 10px; border: 1px solid var(--line); border-radius: 20px; background: var(--warm); }
.faq-help > span { color: var(--muted); font-size: 13px; }
.faq-help > a { width: fit-content; display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.faq-help > a > span { color: var(--orange-deep); }
.faq-help > a:hover { color: var(--orange-deep); }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > summary { min-height: 88px; padding: 22px 0; display: grid; grid-template-columns: 25px minmax(0, 1fr) 34px; align-items: center; gap: 18px; list-style: none; cursor: pointer; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-number { color: var(--faint); font-size: 11px; font-weight: 600; }
.faq-item > summary > strong { font-size: 16px; font-weight: 600; line-height: 1.45; letter-spacing: -.025em; }
.faq-toggle { width: 34px; height: 34px; position: relative; border: 1px solid var(--line); border-radius: 50%; background: var(--warm); transition: transform .22s var(--ease), background .22s ease; }
.faq-toggle::before, .faq-toggle::after { content: ""; position: absolute; inset: 15px 10px auto; height: 1px; background: var(--ink-soft); }
.faq-toggle::after { transform: rotate(90deg); }
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--peach); border-color: var(--peach); }
.faq-item[open] .faq-number { color: var(--orange-deep); }
.faq-item > summary:hover > strong, .faq-item > summary:focus-visible > strong { color: var(--orange-deep); }
.faq-answer { padding: 0 52px 25px 43px; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.faq-answer a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }
.faq-item[open] .faq-answer { animation: faq-answer-in .22s var(--ease) both; }
@keyframes faq-answer-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

.site-footer { padding: 68px 0 28px; border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--warm), var(--white)); }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.15fr) minmax(0, .75fr) minmax(0, .95fr); gap: 38px; }
.footer-brand > p { margin: 24px 0 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.footer-email { display: inline-flex; gap: 15px; align-items: center; font-size: 15px; font-weight: 600; overflow-wrap: anywhere; }
.footer-email > span { color: var(--orange-deep); }
.footer-location { margin-top: 18px; color: var(--muted); font-size: .875rem; font-style: normal; line-height: 1.7; }
.footer-location > span { display: block; margin-bottom: 4px; color: var(--ink-soft); font-size: .875rem; font-weight: 600; }
.footer-column { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column h2 { margin: 8px 0 12px; color: var(--ink); font-size: 12px; font-weight: 600; letter-spacing: .025em; }
.footer-column > a { color: var(--muted); font-size: 13px; line-height: 1.5; transition: color .18s ease; }
.footer-column > .footer-business-link { font-size: .875rem; line-height: 1.7; }
.footer-column > a > span { color: var(--orange-deep); }
.footer-column > a:hover, .footer-email:hover, .footer-column > a:focus-visible { color: var(--orange-deep); }
.footer-wordmark { margin: 58px 0 35px; color: #e7dfd6; font-size: clamp(80px, 18vw, 246px); font-weight: 600; letter-spacing: -.075em; line-height: .95; user-select: none; }
.footer-wordmark > span { color: var(--orange); }
.footer-bottom { margin-top: clamp(30px, 4vw, 48px); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.footer-signoff { max-width: 320px; }
.footer-back { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-size: 12px; font-weight: 600; }
.footer-back > span { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--orange-deep); transition: transform .2s var(--ease); }
.footer-back:hover > span { transform: translateY(-3px); }

@media (max-width: 1050px) {
  .project-close-panel { padding: 28px 30px 0; }
  .project-close-services > a { padding: 22px 12px; grid-template-columns: minmax(0, 1fr) auto; gap: 6px; }
  .project-close-services > a > span { grid-column: 1 / -1; }
  .faq-layout { gap: 45px; }
  .footer-top { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand > p { margin-block: 17px 12px; }
}

@media (max-width: 720px) {
  .project-close { padding: 52px 0 30px; }
  .project-close-panel { padding: 23px 24px 0; border-radius: 28px; }
  .project-close-meta { font-size: 10px; }
  .project-close-copy { margin-block: 52px 37px; }
  .project-close-copy h2 { margin: 21px 0 23px; font-size: clamp(34px, 7.7vw, 54px); letter-spacing: -.05em; line-height: 1.12; }
  .project-close-copy > p { font-size: 15px; }
  .project-close-actions { margin-top: 28px; gap: 11px; }
  .project-close-actions > .button { width: 100%; font-size: 14px; padding-inline: 15px; }
  .project-close-copy > .project-close-note { max-width: 250px; font-size: 11px; }
  .project-close-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-close-services > a { padding: 19px 12px; }
  .project-close-services > a:nth-child(odd) { padding-left: 0; border-right: 1px solid rgba(201, 171, 145, .4); }
  .project-close-services > a:nth-child(even) { padding-right: 0; border-right: 0; }
  .project-close-services > a:nth-child(n+3) { border-top: 1px solid rgba(201, 171, 145, .4); }
  .project-close-services strong { font-size: 12px; }
  .faq { padding: 63px 0 75px; }
  .faq-layout { grid-template-columns: 1fr; gap: 37px; }
  .faq-intro h2 { font-size: clamp(39px, 9.5vw, 55px); margin-block: 21px; }
  .faq-intro > p, .faq-help { max-width: none; }
  .faq-help { margin-top: 23px; padding: 19px 21px; }
  .faq-item > summary { min-height: 84px; grid-template-columns: 19px minmax(0, 1fr) 32px; gap: 11px; }
  .faq-item > summary > strong { font-size: 15px; }
  .faq-toggle { width: 32px; height: 32px; }
  .faq-toggle::before, .faq-toggle::after { top: 14px; }
  .faq-answer { padding: 0 12px 23px 30px; }
  .faq-answer p { font-size: 14px; }
  .site-footer { padding: 43px 0 24px; }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 23px; }
  .footer-column h2 { margin-top: 0; }
  .footer-wordmark { margin-block: 38px 26px; font-size: clamp(75px, 20vw, 145px); }
  .footer-bottom { gap: 16px; }
  .footer-signoff { display: none; }
}

/* About: editorial company introduction; the real founder photo is optional until supplied. */
.about-page-hero { padding: 140px 0 0; background: radial-gradient(ellipse at 86% 8%, rgba(255, 145, 79, .23), transparent 53%), linear-gradient(var(--warm), var(--white) 94%); }
.about-editorial-layout { padding: 60px 0 70px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(36px, 6vw, 90px); align-items: end; }
.about-editorial-copy .section-kicker, .about-section-heading .section-kicker, .about-team-heading .section-kicker { color: var(--orange-deep); }
.about-editorial-copy h1 { margin: 28px 0 0; font-size: clamp(3.25rem, 5.6vw, 5.125rem); font-weight: 600; letter-spacing: -.055em; line-height: 1.05; }
.about-editorial-copy h1 > span { color: var(--orange-deep); }
.about-editorial-intro { padding-bottom: 5px; }
.about-editorial-intro > p { margin: 0 0 20px; color: var(--muted); font-size: 1.0625rem; line-height: 1.75; }
.about-editorial-intro > p:first-child { color: var(--ink); font-size: 1.25rem; font-weight: 500; letter-spacing: -.02em; line-height: 1.6; }
.about-editorial-intro .button { margin-top: 9px; }
.about-page-metrics { padding: 33px 0 36px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-block: 1px solid var(--line); }
.about-page-metrics > div { padding-left: 32px; border-left: 1px solid var(--line); display: grid; gap: 9px; }
.about-page-metrics > div:first-child { padding-left: 0; border-left: 0; }
.about-page-metrics strong { color: var(--orange-deep); font-size: clamp(2.5rem, 4.2vw, 3.5rem); font-weight: 600; letter-spacing: -.05em; line-height: 1.1; }
.about-page-metrics b { font-weight: inherit; }
.about-page-metrics span { color: var(--muted); font-size: .9375rem; }
.about-approach, .about-standards, .about-team { padding: 105px 0; }
.about-section-heading h2, .about-team-heading h2 { margin: 23px 0 0; font-size: clamp(2.5rem, 4.7vw, 3.75rem); font-weight: 600; letter-spacing: -.05em; line-height: 1.1; }
.about-section-heading h2 > span { color: var(--muted); }
.about-story-layout { margin-top: 43px; display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(35px, 7vw, 110px); }
.about-story-lead { margin: 0; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.45; }
.about-story-body p { margin: 0 0 20px; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.about-story-body p:last-child { margin-bottom: 0; }
.about-service-index { margin-top: 50px; border-top: 1px solid var(--line); }
.about-service-index > a { padding: 22px 0; display: grid; grid-template-columns: 42px minmax(0, 1fr) minmax(0, 1fr) 24px; gap: 19px; align-items: center; border-bottom: 1px solid var(--line); transition: color .2s ease, padding .2s ease; }
.about-service-index > a:hover, .about-service-index > a:focus-visible { color: var(--orange-deep); padding-inline: 10px; }
.about-service-index span { color: var(--orange-deep); font-size: .875rem; }
.about-service-index strong { font-size: 1.0625rem; font-weight: 600; letter-spacing: -.025em; }
.about-service-index small { color: var(--muted); font-size: .875rem; line-height: 1.6; }
.about-service-index b { color: var(--orange-deep); font-size: 1.25rem; font-weight: 400; }
.about-founder-panel { min-width: 0; padding: clamp(34px, 6.5vw, 85px); position: relative; overflow: hidden; border: 1px solid #3b2c21; border-radius: 32px; color: var(--white); background: radial-gradient(ellipse at 90% 14%, rgba(243, 101, 34, .26), transparent 54%), #17130f; }
.founder-copy { max-width: 860px; min-width: 0; position: relative; z-index: 1; }
.founder-copy .section-kicker { color: var(--orange-bright); }
.founder-copy h2 { max-width: 720px; margin: 18px 0 26px; font-size: clamp(2.25rem, 4.1vw, 3.5rem); font-weight: 600; letter-spacing: -.045em; line-height: 1.1; }
.founder-copy h2 > span { color: var(--orange-bright); }
.founder-quote-mark { height: 44px; margin-top: 21px; display: block; color: var(--orange-bright); font-size: 5rem; font-weight: 600; line-height: 1; }
.founder-message { margin: 0 0 32px; }
.founder-message p { margin: 0; color: #ded5cc; font-size: 1.0625rem; font-weight: 500; line-height: 1.85; }
.founder-identity { padding-left: 19px; display: grid; gap: 6px; border-left: 2px solid var(--orange-bright); }
.founder-identity strong { font-size: 1.25rem; font-weight: 600; }
.founder-identity span { color: #c9bdb2; font-size: .875rem; }
.founder-copy > p { max-width: 685px; margin: 25px 0 0; color: #c9bdb2; font-size: 1rem; line-height: 1.8; }
.founder-contact { margin-top: 30px; display: inline-flex; gap: 18px; align-items: center; font-size: .9375rem; font-weight: 600; }
.founder-contact > span { color: var(--orange-bright); }
.founder-contact:hover { color: var(--orange-bright); }
.founder-wordmark { position: absolute; right: 18px; bottom: -22px; color: rgba(255, 255, 255, .035); font-size: clamp(6rem, 17vw, 13rem); font-weight: 600; letter-spacing: -.075em; line-height: 1; pointer-events: none; }
.about-founder-panel.has-founder-photo { padding: 25px 0 0 clamp(30px, 4.8vw, 65px); display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(20px, 3.2vw, 45px); align-items: center; }
.has-founder-photo .founder-copy { padding: 30px 0 48px; }
.has-founder-photo .founder-copy h2 { font-size: clamp(2.125rem, 3.5vw, 3rem); }
.founder-portrait { min-width: 0; margin: 0; align-self: stretch; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; border-radius: 0; background: transparent; }
.founder-portrait[hidden] { display: none; }
/* Zoom within the existing portrait bay; trim peripheral white space without
   changing the source image, text column, or overflowing the founder panel. */
.founder-portrait img { width: 118%; max-width: none; flex-shrink: 0; height: auto; max-height: 900px; object-fit: contain; object-position: center bottom; }
/* Until a verified alpha cutout is supplied, preserve the original portrait
   unchanged on a white panel instead of displaying fabricated transparency. */
.about-founder-panel.founder-original-photo { color: var(--ink); border-color: var(--line); background: var(--white); box-shadow: var(--shadow-small); }
.founder-original-photo .founder-copy .section-kicker { color: var(--orange-deep); }
.founder-original-photo .founder-message p { color: var(--ink-soft); }
.founder-original-photo .founder-identity span { color: var(--muted); }
.founder-original-photo .founder-wordmark { color: rgba(243, 101, 34, .035); }
.founder-original-photo .founder-portrait { background: var(--white); }
.about-standards { padding-bottom: 85px; }
.about-standard-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.about-standard-card { min-width: 0; padding: 34px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(255, 145, 79, .1), transparent 60%), var(--white); transition: border-color .25s ease; }
.about-standard-card:hover { border-color: var(--peach); }
.about-card-number { color: var(--orange-deep); font-size: .875rem; font-weight: 600; }
.about-standard-card h3 { max-width: 415px; margin: 28px 0 16px; font-size: clamp(1.375rem, 2.3vw, 1.875rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.2; }
.about-standard-card p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.about-team { padding-top: 0; }
.about-team-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 70px; align-items: end; }
.about-team-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.about-role-list { margin-top: 45px; border-top: 1px solid var(--line); }
.about-role-list > article { padding: 28px 0; display: grid; grid-template-columns: 42px minmax(0, 1fr) 160px; gap: 22px; align-items: center; border-bottom: 1px solid var(--line); }
.about-role-list > article > span { color: var(--orange-deep); font-size: .875rem; }
.about-role-list h3 { margin: 0 0 8px; font-size: 1.25rem; font-weight: 600; letter-spacing: -.025em; }
.about-role-list p { max-width: 750px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.about-role-list small { justify-self: end; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .875rem; line-height: 1.5; text-align: center; }
.about-page .nav-link[aria-current="page"], .about-page .mobile-menu a[aria-current="page"] { color: var(--orange-deep); }
.about-page .project-close { padding-top: 0; }
.about-page .project-close-panel { padding-bottom: 1px; }
@media (max-width: 800px) {
  .about-page-hero { padding-top: 119px; }
  .about-editorial-layout, .about-story-layout, .about-team-heading { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .about-editorial-layout { padding: 40px 0; }
  .about-editorial-copy h1 { font-size: clamp(3rem, 8.5vw, 4.5rem); }
  .about-editorial-intro { max-width: 600px; }
  .about-approach, .about-standards { padding-block: 75px; }
  .about-team { padding-bottom: 75px; }
  .about-service-index > a { grid-template-columns: 30px minmax(0, 1fr) 24px; gap: 12px; }
  .about-service-index small { grid-column: 2; grid-row: 2; }
  .about-service-index b { grid-column: 3; grid-row: 1 / 3; }
  .about-founder-panel.has-founder-photo { padding: 35px 28px 0; grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .has-founder-photo .founder-copy { padding: 0 0 18px; }
  .founder-portrait { max-width: 480px; width: 100%; justify-self: center; }
  .founder-portrait img { max-height: 660px; }
  .about-role-list > article { grid-template-columns: 28px minmax(0, 1fr); gap: 13px; }
  .about-role-list small { grid-column: 2; justify-self: start; }
}
@media (max-width: 480px) {
  .about-editorial-copy h1 { font-size: clamp(2.5rem, 11vw, 3.375rem); }
  .about-page-metrics { gap: 14px; }
  .about-page-metrics > div { padding-left: 12px; }
  .about-page-metrics strong { font-size: clamp(1.875rem, 7.2vw, 2.5rem); }
  .about-page-metrics span { font-size: .875rem; line-height: 1.5; }
  .about-standard-grid { grid-template-columns: minmax(0, 1fr); }
  .about-standard-card { padding: 26px; border-radius: 22px; }
  .about-founder-panel { padding: 31px 23px 38px; border-radius: 25px; }
  .about-founder-panel.has-founder-photo { padding: 30px 22px 0; gap: 8px; }
  .founder-copy h2, .has-founder-photo .founder-copy h2 { font-size: clamp(2rem, 8vw, 2.5rem); }
  .founder-message p { font-size: 1rem; line-height: 1.8; }
  .founder-portrait { width: calc(100% + 24px); max-width: none; }
  .founder-portrait img { max-height: 530px; }
  .about-page .project-close-meta > span:last-child { max-width: 155px; text-align: right; }
}

/* Service pages inherit all core design, type, pricing and interaction rules. */
.automation-hero {
  padding: 140px 0 0;
  background:
    radial-gradient(ellipse at 93% 22%, rgba(255, 145, 79, .18), transparent 46%),
    linear-gradient(180deg, var(--warm), var(--white) 88%);
}
.service-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: .875rem; }
.service-breadcrumb a:hover { color: var(--orange-deep); }
.service-breadcrumb > span:last-child { color: var(--ink); }
.automation-hero-layout { padding: 54px 0 65px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: center; gap: 60px; }
.automation-hero-copy .section-kicker { color: var(--orange-deep); }
.automation-hero-copy h1 { margin: 24px 0 28px; font-size: clamp(3rem, 4.8vw, 4.5rem); font-weight: 600; letter-spacing: -.055em; line-height: 1.06; }
.automation-hero-copy h1 > span { color: var(--orange-deep); }
.automation-hero-copy > p { max-width: 535px; margin: 0; color: var(--muted); font-size: 1.0625rem; line-height: 1.75; }
.automation-hero-copy .hero-actions { margin-top: 31px; gap: 12px; }
.automation-hero-copy .button { padding-inline: 21px; font-size: .875rem; }
.automation-hero-standards { margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 19px; list-style: none; color: var(--ink-soft); font-size: .875rem; }
.automation-hero-standards li { display: inline-flex; align-items: baseline; gap: 7px; }
.automation-hero-standards li::before { content: '✓'; color: var(--orange-deep); }
.automation-hero-media { min-width: 0; padding: 22px; border: 1px solid var(--line); border-radius: 32px; background: var(--white); box-shadow: var(--shadow-large); }
.automation-media-heading { margin-bottom: 17px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .75rem; color: var(--muted); }
.automation-media-heading > span:first-child { color: var(--ink); font-weight: 600; letter-spacing: .025em; }
.automation-hero-media .automation-preview { min-height: 0; aspect-ratio: 16 / 9; border-radius: 20px; }
.automation-preview .showreel-center > strong { font-size: clamp(1.125rem, 1.7vw, 1.5rem); }
.automation-preview .showreel-center > small { font-size: .75rem; }
.automation-preview-note { margin: 14px 0 18px; color: var(--muted); font-size: .75rem; line-height: 1.6; }
.automation-handoff { padding: 18px; display: grid; gap: 5px; border: 1px solid var(--line); border-radius: 16px; background: var(--warm); }
.automation-handoff > span { color: var(--orange-deep); font-size: .75rem; font-weight: 600; }
.automation-handoff > strong { font-size: .9375rem; font-weight: 600; letter-spacing: -.02em; }
.automation-handoff > small { color: var(--muted); font-size: .75rem; }
.automation-section-nav { padding: 22px 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; border-block: 1px solid var(--line); }
.automation-section-nav > a { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: .875rem; font-weight: 600; transition: color .18s ease; }
.automation-section-nav > a > span { color: var(--orange-deep); }
.automation-section-nav > a:hover, .automation-section-nav > a:focus-visible { color: var(--orange-deep); }
:is(.automation-page, .longform-page, .shortform-page, .management-page) .service-menu-grid a[aria-current="page"] { border-color: var(--peach); background: var(--warm); }
.automation-pricing .pricing-panels { margin-top: 42px; }
:is(.automation-page, .longform-page, .shortform-page, .management-page) .project-close { padding-top: 0; }
:is(.automation-page, .longform-page, .shortform-page, .management-page) .project-close-panel { padding-bottom: 1px; }

.management-hero-desk { min-width: 0; }
.management-hero-desk .management-stage { min-height: 0; border: 1px solid #3b3027; border-radius: 28px; box-shadow: var(--shadow-large); }
.management-desk-note { margin: 16px 3px 0; color: var(--muted); font-size: .875rem; line-height: 1.65; }

.longform-formats { padding: 95px 0 15px; background: var(--white); }
.longform-formats-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); align-items: end; gap: 65px; }
.longform-formats-heading .section-kicker { color: var(--orange-deep); }
.longform-formats-heading h2 { margin: 23px 0 0; font-size: clamp(2.625rem, 4.2vw, 3.75rem); font-weight: 600; letter-spacing: -.05em; line-height: 1.08; }
.longform-formats-heading > p { max-width: 380px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.longform-formats .service-gallery { margin-top: 47px; }
.longform-formats .gallery-heading h3 { margin: 7px 0 0; font-size: 1.375rem; font-weight: 600; line-height: 1.3; letter-spacing: -.03em; }
.longform-formats-note { max-width: 800px; margin: 25px 0 0; color: var(--muted); font-size: .875rem; line-height: 1.7; }

@media (max-width: 1050px) {
  .automation-hero-layout { gap: 30px; }
  .automation-hero-copy h1 { font-size: clamp(2.75rem, 5.1vw, 3.5rem); }
  .automation-hero-media { padding: 17px; }
}
@media (max-width: 800px) {
  .automation-hero { padding-top: 115px; }
  .automation-hero-layout { padding-block: 38px 45px; grid-template-columns: 1fr; gap: 40px; }
  .automation-hero-copy h1 { font-size: clamp(2.625rem, 8vw, 4.375rem); }
  .automation-hero-media { max-width: 620px; width: 100%; }
  .automation-hero-copy .hero-actions { flex-wrap: wrap; }
  .automation-preview .showreel-center > strong { font-size: 1.25rem; }
  .automation-section-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 19px 25px; }
  .longform-formats { padding-top: 65px; }
  .longform-formats-heading { grid-template-columns: 1fr; gap: 24px; }
  .longform-formats-heading h2 { font-size: clamp(2.375rem, 6.5vw, 3.5rem); }
  .longform-formats-heading > p { max-width: 590px; }
  .longform-formats .gallery-heading { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .service-breadcrumb { gap: 8px; font-size: .8125rem; }
  .automation-hero-copy h1 { font-size: clamp(2.4375rem, 9vw, 2.9375rem); line-height: 1.1; }
  .automation-hero-copy > p { font-size: 1rem; }
  .automation-hero-copy .hero-actions > .button { width: 100%; }
  .automation-hero-media { padding: 14px; border-radius: 25px; }
  .automation-hero-media .automation-preview { border-radius: 15px; }
  .automation-preview .play-button { width: 51px; height: 51px; }
  .automation-preview .showreel-center > strong { font-size: 1rem; }
  .automation-preview .showreel-center > small { max-width: 185px; line-height: 1.5; }
  .automation-media-heading { font-size: .75rem; }
  .automation-section-nav { gap: 17px; }
  .automation-section-nav > a { font-size: .8125rem; }
  :is(.automation-page, .longform-page, .shortform-page, .management-page) .project-close-meta > span:last-child { max-width: 155px; text-align: right; }
  .management-hero-desk .management-stage { padding: 17px; border-radius: 22px; }
  .management-hero-desk .channel-calendar { padding: 15px 10px; }
  .management-hero-desk .channel-week { gap: 4px; }
  .management-hero-desk .calendar-item { padding-inline: 2px; }
}

.video-dialog {
  width: min(1100px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 26px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 40px 140px rgba(0, 0, 0, .48);
}

.video-dialog::backdrop { background: rgba(18, 13, 9, .72); backdrop-filter: blur(10px); }
.video-dialog-shell { padding: 16px; }
.video-dialog-top { min-height: 70px; padding: 6px 4px 17px 10px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.video-dialog-top div { display: grid; gap: 3px; }
.video-dialog-top span { color: var(--orange-bright); font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.video-dialog-top strong { font-size: 16px; letter-spacing: -.02em; }
.video-dialog-top button { width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; color: var(--white); background: rgba(255, 255, 255, .06); cursor: pointer; font-size: 28px; line-height: 1; }
.video-dialog video { width: 100%; aspect-ratio: 16 / 9; border-radius: 16px; background: #080706; }
.video-dialog[data-media-aspect="portrait"] { width: min(440px, calc(100% - 24px)); }
.video-dialog[data-media-aspect="portrait"] video { aspect-ratio: 9 / 16; max-height: 72vh; object-fit: contain; }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .desktop-nav, .desktop-cta { display: none; }
  .nav-flyout { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    width: min(calc(100% - 10vw), var(--shell));
    max-height: 0;
    margin: 8px auto 0;
    display: block;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--shadow-small);
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height .32s var(--ease), opacity .25s ease, transform .32s var(--ease);
  }
  .mobile-menu.is-open { max-height: calc(100vh - 105px); padding: 18px; overflow-y: auto; opacity: 1; transform: none; }
  .mobile-menu nav { display: grid; gap: 4px; }
  .mobile-menu nav > a:not(.button),
  .mobile-menu summary,
  .mobile-planned { padding: 14px 10px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .mobile-menu details { display: grid; }
  .mobile-menu summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { color: var(--orange-deep); font-size: 20px; font-weight: 500; transition: transform .2s var(--ease); }
  .mobile-menu details[open] summary span { transform: rotate(45deg); }
  .mobile-menu details > div { padding: 8px; display: grid; gap: 3px; border-bottom: 1px solid var(--line); background: var(--warm); }
  .mobile-menu details > div a { padding: 11px 10px; border-radius: 10px; color: var(--muted); font-size: 13px; font-weight: 700; }
  .mobile-menu details > div a:hover { color: var(--orange-deep); background: var(--white); }
  .mobile-planned { display: flex; align-items: center; justify-content: space-between; color: var(--ink-soft); }
  .mobile-planned small { color: var(--faint); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
  .mobile-menu .button { margin-top: 12px; }
  .hero-inner { grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: 34px; }
  .hero h1 { font-size: clamp(48px, 5.2vw, 58px); }
  .about-proof { margin-top: 74px; grid-template-columns: 1fr; gap: 34px; }
  .about-copy p { max-width: 720px; }
  .section-intro,
  .services-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-intro > p,
  .services-heading > p { max-width: 710px; }
  .work-card-system { grid-column: span 12; }
  .work-card-team,
  .work-card-updates,
  .work-card-review,
  .work-card-quality { grid-column: span 6; }
  .work-card-scale { grid-column: span 12; }
  .service-tabs { grid-template-columns: repeat(2, 1fr); }
  .service-overview { gap: 18px; }
  .service-copy { padding: 30px 14px; }
  .service-stage { padding: 22px; }
  .portrait-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-heading { grid-template-columns: 1fr; gap: 25px; }
  .process-heading > p { max-width: 700px; }
  .process-display { padding: 26px; }
  .process-step { padding: 19px 15px; gap: 12px; }
  .process-step > i { display: none; }
  .process-step { grid-template-columns: auto minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding-bottom: 96px; }
  .hero-inner { min-height: 0; grid-template-columns: 1fr; gap: 52px; }
  .hero-copy { max-width: 780px; }
  .hero h1 { max-width: 820px; font-size: clamp(58px, 9vw, 76px); }
  .hero-lede { max-width: 720px; }
  .showreel-wrap { width: 100%; margin-top: 0; }
  .scale-layout { grid-template-columns: 1fr; gap: 40px; }
  .production-queue { max-width: 680px; }
  .service-overview { grid-template-columns: 1fr; }
  .service-copy { padding: 30px 24px 35px; }
  .service-copy h3 { max-width: 660px; margin-top: 30px; font-size: clamp(38px, 5.8vw, 50px); }
  .service-copy > p { max-width: 700px; }
  .service-stage { min-height: 0; padding: 28px; }
  .automation-workspace { grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); }
  .edit-monitor { min-height: 280px; }
  .reframe-workspace { max-width: 620px; width: 100%; margin-inline: auto; }
  .reframe-target { max-height: 420px; }
  .process-layout { grid-template-columns: 1fr; gap: 30px; }
  .process-display { padding: 32px; }
  .process-visuals { min-height: 460px; }
  .process-paper { max-width: 650px; }
  .process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-step { height: 100%; }
}

@media (max-width: 720px) {
  :root { --header-height: 62px; }
  .page-shell, .nav-shell, .mobile-menu { width: min(calc(100% - 32px), var(--shell)); }
  .site-header { padding-top: 9px; }
  .nav-shell { padding-left: 13px; }
  .brand-name { font-size: 20px; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { padding: 130px 0 78px; }
  .hero-copy { width: 100%; }
  .eyebrow { font-size: 11px; letter-spacing: .055em; }
  .hero h1 { margin-top: 25px; font-size: clamp(46px, 13.1vw, 68px); line-height: 1.04; }
  .dynamic-line { min-height: 1.23em; margin-top: .15em; padding-bottom: .13em; }
  .dynamic-word { font-size: clamp(32px, 9.55vw, 64px); line-height: 1.04; }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 12px; }
  .hero-inner { gap: 42px; }
  .showreel-wrap { margin-top: 0; padding: 10px; border-radius: 26px; }
  .showreel-card { min-height: 410px; aspect-ratio: auto; border-radius: 25px; }
  .showreel-card img { position: absolute; inset: 0; }
  .showreel-topline { left: 18px; right: 18px; top: 18px; font-size: 9px; }
  .showreel-topline > span:first-child { display: none; }
  .showreel-bottom { left: 18px; right: 18px; bottom: 18px; }
  .showreel-center { padding-inline: 20px; }
  .play-button { width: 62px; height: 62px; }
  .showreel-center strong { font-size: 25px; }
  .showreel-note { display: block; line-height: 1.6; }
  .showreel-note span { margin-right: 8px; }
  .audience-band { padding: 78px 0 70px; }
  .audience-heading { margin-bottom: 32px; display: grid; gap: 14px; }
  .audience-heading > span { text-align: left; }
  .ticker-set span { padding: 14px 19px 14px 14px; font-size: 14px; }
  .about { padding: 62px 0; }
  .about-stage { min-height: 0; padding: 31px 21px 23px; border-radius: 28px; }
  .about-head h2 { margin-top: 28px; font-size: clamp(42px, 11.6vw, 61px); }
  .about-proof { margin-top: 60px; gap: 28px; }
  .about-copy { padding-inline: 2px; }
  .about-copy p { font-size: 16px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 184px; border-radius: 20px; }
  .stat-card strong { font-size: 56px; }
  .what-we-do { padding: 94px 0 102px; }
  .section-intro h2,
  .services-heading h2 { margin-top: 20px; font-size: clamp(43px, 12vw, 61px); }
  .section-intro > p,
  .services-heading > p { font-size: 16px; }
  .work-grid { margin-top: 49px; grid-template-columns: 1fr; }
  .work-card-system,
  .work-card-team,
  .work-card-updates,
  .work-card-review,
  .work-card-quality,
  .work-card-scale { min-height: 420px; grid-column: auto; }
  .work-card { padding: 23px; border-radius: 23px; }
  .work-card-system { min-height: 830px; }
  .system-console { margin: 36px 0 32px; padding: 13px; }
  .workflow-map { grid-template-columns: 1fr; }
  .workflow-map > div { min-height: 86px; }
  .workflow-map > b { width: 1px; height: 13px; margin-left: 28px; }
  .workflow-map > b::after { transform: translateY(-100%); animation-name: workflowLineMobile; }
  @keyframes workflowLineMobile { 0%, 15% { transform: translateY(-100%); } 40%, 75% { transform: translateY(0); } 100% { transform: translateY(100%); } }
  .role-stack { margin-top: 35px; }
  .work-card-updates,
  .work-card-review,
  .work-card-quality { min-height: 500px; }
  .scale-layout { margin-top: 38px; gap: 34px; }
  .production-queue { padding: 14px; }
  .services { padding: 95px 0 104px; }
  .service-tabs { margin-top: 43px; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 6px; gap: 5px; border-radius: 20px; }
  .service-tabs button { justify-content: flex-start; min-height: 64px; padding: 10px; gap: 7px; border-radius: 13px; line-height: 1.35; }
  .service-panel { min-height: 0; padding: 10px; border-radius: 24px; }
  .service-copy { min-height: 0; padding: 28px 15px 30px; }
  .service-copy h3 { margin-top: 28px; font-size: clamp(32px, 9vw, 44px); }
  .service-copy ul { margin-block: 28px; }
  .service-stage { min-height: 0; padding: 18px; border-radius: 19px; }
  .stage-bottom { padding-top: 22px; }
  .automation-workspace { margin-top: 25px; grid-template-columns: 1fr; gap: 18px; }
  .production-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .production-steps > div { min-height: 63px; padding: 8px; gap: 7px; }
  .production-steps b { display: none; }
  .production-detail { min-height: 255px; }
  .production-symbol { width: 68px; height: 62px; margin: 20px 0; }
  .production-detail > strong { max-width: 100%; font-size: 28px; }
  .production-strip { gap: 3px; padding: 7px; }
  .production-strip span { padding-inline: 2px; }
  .edit-monitor { min-height: 250px; padding: 13px; }
  .monitor-frame { margin-inline: 0; padding-inline: 10px; }
  .monitor-bottom > span:last-child { display: none; }
  .timeline-lane > span { padding-inline: 6px; }
  .timeline-lane > span:last-child:not(:first-of-type) { flex: .3; }
  .reframe-workspace { gap: 8px; grid-template-columns: minmax(0, 1fr) 18px minmax(0, .9fr); margin-top: 30px; }
  .reframe-source { min-height: 150px; padding: 10px; }
  .reframe-target { padding: 12px; border-radius: 16px; }
  .caption-study { margin-block: 15px; }
  .caption-study strong { font-size: clamp(25px, 7vw, 36px); }
  .reframe-tools { gap: 6px; }
  .reframe-tools span { padding: 8px; }
  .channel-calendar { padding: 13px; margin-top: 26px; }
  .channel-week { gap: 4px; }
  .channel-task-list > div { padding: 13px 10px; gap: 8px; }
  .service-gallery { margin-top: 24px; padding: 25px 6px 12px; }
  .gallery-heading { gap: 12px; }
  .format-gallery, .portrait-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; }
  .format-demo { padding: 10px; }
  .format-visual { border-radius: 13px; }
  .process { padding: 93px 0 64px; }
  .process-heading h2 { margin-top: 20px; font-size: clamp(41px, 11.6vw, 60px); }
  .process-heading > p { font-size: 1rem; }
  .process-layout { margin-top: 44px; gap: 27px; }
  .process-display { padding: 22px 20px 24px; border-radius: 25px; }
  .process-route { margin-bottom: 27px; }
  .process-visuals { min-height: 455px; }
  .process-visual h3 { font-size: clamp(30px, 8.5vw, 40px); }
  .process-paper { padding: 17px; border-radius: 17px; }
  .brief-field { gap: 11px; grid-template-columns: minmax(65px, .45fr) minmax(0, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 20px 15px; gap: 13px; border-radius: 18px; }
  .process-step-number { width: 38px; height: 38px; border-radius: 12px; }
  .process-step-copy > strong { font-size: 24px; }
  .process-handoff { margin-top: 30px; gap: 13px; flex-direction: column; align-items: flex-start; }
  .process-handoff > i { transform: rotate(90deg); }
  .video-dialog { width: calc(100% - 20px); border-radius: 20px; }
  .video-dialog-shell { padding: 10px; }
  .video-dialog-top strong { font-size: 14px; }
}

@media (max-width: 380px) {
  .format-gallery:not(.portrait-gallery) { grid-template-columns: 1fr; }
  .service-tabs button { gap: 5px; padding-inline: 8px; }
  .production-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Contact: editorial introduction beside a practical, email-draft inquiry form. */
.contact-page-section {
  position: relative;
  padding: 144px 0 100px;
  background: radial-gradient(ellipse at 0 28%, rgba(255, 145, 79, .16), transparent 47%), linear-gradient(180deg, var(--white), var(--warm));
}
.contact-page-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(32px, 5vw, 72px); align-items: start; margin-top: 36px; }
.contact-page-copy { padding-top: 25px; min-width: 0; }
.contact-page-copy h1 { margin: 24px 0; font-size: clamp(38px, 4.3vw, 64px); font-weight: 600; line-height: 1.06; letter-spacing: -.05em; }
.contact-page-copy h1 > span { color: var(--orange-deep); }
.contact-page-copy > p { max-width: 460px; margin: 0; font-size: 17px; line-height: 1.75; color: var(--muted); }
.contact-person { display: flex; gap: 15px; align-items: center; margin-top: 40px; }
.contact-person-initials { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); color: var(--orange-deep); font-weight: 600; }
.contact-person > div { display: grid; gap: 3px; }
.contact-person strong { font-size: 17px; font-weight: 600; }
.contact-person > div > span { font-size: 14px; color: var(--muted); }
.contact-direct-email { display: inline-flex; align-items: center; gap: 18px; max-width: 100%; margin-top: 24px; font-size: clamp(18px, 2vw, 25px); font-weight: 600; letter-spacing: -.025em; overflow-wrap: anywhere; transition: color .2s ease; }
.contact-direct-email:hover { color: var(--orange-deep); }
.contact-direct-email > span { color: var(--orange-deep); }
.contact-business-details { margin-top: 27px; padding: 22px 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.contact-detail-label { display: block; color: var(--muted); font-size: .875rem; font-weight: 500; line-height: 1.6; }
.contact-business-phone > p { margin: 5px 0 12px; color: var(--ink); font-size: 1.125rem; font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.contact-business-actions { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; }
.contact-business-actions > a { min-height: 44px; padding-block: 10px; display: inline-flex; gap: 7px; align-items: center; color: var(--orange-deep); font-size: .875rem; font-weight: 600; }
.contact-business-actions > a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.contact-business-address { margin-top: 17px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .9375rem; font-style: normal; line-height: 1.8; overflow-wrap: anywhere; }
.contact-business-address > .contact-detail-label { margin-bottom: 7px; }
.contact-next { margin-top: 42px; padding: 25px 0; max-width: 450px; border-top: 1px solid var(--line-strong); }
.contact-next h2 { font-size: 22px; letter-spacing: -.035em; font-weight: 600; margin: 0 0 10px; }
.contact-next p { color: var(--muted); margin: 0 0 15px; line-height: 1.7; }
.contact-next > span { font-size: 14px; color: var(--muted); }
.contact-form-panel { min-width: 0; padding: clamp(24px, 3.5vw, 44px); border: 1px solid var(--line); border-radius: 32px; background: var(--white); box-shadow: var(--shadow-small); position: relative; }
.contact-form-panel::before { content: ''; position: absolute; inset: -1px 40px auto; height: 3px; border-radius: 20px; background: linear-gradient(90deg, transparent, var(--orange-bright), transparent); }
.contact-form-heading h2 { font-size: clamp(25px, 2.7vw, 34px); letter-spacing: -.04em; font-weight: 600; line-height: 1.15; margin: 13px 0 10px; }
.contact-form-heading > p { margin: 0; color: var(--muted); }
.contact-form { margin-top: 28px; }
.contact-page [hidden] { display: none !important; }
.contact-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.contact-form legend { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.contact-intent { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-intent > label { display: inline-flex; gap: 9px; align-items: center; padding: 11px 13px; border-radius: 12px; border: 1px solid var(--line); font-size: 14px; cursor: pointer; background: var(--warm); transition: border-color .2s ease, background-color .2s ease; }
.contact-intent > label:has(input:checked) { border-color: var(--orange-deep); background: var(--warm-deep); }
.contact-intent input, .contact-checkbox input { width: 16px; height: 16px; flex-shrink: 0; margin: 0; accent-color: var(--orange-deep); }
.contact-field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-field { display: flex; flex-wrap: wrap; align-items: baseline; gap: 5px; margin-top: 22px; font-size: 14px; font-weight: 600; }
.contact-field > span { color: var(--orange-deep); }
.contact-field > small { margin-left: auto; font-size: 14px; font-weight: 400; color: var(--muted); }
.contact-field > input, .contact-field > textarea, .contact-field > select { width: 100%; min-width: 0; display: block; border: 1px solid var(--line-strong); border-radius: 12px; padding: 13px 14px; background: var(--white); color: var(--ink); font-size: 16px; font-weight: 400; line-height: 1.5; margin-top: 5px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-field > input:focus, .contact-field > textarea:focus, .contact-field > select:focus { border-color: var(--orange-deep); box-shadow: 0 0 0 3px rgba(243, 101, 34, .08); }
.contact-field input::placeholder, .contact-field textarea::placeholder { color: var(--muted); opacity: 1; }
.contact-field > textarea { resize: vertical; min-height: 140px; }
.contact-field > input:disabled { background: var(--warm); color: var(--muted); }
.contact-checkbox { display: flex; align-items: center; gap: 10px; margin-top: 12px; font-size: 14px; color: var(--muted); cursor: pointer; }
.contact-field-note { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 10px 0 0; }
.contact-package-context { display: flex; gap: 14px; align-items: center; justify-content: space-between; margin-top: 14px; padding: 15px; border-radius: 12px; background: var(--warm-deep); border: 1px solid var(--line); }
.contact-package-context > div { min-width: 0; display: grid; gap: 6px; }
.contact-package-context span { font-size: 14px; color: var(--muted); }
.contact-package-context strong { font-size: 14px; font-weight: 600; overflow-wrap: anywhere; }
.contact-package-context > button { background: transparent; color: var(--orange-deep); border: 0; padding: 6px 0; font-size: 14px; cursor: pointer; }
.contact-form .contact-call-fields { margin-top: 22px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--warm); }
.contact-call-fields legend { padding-inline: 6px; margin: 0; }
.contact-call-fields legend span { color: var(--muted); font-weight: 400; }
.contact-call-fields .contact-field { margin-top: 4px; }
.contact-delivery-note { padding: 17px; margin-top: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--warm); }
.contact-delivery-note strong { font-size: 14px; font-weight: 600; }
.contact-delivery-note p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 7px 0 0; }
.contact-submit { width: 100%; margin-top: 20px; }
.contact-submit:disabled { opacity: .65; cursor: wait; }
.contact-trap { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.contact-form-status { color: var(--orange-deep); font-size: 14px; font-weight: 500; line-height: 1.65; margin: 16px 0 0; }
.contact-form-status:empty { display: none; }
.contact-draft-review { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 24px; }
.contact-draft-review h3 { font-size: 20px; font-weight: 600; letter-spacing: -.025em; margin: 0 0 10px; }
.contact-draft-review > p { color: var(--muted); font-size: 14px; margin: 0; }
.contact-draft-review a:not(.button) { text-decoration: underline; text-underline-offset: 3px; }
.contact-draft-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.contact-page .nav-trigger[aria-current='page'] { color: var(--orange-deep); }
@media (max-width: 900px) {
  .contact-page-layout { grid-template-columns: 1fr; gap: 30px; }
  .contact-page-copy { padding-top: 0; }
  .contact-page-copy h1 { font-size: clamp(38px, 7vw, 58px); }
  .contact-page-copy > p, .contact-next { max-width: 660px; }
  .contact-person { margin-top: 25px; }
  .contact-next { margin-top: 25px; padding-bottom: 0; }
}
@media (max-width: 560px) {
  .contact-page-section { padding-top: 125px; padding-bottom: 64px; }
  .contact-page-layout { margin-top: 26px; }
  .contact-form-panel { padding: 24px 20px; border-radius: 24px; }
  .contact-field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-call-fields .contact-field + .contact-field { margin-top: 16px; }
  .contact-package-context { flex-wrap: wrap; }
  .contact-draft-actions > .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
