:root {
  --navy: #071923;
  --navy-2: #0d2734;
  --navy-3: #173947;
  --ink: #10212a;
  --muted: #697780;
  --gold: #c87918;
  --gold-bright: #f2a126;
  --gold-soft: #ffd28b;
  --paper: #f5f5f7;
  --cream: #eeeae3;
  --white: #ffffff;
  --line: rgba(12, 30, 40, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 90px rgba(4, 19, 27, 0.14);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --header-height: 78px;
  --hero-shift: 0px;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

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

html::after {
  background: linear-gradient(90deg, var(--gold-bright), #ffd78e);
  content: "";
  height: 3px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  z-index: 200;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  margin: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  animation: ambientDrift 16s ease-in-out infinite alternate;
  background:
    radial-gradient(circle at 15% 15%, rgba(242, 161, 38, 0.09), transparent 30%),
    radial-gradient(circle at 85% 65%, rgba(69, 130, 157, 0.11), transparent 35%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

main {
  overflow: clip;
}

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

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

button,
input,
summary {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  background: rgba(248, 248, 250, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(8, 24, 34, 0.08);
  display: grid;
  grid-template-columns: minmax(170px, 230px) 1fr auto;
  height: var(--header-height);
  left: 0;
  padding: 0 clamp(22px, 4.4vw, 76px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background 300ms ease,
    box-shadow 300ms ease,
    height 300ms ease;
  z-index: 100;
}

.site-header.is-scrolled {
  background: rgba(248, 248, 250, 0.94);
  box-shadow: 0 8px 34px rgba(5, 21, 29, 0.1);
}

.brand {
  align-items: center;
  display: flex;
  height: 64px;
  overflow: hidden;
  width: 184px;
}

.brand img {
  height: 58px;
  object-fit: contain;
  transition: transform 350ms ease;
  width: 174px;
}

.brand:hover img {
  transform: scale(1.025);
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  justify-content: center;
}

.desktop-nav a {
  color: #354750;
  font-size: 0.73rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after {
  background: var(--gold);
  border-radius: 99px;
  bottom: -10px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 220ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.desktop-nav a.is-active {
  color: var(--navy);
}

.header-call {
  align-items: flex-end;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 760;
  gap: 4px;
  padding-left: clamp(24px, 3vw, 48px);
}

.header-call span {
  color: #718089;
  font-size: 0.58rem;
  font-weight: 740;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
  justify-self: end;
  position: relative;
}

.mobile-menu summary {
  cursor: pointer;
  display: grid;
  gap: 5px;
  list-style: none;
  padding: 12px 4px;
}

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

.mobile-menu summary span {
  background: var(--navy);
  border-radius: 10px;
  display: block;
  height: 2px;
  width: 25px;
}

.mobile-menu nav {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  min-width: 240px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 48px;
}

.mobile-menu nav a {
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  padding: 17px 20px;
  text-transform: uppercase;
}

.mobile-menu nav a:last-child {
  background: var(--gold-bright);
  border-bottom: 0;
}

.hero {
  align-items: end;
  background: var(--navy);
  color: var(--white);
  display: grid;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(80px, 12vh, 150px))
    clamp(24px, 7.5vw, 130px) clamp(110px, 13vh, 150px);
  position: relative;
}

.hero-video {
  animation: cinematicZoom 18s ease-in-out infinite alternate;
  height: calc(100% + 100px);
  inset: -50px 0;
  object-fit: cover;
  position: absolute;
  transform: translate3d(0, var(--hero-shift), 0) scale(1.07);
  width: 100%;
  z-index: -4;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 17, 25, 0.92) 0%, rgba(3, 17, 25, 0.62) 47%, rgba(3, 17, 25, 0.28) 78%),
    linear-gradient(0deg, rgba(3, 17, 25, 0.82) 0%, transparent 55%),
    linear-gradient(180deg, rgba(3, 17, 25, 0.28), transparent 34%);
  inset: 0;
  position: absolute;
  z-index: -3;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
  inset: 0;
  mask-image: linear-gradient(90deg, black, transparent 78%);
  opacity: 0.7;
  position: absolute;
  z-index: -2;
}

.hero-content {
  max-width: 1120px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: 0.67rem;
  font-weight: 800;
  gap: 14px;
  letter-spacing: 0.19em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  border-radius: 99px;
  content: "";
  height: 2px;
  width: 38px;
}

.eyebrow--light {
  color: var(--gold-bright);
}

.hero h1,
.section h2,
.standards h2,
.project-feature h2,
.film-section h2,
.contact h2 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.92;
  margin: 0;
}

.hero h1 {
  font-size: clamp(4.6rem, 10.8vw, 10.8rem);
  max-width: 1100px;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--gold-bright);
  display: block;
  font-weight: 520;
  margin-left: clamp(0px, 7vw, 110px);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.65;
  margin: clamp(28px, 4.5vh, 50px) 0 0;
  max-width: 670px;
}

.hero-actions,
.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-actions {
  margin-top: 38px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 790;
  gap: 30px;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 54px;
  padding: 0 26px;
  position: relative;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

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

.button span {
  font-size: 1rem;
}

.button--gold {
  background: linear-gradient(135deg, var(--gold-bright), #e78e15);
  box-shadow: 0 14px 40px rgba(229, 145, 24, 0.3);
  color: #091923;
}

.button--gold:hover {
  box-shadow: 0 20px 50px rgba(229, 145, 24, 0.42);
}

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

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

.text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 740;
  gap: 12px;
  letter-spacing: 0.07em;
  padding: 7px 0;
  text-transform: uppercase;
}

.text-link--light {
  color: rgba(255, 255, 255, 0.9);
}

.hero-note {
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 25, 35, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  bottom: 110px;
  display: flex;
  gap: 13px;
  padding: 9px 18px 9px 9px;
  position: absolute;
  right: clamp(24px, 6vw, 105px);
}

.hero-note__mark {
  align-items: center;
  background: var(--gold-bright);
  border-radius: 50%;
  color: var(--navy);
  display: flex;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.hero-note div {
  display: grid;
  gap: 3px;
}

.hero-note strong {
  font-size: 0.7rem;
}

.hero-note div span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
}

.hero-scroll {
  align-items: center;
  bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  font-size: 0.61rem;
  font-weight: 760;
  gap: 14px;
  left: clamp(24px, 7.5vw, 130px);
  letter-spacing: 0.18em;
  position: absolute;
  text-transform: uppercase;
}

.hero-scroll i {
  align-items: center;
  animation: scrollBounce 1.8s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: flex;
  font-size: 0.9rem;
  font-style: normal;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.trust-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin: -46px auto 0;
  max-width: 1260px;
  padding: 0 24px;
  position: relative;
  z-index: 8;
}

.trust-card {
  appearance: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(8, 24, 34, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(7, 25, 35, 0.11);
  color: var(--navy);
  cursor: pointer;
  display: block;
  font: inherit;
  min-height: 172px;
  padding: 30px;
  position: relative;
  text-align: left;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    border-color 250ms ease;
  width: 100%;
}

.trust-card:hover,
.trust-card:focus-visible {
  border-color: rgba(198, 112, 17, 0.42);
  box-shadow: 0 24px 60px rgba(7, 25, 35, 0.16);
  outline: none;
  transform: translateY(-6px);
}

.trust-strip__index {
  color: var(--gold);
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  margin-bottom: 32px;
}

.trust-strip strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.trust-strip p {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
  margin: 8px 0 0;
}

.trust-card__link {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-size: 0.61rem;
  font-weight: 780;
  gap: 8px;
  letter-spacing: 0.1em;
  margin-top: 18px;
  text-transform: uppercase;
}

.trust-card__link i {
  color: var(--gold);
  font-size: 0.9rem;
  font-style: normal;
  transition: transform 220ms ease;
}

.trust-card:hover .trust-card__link i,
.trust-card:focus-visible .trust-card__link i {
  transform: translateX(5px);
}

.statement {
  background:
    radial-gradient(circle at 50% 15%, rgba(242, 161, 38, 0.12), transparent 31%),
    var(--white);
  overflow: hidden;
  padding: clamp(150px, 17vw, 260px) 24px 70px;
  position: relative;
  text-align: center;
}

.statement__glow {
  animation: statementGlow 10s ease-in-out infinite alternate;
  background: radial-gradient(circle, rgba(241, 164, 57, 0.22), transparent 68%);
  border-radius: 50%;
  height: min(70vw, 980px);
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: -52%;
  transform: translateX(-50%);
  width: min(70vw, 980px);
}

.statement__inner {
  margin: auto;
  max-width: 1320px;
  position: relative;
  z-index: 2;
}

.statement .eyebrow {
  justify-content: center;
}

.statement h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8.35vw, 8.9rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.96;
  margin: 0;
  max-width: 100%;
  text-wrap: balance;
}

.statement h2 span {
  background: linear-gradient(100deg, #a9580b, var(--gold-bright) 54%, #ffd18a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  font-weight: 560;
  padding-bottom: 0.14em;
}

.statement__inner > p:last-child {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.7;
  margin: 52px auto 0;
  max-width: 720px;
}

.statement__rail {
  align-items: center;
  animation: railDrift 12s ease-in-out infinite alternate;
  border-top: 1px solid var(--line);
  color: #63737b;
  display: flex;
  font-size: 0.61rem;
  font-weight: 760;
  gap: clamp(20px, 3.2vw, 52px);
  justify-content: center;
  letter-spacing: 0.15em;
  margin: clamp(110px, 13vw, 180px) auto 0;
  max-width: 1200px;
  padding-top: 28px;
  text-transform: uppercase;
  white-space: nowrap;
}

.statement__rail i {
  background: var(--gold-bright);
  border-radius: 50%;
  height: 5px;
  width: 5px;
}

.section {
  padding: clamp(110px, 12vw, 190px) max(24px, 6.5vw);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
}

.section-heading h2,
.process-heading h2,
.gallery-heading h2,
.about-card__copy h2 {
  font-size: clamp(3.25rem, 6.2vw, 6.4rem);
}

.section-heading > p,
.gallery-heading > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 6px;
}

.service-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(65px, 8vw, 110px);
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(8, 24, 34, 0.07);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  min-height: 690px;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 48px);
  position: relative;
  transition:
    transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 350ms ease,
    background 350ms ease;
}

.service-card::before {
  background: radial-gradient(circle, rgba(242, 161, 38, 0.17), transparent 68%);
  content: "";
  height: 250px;
  opacity: 0;
  position: absolute;
  right: -90px;
  top: -90px;
  transition: opacity 300ms ease;
  width: 250px;
}

.service-card:hover {
  background: #fffdf9;
  box-shadow: 0 28px 70px rgba(7, 25, 35, 0.12);
  transform: translateY(-10px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.service-card__media {
  border-radius: 18px;
  height: 225px;
  margin: 26px 0 4px;
  overflow: hidden;
  position: relative;
}

.service-card__media::after {
  background: linear-gradient(0deg, rgba(6, 24, 34, 0.24), transparent 52%);
  content: "";
  inset: 0;
  position: absolute;
}

.service-card__media img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 750ms cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 500ms ease;
  width: 100%;
}

.service-card:hover .service-card__media img {
  filter: saturate(1.1);
  transform: scale(1.055);
}

.service-card h3 {
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
  font-weight: 630;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 26px 0 20px;
  max-width: 320px;
}

.service-card > p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.service-card ul {
  color: #43545d;
  display: grid;
  font-size: 0.75rem;
  gap: 9px;
  list-style: none;
  margin: 26px 0 32px;
  padding: 0;
}

.service-card li {
  align-items: center;
  display: flex;
  gap: 10px;
}

.service-card li::before {
  background: var(--gold-bright);
  border-radius: 50%;
  content: "";
  height: 6px;
  width: 6px;
}

.service-card__action {
  appearance: none;
  align-items: center;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 0.66rem;
  font-weight: 780;
  justify-content: space-between;
  letter-spacing: 0.1em;
  margin-top: auto;
  padding-top: 20px;
  text-align: left;
  text-transform: uppercase;
  width: 100%;
}

.service-card__action i {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 0.9rem;
  font-style: normal;
  height: 36px;
  justify-content: center;
  transition: transform 220ms ease;
  width: 36px;
}

.service-card__action:hover i,
.service-card__action:focus-visible i {
  transform: rotate(45deg);
}

.service-card__action:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 8px;
}

.service-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 1000;
}

.service-modal[hidden] {
  display: none;
}

.service-modal__backdrop {
  background: rgba(3, 15, 22, 0.78);
  border: 0;
  inset: 0;
  position: absolute;
}

.service-modal__panel {
  animation: servicePanelIn 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  max-height: min(820px, calc(100vh - 48px));
  max-width: 1120px;
  overflow: auto;
  position: relative;
  width: 100%;
  z-index: 1;
}

.service-modal__close {
  align-items: center;
  background: rgba(7, 24, 34, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1.3rem;
  height: 44px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  z-index: 3;
}

.service-modal__media {
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.service-modal__media::after {
  background: linear-gradient(180deg, rgba(3, 18, 27, 0.04), rgba(3, 18, 27, 0.55));
  content: "";
  inset: 0;
  position: absolute;
}

.service-modal__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-modal__media > span {
  bottom: 28px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  left: 30px;
  letter-spacing: 0.16em;
  position: absolute;
  z-index: 1;
}

.service-modal__content {
  padding: clamp(48px, 6vw, 82px) clamp(32px, 5vw, 72px) 48px;
}

.service-modal__content .eyebrow {
  margin-bottom: 24px;
}

.service-modal__content h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
  margin: 0;
}

.service-modal__lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 28px 0 34px;
}

.service-modal__details {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  padding: 30px 0;
}

.service-modal__details h3 {
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.service-modal__details ul {
  color: #53646d;
  display: grid;
  font-size: 0.8rem;
  gap: 10px;
  line-height: 1.45;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-modal__details li {
  display: flex;
  gap: 9px;
}

.service-modal__details li::before {
  color: var(--gold);
  content: "•";
}

.service-modal__next {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.service-modal__next > div:first-child > span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-modal__next p {
  color: #40515a;
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 9px 0 0;
}

.service-modal__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-modal__actions .button {
  border: 0;
  cursor: pointer;
}

.service-modal__text-link {
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
  text-transform: uppercase;
}

body.service-modal-open {
  overflow: hidden;
}

@keyframes servicePanelIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.standards {
  background:
    radial-gradient(circle at 15% 15%, rgba(242, 161, 38, 0.15), transparent 30%),
    radial-gradient(circle at 90% 75%, rgba(57, 118, 145, 0.22), transparent 36%),
    var(--navy);
  color: var(--white);
  display: grid;
  gap: clamp(70px, 10vw, 150px);
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  padding: clamp(110px, 12vw, 190px) max(24px, 6.5vw);
  position: relative;
}

.standards::after {
  animation: orbitGlow 15s linear infinite;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  height: min(62vw, 820px);
  position: absolute;
  right: -26vw;
  top: -24vw;
  width: min(62vw, 820px);
}

.standards-heading,
.standards-grid {
  position: relative;
  z-index: 2;
}

.standards h2 {
  font-size: clamp(3.3rem, 6.4vw, 6.8rem);
  max-width: 650px;
}

.standards-heading > p:last-child {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin: 34px 0 0;
  max-width: 520px;
}

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

.standards-grid article {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  min-height: 280px;
  padding: clamp(26px, 3vw, 40px);
  transition:
    background 250ms ease,
    transform 250ms ease;
}

.standards-grid article:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

.standards-grid article > span {
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.standards-grid h3 {
  font-size: 1.35rem;
  font-weight: 620;
  letter-spacing: -0.03em;
  margin: 95px 0 14px;
}

.standards-grid p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

.project-feature {
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 92svh;
}

.project-feature__image {
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.project-feature__image::after {
  background: linear-gradient(90deg, transparent 58%, rgba(7, 25, 35, 0.42));
  content: "";
  inset: 0;
  position: absolute;
}

.project-feature__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.project-feature:hover .project-feature__image img {
  transform: scale(1.035);
}

.project-feature__image > span {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 25, 35, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  bottom: 28px;
  font-size: 0.6rem;
  font-weight: 760;
  left: 28px;
  letter-spacing: 0.14em;
  padding: 13px 18px;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.project-feature__copy {
  align-content: center;
  display: grid;
  padding: clamp(70px, 8vw, 130px) clamp(34px, 5vw, 86px);
}

.project-feature h2 {
  font-size: clamp(3.2rem, 5vw, 5.4rem);
}

.project-feature__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin: 32px 0 0;
}

.feature-detail {
  border-bottom: 1px solid var(--line-light);
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 8px;
  margin: 44px 0 38px;
  padding: 24px 0;
}

.feature-detail span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.feature-detail strong {
  font-size: 1.02rem;
  font-weight: 560;
}

.compare-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 161, 38, 0.13), transparent 27%),
    #e9e6e0;
  padding: clamp(110px, 12vw, 190px) max(18px, 5vw);
}

.compare-heading {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  margin: 0 auto clamp(60px, 8vw, 105px);
  max-width: 1420px;
}

.compare-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7.2vw, 7.4rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.92;
  margin: 0;
  text-wrap: balance;
}

.compare-heading > p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 5px;
}

.compare-stage {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(8, 24, 34, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 36px 100px rgba(6, 24, 34, 0.2);
  isolation: isolate;
  margin: auto;
  max-height: 820px;
  max-width: 1420px;
  overflow: hidden;
  position: relative;
}

.compare-stage::after {
  background: linear-gradient(0deg, rgba(4, 18, 26, 0.25), transparent 30%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.compare-image,
.compare-after {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.compare-image {
  object-fit: cover;
}

.compare-after {
  clip-path: inset(0 0 0 var(--compare-position));
  overflow: hidden;
  z-index: 2;
}

.compare-divider {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  bottom: 0;
  box-shadow: 0 0 25px rgba(6, 24, 34, 0.22);
  display: flex;
  justify-content: center;
  left: var(--compare-position);
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  z-index: 5;
}

.compare-divider span {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 25, 35, 0.13);
  border-radius: 50%;
  box-shadow: 0 12px 36px rgba(4, 18, 26, 0.24);
  color: var(--navy);
  display: flex;
  font-size: 1rem;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.compare-label {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(6, 24, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.61rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  padding: 12px 16px;
  position: absolute;
  text-transform: uppercase;
  top: 22px;
  z-index: 5;
}

.compare-label--before {
  left: 22px;
}

.compare-label--after {
  right: 22px;
}

.compare-range {
  cursor: ew-resize;
  height: 100%;
  inset: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 8;
}

.gallery {
  background: var(--paper);
}

.gallery-heading {
  align-items: end;
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.gallery-heading > p {
  max-width: 330px;
}

.project-grid {
  display: grid;
  gap: 18px;
  grid-auto-rows: clamp(280px, 34vw, 520px);
  grid-template-columns: repeat(12, 1fr);
  margin-top: clamp(60px, 8vw, 110px);
}

.project-card {
  border-radius: var(--radius-lg);
  grid-column: span 5;
  margin: 0;
  overflow: hidden;
  position: relative;
}

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

.project-card--wide {
  grid-column: span 7;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 500ms ease;
  width: 100%;
}

.project-card::after {
  background: linear-gradient(0deg, rgba(4, 18, 26, 0.66), transparent 42%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

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

.project-card figcaption {
  bottom: 24px;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 760;
  left: 24px;
  letter-spacing: 0.14em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.project-card__open {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 0.59rem;
  font-weight: 780;
  gap: 9px;
  letter-spacing: 0.1em;
  opacity: 0;
  padding: 12px 15px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  top: 20px;
  transform: translateY(-8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  z-index: 3;
}

.project-card__open i {
  color: var(--gold);
  font-size: 0.8rem;
  font-style: normal;
}

.project-card:hover .project-card__open,
.project-card__open:focus-visible {
  opacity: 1;
  outline: none;
  transform: translateY(0);
}

.gallery-lightbox {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 1200;
}

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

.gallery-lightbox__backdrop {
  background: rgba(2, 10, 15, 0.94);
  border: 0;
  inset: 0;
  position: absolute;
}

.gallery-lightbox__panel {
  background: #071721;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  max-width: 1320px;
  overflow: hidden;
  padding: 66px 74px 24px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.gallery-lightbox__topline {
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  justify-content: space-between;
  left: 24px;
  letter-spacing: 0.12em;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  top: 17px;
}

.gallery-lightbox__topline button {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1.15rem;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.gallery-lightbox figure {
  margin: 0;
}

.gallery-lightbox figure img {
  background: #02090d;
  border-radius: 18px;
  display: block;
  height: min(70vh, 760px);
  object-fit: contain;
  width: 100%;
}

.gallery-lightbox figcaption {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  padding: 20px 2px 2px;
  text-transform: uppercase;
}

.gallery-lightbox__nav {
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font-size: 1.1rem;
  height: 48px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  z-index: 2;
}

.gallery-lightbox__nav--previous {
  left: 14px;
}

.gallery-lightbox__nav--next {
  right: 14px;
}

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

.film-section {
  align-items: center;
  background:
    radial-gradient(circle at 75% 30%, rgba(242, 161, 38, 0.12), transparent 30%),
    #030b10;
  color: var(--white);
  display: grid;
  gap: clamp(70px, 8vw, 130px);
  grid-template-columns: 0.56fr 1.44fr;
  padding: clamp(110px, 13vw, 200px) max(24px, 6.5vw);
}

.film-copy h2 {
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
}

.film-copy > p:last-child {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  margin: 30px 0 0;
}

.film-frame {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 26px 26px 0 rgba(197, 121, 20, 0.18);
  overflow: hidden;
  position: relative;
}

.film-frame video {
  aspect-ratio: 16 / 10;
  background: #000;
  object-fit: cover;
  width: 100%;
}

.film-frame__tag {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(5, 20, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  bottom: 22px;
  font-size: 0.58rem;
  font-weight: 740;
  left: 22px;
  letter-spacing: 0.13em;
  padding: 12px 16px;
  position: absolute;
  text-transform: uppercase;
}

.about {
  background:
    radial-gradient(circle at 8% 15%, rgba(242, 161, 38, 0.1), transparent 26%),
    var(--cream);
}

.about-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 24, 34, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  margin: auto;
  max-width: 1380px;
  overflow: hidden;
}

.about-card__visual {
  min-height: 680px;
  overflow: hidden;
}

.about-card__visual img {
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
  width: 100%;
}

.about-card:hover .about-card__visual img {
  transform: scale(1.025);
}

.about-card__copy {
  align-content: center;
  display: grid;
  padding: clamp(55px, 7vw, 110px);
}

.about-card__copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 24px;
}

.about-card__copy .about-lead {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 570;
  margin-top: 34px;
}

.about-card__copy .button {
  justify-self: start;
  margin-top: 20px;
}

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

.process-heading {
  display: grid;
  gap: 60px;
  grid-template-columns: 0.55fr 1.45fr;
}

.process-list {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: clamp(65px, 8vw, 110px) 0 0;
  padding: 0;
}

.process-list li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(22px, 6vw, 100px);
  grid-template-columns: 120px minmax(0, 1fr);
  min-height: 170px;
  padding: 28px 0;
  transition: padding 250ms ease;
}

.process-list li:hover {
  padding-left: 18px;
}

.process-list li > span {
  color: rgba(16, 33, 42, 0.15);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.06em;
}

.process-list h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 620;
  letter-spacing: -0.035em;
  margin: 0 0 10px;
}

.process-list p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.estimate-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(242, 161, 38, 0.2), transparent 26%),
    radial-gradient(circle at 4% 84%, rgba(54, 112, 137, 0.13), transparent 26%),
    #f4f5f3;
  overflow: hidden;
  padding: clamp(110px, 12vw, 190px) max(24px, 6.5vw);
  position: relative;
}

.estimate-section::before {
  background-image:
    linear-gradient(rgba(8, 24, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 24, 34, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(110deg, black, transparent 76%);
  pointer-events: none;
  position: absolute;
}

.estimate-shell {
  align-items: start;
  display: grid;
  gap: clamp(58px, 8vw, 120px);
  grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr);
  margin: auto;
  max-width: 1400px;
  position: relative;
  z-index: 1;
}

.estimate-heading {
  position: sticky;
  top: calc(var(--header-height) + 60px);
}

.estimate-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 6.8vw, 7.2rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.9;
  margin: 0;
}

.estimate-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 36px 0 0;
  max-width: 540px;
}

.estimate-heading__notes {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
}

.estimate-heading__notes span {
  align-items: center;
  color: #43545d;
  display: flex;
  font-size: 0.73rem;
  font-weight: 680;
  gap: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.estimate-heading__notes i {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-style: normal;
}

.estimate-form {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(8, 24, 34, 0.08);
  border-radius: 32px;
  box-shadow: 0 34px 100px rgba(7, 25, 35, 0.12);
  padding: clamp(30px, 4.5vw, 62px);
}

.estimate-form__intro {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
}

.estimate-form__intro span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.estimate-form__intro strong {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

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

.form-field {
  display: grid;
  gap: 9px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field > span {
  color: #33464f;
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field small {
  color: #89969c;
  font-size: 0.57rem;
  font-weight: 620;
  margin-left: 5px;
}

.form-field input,
.form-field select,
.form-field textarea {
  appearance: none;
  background: #fafaf9;
  border: 1px solid #dce1e3;
  border-radius: 14px;
  color: var(--navy);
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  padding: 17px 18px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  width: 100%;
}

.form-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, #66757c 50%),
    linear-gradient(135deg, #66757c 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 42px;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8a969b;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: #fff;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 4px rgba(242, 161, 38, 0.14);
}

.estimate-form__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}

.estimate-form__actions .button {
  border: 0;
  cursor: pointer;
  flex: 1 1 320px;
  justify-content: space-between;
}

.estimate-copy {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  padding: 5px 0;
  text-transform: uppercase;
}

.estimate-status {
  color: #25643a;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.5;
  margin: 20px 0 0;
}

.estimate-status:empty {
  display: none;
}

.estimate-form__note {
  color: #7f8d93;
  font-size: 0.66rem;
  line-height: 1.55;
  margin: 24px 0 0;
}

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

.faq-heading {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.faq-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6.5vw, 6.8rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.92;
  margin: 0;
}

.faq-heading > p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 5px;
}

.faq-list {
  border-top: 1px solid var(--line);
  margin-top: clamp(65px, 8vw, 110px);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  font-weight: 620;
  gap: 28px;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  letter-spacing: -0.025em;
  list-style: none;
  min-height: 104px;
  padding: 20px 0;
}

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

.faq-list summary > span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.faq-list summary > i {
  height: 18px;
  position: relative;
  width: 18px;
}

.faq-list summary > i::before,
.faq-list summary > i::after {
  background: var(--navy);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 9px;
  transition: transform 220ms ease;
  width: 18px;
}

.faq-list summary > i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary > i::after {
  transform: rotate(0);
}

.faq-list details > div {
  padding: 0 60px 36px 72px;
}

.faq-list details p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  max-width: 850px;
}

.faq-cta {
  align-items: center;
  background: var(--cream);
  border: 1px solid rgba(8, 24, 34, 0.07);
  border-radius: 24px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 46px;
  padding: 26px 28px 26px 34px;
}

.faq-cta p {
  font-size: 0.95rem;
  font-weight: 620;
  margin: 0;
}

.sticky-estimate {
  background: rgba(7, 25, 35, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  bottom: 24px;
  box-shadow: 0 20px 55px rgba(4, 18, 26, 0.28);
  color: #fff;
  display: grid;
  gap: 5px;
  left: 24px;
  opacity: 0;
  padding: 15px 18px;
  pointer-events: none;
  position: fixed;
  transform: translateY(18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  z-index: 120;
}

.sticky-estimate.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-estimate > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.57rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sticky-estimate strong {
  align-items: center;
  display: flex;
  font-size: 0.72rem;
  gap: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sticky-estimate i {
  color: var(--gold-bright);
  font-style: normal;
}

.contact {
  background:
    radial-gradient(circle at 70% 5%, rgba(52, 108, 132, 0.22), transparent 30%),
    var(--navy);
  color: var(--white);
  padding: 0 max(24px, 7vw);
}

.contact-topline {
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  font-size: 0.61rem;
  font-weight: 740;
  justify-content: space-between;
  letter-spacing: 0.16em;
  padding: 28px 0;
  text-transform: uppercase;
}

.contact-inner {
  padding: clamp(120px, 15vw, 220px) 0;
}

.contact-inner h2 {
  font-size: clamp(4rem, 9.4vw, 10rem);
  max-width: 1320px;
}

.contact-actions {
  border-top: 1px solid var(--line-light);
  justify-content: space-between;
  margin-top: 76px;
  padding-top: 36px;
}

.contact-actions > a:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 3rem);
  font-feature-settings: "pnum" 1;
  font-variant-numeric: proportional-nums;
  font-weight: 650;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.58);
  display: grid;
  font-size: 0.72rem;
  gap: 20px;
  grid-template-columns: 1fr auto 1fr;
  padding: 34px 0 42px;
}

footer img {
  filter: brightness(0) invert(1);
  height: 64px;
  object-fit: contain;
  width: 160px;
}

footer p {
  margin: 0;
}

footer a {
  justify-self: end;
}

footer small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.58rem;
  grid-column: 1 / -1;
  letter-spacing: 0.11em;
  margin-top: 8px;
  text-transform: uppercase;
}

.mobile-contact-bar {
  display: none;
}

.chat-widget {
  align-items: flex-end;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: fixed;
  right: 24px;
  z-index: 150;
}

.chat-launcher {
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 25, 35, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 16px 48px rgba(3, 15, 22, 0.27);
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 0.72rem;
  font-weight: 740;
  gap: 10px;
  min-height: 52px;
  padding: 6px 18px 6px 7px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.chat-launcher:hover {
  box-shadow: 0 20px 58px rgba(3, 15, 22, 0.34);
  transform: translateY(-3px);
}

.chat-launcher > span {
  align-items: center;
  background: var(--gold-bright);
  border-radius: 50%;
  color: var(--navy);
  display: flex;
  font-family: Georgia, serif;
  font-size: 1.18rem;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.chat-launcher b {
  font-weight: 740;
}

.chat-panel {
  animation: chatIn 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(8, 24, 34, 0.12);
  border-radius: 22px;
  box-shadow: 0 28px 90px rgba(3, 16, 23, 0.28);
  color: var(--ink);
  display: grid;
  grid-template-rows: auto auto minmax(190px, 1fr) auto auto auto;
  height: min(640px, calc(100vh - 110px));
  max-height: min(640px, calc(100vh - 110px));
  overflow: hidden;
  transform-origin: bottom right;
  width: min(370px, calc(100vw - 32px));
}

.chat-panel[hidden] {
  display: none;
}

.chat-header {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: 11px;
  grid-template-columns: auto 1fr auto;
  padding: 16px;
}

.chat-avatar {
  align-items: center;
  background: var(--gold-bright);
  border-radius: 50%;
  color: var(--navy);
  display: flex;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.chat-header > div:nth-child(2) {
  display: grid;
  gap: 3px;
}

.chat-header strong {
  font-size: 0.85rem;
}

.chat-header span {
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  font-size: 0.63rem;
  gap: 6px;
}

.chat-status-dot {
  background: #6fdc8c;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(111, 220, 140, 0.12);
  display: inline-block;
  height: 6px;
  width: 6px;
}

.chat-header__actions {
  align-items: center;
  display: flex;
}

.chat-header__actions button {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  padding: 8px;
}

.chat-header__actions button:first-child {
  font-size: 1rem;
}

.chat-progress {
  background: #f5f2ec;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding: 10px 16px 11px;
}

.chat-progress[hidden] {
  display: none;
}

.chat-progress > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.chat-progress > div span {
  color: #67767e;
  font-size: 0.57rem;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chat-progress > div b {
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 760;
}

.chat-progress__track {
  background: rgba(8, 24, 34, 0.11);
  border-radius: 99px;
  display: block;
  height: 4px;
  overflow: hidden;
}

.chat-progress__track i {
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width 320ms cubic-bezier(0.2, 0.75, 0.2, 1);
  width: 0;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 0;
  overflow-y: auto;
  padding: 17px;
}

.chat-message {
  border-radius: 15px;
  font-size: 0.76rem;
  line-height: 1.5;
  margin: 0;
  max-width: 88%;
  padding: 11px 13px;
  white-space: pre-line;
}

.chat-message--assistant {
  align-self: flex-start;
  background: #eeebe5;
}

.chat-message--user {
  align-self: flex-end;
  background: var(--navy);
  color: var(--white);
}

.chat-replies {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0 16px 14px;
  scrollbar-width: thin;
}

.chat-replies button {
  background: transparent;
  border: 1px solid rgba(8, 24, 34, 0.18);
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 0.64rem;
  font-weight: 680;
  padding: 8px 11px;
}

.chat-replies button:hover {
  border-color: var(--gold);
}

.chat-replies button:disabled,
.chat-form button:disabled,
.chat-form input:disabled {
  cursor: wait;
  opacity: 0.52;
}

.chat-typing {
  align-items: center;
  align-self: flex-start;
  background: #eeebe5;
  border-radius: 15px;
  display: flex;
  gap: 4px;
  min-height: 38px;
  padding: 0 14px;
  width: 54px;
}

.chat-typing span {
  animation: typingDot 900ms ease-in-out infinite;
  background: #77858c;
  border-radius: 50%;
  height: 5px;
  width: 5px;
}

.chat-typing span:nth-child(2) {
  animation-delay: 120ms;
}

.chat-typing span:nth-child(3) {
  animation-delay: 240ms;
}

.chat-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 4px;
}

.chat-action-row a,
.chat-action-row button {
  background: transparent;
  border: 1px solid rgba(8, 24, 34, 0.16);
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.03em;
  padding: 9px 12px;
}

.chat-action-row a.is-primary,
.chat-action-row button.is-primary {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.chat-form {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 10px 12px;
}

.chat-form input {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 0.77rem;
  min-width: 0;
  outline: 0;
  padding: 8px 6px;
}

.chat-form button {
  align-items: center;
  background: var(--gold-bright);
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.chat-contact {
  background: #f4f1eb;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.chat-contact a {
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
}

.chat-contact a:last-child {
  background: var(--gold-bright);
}

html.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(36px) scale(0.99);
  transition:
    opacity 750ms cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 750ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

html.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

html.motion-ready .service-card[data-reveal].is-visible:hover {
  transform: translateY(-10px) scale(1);
}

html.motion-ready .standards-grid article[data-reveal].is-visible:hover {
  transform: translateY(-6px) scale(1);
}

html.motion-ready .service-card:nth-child(2),
html.motion-ready .standards-grid article:nth-child(2),
html.motion-ready .project-card:nth-child(2) {
  transition-delay: 90ms;
}

html.motion-ready .service-card:nth-child(3),
html.motion-ready .standards-grid article:nth-child(3),
html.motion-ready .project-card:nth-child(3) {
  transition-delay: 180ms;
}

html.motion-ready .standards-grid article:nth-child(4),
html.motion-ready .project-card:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes cinematicZoom {
  0% {
    filter: saturate(0.92);
    transform: translate3d(0, var(--hero-shift), 0) scale(1.07);
  }
  100% {
    filter: saturate(1.08);
    transform: translate3d(0, var(--hero-shift), 0) scale(1.15);
  }
}

@keyframes ambientDrift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 1%, 0) scale(1.08);
  }
}

@keyframes orbitGlow {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.06);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes chatIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes typingDot {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes statementGlow {
  from {
    opacity: 0.55;
    transform: translateX(-54%) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateX(-46%) scale(1.08);
  }
}

@keyframes railDrift {
  from {
    transform: translateX(-1.5%);
  }
  to {
    transform: translateX(1.5%);
  }
}

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

  .desktop-nav,
  .header-call {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero h1 span {
    margin-left: 0;
  }

  .hero-note {
    display: none;
  }

  .section-heading,
  .standards,
  .film-section,
  .process-heading,
  .compare-heading,
  .estimate-shell,
  .faq-heading {
    grid-template-columns: 1fr;
  }

  .estimate-heading {
    position: static;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 640px;
  }

  .service-card h3 {
    margin-top: 26px;
  }

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

  .project-feature__image {
    min-height: 65svh;
  }

  .project-feature__copy {
    min-height: 620px;
  }

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

  .about-card__visual {
    min-height: 560px;
  }

}

@media (max-width: 760px) {
  .gallery-lightbox {
    padding: 10px;
  }

  .gallery-lightbox__panel {
    border-radius: 22px;
    padding: 58px 14px 18px;
  }

  .gallery-lightbox figure img {
    border-radius: 14px;
    height: min(68vh, 620px);
  }

  .gallery-lightbox__nav {
    height: 42px;
    top: auto;
    transform: none;
    width: 42px;
  }

  .gallery-lightbox__nav--previous {
    bottom: 13px;
    left: auto;
    right: 65px;
  }

  .gallery-lightbox__nav--next {
    bottom: 13px;
    right: 14px;
  }

  .gallery-lightbox figcaption {
    padding-right: 110px;
  }
  .service-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .service-modal__panel {
    border-radius: 24px;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
  }

  .service-modal__media {
    min-height: 210px;
  }

  .service-modal__content {
    padding: 34px 24px 30px;
  }

  .service-modal__content h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .service-modal__details {
    grid-template-columns: 1fr;
  }

  .service-modal__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-modal__actions .button {
    justify-content: center;
  }

  .service-modal__text-link {
    align-self: center;
  }
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand {
    height: 58px;
    width: 160px;
  }

  .brand img {
    height: 54px;
    width: 150px;
  }

  .hero {
    min-height: 830px;
    padding: 150px 22px 110px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 17, 25, 0.9), rgba(3, 17, 25, 0.55)),
      linear-gradient(0deg, rgba(3, 17, 25, 0.86), transparent 65%);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-scroll {
    left: 22px;
  }

  .trust-strip {
    gap: 10px;
    grid-template-columns: 1fr;
    margin-top: -32px;
    padding: 0 14px;
  }

  .trust-card {
    min-height: auto;
    padding: 24px;
  }

  .trust-strip__index {
    margin-bottom: 18px;
  }

  .section,
  .standards,
  .film-section,
  .estimate-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .statement {
    padding-left: 18px;
    padding-right: 18px;
  }

  .statement h2 {
    font-size: clamp(3rem, 11.8vw, 5.5rem);
  }

  .statement__inner > p:last-child {
    margin-top: 34px;
  }

  .statement__rail {
    justify-content: flex-start;
    overflow: hidden;
    width: 115%;
  }

  .section-heading {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .process-heading h2,
  .gallery-heading h2,
  .about-card__copy h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .service-card {
    border-radius: 22px;
    min-height: 650px;
  }

  .service-card__media {
    height: 220px;
  }

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

  .standards-grid article {
    min-height: 220px;
  }

  .standards-grid h3 {
    margin-top: 65px;
  }

  .project-feature__image {
    min-height: 470px;
  }

  .project-feature__copy {
    min-height: auto;
    padding: 85px 22px;
  }

  .project-feature h2,
  .film-copy h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .compare-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .compare-heading {
    gap: 26px;
    padding: 0 10px;
  }

  .compare-heading h2 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .compare-stage {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }

  .compare-divider span {
    height: 48px;
    width: 48px;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .project-grid {
    grid-auto-rows: 330px;
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card--wide,
  .project-card:nth-child(3),
  .project-card:nth-child(4) {
    grid-column: 1;
  }

  .project-card__open {
    opacity: 1;
    transform: none;
  }

  .film-frame {
    border-radius: 22px;
    box-shadow: 12px 12px 0 rgba(197, 121, 20, 0.18);
  }

  .about {
    padding-left: 12px;
    padding-right: 12px;
  }

  .about-card {
    border-radius: 25px;
  }

  .about-card__visual {
    min-height: 390px;
  }

  .about-card__copy {
    padding: 65px 24px;
  }

  .process-heading {
    gap: 8px;
  }

  .process-list li {
    gap: 15px;
    grid-template-columns: 66px 1fr;
    min-height: 150px;
  }

  .process-list li > span {
    font-size: 3.2rem;
  }

  .estimate-heading h2 {
    font-size: clamp(3.5rem, 16vw, 5.7rem);
  }

  .estimate-form {
    border-radius: 24px;
    padding: 28px 20px;
  }

  .estimate-form__intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .estimate-form__grid {
    grid-template-columns: 1fr;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .estimate-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .estimate-form__actions .button {
    flex: auto;
  }

  .estimate-copy {
    align-self: center;
  }

  .faq-heading {
    gap: 28px;
  }

  .faq-heading h2 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .faq-list summary {
    gap: 13px;
    grid-template-columns: 28px minmax(0, 1fr) 24px;
    min-height: 94px;
  }

  .faq-list details > div {
    padding: 0 24px 30px 41px;
  }

  .faq-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 22px;
  }

  .sticky-estimate {
    display: none;
  }

  .contact {
    padding: 0 22px;
  }

  .contact-topline span:last-child {
    display: none;
  }

  .contact-inner h2 {
    font-size: clamp(3.6rem, 16vw, 6.4rem);
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer a {
    justify-self: start;
  }

  footer small {
    grid-column: auto;
  }

  body {
    padding-bottom: 62px;
  }

  .mobile-contact-bar {
    bottom: 0;
    box-shadow: 0 -10px 36px rgba(4, 18, 26, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 130;
  }

  .mobile-contact-bar a {
    align-items: center;
    background: var(--white);
    color: var(--navy);
    display: flex;
    font-size: 0.67rem;
    font-weight: 780;
    justify-content: center;
    letter-spacing: 0.07em;
    min-height: 62px;
    text-transform: uppercase;
  }

  .mobile-contact-bar a:last-child {
    background: var(--gold-bright);
  }

  .chat-widget {
    bottom: 76px;
    right: 12px;
  }

  .chat-panel {
    max-height: calc(100vh - 160px);
  }
}

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

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

  html.motion-ready [data-reveal] {
    filter: none;
    opacity: 1;
    transform: none;
  }

  .hero-video {
    display: none;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(3, 17, 25, 0.9), rgba(3, 17, 25, 0.55)),
      url("public/media/sangronis-project-1-poster.jpg") center / cover no-repeat;
  }
}
