:root {
  --ink: #111719;
  --ink-soft: #253033;
  --paper: #f2f1ec;
  --white: #fff;
  --muted: #7c8587;
  --line: rgba(17, 23, 25, .14);
  --orange: #39709a;
  --orange-dark: #245779;
  --container: 1280px;
  --header-h: 88px;
  --radius: 3px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.scroll-progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: background .35s ease, color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(242, 241, 236, .94);
  box-shadow: 0 10px 40px rgba(17, 23, 25, .08);
  backdrop-filter: blur(16px);
}

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

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

.brand-logo {
  display: flex;
  width: 170px;
  height: 40px;
  align-items: center;
}

.brand-logo img {
  width: 100%;
  filter: invert(1);
}

.site-header.is-scrolled .brand-logo img {
  filter: none;
}

.main-nav {
  display: flex;
  gap: clamp(20px, 2.6vw, 42px);
  align-items: center;
}

.main-nav a {
  position: relative;
  padding: 33px 0 31px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .01em;
}

.main-nav a::after {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transition: width .25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

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

.header-phone {
  display: grid;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.header-phone span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .25s ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  height: max(760px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #171d1f;
}

.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/hero-industrial.jpg") center center / cover no-repeat;
  transform: scale(1.015);
  animation: heroReveal 1.6s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 14, 16, .92) 0%, rgba(9, 14, 16, .68) 37%, rgba(9, 14, 16, .16) 72%),
    linear-gradient(0deg, rgba(7, 12, 13, .58), transparent 55%);
}

.hero-grid {
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 60px;
  align-items: end;
  padding-top: 100px;
}

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

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

.hero-eyebrow {
  margin-bottom: 28px;
  animation: fadeUp .8s .25s both;
}

.hero h1 {
  max-width: 990px;
  font-size: clamp(58px, 7.1vw, 108px);
  font-weight: 760;
  line-height: .91;
  letter-spacing: -.067em;
  text-wrap: balance;
  animation: fadeUp .9s .35s both;
}

.hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .74);
  font-style: normal;
  font-weight: 630;
}

.hero-lead {
  max-width: 640px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
  animation: fadeUp .9s .47s both;
}

.hero-cta {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-top: 42px;
  animation: fadeUp .9s .58s both;
}

.button {
  display: inline-flex;
  min-height: 58px;
  gap: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .025em;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  cursor: pointer;
}

.button span {
  font-size: 20px;
  font-weight: 400;
}

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

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

.button-primary:hover {
  background: var(--orange-dark);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--orange);
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  font-weight: 750;
  border-bottom: 1px solid rgba(255, 255, 255, .42);
  padding-bottom: 5px;
}

.text-link span {
  color: var(--orange);
}

.hero-side {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .32);
  animation: fadeIn 1s .8s both;
}

.hero-index {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.hero-side p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.7;
  text-transform: uppercase;
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(243, 107, 33, .65);
  animation: pulse 2s infinite;
}

.hero-scroll span {
  margin-left: 9px;
  color: var(--orange);
}

.trust-strip {
  color: var(--white);
  background: var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  min-height: 190px;
}

