:root {
  --bg: #080b0d;
  --bg-soft: #10181a;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --paper: #f4f0e6;
  --paper-soft: #fffaf0;
  --ink: #fff9ed;
  --text: #dce5df;
  --muted: #9aa8a2;
  --dark: #111719;
  --dark-muted: #56615f;
  --line: rgba(255, 249, 237, 0.16);
  --line-dark: rgba(17, 23, 25, 0.13);
  --accent: #f4792b;
  --accent-2: #1fa0a8;
  --accent-3: #e4ed7a;
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 42px;
  --max: 1200px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 22px 60px rgba(17, 23, 25, 0.14);
  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(135deg, rgba(31, 160, 168, 0.13) 0 16%, transparent 16% 100%),
    linear-gradient(315deg, rgba(244, 121, 43, 0.13) 0 13%, transparent 13% 100%),
    var(--bg);
  background-attachment: fixed;
  background-size: 56px 56px, 56px 56px, auto, auto, auto;
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

::selection {
  color: #111719;
  background: var(--accent-3);
}

.skip-nav {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #111719;
  background: var(--accent-3);
  border-radius: 999px;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 12px clamp(16px, 4vw, 42px);
  color: var(--ink);
  background: rgba(8, 11, 13, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fffaf0;
  background:
    linear-gradient(135deg, rgba(31, 160, 168, 0.95), rgba(244, 121, 43, 0.95)),
    #172123;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 20px;
  box-shadow: inset 0 -16px 22px rgba(0, 0, 0, 0.18);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--ink);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.brand-copy small {
  max-width: 230px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: #c3cec9;
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.phone {
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  overflow: hidden;
  color: #111719;
  background: linear-gradient(135deg, var(--accent-3), #ffd66e 48%, var(--accent));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(244, 121, 43, 0.2);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    filter 180ms var(--ease);
}

.button::after {
  position: absolute;
  inset: -9px;
  z-index: -1;
  content: "";
  background: rgba(244, 121, 43, 0.18);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.86);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 24px 54px rgba(244, 121, 43, 0.3);
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  animation: pulse-ring 1.35s var(--ease) infinite;
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  color: var(--ink);
  background: #111719;
  box-shadow: 0 18px 42px rgba(17, 23, 25, 0.22);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
}

main {
  overflow: hidden;
}

section {
  padding: 76px 0;
}

.container,
.hero-grid,
.hero-metrics,
.section-head,
.split-head,
.catalog-layout,
.service-board,
.production-wrap,
.request-section,
.proposal-grid,
.budget-callout,
.site-footer,
.page-hero-grid,
.category-grid,
.product-list,
.service-grid,
.process-grid,
.project-page-grid,
.contact-grid,
.cta-band,
.media-row,
.offer-grid {
  width: min(var(--max), calc(100% - 36px));
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--accent-3);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Unbounded, Manrope, sans-serif;
  font-weight: 800;
  line-height: 1.04;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: 46px;
}

h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: 34px;
}

h3 {
  font-size: 23px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  isolation: isolate;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(8, 11, 13, 0.95) 0%, rgba(8, 11, 13, 0.74) 45%, rgba(8, 11, 13, 0.32) 100%),
    linear-gradient(0deg, rgba(8, 11, 13, 0.92) 0%, rgba(8, 11, 13, 0.22) 55%, rgba(8, 11, 13, 0.68) 100%),
    url("assets/hero-facade.png") center / cover no-repeat;
  filter: saturate(1.04) contrast(1.05);
  transform-origin: center;
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero::before,
.page-hero::before,
.cta-band::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 16%, rgba(228, 237, 122, 0.07) 16% 17%, transparent 17% 62%, rgba(31, 160, 168, 0.1) 62% 63%, transparent 63% 100%),
    repeating-linear-gradient(-12deg, transparent 0 34px, rgba(255, 255, 255, 0.036) 35px 36px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  min-height: calc(100svh - 188px);
  padding-top: 74px;
}

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

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-kicker span {
  display: grid;
  place-items: center;
  width: 86px;
  min-height: 78px;
  padding: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: #dbe5df;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(12, 20, 22, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.beam-card::after {
  position: absolute;
  inset: 0;
  padding: 1px;
  pointer-events: none;
  content: "";
  background: conic-gradient(from var(--beam-angle), transparent 0deg, transparent 92deg, rgba(228, 237, 122, 0.88) 112deg, rgba(244, 121, 43, 0.86) 126deg, transparent 150deg, transparent 360deg);
  border-radius: inherit;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: beam-spin 8s linear infinite;
}

