:root {
  color-scheme: light;
  --brand: #643a97;
  --brand-dark: #3d205f;
  --brand-deep: #24122f;
  --brand-light: #8d67b6;
  --brand-pale: #f3eef8;
  --ink: #1d1922;
  --muted: #6e6873;
  --line: #e6dfeb;
  --surface: #ffffff;
  --surface-soft: #faf8fc;
  --warm: #ff8a2a;
  --success: #226b48;
  --danger: #9e2e3a;
  --shadow-sm: 0 12px 35px rgba(36, 18, 47, 0.08);
  --shadow-lg: 0 28px 80px rgba(36, 18, 47, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1240px;
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 40px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--brand);
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 6.7rem);
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  height: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 18px;
  color: #fff;
  background: var(--brand-deep);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 150px);
}

.section--soft {
  background: var(--surface-soft);
}

.section--brand {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(141, 103, 182, 0.55), transparent 32%),
    linear-gradient(135deg, var(--brand-deep), var(--brand) 72%, #7650a3);
}

.section--brand h2,
.section--brand h3,
.section--brand .eyebrow {
  color: #fff;
}

.section--brand .eyebrow::before {
  background: #fff;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 80px);
}

.section-header h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.section-header p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-header--single {
  display: block;
  max-width: 850px;
}

.eyebrow {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.button:hover {
  color: #fff;
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 14px 30px rgba(100, 58, 151, 0.22);
  transform: translateY(-2px);
}

.button--light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button--light:hover {
  color: var(--brand-dark);
  background: var(--brand-pale);
  border-color: var(--brand-pale);
}

.button--ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button--ghost:hover {
  color: var(--brand);
  background: var(--brand-pale);
  border-color: #d6c8e2;
  box-shadow: none;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link svg {
  transition: transform 200ms var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.announcement {
  position: relative;
  z-index: 80;
  color: #fff;
  background: var(--brand-deep);
}

.announcement .container {
  display: flex;
  min-height: 38px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-block: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-align: center;
}

.announcement a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}

.announcement a:hover {
  text-decoration: underline;
}

.announcement-dot {
  width: 8px;
  height: 8px;
  flex: none;
  background: var(--warm);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 138, 42, 0.13);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(100, 58, 151, 0.1);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 132px;
  flex: none;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.main-nav a {
  padding: 12px 15px;
  color: #4f4855;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand);
  background: var(--brand-pale);
}

.main-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 20px;
  color: #fff;
  background: var(--brand);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta[aria-current="page"] {
  color: #fff;
  background: var(--brand-dark);
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--brand-pale);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--brand-dark);
  transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
}

.menu-toggle::before {
  top: 17px;
}

.menu-toggle span {
  top: 23px;
}

.menu-toggle::after {
  top: 29px;
}

.menu-toggle[aria-expanded="true"]::before {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  top: 23px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height) - 38px);
  min-height: calc(100svh - var(--header-height) - 38px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(100, 58, 151, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(100, 58, 151, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 92% 5%, #eee4f7, transparent 37%),
    #fff;
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.hero::before {
  position: absolute;
  top: 12%;
  right: -16%;
  width: 48vw;
  height: 48vw;
  min-width: 620px;
  min-height: 620px;
  content: "";
  background: var(--brand-pale);
  border-radius: 50%;
  opacity: 0.8;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.88fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  padding-block: clamp(76px, 9vw, 130px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 800px;
  margin-bottom: 28px;
}

.hero-copy h1 span {
  color: var(--brand);
}

.hero-copy .lead {
  max-width: 640px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
  margin-top: 46px;
  padding: 0;
  color: #554e5b;
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

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

.hero-meta li::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--brand-pale);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 620px;
}

.hero-frame {
  position: absolute;
  inset: 4% 0 11% 12%;
  overflow: hidden;
  background: var(--brand-deep);
  border: 10px solid #fff;
  border-radius: 50% 50% 32px 32px;
  box-shadow: var(--shadow-lg);
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(36, 18, 47, 0.45));
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 42%;
  overflow: hidden;
  background: #fff;
  border: 8px solid #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: rotate(-4deg);
}

.hero-float img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  top: 6%;
  right: -4%;
  z-index: 3;
  display: grid;
  width: 132px;
  aspect-ratio: 1;
  place-items: center;
  padding: 20px;
  color: #fff;
  background: var(--brand);
  border: 7px solid #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 9vw, 145px);
  align-items: start;
}

.intro-copy h2 {
  margin-bottom: 30px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.stat {
  padding: 25px 20px;
  background: var(--brand-pale);
  border: 1px solid #e5daef;
  border-radius: var(--radius-sm);
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
  font-size: 1.25rem;
  line-height: 1.2;
}

.stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.principles {
  display: grid;
  gap: 18px;
}

.principle {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.principle-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--brand);
  background: var(--brand-pale);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.principle h3 {
  margin: 1px 0 8px;
}

.principle p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 300ms var(--ease), box-shadow 300ms ease, border-color 300ms ease;
}

.service-card:hover {
  border-color: #d3c3df;
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}

.service-media {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--brand-pale);
  border: 0;
  cursor: zoom-in;
}