.trust-grid > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 30px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.trust-grid > *:last-child {
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.trust-intro {
  gap: 22px;
}

.section-number {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.trust-intro p {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.trust-item {
  gap: 10px;
}

.trust-item strong {
  color: var(--white);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  letter-spacing: -.04em;
}

.trust-item span {
  max-width: 240px;
  color: rgba(255, 255, 255, .53);
  font-size: 12px;
  line-height: 1.65;
}

.section {
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 70px;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading .eyebrow {
  margin-bottom: 22px;
}

.section-heading h2,
.formwork-content h2,
.about-heading h2,
.contact-copy h2 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 720;
  line-height: .98;
  letter-spacing: -.06em;
}

.section-heading > p,
.formwork-content > p,
.contact-copy > p {
  color: #697174;
  font-size: 16px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  grid-column: span 2;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .22);
  transition: color .35s ease, background .35s ease, transform .35s ease;
  overflow: hidden;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: var(--ink);
  content: "";
  transition: height .4s cubic-bezier(.2, .75, .25, 1);
}

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

.service-card:hover {
  color: var(--white);
  transform: translateY(-5px);
}

.service-card:hover::before {
  height: 100%;
}

.service-card-featured {
  color: var(--white);
  background: var(--orange);
}

.service-card-featured::before {
  background: var(--orange-dark);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  font-size: 11px;
  font-weight: 800;
}

.service-arrow {
  font-size: 24px;
  transition: transform .25s ease;
}

.service-card:hover .service-arrow {
  transform: translate(4px, -4px);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.service-card h3 {
  margin-bottom: 17px;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.service-card p {
  max-width: 390px;
  color: #717a7c;
  font-size: 13px;
  line-height: 1.7;
  transition: color .35s ease;
}

.service-card:hover p,
.service-card-featured p {
  color: rgba(255, 255, 255, .7);
}

.formwork-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 780px;
  background: #deddd6;
}

.formwork-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.formwork-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.03);
  transition: transform .8s ease;
}

.formwork-visual:hover img {
  transform: scale(1.025);
}

.visual-label {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  min-width: 250px;
  padding: 24px 28px;
  color: var(--white);
  background: var(--orange);
}

.visual-label span {
  margin-bottom: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.visual-label strong {
  font-size: 18px;
}

.formwork-content {
  display: flex;
  max-width: 650px;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 7vw, 120px);
}

.formwork-content .eyebrow {
  margin-bottom: 25px;
}

.formwork-content h2 {
  margin-bottom: 32px;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 30px 0 40px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 2px;
  color: var(--orange);
  content: "✓";
}

.formwork-content .button {
  align-self: flex-start;
}

.why-section {
  background: #e8e7e1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-card {
  min-height: 310px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .2);
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.why-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--orange);
  transform: translateY(-4px);
}

.why-card > span {
  display: block;
  margin-bottom: 90px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  transition: color .3s ease;
}

.why-card:hover > span {
  color: rgba(255, 255, 255, .65);
}

.why-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.why-card p {
  max-width: 330px;
  color: #747c7e;
  font-size: 12px;
  line-height: 1.7;
  transition: color .3s ease;
}

.why-card:hover p {
  color: rgba(255, 255, 255, .75);
}

.projects {
  color: var(--white);
  background: #101416;
}

.section-heading-light > p {
  color: rgba(255, 255, 255, .52);
}

.project-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .9fr .45fr;
  min-height: 530px;
  border: 1px solid rgba(255, 255, 255, .14);
  overflow: hidden;
}

.project-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(243, 107, 33, .9), rgba(174, 61, 10, .95)),
    #d65613;
}

.project-art > span {
  position: relative;
  z-index: 2;
  color: transparent;
  font-size: clamp(180px, 28vw, 410px);
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 2px rgba(255, 255, 255, .22);
}

.art-circle {
  position: absolute;
  width: 430px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
}

.art-lines {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(500px) rotateX(60deg) scale(1.7);
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
}

.project-meta {
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin-bottom: 26px;
  font-size: clamp(29px, 3vw, 45px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.project-copy > p:not(.project-meta) {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  line-height: 1.75;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.project-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50px;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
}

.project-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px 26px;
  border-left: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .025);
}

.project-note span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.project-note strong {
  font-size: 14px;
  line-height: 1.7;
}

.projects-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.project-card {
  position: relative;
  min-height: 410px;
  padding: 38px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .025);
  overflow: hidden;
  transition: background .3s ease, transform .3s ease;
}

.project-card::after {
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  content: "";
}

.project-card:hover {
  z-index: 2;
  background: rgba(57, 112, 154, .16);
  transform: translateY(-4px);
}

.project-card-lead {
  background:
    linear-gradient(135deg, rgba(57, 112, 154, .92), rgba(36, 87, 121, .96)),
    var(--orange);
}

.project-card-index {
  display: block;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, .46);
  font-size: 11px;
  font-weight: 800;
}

.project-card .project-meta {
  min-height: 28px;
  margin-bottom: 16px;
}

.project-card-lead .project-meta {
  color: rgba(255, 255, 255, .72);
}

.project-card h3 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.project-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  max-width: 590px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.55;
  list-style: none;
}

.project-card li {
  position: relative;
  padding-left: 18px;
}

.project-card li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.project-card-lead li::before {
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.experience-accordion {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .03);
  transition: border-color .25s ease, background .25s ease;
}

.experience-accordion[open] {
  border-color: rgba(57, 112, 154, .52);
  background: rgba(57, 112, 154, .08);
}

.experience-summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto 46px;
  gap: 24px;
  align-items: center;
  min-height: 104px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}

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

.experience-summary-index {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}

