:root {
  --sand: #d6bb90;
  --sand-2: #bfa77a;
  --sand-dark: #8a735d;
  --ink: #0d141a;
  --charcoal: #1d1e20;
  --charcoal-2: #3e3e3e;
  --text: #f8f4ec;
  --muted: rgba(248, 244, 236, .72);
  --line: rgba(209, 188, 148, .32);
  --line-strong: rgba(209, 188, 148, .66);
  --max: 1356px;
  --header-h: 88px;
  --radius: 10px;
  --pill: 999px;
  --shadow: 0 28px 80px rgba(0, 0, 0, .26);
}

@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 2%, rgba(209, 188, 148, .22), transparent 28rem),
    linear-gradient(180deg, #081015 0%, var(--ink) 34rem, #080d11 100%);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

main {
  overflow-x: clip;
  overflow-y: visible;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 68px);
  padding: 6px clamp(18px, 4vw, 56px) 6px 20px;
  background: var(--sand);
  color: var(--ink);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: clamp(56px, 5vw, 76px);
  max-width: min(420px, 48vw);
  object-fit: contain;
  border-radius: 12px;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.8vw, 58px);
  font-size: clamp(15px, 1.15vw, 18px);
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

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

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(13, 20, 26, .22);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: 380px;
  position: relative;
  border-bottom: 1px solid rgba(209, 188, 148, .22);
  background:
    radial-gradient(ellipse at 43% 82%, rgba(220, 181, 119, .28), transparent 24rem),
    radial-gradient(ellipse at 36% 18%, rgba(92, 112, 126, .22), transparent 28rem),
    linear-gradient(90deg, #071018 0%, #081118 45%, #11171b 100%);
}

.hero-home {
  height: 420svh;
  min-height: 2300px;
  overflow: visible;
}

.hero-sequence-stage {
  position: sticky;
  top: var(--header-h);
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 48.5%) minmax(0, 51.5%);
  align-items: stretch;
  overflow: hidden;
}

.hero-sequence-canvas,
.hero-sequence-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #05090c;
}

.hero-sequence-canvas {
  opacity: 0;
  transition: opacity 260ms ease;
}

.hero-sequence-canvas.is-ready {
  opacity: 1;
}

.hero-sequence-canvas.is-ready + .hero-sequence-poster {
  opacity: 0;
}

.hero-sequence-poster {
  transition: opacity 260ms ease;
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-sequence-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 14, 19, .98) 0%, rgba(6, 14, 19, .86) 34%, rgba(6, 14, 19, .46) 55%, rgba(6, 14, 19, .14) 78%),
    linear-gradient(180deg, rgba(6, 14, 19, .34) 0%, rgba(6, 14, 19, .04) 42%, rgba(6, 14, 19, .46) 100%),
    radial-gradient(ellipse at 41% 76%, rgba(219, 177, 113, .30), transparent 23rem),
    radial-gradient(ellipse at 42% 28%, rgba(80, 97, 108, .22), transparent 25rem);
  pointer-events: none;
  z-index: 2;
}

.hero-line {
  fill: none;
  stroke: #d6bb90;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.hero-line-main {
  stroke-width: 1.6px;
  opacity: .45;
}

.hero-line-soft {
  stroke-width: 1px;
  opacity: .16;
}

.hero-line-low {
  stroke-width: 1px;
  opacity: .16;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: clamp(38px, 7vw, 96px) 0 clamp(38px, 7vw, 96px) clamp(24px, 6.4vw, 96px);
  max-width: 720px;
  align-self: center;
}

.hero h1 {
  font-size: clamp(54px, 5.2vw, 80px);
  line-height: .96;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--sand);
}

.hero p {
  max-width: 610px;
  margin-top: 20px;
  color: var(--text);
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.35;
}

.hero-scroll-meter {
  position: absolute;
  right: clamp(26px, 7vw, 112px);
  bottom: clamp(28px, 5vw, 68px);
  z-index: 3;
  width: min(280px, 24vw);
  color: var(--sand);
}

.hero-scroll-meter span {
  display: block;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1;
}