.service-media::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  content: "+";
  background: rgba(36, 18, 47, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 220ms ease, transform 220ms var(--ease);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.service-card:hover .service-media::after,
.service-media:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.service-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-content {
  padding: 30px 28px 32px;
}

.service-index {
  display: block;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.service-content h3 {
  margin-bottom: 14px;
}

.service-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
}

.workflow-step {
  min-height: 280px;
  padding: clamp(30px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.06);
}

.workflow-step span {
  display: block;
  margin-bottom: 50px;
  color: #cbb7df;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.workflow-step h3 {
  margin-bottom: 14px;
}

.workflow-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

.jobs-card {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  overflow: hidden;
  background: var(--brand-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.jobs-media {
  position: relative;
  min-height: 560px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  cursor: zoom-in;
}

.jobs-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jobs-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  color: #fff;
}

.jobs-copy h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.jobs-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.jobs-copy .eyebrow {
  color: #d9c9e8;
}

.jobs-copy .eyebrow::before {
  background: currentColor;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: clamp(38px, 5vw, 70px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.18), transparent 26%),
    var(--brand);
  border-radius: var(--radius-lg);
}

.cta-panel h2 {
  max-width: 820px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.cta-panel p {
  max-width: 670px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(100px, 13vw, 180px);
  background:
    linear-gradient(90deg, rgba(100, 58, 151, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(100, 58, 151, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 85% 25%, #eadff4, transparent 33%),
    var(--surface-soft);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.page-hero::after {
  position: absolute;
  right: -100px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  content: "";
  border: 130px solid rgba(100, 58, 151, 0.08);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 7.2vw, 7.4rem);
}

.page-hero .lead {
  max-width: 740px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--brand);
  text-decoration: none;
}

.team-section-title {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.team-section-title h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.team-section-title a {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 750;
}

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

.team-grid + .team-section-title {
  margin-top: clamp(90px, 12vw, 160px);
}

.team-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 280ms var(--ease), box-shadow 280ms ease;
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.team-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--brand-pale);
}

.team-card figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  content: "";
  background: linear-gradient(transparent, rgba(36, 18, 47, 0.18));
}

.team-card img {
  width: 100%;
  aspect-ratio: 3 / 3.5;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(100%);
  transition: filter 360ms ease, transform 500ms var(--ease);
}

.team-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.025);
}

.team-card-content {
  padding: 28px;
}

.team-card-content h3 {
  margin-bottom: 9px;
}