.experience-summary-copy {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.experience-summary-copy > span {
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.experience-summary-copy strong {
  color: var(--white);
  font-size: clamp(21px, 2.1vw, 34px);
  line-height: 1.12;
  letter-spacing: -.035em;
  overflow-wrap: break-word;
}

.experience-summary-period {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .7);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  white-space: nowrap;
}

.experience-summary-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  transition: background .25s ease, transform .25s ease;
}

.experience-summary-toggle::before,
.experience-summary-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--white);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.experience-summary-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.experience-accordion[open] .experience-summary-toggle {
  background: var(--orange);
  transform: rotate(180deg);
}

.experience-accordion[open] .experience-summary-toggle::after {
  opacity: 0;
}

.experience-panel {
  padding: 0 16px 16px;
}

.experience-card {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr);
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .035);
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}

.experience-card:hover {
  border-color: rgba(57, 112, 154, .5);
  background: rgba(57, 112, 154, .12);
  transform: translateY(-4px);
}

.experience-card-lead {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  min-height: 520px;
}

.experience-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #1c2529;
}

.experience-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, .62)),
    linear-gradient(90deg, rgba(16, 20, 22, .18), transparent);
  content: "";
  pointer-events: none;
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04);
  transition: transform .7s ease, filter .7s ease;
}

.experience-card:hover .experience-media img {
  filter: saturate(1) contrast(1.07);
  transform: scale(1.035);
}

.experience-period {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--white);
  background: rgba(16, 20, 22, .66);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.experience-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: clamp(28px, 3vw, 44px);
}

.experience-body .project-meta {
  min-height: 0;
  margin-bottom: 14px;
  line-height: 1.45;
}

.experience-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
}

.experience-logo-card {
  display: flex;
  width: 118px;
  height: 58px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .92);
}

.experience-logo-card img {
  width: auto;
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.experience-body h3 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(24px, 2.35vw, 38px);
  line-height: 1.13;
  letter-spacing: -.035em;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.experience-card-lead .experience-body h3 {
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.experience-body > p:not(.project-meta) {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.75;
}

.experience-body ul {
  display: grid;
  gap: 10px;
  max-width: 720px;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  line-height: 1.55;
  list-style: none;
}

.experience-body li {
  position: relative;
  padding-left: 19px;
}

.experience-body li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.experience-gallery {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.experience-gallery > span {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.experience-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 10px;
  scrollbar-color: rgba(255, 255, 255, .28) transparent;
  scrollbar-width: thin;
}

.experience-thumbs::-webkit-scrollbar {
  height: 7px;
}

.experience-thumbs::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .06);
}

.experience-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .25);
}

.experience-thumbs a {
  position: relative;
  display: block;
  width: 118px;
  height: 82px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
}

.experience-thumbs a::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  content: "";
  transition: border-color .2s ease;
}

.experience-thumbs a:hover::after,
.experience-thumbs a:focus-visible::after {
  border-color: rgba(255, 255, 255, .65);
}

.experience-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.03);
  transition: filter .2s ease, transform .2s ease;
}

.experience-thumbs a:hover img,
.experience-thumbs a:focus-visible img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px;
  align-items: center;
  padding: 72px 32px 34px;
  background: rgba(5, 8, 10, .92);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  position: relative;
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 18px;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(100svh - 150px);
  border: 1px solid rgba(255, 255, 255, .16);
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .44);
}

.lightbox-caption {
  display: flex;
  width: min(100%, 1120px);
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lightbox-count {
  color: var(--orange);
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(57, 112, 154, .82);
  outline: none;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 33px;
  line-height: 1;
}

.lightbox-nav {
  width: 62px;
  height: 88px;
  justify-self: center;
  font-size: 52px;
  line-height: 1;
}

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

.lightbox-nav:disabled {
  opacity: .35;
  pointer-events: none;
}

.experience-placeholder {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(135deg, rgba(57, 112, 154, .96), rgba(36, 87, 121, .98));
}

.experience-placeholder span {
  color: transparent;
  font-size: clamp(86px, 12vw, 170px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.08em;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .28);
}

.experience-placeholder strong {
  max-width: 260px;
  color: var(--white);
  font-size: clamp(27px, 3.2vw, 44px);
  line-height: .98;
  letter-spacing: -.05em;
}

.partners-section {
  padding: 110px 0;
  overflow: hidden;
  background: var(--paper);
}

.partners-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 70px;
  align-items: end;
}