@property --beam-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.status-line {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.status-line span {
  width: 10px;
  height: 10px;
  background: #3bd28f;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(59, 210, 143, 0.82);
}

.status-line b {
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt,
.direction-card span,
.proposal-card span,
.project-card span,
.service-list span,
.process-rail span,
.product-row > span,
.metric strong {
  color: var(--accent-3);
  font-family: Unbounded, Manrope, sans-serif;
  font-weight: 800;
  line-height: 1;
}

.spec-list dt {
  font-size: 24px;
}

.spec-list dd {
  display: grid;
  gap: 5px;
  margin: 0;
}

.spec-list dd strong {
  color: var(--ink);
  font-weight: 900;
}

.spec-list dd span {
  color: var(--muted);
  font-size: 14px;
}

.panel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--accent-3);
  font-weight: 900;
}

.panel-link::after {
  content: "->";
}

.capability-marquee {
  display: flex;
  gap: 16px;
  width: 100%;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 11, 13, 0.72);
  backdrop-filter: blur(12px);
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  min-width: max-content;
  animation: marquee-x 34s linear infinite;
}

.marquee-track span,
.tag-cloud a,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  margin-top: 24px;
  background: rgba(8, 11, 13, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.hero-metrics div,
.metric {
  min-width: 0;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.hero-metrics div:last-child {
  border-bottom: 0;
}

.hero-metrics strong,
.metric strong {
  display: block;
  font-size: 40px;
}

.hero-metrics span,
.metric span {
  display: block;
  max-width: 280px;
  color: var(--muted);
  font-size: 14px;
}

.surface-light,
.intro-band,
.services-section,
.projects-section,
.proposal-section {
  color: #172022;
  background:
    linear-gradient(90deg, rgba(17, 23, 25, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(17, 23, 25, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(31, 160, 168, 0.08), transparent 34%),
    var(--paper);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.surface-light h1,
.surface-light h2,
.surface-light h3,
.intro-band h2,
.intro-band h3,
.services-section h2,
.services-section h3,
.projects-section h2,
.projects-section h3,
.proposal-section h2,
.proposal-section h3 {
  color: #111719;
}

.surface-light .eyebrow,
.intro-band .eyebrow,
.services-section .eyebrow,
.projects-section .eyebrow,
.proposal-section .eyebrow {
  color: #b84f14;
}

.section-head,
.split-head {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.section-head > p:last-child,
.split-head > p,
.page-hero-copy > p,
.request-copy p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.surface-light .section-head > p:last-child,
.surface-light .split-head > p,
.intro-band .section-head > p:last-child,
.services-section .split-head > p,
.projects-section .section-head > p:last-child,
.proposal-section .section-head > p:last-child {
  color: #52605e;
}

.direction-grid,
.category-grid,
.service-grid,
.project-page-grid,
.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.direction-card,
.category-card,
.service-card,
.proposal-card,
.project-card,
.contact-card,
.map-card,
.product-row,
.media-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.74);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease);
}

.direction-card {
  min-height: 255px;
  padding: 26px;
}

.direction-card::before,
.category-card::before,
.service-card::before,
.proposal-card::before,
.contact-card::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  content: "";
  background:
    linear-gradient(90deg, rgba(31, 160, 168, 0.42) 0 48%, transparent 48% 100%),
    linear-gradient(rgba(244, 121, 43, 0.42) 0 48%, transparent 48% 100%);
  border-radius: 18px;
  opacity: 0.65;
}

.direction-card:hover,
.category-card:hover,
.service-card:hover,
.project-card:hover,
.proposal-card:hover,
.product-row:hover {
  background: var(--paper-soft);
  border-color: rgba(244, 121, 43, 0.36);
  box-shadow: 0 26px 70px rgba(17, 23, 25, 0.18);
  transform: translateY(-5px);
}

.direction-card span,
.proposal-card span,
.project-card span,
.service-list span,
.product-row > span {
  color: #b84f14;
  font-size: 22px;
}

.direction-card h3,
.proposal-card h3,
.project-card h3,
.service-card h3,
.category-card h3 {
  margin: 40px 0 12px;
}

.direction-card p,
.proposal-card p,
.project-card p,
.service-card p,
.category-card p,
.product-row p {
  margin-bottom: 0;
  color: #52605e;
}

.catalog-section,
.production-section,
.request-section,
.surface-dark {
  position: relative;
  background: rgba(8, 11, 13, 0.9);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.visual-tile,
.wide-visual {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.catalog-groups {
  display: grid;
  gap: 14px;
}

.catalog-group {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(16, 24, 26, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalog-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.catalog-group summary::-webkit-details-marker {
  display: none;
}

.catalog-group summary span {
  color: var(--ink);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.catalog-group summary b {
  color: var(--accent-3);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.catalog-group[open] summary {
  border-bottom: 1px solid var(--line);
}

.catalog-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 20px 22px;
}

.tag-cloud a {
  transition:
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    transform 180ms var(--ease);
}

.tag-cloud a:hover,
.tag-cloud a:focus-visible {
  background: rgba(244, 121, 43, 0.18);
  border-color: rgba(244, 121, 43, 0.7);
  transform: translateY(-1px);
}

.service-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.service-feature {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  color: var(--ink);
  background: #111719;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(17, 24, 29, 0.22);
}

.service-feature img,
.page-hero-media img,
.media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature::after,
.page-hero-media::after,
.media-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8, 11, 13, 0.92), rgba(8, 11, 13, 0.12));
}

.service-feature > div {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 28px;
}

.service-feature h3 {
  max-width: 680px;
  margin: 12px 0 14px;
  font-size: 34px;
}

.service-feature p {
  max-width: 580px;
  margin-bottom: 0;
  color: #dbe5df;
  font-size: 17px;
}

.label {
  display: inline-flex;
  padding: 8px 12px;
  color: #111719;
  background: var(--accent-3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list a {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  min-height: 146px;
  overflow: hidden;
  color: #14191d;
  background: var(--paper-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.service-list a img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.service-list a > div {
  min-width: 0;
  padding: 0 18px 20px;
}

.service-list a > span {
  padding: 0 18px;
}

.service-list a:hover,
.service-list a:focus-visible {
  box-shadow: 0 22px 52px rgba(17, 24, 29, 0.18);
  transform: translateY(-3px);
}

.service-list strong {
  display: block;
  color: #14191d;
  font-size: 21px;
  line-height: 1.14;
}

.service-list small {
  display: block;
  margin-top: 6px;
  color: #627070;
  font-size: 14px;
}

.production-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.production-copy p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.process-rail,
.process-grid {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-rail li,
.process-grid li {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-rail span,
.process-grid span {
  font-size: 28px;
}

.process-rail strong,
.process-grid strong {
  color: var(--ink);
  font-size: 19px;
}

.process-rail p,
.process-grid p {
  margin: 0;
  color: var(--muted);
}

.wide-visual {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.wide-visual img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.project-grid,
.proposal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.project-card {
  color: #151a1d;
  background: var(--paper-soft);
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.project-card div {
  padding: 22px;
}

.project-card span {
  display: block;
  margin-bottom: 12px;
  color: #b84f14;
  font-size: 15px;
}

.project-card h3 {
  margin: 0 0 10px;
}

.request-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(16, 24, 26, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form label > span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(8, 11, 13, 0.64);
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: 0;
}

.request-form input,
.request-form select {
  min-height: 54px;
  padding: 0 15px;
}

.request-form textarea {
  min-height: 126px;
  padding: 14px 15px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--accent-3);
  box-shadow: 0 0 0 4px rgba(228, 237, 122, 0.14);
}

.file-field input {
  padding-top: 14px;
}

.file-field small,
.form-note {
  color: var(--muted);
  font-size: 13px;
}

.form-note {
  margin: 0;
}

.proposal-card {
  min-height: 300px;
  padding: 26px;
}

.proposal-card strong {
  display: inline-flex;
  margin-top: 26px;
  padding: 9px 13px;
  color: #111719;
  background: rgba(244, 121, 43, 0.18);
  border: 1px solid rgba(244, 121, 43, 0.36);
  border-radius: 999px;
  font-size: 14px;
}

.budget-callout,
.cta-band {
  position: relative;
  display: grid;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  margin-top: 18px;
  padding: 26px;
  color: var(--ink);
  background:
    linear-gradient(105deg, rgba(31, 160, 168, 0.18), transparent 45%),
    linear-gradient(285deg, rgba(244, 121, 43, 0.16), transparent 44%),
    #111719;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.budget-callout p,
.cta-band p {
  margin: 0;
  color: var(--accent-3);
  font-weight: 900;
  text-transform: uppercase;
}

.budget-callout strong,
.cta-band strong {
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 30px;
  line-height: 1.08;
}

.budget-callout span,
.cta-band span {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  padding: 44px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 580px;
  margin: 18px 0 0;
}

.site-footer address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.site-footer address a {
  color: var(--ink);
  font-weight: 900;
}

.footer-brand .brand-mark {
  width: 48px;
  height: 48px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  padding: 72px 0 52px;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.crumbs a {
  color: var(--accent-3);
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero-media,
.media-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.page-hero-media > div,
.media-card > div {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 24px;
}

.category-card,
.service-card {
  padding: 24px;
}

.category-card img,
.service-card img {
  width: 100%;
  height: 210px;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 22px;
}

.product-list {
  display: grid;
  gap: 12px;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 22px;
}

.product-row > span {
  color: #b84f14;
  font-size: 19px;
}

.product-row strong {
  color: #111719;
  font-size: 20px;
}

.product-row p {
  color: #52605e;
}

.product-row .pill-list,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-row .pill {
  color: #111719;
  background: rgba(17, 23, 25, 0.06);
  border-color: rgba(17, 23, 25, 0.1);
}

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

.surface-light .process-grid li {
  color: #172022;
  background: rgba(255, 250, 240, 0.75);
  border-color: var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.surface-light .process-grid strong {
  color: #111719;
}

.surface-light .process-grid p {
  color: #52605e;
}

.surface-light .process-grid span {
  color: #b84f14;
}

.project-page-grid {
  margin-top: 24px;
}

.media-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.media-card {
  display: grid;
  min-height: 390px;
}

.media-card h3,
.media-card p {
  position: relative;
  z-index: 1;
}

.project-page-grid {
  grid-template-columns: 1fr;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-card,
.map-card {
  padding: 24px;
}

.contact-card {
  color: #111719;
  background: var(--paper-soft);
}

.contact-card h3 {
  margin-top: 28px;
  color: #111719;
}

.contact-card a {
  display: block;
  color: #111719;
  font-size: 22px;
  font-weight: 900;
}

.map-card {
  min-height: 430px;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(31, 160, 168, 0.18), transparent 45%),
    #111719;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.map-card p {
  max-width: 440px;
  color: var(--muted);
}

.map-pin {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin: 50px auto 0;
  color: #111719;
  background: var(--accent-3);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(228, 237, 122, 0.12);
  font-weight: 900;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
}

:focus-visible {
  outline: 3px solid rgba(228, 237, 122, 0.86);
  outline-offset: 3px;
}

@keyframes pulse-ring {
  0% {
    opacity: 0.55;
    transform: scale(0.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes beam-spin {
  to {
    --beam-angle: 360deg;
  }
}

@keyframes marquee-x {
  to {
    transform: translateX(calc(-100% - 16px));
  }
}

@keyframes hero-drift {
  to {
    transform: scale(1.04) translate3d(1.2%, -0.8%, 0);
  }
}

@media (min-width: 740px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .direction-grid,
  .category-grid,
  .service-grid,
  .project-grid,
  .proposal-grid,
  .project-page-grid,
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-list a {
    grid-template-columns: 132px 42px 1fr;
    padding: 0 18px 0 0;
  }

  .service-list a img {
    width: 132px;
    height: 100%;
    min-height: 150px;
  }

  .service-list a > span,
  .service-list a > div {
    padding: 0;
  }

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

  .product-row {
    grid-template-columns: 70px minmax(220px, 0.82fr) 1fr;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  }

  .budget-callout,
  .cta-band {
    grid-template-columns: 180px 1fr auto;
  }
}

@media (min-width: 980px) {
  section {
    padding: 104px 0;
  }

  h1 {
    font-size: 78px;
  }

  h2 {
    font-size: 56px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    min-height: calc(100svh - 192px);
    padding-top: 56px;
  }

  .section-head,
  .split-head {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    align-items: end;
  }

  .section-head .eyebrow,
  .split-head .eyebrow {
    grid-column: 1 / -1;
  }

  .direction-grid,
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .catalog-layout {
    grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1fr);
  }

  .visual-tile {
    position: sticky;
    top: 96px;
  }

  .service-board {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  }

  .production-wrap {
    grid-template-columns: minmax(290px, 0.48fr) minmax(0, 1fr);
  }

  .production-copy {
    position: sticky;
    top: 104px;
    align-self: start;
  }

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

  .request-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  }

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    position: fixed;
    inset: 82px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(16, 24, 26, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-open .main-nav {
    display: flex;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-button {
    display: block;
  }
}

@media (max-width: 739px) {
  .site-header {
    gap: 12px;
    padding: 11px 14px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 18px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small,
  .phone,
  .header-actions .button {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 21px;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-kicker span {
    width: 76px;
    min-height: 72px;
    border-radius: 22px;
    font-size: 11px;
  }

  .hero-actions .button,
  .request-form .button {
    width: 100%;
  }

  .catalog-group summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-feature {
    min-height: 520px;
    border-radius: var(--radius);
  }

  .page-hero-media,
  .media-card {
    min-height: 280px;
  }

  .site-footer address {
    text-align: left;
  }
}

@media (min-width: 1121px) {
  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-footer address {
    text-align: right;
  }
}

/* Polish pass after visual QA screenshots */
section,
.catalog-example-grid,
.service-examples,
.budget-callout,
.project-page-grid {
  scroll-margin-top: 112px;
}

.hero-signal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 100%;
  padding: 7px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-signal span {
  display: grid;
  gap: 2px;
  min-width: 118px;
  padding: 10px 16px;
  color: var(--ink);
  background: rgba(8, 11, 13, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.hero-signal b {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-signal small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.production-copy h2 {
  max-width: 100%;
  text-wrap: balance;
}

.hero-actions {
  align-items: center;
}

.capability-marquee {
  margin-top: 18px;
}

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

.production-copy {
  position: static;
  max-width: 980px;
}

.production-copy h2 {
  max-width: 940px;
}

.process-rail {
  grid-template-columns: 1fr;
}

.process-rail li {
  align-content: start;
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
}

.budget-callout {
  grid-template-columns: 1fr;
  align-items: stretch;
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
}

.budget-label {
  display: grid;
  align-content: center;
  gap: 6px;
}

.budget-label p {
  margin: 0;
  color: var(--accent-3);
  font-weight: 900;
  text-transform: uppercase;
}

.budget-label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.budget-price {
  display: grid;
  gap: 8px;
}

.budget-price strong {
  color: var(--ink);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 30px;
  line-height: 1.05;
}

.budget-price span {
  color: #c4cfca;
}

.budget-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: #dbe5df;
  list-style: none;
}

.budget-list li {
  position: relative;
  padding-left: 20px;
}

.budget-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--accent-3);
  border-radius: 50%;
}

.catalog-example-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: min(var(--max), calc(100% - 36px));
  margin: 28px auto 0;
}

.catalog-item {
  overflow: hidden;
  color: #111719;
  background: var(--paper-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.catalog-item:hover {
  box-shadow: 0 26px 70px rgba(17, 23, 25, 0.18);
  transform: translateY(-4px);
}

.catalog-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.catalog-item-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.catalog-item h3 {
  margin: 0;
  color: #111719;
  font-size: 22px;
}

.catalog-item p {
  margin: 0;
  color: #52605e;
}

.item-code {
  justify-self: start;
  padding: 7px 11px;
  color: #111719;
  background: rgba(228, 237, 122, 0.7);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.catalog-item dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.catalog-item dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-top: 1px solid rgba(17, 23, 25, 0.1);
}

.catalog-item dt {
  color: #6d7774;
  font-weight: 800;
}

.catalog-item dd {
  margin: 0;
  color: #111719;
  font-weight: 900;
  text-align: right;
}

.product-row {
  background: var(--paper-soft);
}

.product-row .pill,
.catalog-item .pill {
  color: #111719;
  background: rgba(17, 23, 25, 0.055);
  border-color: rgba(17, 23, 25, 0.12);
  font-size: 12px;
  text-transform: none;
}

.mini-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 18px;
  color: #36413f;
  font-size: 14px;
  font-weight: 750;
}

.mini-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: #b84f14;
  border-radius: 50%;
}

.service-examples {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(var(--max), calc(100% - 36px));
  margin: 28px auto 0;
}

.service-examples article {
  padding: 22px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(31, 160, 168, 0.18), transparent 46%),
    rgba(17, 23, 25, 0.94);
  border: 1px solid rgba(255, 249, 237, 0.15);
  border-radius: var(--radius);
}

.service-examples span {
  color: var(--accent-3);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-examples strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 20px;
}

.service-examples p {
  margin: 0;
  color: #c6d0cb;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0 0 24px;
}

.gallery-toolbar span {
  display: inline-flex;
  padding: 10px 14px;
  color: #111719;
  background: rgba(17, 23, 25, 0.06);
  border: 1px solid rgba(17, 23, 25, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.project-page-grid {
  gap: 18px;
  margin-top: 0;
}

.project-card small {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 11px;
  color: #111719;
  background: rgba(228, 237, 122, 0.55);
  border-radius: 999px;
  font-weight: 900;
}

.surface-light .process-grid {
  align-items: stretch;
}

.surface-light .process-grid li {
  min-height: 210px;
}

@media (min-width: 740px) {
  .catalog-example-grid,
  .service-examples {
    grid-template-columns: repeat(3, 1fr);
  }

  .budget-callout {
    grid-template-columns: minmax(180px, 0.42fr) minmax(260px, 0.9fr);
  }

  .budget-list,
  .budget-callout .button {
    grid-column: 1 / -1;
  }

  .budget-callout .button {
    justify-self: start;
  }
}

@media (min-width: 980px) {
  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 46px;
  }

  .hero h1 {
    max-width: 780px;
    font-size: 70px;
  }

  .page-hero h1 {
    font-size: 56px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.62fr);
    gap: 44px;
    align-items: center;
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 34px;
  }

  .hero-panel {
    align-self: end;
    margin-bottom: 8px;
  }

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

  .production-copy {
    position: static;
  }

  .production-copy h2 {
    font-size: 44px;
  }

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

  .wide-visual {
    margin-top: 18px;
  }

  .budget-callout {
    grid-template-columns: minmax(170px, 0.32fr) minmax(310px, 0.62fr) minmax(360px, 1fr) auto;
  }

  .budget-list,
  .budget-callout .button {
    grid-column: auto;
  }

  .budget-price strong {
    font-size: 36px;
    white-space: nowrap;
  }

  .project-page-grid .project-card:first-child {
    grid-column: span 2;
  }

  .project-page-grid .project-card:first-child img {
    aspect-ratio: 2 / 1;
  }
}

@media (max-width: 739px) {
  .hero-signal {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 9px;
    overflow-x: auto;
    border-radius: 24px;
  }

  .hero-signal span {
    min-width: 126px;
  }

  .budget-price strong {
    font-size: 25px;
  }

  .catalog-item dl div {
    display: grid;
    gap: 2px;
  }

  .catalog-item dd {
    text-align: left;
  }
}

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

  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}