.hero-scroll-meter i {
  display: block;
  height: 2px;
  margin-top: 14px;
  overflow: hidden;
  background: rgba(209, 188, 148, .32);
}

.hero-scroll-meter b {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(.01);
  transform-origin: left center;
  background: var(--sand);
}

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

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 30px;
  border-radius: var(--pill);
  text-decoration: none;
  border: 1px solid var(--line-strong);
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #e3cda4, var(--sand));
  color: var(--ink);
  border-color: transparent;
}

.btn-ghost {
  background: rgba(13, 20, 26, .22);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--sand);
  background: rgba(209, 188, 148, .08);
}

.intro-band,
.section,
.contact-strip,
.footer-grid {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.intro-band {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 48px;
  min-height: 218px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(209, 188, 148, .22);
}

.about-panel h2,
.section h2,
.contact-info h2,
.login-card h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 500;
}

.about-panel h2 {
  font-size: 28px;
}

.about-panel h2::after,
.kicker::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 8px;
  background: var(--sand);
}

.about-panel p,
.section p,
.contact-info p,
.login-card p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.about-panel p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.45;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.service-tile {
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 22px;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.service-tile svg,
.service-card svg {
  width: 58px;
  height: 58px;
  color: var(--sand);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-tile span {
  font-size: 16px;
  line-height: 1.25;
}

.section {
  padding: clamp(58px, 8vw, 108px) 0;
}

.section-tight-top {
  padding-top: clamp(26px, 3vw, 42px);
}

.section-split,
.project-detail,
.contact-layout {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.section-split {
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  padding: 12px 0 6px;
}

.section-split h2 {
  font-size: 30px;
  line-height: 1.12;
}

.section-split .section-copy p:not(.kicker) {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.35;
}

.section-split .section-copy .btn {
  min-height: 44px;
  margin-top: 18px;
  padding: 12px 26px;
}

.section-split .kicker {
  margin-top: 0;
  margin-bottom: 0;
}

.section-split .image-card img {
  aspect-ratio: 4.7 / 1;
}

.section-split .image-card figcaption {
  display: none;
}

.kicker {
  margin-bottom: 16px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-copy p {
  margin-top: 18px;
  max-width: 500px;
  font-size: 18px;
}

.section-copy .btn {
  margin-top: 28px;
}

.image-card,
.project-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
}

.image-card img,
.project-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.image-card figcaption {
  padding: 16px 20px;
  color: var(--sand);
}

.page-hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 110px) 0 clamp(42px, 7vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .62fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.page-hero-compact {
  display: block;
  max-width: 1120px;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  margin-right: auto;
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(32px, 5vw, 56px);
}

.page-hero h1,
.legal-hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: .98;
  font-weight: 500;
}

.page-hero-compact h1 {
  max-width: 1120px;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.02;
  text-wrap: balance;
}

.page-hero p {
  max-width: 720px;
  margin-top: 20px;
  font-size: clamp(19px, 2vw, 25px);
  color: var(--muted);
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-title-compact {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px) 0 0;
}

.page-title-compact h1 {
  font-size: clamp(40px, 5.8vw, 82px);
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.service-card {
  display: block;
  min-height: 288px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(209, 188, 148, .11), rgba(255, 255, 255, .032));
  transform: translateY(-2px);
}

.service-card h3 {
  margin-top: 22px;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 500;
}

.service-card p {
  margin-top: 14px;
}

.process-band {
  display: grid;
  grid-template-columns: .34fr .66fr;
  gap: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.process-list span {
  color: var(--sand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.process-list strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
  font-weight: 500;
}

.process-list p {
  margin-top: 10px;
}

.service-detail-hero {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, .46fr) minmax(0, .54fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 0 clamp(34px, 5vw, 66px);
}

.service-detail-copy h1 {
  max-width: 100%;
  font-size: clamp(48px, 6.2vw, 94px);
  line-height: .98;
  font-weight: 500;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-detail-copy p:not(.kicker) {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.45;
}

.service-detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-facts li {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  color: var(--sand);
  background: rgba(209, 188, 148, .08);
  font-size: 14px;
  line-height: 1;
}

.service-detail-copy .actions {
  margin-top: 30px;
}

.service-detail-hero-media {
  margin: 0;
}

.service-detail-hero-media img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-focus-section {
  border-top: 1px solid var(--line);
}

.service-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-focus-card {
  min-height: 210px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
    rgba(13, 20, 26, .36);
}

.service-focus-card h3 {
  color: var(--sand);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.1;
  font-weight: 500;
}

.service-focus-card p {
  margin-top: 16px;
}

.service-work-section {
  padding-top: clamp(22px, 4vw, 58px);
}

.service-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.service-media-card {
  position: relative;
  display: block;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
}

.service-media-featured {
  grid-column: auto;
  grid-row: auto;
}

.service-media-open {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
}

.service-media-card img,
.service-media-card video {
  width: 100%;
  height: clamp(260px, 22vw, 340px);
  display: block;
  object-fit: cover;
  background: #05090c;
  transition: transform 220ms ease, filter 220ms ease;
}

.service-media-featured img,
.service-media-featured video {
  height: clamp(260px, 22vw, 340px);
  min-height: 0;
}

.service-media-open:hover img,
.service-media-open:focus-visible img {
  transform: scale(1.025);
  filter: brightness(.78);
}

.service-plan-section {
  padding-top: clamp(20px, 4vw, 54px);
  border-top: 1px solid var(--line);
}

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

.service-plan-card {
  display: grid;
  gap: 12px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(209, 188, 148, .1), rgba(255, 255, 255, .025)),
    rgba(13, 20, 26, .36);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.service-plan-card:hover,
.service-plan-card:focus-visible {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.service-plan-card span {
  width: max-content;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  color: var(--sand);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.service-plan-card strong {
  font-size: 22px;
  line-height: 1.12;
  font-weight: 500;
}

.service-plan-card small {
  color: var(--muted);
  font-size: 14px;
}

.project-detail {
  align-items: start;
}

.project-detail h3 {
  margin-top: 12px;
  color: var(--sand);
  font-size: 22px;
  font-weight: 500;
}

.project-detail p {
  margin-top: 18px;
  font-size: 18px;
}

.project-detail .btn {
  margin-top: 28px;
}

.project-image img {
  aspect-ratio: 4 / 3;
}

.projects-hero {
  max-width: 980px;
}

.projects-showcase {
  display: grid;
  gap: clamp(28px, 5vw, 58px);
}

.project-case {
  display: grid;
  grid-template-columns: minmax(260px, .38fr) minmax(0, .62fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .022)),
    rgba(13, 20, 26, .36);
}

.project-case:nth-child(even) .project-case-copy {
  order: 2;
}

.project-case-copy h2 {
  margin-top: 10px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  font-weight: 500;
}

.project-case-copy p:not(.kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.project-case-copy .btn {
  margin-top: 28px;
}

.project-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.project-facts li {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  color: var(--sand);
  background: rgba(209, 188, 148, .07);
  font-size: 14px;
  line-height: 1;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.project-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
}

.project-media-main {
  grid-column: 1 / -1;
}

.project-media-open {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
}

.project-media-video {
  min-height: 0;
}

.project-media img,
.project-media video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.project-media-video video {
  background: #05090c;
}

.project-media-main img,
.project-media-main video {
  height: clamp(330px, 34vw, 500px);
}

.project-media-open:hover img,
.project-media-open:hover video,
.project-media-open:focus-visible img,
.project-media-open:focus-visible video {
  transform: scale(1.025);
  filter: brightness(.78);
}

.project-media-cue {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  border: 1px solid rgba(209, 188, 148, .55);
  border-radius: var(--pill);
  background: rgba(13, 20, 26, .78);
  color: var(--sand);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-media-open:hover .project-media-cue,
.project-media-open:focus-visible .project-media-cue {
  opacity: 1;
  transform: translateY(0);
}

.project-media-expand {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(209, 188, 148, .62);
  border-radius: var(--pill);
  background: rgba(13, 20, 26, .82);
  color: var(--sand);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: zoom-in;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.project-media-expand:hover,
.project-media-expand:focus-visible {
  background: rgba(209, 188, 148, .16);
}

.contact-layout {
  align-items: start;
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.contact-info {
  padding: 30px 0;
}

.contact-info p {
  margin-top: 18px;
}

.contact-info dl {
  display: grid;
  gap: 20px;
  margin: 32px 0 0;
}

.contact-info dt {
  color: var(--sand);
  font-weight: 600;
}

.contact-info dd {
  margin: 6px 0 0;
  color: var(--text);
}

.jobs-openings {
  padding: 26px 0;
}

.jobs-openings h2 {
  color: var(--sand);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1;
  font-weight: 500;
}

.jobs-openings ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
}

.contact-form,
.login-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .03)),
    rgba(13, 20, 26, .68);
}

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

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--sand);
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
  outline: none;
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sand);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.jobs-form {
  box-shadow: var(--shadow);
}

.jobs-form-grid {
  align-items: stretch;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-row legend {
  width: 100%;
  margin-bottom: 2px;
  color: var(--sand);
  font-size: 14px;
  font-weight: 600;
}

.radio-row label {
  display: inline-flex;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.radio-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--sand);
}

.radio-row span {
  color: var(--muted);
  font-weight: 400;
}

.upload-field {
  min-height: 214px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  text-align: center;
}

.upload-field span {
  font-size: 16px;
}

.upload-field input {
  max-width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
}

.upload-field input::file-selector-button {
  margin-right: 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  background: rgba(209, 188, 148, .12);
  color: var(--text);
  padding: 10px 16px;
  font: inherit;
  cursor: pointer;
}

.upload-field small {
  color: var(--muted);
}

.jobs-submit {
  justify-self: center;
  min-width: 260px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.check-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--sand);
}

.check-row span {
  color: var(--muted);
  font-weight: 400;
}

em,
.standalone-error {
  color: #ffd2bd;
  font-style: normal;
  font-size: 14px;
}

.form-status {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.form-status-warning {
  color: var(--sand);
  background: rgba(209, 188, 148, .08);
}

.form-status-error {
  color: #ffd2bd;
  border-color: rgba(255, 210, 189, .45);
  background: rgba(123, 42, 18, .22);
}

.legal-page {
  background: #0d141a;
}

.legal-hero,
.legal-content {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-hero {
  padding: clamp(52px, 8vw, 96px) 0 32px;
}

.legal-content {
  padding: 0 0 96px;
}

.legal-content article,
.legal-facts {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
}

.legal-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: 22px;
  overflow: hidden;
}

.legal-facts div {
  padding: 20px;
  background: rgba(255, 255, 255, .025);
}

.legal-content article {
  padding: clamp(24px, 4vw, 42px);
}

.legal-content h2 {
  margin: 28px 0 10px;
  color: var(--sand);
  font-size: 22px;
  font-weight: 500;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.login-layout {
  display: grid;
  place-items: start center;
  min-height: 48svh;
}

.login-card {
  width: min(520px, 100%);
  display: grid;
  gap: 18px;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.contact-strip div {
  min-height: 58px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.contact-strip span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.contact-strip a:not(.btn),
.contact-strip p {
  margin-top: 6px;
  text-decoration: none;
  color: var(--text);
  font-size: 18px;
}

.site-footer {
  background: var(--charcoal-2);
  color: var(--sand);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, .8fr) auto;
  gap: 42px;
  align-items: start;
}

.footer-kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--sand);
}

.site-footer p,
.site-footer a {
  color: var(--sand);
  text-decoration: none;
}

.footer-links {
  display: grid;
  gap: 12px;
  font-weight: 600;
}

.copyright {
  width: min(var(--max), calc(100% - 48px));
  margin: 36px auto 0;
  color: rgba(209, 188, 148, .72);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 220;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .035)),
    rgba(13, 20, 26, .96);
  box-shadow: 0 24px 72px rgba(0, 0, 0, .42);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner strong {
  display: block;
  color: var(--sand);
  font-size: 17px;
  font-weight: 600;
}

.cookie-banner p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.cookie-banner-actions a {
  color: var(--sand);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.cookie-banner-actions a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-banner .btn {
  min-height: 44px;
  padding: 10px 20px;
  cursor: pointer;
}

.cookie-banner .btn-primary {
  border-color: transparent;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 9, 12, .86);
  cursor: zoom-out;
}

.media-lightbox-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100svh - 36px);
  display: grid;
  gap: 12px;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    rgba(13, 20, 26, .96);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .55);
}