.partners-heading .eyebrow {
  margin-bottom: 20px;
}

.partners-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 720;
  line-height: .98;
  letter-spacing: -.06em;
}

.partners-heading > p {
  color: #697174;
  font-size: 15px;
  line-height: 1.75;
}

.partners-ticker {
  margin-top: 58px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  animation: partnersScroll 38s linear infinite;
  will-change: transform;
}

.partners-ticker:hover .partners-track {
  animation-play-state: paused;
}

.partners-set {
  display: flex;
  flex: none;
  gap: 18px;
  padding-right: 18px;
}

.partner-card {
  display: flex;
  width: 230px;
  height: 120px;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.partner-card img {
  width: auto;
  max-width: 82%;
  max-height: 62px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .62;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.partner-card:hover {
  z-index: 1;
  border-color: rgba(57, 112, 154, .35);
  box-shadow: 0 14px 34px rgba(17, 23, 25, .08);
  transform: translateY(-3px);
}

.partner-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

@keyframes partnersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: end;
}

.about-heading .eyebrow {
  margin-bottom: 24px;
}

.about-copy .lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 620;
  line-height: 1.45;
  letter-spacing: -.025em;
}

.about-copy > p:not(.lead) {
  color: #697174;
  font-size: 14px;
  line-height: 1.8;
}

.director-strip {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 8vw;
  align-items: end;
  margin-top: 90px;
  padding: 54px;
  color: var(--white);
  background: var(--ink);
}

.director-copy .eyebrow {
  margin-bottom: 22px;
}

.director-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.05em;
}

.director-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, .54);
  font-size: 13px;
  line-height: 1.75;
}