.role {
  min-height: 52px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-list {
  display: grid;
  gap: 8px;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 650;
  list-style: none;
}

.contact-list a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--brand);
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-list svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.production-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.production-intro h2 {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

.production-stack {
  display: grid;
  gap: 22px;
}

.production-card {
  padding: clamp(30px, 4.2vw, 52px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.production-card-index {
  display: block;
  margin-bottom: 28px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.production-card h3 {
  margin-bottom: 24px;
  font-size: clamp(1.65rem, 2.7vw, 2.4rem);
}

.production-card h4 {
  margin: 28px 0 8px;
  color: var(--brand-dark);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.production-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.format-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.format-list li {
  display: grid;
  grid-template-columns: minmax(125px, 0.38fr) minmax(0, 1fr);
  gap: 22px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
}

.format-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.format-list strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.format-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.production-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: var(--brand-deep);
  border-radius: var(--radius-lg);
}

.production-band div {
  min-height: 210px;
  padding: 36px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.production-band div:last-child {
  border-right: 0;
}

.production-band strong {
  display: block;
  margin-bottom: 12px;
  color: #d9c8e7;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.production-band span {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.contact-aside > p {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin: 38px 0;
}

.contact-detail {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-detail-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--brand);
  background: var(--brand-pale);
  border-radius: 50%;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.87rem;
}

.contact-detail span,
.contact-detail a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.contact-image {
  overflow: hidden;
  margin-top: 36px;
  background: var(--brand-pale);
  border-radius: var(--radius-md);
}

.contact-image img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.contact-form-wrap {
  padding: clamp(30px, 5vw, 62px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 3.5vw, 3.3rem);
}

.contact-form-wrap > p {
  margin-bottom: 36px;
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.8rem;
  font-weight: 750;
}

.field label span {
  color: var(--brand);
}

.field input,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid #dcd4e2;
  border-radius: 12px;
  outline: 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(100, 58, 151, 0.11);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a19aa6;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-footer {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.form-note {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-status {
  display: none;
  margin: 22px 0 0;
  padding: 15px 18px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: var(--success);
  background: #ecf7f1;
  border: 1px solid #bfdfce;
}

.form-status.is-error {
  color: var(--danger);
  background: #fff0f2;
  border: 1px solid #edc7cc;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--brand-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 1.15fr) repeat(3, minmax(160px, 0.6fr));
  gap: clamp(36px, 6vw, 86px);
  padding-block: 78px 62px;
}

.footer-brand img {
  width: 142px;
  margin-bottom: 26px;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
}

.footer-brand p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-column h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column p {
  margin-bottom: 14px;
  font-size: 0.86rem;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  color: #d5bee7;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(36, 18, 47, 0.25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-dark);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.lightbox {
  width: min(94vw, 1180px);
  max-width: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(18, 10, 25, 0.86);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.lightbox-inner {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-caption {
  margin: 0;
  padding: 16px 22px;
  color: var(--muted);
  background: #fff;
  font-size: 0.85rem;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: rgba(36, 18, 47, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
    gap: 54px;
  }

  .hero-visual {
    min-height: 530px;
  }

  .hero-stamp {
    right: -2%;
    width: 112px;
    border-width: 5px;
    font-size: 0.65rem;
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  body.menu-open::after {
    position: fixed;
    inset: 0;
    z-index: 60;
    content: "";
    background: rgba(36, 18, 47, 0.35);
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    width: 112px;
  }

  .main-nav {
    position: fixed;
    top: calc(38px + var(--header-height));
    right: 18px;
    left: 18px;
    z-index: 65;
    display: grid;
    gap: 4px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px) scale(0.98);
    transition: opacity 200ms ease, transform 200ms var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .main-nav a {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .main-nav .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 88px 110px;
  }

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

  .hero-visual {
    width: min(100%, 670px);
    min-height: 600px;
    margin-inline: auto;
  }

  .section-header,
  .intro-grid,
  .production-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
  }

  .section-header p {
    max-width: 720px;
  }

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

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

  .workflow-step {
    min-height: auto;
  }

  .workflow-step span {
    margin-bottom: 28px;
  }

  .jobs-card {
    grid-template-columns: 1fr;
  }

  .jobs-media {
    min-height: auto;
  }

  .jobs-media img {
    aspect-ratio: 3 / 2;
  }

  .production-intro h2,
  .contact-aside {
    position: static;
  }

  .production-band {
    grid-template-columns: 1fr;
  }

  .production-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .production-band div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 78px;
  }

  .announcement .container {
    min-height: 42px;
    font-size: 0.72rem;
  }

  .main-nav {
    top: calc(42px + var(--header-height));
  }

  .hero-grid {
    padding-block: 70px 86px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero-meta {
    display: grid;
    gap: 14px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-frame {
    inset: 2% 0 12% 5%;
    border-width: 7px;
  }

  .hero-float {
    width: 45%;
    border-width: 5px;
  }

  .hero-stamp {
    top: 2%;
    right: -2%;
    width: 92px;
    padding: 12px;
    font-size: 0.55rem;
  }

  .intro-stats,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .principle {
    grid-template-columns: 44px 1fr;
    gap: 17px;
    padding: 23px;
  }

  .principle-number {
    width: 44px;
    height: 44px;
  }

  .service-content,
  .team-card-content {
    padding: 26px 23px 28px;
  }

  .jobs-card {
    border-radius: var(--radius-md);
  }

  .jobs-media img {
    aspect-ratio: 4 / 3;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }

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

  .page-hero {
    padding-block: 86px 100px;
  }

  .page-hero h1 {
    font-size: clamp(2.75rem, 12.8vw, 4.5rem);
    overflow-wrap: break-word;
  }

  .team-section-title {
    display: grid;
    align-items: start;
  }

  .format-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-form-wrap {
    padding: 30px 22px;
    border-radius: var(--radius-md);
  }

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

  .field--full {
    grid-column: auto;
  }

  .form-footer {
    display: grid;
  }

  .form-footer .button {
    width: 100%;
    grid-row: 1;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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