.media-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(209, 188, 148, .55);
  border-radius: 50%;
  background: rgba(13, 20, 26, .82);
  color: var(--sand);
  font: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.media-lightbox-content {
  display: grid;
  place-items: center;
  min-height: 0;
}

.media-lightbox-content img,
.media-lightbox-content video {
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 150px);
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
}

.media-lightbox-content video {
  width: min(100%, 980px);
  background: #05090c;
}

.media-lightbox-caption {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 1100px) {
  .intro-band,
  .section-split,
  .service-detail-hero,
  .project-detail,
  .project-case,
  .contact-layout,
  .jobs-layout,
  .process-band {
    grid-template-columns: 1fr;
  }

  .project-case:nth-child(even) .project-case-copy {
    order: 0;
  }

  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-focus-grid,
  .service-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-media-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .service-media-featured img,
  .service-media-featured video {
    min-height: 0;
  }

  .contact-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 74px;
  }

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

  .brand img {
    width: min(245px, 68vw);
    height: auto;
    max-height: 54px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 18px 18px;
    background: var(--sand);
    border-top: 1px solid rgba(13, 20, 26, .16);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-lines {
    display: none;
  }

  .hero-home {
    height: 350svh;
    min-height: 2100px;
  }

  .hero-sequence-stage {
    top: var(--header-h);
    min-height: calc(100svh - var(--header-h));
    display: block;
  }

  .hero-sequence-stage::before {
    background:
      linear-gradient(180deg, rgba(8, 16, 21, .18) 0%, rgba(8, 16, 21, .42) 38%, rgba(8, 16, 21, .82) 76%, rgba(8, 16, 21, .94) 100%),
      radial-gradient(ellipse at 20% 28%, rgba(209, 188, 148, .22), transparent 28rem);
  }

  .hero-copy {
    min-height: calc(100svh - var(--header-h));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px 20px 34px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 74px);
  }

  .hero-scroll-meter {
    display: none;
  }

  .intro-band,
  .section,
  .service-detail-hero,
  .contact-strip,
  .footer-grid,
  .page-hero,
  .page-title-compact,
  .legal-hero,
  .legal-content {
    width: min(100% - 32px, var(--max));
  }

  .page-hero,
  .page-hero-compact {
    display: block;
    margin-inline: auto;
    padding-top: 48px;
  }

  .page-hero img {
    margin-top: 28px;
  }

  .page-title-compact h1 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .service-rail,
  .service-grid,
  .service-focus-grid,
  .service-media-grid,
  .process-list,
  .form-grid,
  .contact-strip,
  .footer-grid,
  .legal-facts {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .project-case {
    padding: 18px;
  }

  .project-media img,
  .project-media video {
    height: 155px;
  }

  .project-media-main img,
  .project-media-main video {
    height: clamp(240px, 64vw, 360px);
  }

  .project-media-cue {
    opacity: 1;
    transform: none;
  }

  .service-detail-copy h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .service-detail-copy .actions {
    align-items: stretch;
  }

  .service-detail-copy .btn {
    width: 100%;
  }

  .service-detail-hero-media img {
    aspect-ratio: 1 / 1;
  }

  .service-media-card img,
  .service-media-card video,
  .service-media-featured img,
  .service-media-featured video {
    height: clamp(260px, 70vw, 420px);
    min-height: 0;
  }

  .service-tile {
    min-height: 132px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .contact-strip .btn {
    width: 100%;
  }

  .footer-grid {
    gap: 28px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    padding: 18px;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-banner-actions .btn {
    flex: 1 1 140px;
  }
}

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