.director-contacts {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.director-contacts a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  font-size: 13px;
  font-weight: 700;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-step {
  min-height: 255px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step > span {
  display: block;
  margin-bottom: 70px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.process-step p {
  color: #7b8284;
  font-size: 12px;
  line-height: 1.7;
}

.contact-section {
  padding: 130px 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(57, 112, 154, .96), rgba(31, 74, 105, .99)),
    var(--orange);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
}

.contact-copy .eyebrow {
  margin-bottom: 25px;
  color: var(--white);
}

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

.contact-copy > p {
  max-width: 500px;
  color: rgba(255, 255, 255, .73);
}

.contact-list {
  display: grid;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, .25);
}

.contact-list > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.contact-list span {
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 14px;
}

.contact-form {
  padding: clamp(30px, 5vw, 62px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(5, 29, 46, .22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.contact-form label > span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 14px;
  transition: border-color .2s ease;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a4aaab;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

.form-note {
  margin-top: 14px;
  color: #979c9d;
  font-size: 10px;
  text-align: center;
}

.site-footer {
  padding: 75px 0 26px;
  color: var(--white);
  background: #0a0e0f;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding-bottom: 70px;
}

.footer-main > p {
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
}

.footer-up {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .34);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .2);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroReveal {
  from { opacity: .15; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(243, 107, 33, .65); }
  70% { box-shadow: 0 0 0 9px rgba(243, 107, 33, 0); }
  100% { box-shadow: 0 0 0 0 rgba(243, 107, 33, 0); }
}

@media (max-width: 1080px) {
  :root { --header-h: 76px; }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    padding: 40px 7vw;
    color: var(--white);
    background: var(--ink);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2, .75, .25, 1);
  }

  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); font-size: 24px; }
  .main-nav a::after { display: none; }
  .menu-toggle { display: block; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .header-phone { display: none; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .hero h1 { font-size: clamp(58px, 10vw, 94px); }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > *:nth-child(3) { border-top: 1px solid rgba(255,255,255,.1); }
  .trust-grid > *:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }

  .formwork-section { grid-template-columns: 1fr; }
  .formwork-visual { min-height: 600px; }
  .formwork-content { max-width: none; padding: 90px 7vw; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-card { width: 205px; height: 108px; }
  .experience-card,
  .experience-card-lead {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .experience-media { min-height: 360px; }
  .project-stage { grid-template-columns: 1fr 1fr; }
  .project-note { grid-column: span 2; min-height: 140px; border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 36px), var(--container)); }

  .hero { min-height: 720px; height: 100svh; }
  .hero-media { background-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(9,14,16,.9), rgba(9,14,16,.35)), linear-gradient(0deg, rgba(7,12,13,.7), transparent); }
  .hero-grid { background-size: 64px 64px; }
  .hero-content { padding-top: 70px; }
  .hero h1 { font-size: clamp(50px, 15vw, 76px); }
  .hero h1 em { -webkit-text-stroke-width: 1px; }
  .hero-lead { margin-top: 25px; font-size: 16px; }
  .hero-cta { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 32px; }
  .hero-bottom { bottom: 18px; }
  .hero-scroll { display: none; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > * { min-height: 145px; padding: 26px 20px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }

  .section { padding: 90px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .section-heading h2,
  .formwork-content h2,
  .about-heading h2,
  .contact-copy h2 { font-size: clamp(39px, 11vw, 56px); }

  .services-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: auto; min-height: 360px; padding: 26px; }

  .formwork-visual { min-height: 470px; }
  .formwork-content { padding: 75px 18px; }
  .visual-label { min-width: 215px; padding: 18px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: 250px; padding: 26px 24px; }
  .why-card > span { margin-bottom: 58px; }

  .project-stage { grid-template-columns: 1fr; }
  .project-art { min-height: 360px; }
  .project-copy { padding: 42px 26px; }
  .project-note { grid-column: auto; min-height: 130px; padding: 28px 26px; }
  .projects-list { grid-template-columns: 1fr; }
  .project-card { min-height: 350px; padding: 28px 24px; }
  .project-card-index { margin-bottom: 42px; }
  .experience-grid { grid-template-columns: 1fr; gap: 16px; }
  .experience-summary {
    grid-template-columns: 34px minmax(0, 1fr) 38px;
    gap: 14px;
    min-height: 0;
    padding: 20px 18px;
  }
  .experience-summary-copy strong {
    font-size: clamp(20px, 6vw, 27px);
  }
  .experience-summary-period {
    grid-column: 2 / 3;
    width: max-content;
    padding: 6px 9px;
  }
  .experience-summary-toggle {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    width: 36px;
    height: 36px;
  }
  .experience-panel { padding: 0 10px 10px; }
  .experience-card,
  .experience-card-lead { grid-template-columns: 1fr; min-height: 0; }
  .experience-media,
  .experience-placeholder { min-height: 245px; }
  .experience-body { padding: 28px 24px; }
  .experience-body h3,
  .experience-card-lead .experience-body h3 {
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.12;
  }
  .experience-logo-card { width: 102px; height: 52px; padding: 9px 12px; }
  .experience-logo-card img { max-height: 34px; }
  .experience-body > p:not(.project-meta) { font-size: 13px; }
  .experience-thumbs a { width: 104px; height: 74px; }
  .lightbox {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    padding: 76px 12px 24px;
  }
  .lightbox-image { max-height: calc(100svh - 168px); }
  .lightbox-caption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .lightbox-close { top: 16px; right: 16px; width: 44px; height: 44px; }
  .lightbox-nav { width: 44px; height: 64px; font-size: 42px; }

  .partners-section { padding: 85px 0; }
  .partners-heading { grid-template-columns: 1fr; gap: 24px; }
  .partners-ticker { margin-top: 42px; mask-image: none; -webkit-mask-image: none; }
  .partners-track { animation-duration: 30s; }
  .partners-set { gap: 12px; padding-right: 12px; }
  .partner-card { width: 160px; height: 88px; padding: 16px; }
  .partner-card img { max-height: 48px; }

  .about-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-copy .lead { font-size: 20px; }
  .director-strip { grid-template-columns: 1fr; gap: 40px; margin-top: 65px; padding: 32px 24px; }
  .process { grid-template-columns: 1fr 1fr; margin-top: 70px; }
  .process-step { min-height: 225px; padding: 24px; }
  .process-step > span { margin-bottom: 50px; }

  .contact-section { padding: 90px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-list > * { align-items: flex-start; flex-direction: column; gap: 5px; }
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-main { grid-template-columns: 1fr; padding-bottom: 50px; }
  .footer-main > p { order: 2; }
  .footer-up { justify-self: start; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .brand-logo { width: 145px; height: 36px; }
  .hero h1 { font-size: 48px; }
  .button { width: 100%; }
  .hero-cta .text-link { width: auto; }
  .process { grid-template-columns: 1fr; }
}

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

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

  .partners-ticker {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .partners-track {
    animation: none !important;
  }

  .partners-set[aria-hidden="true"] {
    display: none;
  }
}
