:root {
  --ink: #101513;
  --ink-soft: #171d1a;
  --forest: #0d2b24;
  --forest-light: #163d32;
  --brass: #c59a55;
  --brass-light: #e1bd7a;
  --ivory: #f3f0e8;
  --ivory-muted: #d7d2c7;
  --paper: #ece8dd;
  --line-dark: rgba(225, 189, 122, 0.25);
  --line-light: rgba(16, 21, 19, 0.14);
  --font-serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --font-geist-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 92px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --ease-premium: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  color: inherit;
}

::selection {
  background: var(--brass);
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 300ms ease, border-color 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header--scrolled {
  background: rgba(13, 18, 16, 0.88);
  border-color: rgba(225, 189, 122, 0.16);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(100% - 64px, 1440px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 32px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand__mark {
  position: relative;
  width: 62px;
  height: 44px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(225, 189, 122, 0.45);
  color: var(--brass-light);
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
}

.brand__mark i,
.brand__mark i::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background: var(--brass);
  bottom: 6px;
  left: 25px;
  transform: rotate(35deg);
}

.brand__mark i::before {
  inset: 0;
  transform: rotate(110deg);
}

.brand__name {
  font-size: 18px;
  font-weight: 520;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.3vw, 42px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(243, 240, 232, 0.76);
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  inset: auto 0 6px;
  height: 1px;
  background: var(--brass-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ivory);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(225, 189, 122, 0.7);
  border-radius: 999px;
  color: var(--brass-light);
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.05em;
  transition: color 250ms ease, background-color 250ms ease, transform 250ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--brass);
  color: var(--ink);
  transform: translateY(-2px);
}

.icon-arrow {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 250ms ease;
}

a:hover .icon-arrow,
button:hover .icon-arrow {
  transform: translateX(4px);
}

.icon-arrow--diagonal {
  transform: rotate(-45deg);
}

a:hover .icon-arrow--diagonal {
  transform: rotate(-45deg) translateX(3px);
}

.menu-toggle,
.mobile-nav,
.mobile-header-login {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-height);
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 17%, rgba(22, 61, 50, 0.6), transparent 30%),
    linear-gradient(90deg, var(--ink) 0%, #101713 60%, #0c1814 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -2;
  content: "";
  inset: 0 0 0 58%;
  background:
    linear-gradient(90deg, rgba(13, 43, 36, 0.85), rgba(13, 43, 36, 0.1)),
    radial-gradient(circle at 30% 40%, rgba(197, 154, 85, 0.12), transparent 50%);
  border-left: 1px solid rgba(225, 189, 122, 0.12);
}

.hero__texture {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.26;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,0.014) 3px 4px),
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,0.01) 7px 8px);
  mix-blend-mode: soft-light;
}

.hero-shell {
  width: min(100% - 64px, 1440px);
  min-height: calc(100svh - var(--header-height) - 116px);
  margin: 0 auto;
  padding: clamp(54px, 7vh, 88px) 0 44px;
  display: grid;
  grid-template-columns: minmax(470px, 0.95fr) minmax(560px, 1.05fr);
  align-items: center;
  gap: clamp(52px, 6vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 12px;
}

.eyebrow {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--brass-light);
  font-size: 14px;
  font-weight: 520;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 46px;
  height: 1px;
  background: currentColor;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-enter 800ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-copy > :nth-child(1) { animation-delay: 120ms; }
.hero-copy > :nth-child(2) { animation-delay: 220ms; }
.hero-copy > :nth-child(3) { animation-delay: 340ms; }
.hero-copy > :nth-child(4) { animation-delay: 450ms; }
.hero-copy > :nth-child(5) { animation-delay: 560ms; }

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: clamp(64px, 5.35vw, 94px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero h1 em {
  display: block;
  color: var(--ivory-muted);
  font-style: normal;
}

.hero__lede {
  max-width: 635px;
  margin: 28px 0 0;
  color: rgba(243, 240, 232, 0.7);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.72;
}

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

.button {
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--brass);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.035em;
  transition: transform 250ms ease, background-color 250ms ease,
    color 250ms ease, box-shadow 250ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.button--solid {
  background: var(--forest);
  color: var(--brass-light);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: var(--brass);
  color: var(--ink);
}

.button--ghost {
  color: var(--brass-light);
  border-color: rgba(225, 189, 122, 0.55);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(225, 189, 122, 0.08);
}

.hero-industries {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(243, 240, 232, 0.66);
}

.maple-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(225, 189, 122, 0.35);
  color: var(--brass-light);
  font-size: 22px;
}

.hero-industries p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.hero-industries i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brass);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  animation: visual-enter 1s 320ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes visual-enter {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(225, 189, 122, 0.28);
  border-radius: 16px;
  background: #29302c;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.38);
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1), filter 450ms ease;
}

.hero-image:hover img {
  transform: scale(1.045);
  filter: saturate(0.96) contrast(1.03);
}

.hero-image--construction {
  z-index: 1;
  width: 76%;
  height: 58%;
  inset: 0 auto auto 3%;
}

.hero-image--manufacturing {
  z-index: 3;
  width: 64%;
  height: 34%;
  inset: 40% 0 auto auto;
}

.hero-image--logistics {
  z-index: 2;
  width: 65%;
  height: 35%;
  inset: auto 7% 0 auto;
}

.material-slab {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(225, 189, 122, 0.24);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
}

.material-slab--green {
  width: 25%;
  height: 48%;
  left: 9%;
  bottom: 5%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05), transparent 45%),
    repeating-linear-gradient(120deg, transparent 0 34px, rgba(255,255,255,0.018) 35px 36px),
    #0a3027;
}

.material-slab--brass {
  z-index: 4;
  width: 58px;
  height: 52px;
  left: 16%;
  bottom: 20%;
  background: linear-gradient(135deg, #d0a65e, #8c642e);
  border-radius: 3px;
}

.material-slab--brass::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  inset: 20px auto auto 22px;
  background: linear-gradient(135deg, #f3d28f, #6f4d24);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}

.hero-visual__label {
  position: absolute;
  z-index: 5;
  right: 0;
  top: 8%;
  padding: 13px 16px;
  display: grid;
  gap: 3px;
  border-left: 1px solid var(--brass);
  background: rgba(12, 24, 20, 0.82);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.hero-visual__label span {
  color: rgba(243,240,232,0.55);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.hero-visual__label strong {
  color: var(--brass-light);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.capability-bar {
  position: relative;
  z-index: 5;
  width: min(100% - 64px, 1440px);
  min-height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.capability-bar > div {
  padding: 24px clamp(18px, 2vw, 34px);
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line-dark);
}

.capability-bar > div:first-child {
  border-left: 1px solid var(--line-dark);
}

.capability-bar strong {
  color: var(--brass-light);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
}

.capability-bar span {
  color: rgba(243,240,232,0.58);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

  .header-shell,
  .hero-shell,
  .capability-bar { width: min(100% - 40px, 1100px); }

  .header-shell { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }

  .menu-toggle {
    justify-self: end;
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(225,189,122,0.42);
    border-radius: 50%;
    background: rgba(13,43,36,0.3);
  }

  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--brass-light);
    transition: transform 250ms ease;
  }

  .menu-toggle--open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle--open span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: 0;
    display: block;
    overflow: hidden;
    background: rgba(12, 24, 20, 0.97);
    backdrop-filter: blur(18px);
    transition: max-height 400ms cubic-bezier(0.2,0.7,0.2,1);
  }

  .mobile-nav--open {
    max-height: calc(100svh - var(--header-height));
    border-bottom: 1px solid var(--line-dark);
  }

  .mobile-nav nav {
    width: min(100% - 40px, 1100px);
    margin: 0 auto;
    padding: 22px 0 30px;
    display: grid;
  }

  .mobile-nav a {
    min-height: 58px;
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    border-bottom: 1px solid rgba(225,189,122,0.15);
    font-family: var(--font-serif);
    font-size: 25px;
  }

  .mobile-nav a > span {
    color: var(--brass);
    font-family: var(--font-geist-sans);
    font-size: 10px;
  }

  .mobile-nav__cta {
    margin-top: 18px;
    padding: 0 20px;
    grid-template-columns: 1fr auto !important;
    border: 1px solid var(--brass) !important;
    color: var(--brass-light);
    font-family: var(--font-geist-sans) !important;
    font-size: 14px !important;
  }

  .hero-shell {
    grid-template-columns: minmax(400px, 0.9fr) minmax(430px, 1.1fr);
    gap: 34px;
  }

  .hero h1 { font-size: clamp(58px, 6.5vw, 76px); }
  .hero-visual { min-height: 560px; }
}

@media (max-width: 860px) {
  .hero::before { inset: 52% 0 0; border-left: 0; border-top: 1px solid var(--line-dark); }

  .hero-shell {
    min-height: auto;
    padding: 48px 0 36px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(54px, 10vw, 76px); }
  .hero-visual { min-height: 580px; }
  .capability-bar { grid-template-columns: repeat(2, 1fr); }
  .capability-bar > div:nth-child(2) { border-right: 0; }
  .capability-bar > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line-dark); }
}

@media (max-width: 560px) {
  :root { --header-height: 70px; }

  .header-shell,
  .hero-shell,
  .capability-bar,
  .mobile-nav nav { width: calc(100% - 32px); }

  .brand { gap: 11px; }
  .brand__mark { width: 43px; height: 34px; font-size: 28px; }
  .brand__mark i { left: 17px; bottom: 3px; }
  .brand__name { font-size: 12px; letter-spacing: 0.19em; }
  .menu-toggle { width: 44px; height: 44px; }

  .hero-shell { padding-top: 40px; gap: 42px; }
  .eyebrow { margin-bottom: 20px; font-size: 10px; gap: 10px; letter-spacing: 0.1em; }
  .eyebrow > span { width: 30px; }
  .hero h1 { font-size: clamp(48px, 14.6vw, 66px); line-height: 0.96; }
  .hero__lede { margin-top: 22px; font-size: 15px; line-height: 1.62; }
  .hero-actions { margin-top: 28px; display: grid; grid-template-columns: 1fr; gap: 10px; }
  .button { width: 100%; min-height: 54px; padding: 0 20px; justify-content: space-between; }
  .hero-industries { margin-top: 28px; align-items: flex-start; gap: 12px; }
  .maple-mark { width: 30px; height: 32px; font-size: 17px; }
  .hero-industries p { flex-wrap: wrap; gap: 8px; line-height: 1.4; font-size: 11px; }

  .hero-visual { min-height: 390px; }
  .hero-image { border-radius: 10px; }
  .hero-image--construction { width: 86%; height: 55%; left: 0; }
  .hero-image--manufacturing { width: 67%; height: 31%; top: 38%; }
  .hero-image--logistics { width: 70%; height: 33%; right: 4%; }
  .material-slab--green { left: 4%; width: 27%; height: 47%; }
  .material-slab--brass { left: 10%; bottom: 18%; width: 42px; height: 38px; }
  .material-slab--brass::after { width: 9px; height: 9px; inset: 14px auto auto 16px; }
  .hero-visual__label { top: 5%; padding: 9px 10px; }
  .hero-visual__label strong { font-size: 9px; }

  .capability-bar { min-height: 0; }
  .capability-bar > div { min-height: 82px; padding: 16px 12px; gap: 10px; }
  .capability-bar strong { font-size: 24px; }
  .capability-bar span { font-size: 9px; line-height: 1.45; }
}

@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;
  }
}

/* v4 ultimate index upgrade */
.hero--index {
  min-height: 106svh;
}

.hero--index::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 12% -10% auto auto;
  width: min(58vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(225, 189, 122, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(197, 154, 85, 0.12), transparent 52%),
    conic-gradient(from 90deg, transparent, rgba(225, 189, 122, 0.08), transparent 46%);
  animation: slow-spin 34s linear infinite;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(225, 189, 122, 0.13);
  border-radius: 999px;
}

.hero-orbit--one {
  width: 260px;
  height: 260px;
  left: 5%;
  top: 18%;
  animation: float-soft 9s ease-in-out infinite;
}

.hero-orbit--two {
  width: 150px;
  height: 150px;
  right: 8%;
  bottom: 18%;
  animation: float-soft 7s ease-in-out infinite reverse;
}

.hero-visual--premium .hero-image {
  border-radius: clamp(22px, 2.2vw, 38px);
}

.hero-radar {
  position: absolute;
  z-index: 6;
  left: 1%;
  top: 14%;
  width: 134px;
  aspect-ratio: 1;
  border: 1px solid rgba(225, 189, 122, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(225,189,122,0.2) 0 4px, transparent 5px),
    repeating-radial-gradient(circle, rgba(225,189,122,0.1) 0 1px, transparent 1px 26px),
    rgba(9, 24, 19, 0.72);
  box-shadow: 0 24px 55px rgba(0,0,0,0.32);
  backdrop-filter: blur(12px);
}

.hero-radar::before {
  position: absolute;
  content: "";
  inset: 8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(225,189,122,0.55), transparent 38%);
  mask: radial-gradient(circle, transparent 0 12px, #000 13px);
  animation: slow-spin 5.5s linear infinite;
}

.hero-radar span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass-light);
  box-shadow: 0 0 18px rgba(225,189,122,0.8);
}

.hero-radar span:nth-child(1) { left: 28%; top: 34%; }
.hero-radar span:nth-child(2) { right: 24%; top: 48%; }
.hero-radar span:nth-child(3) { left: 46%; bottom: 20%; }

.command-section {
  position: relative;
  padding: clamp(100px, 10vw, 160px) 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(197,154,85,0.14), transparent 30%),
    linear-gradient(180deg, #101513, #0b201b);
  overflow: hidden;
}

.command-section::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(225,189,122,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225,189,122,0.16) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.command-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 7vw, 108px);
}

.command-copy h2,
.signature-heading h2,
.closing-showcase h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(52px, 5.6vw, 86px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.command-copy p:not(.section-kicker),
.signature-heading p,
.closing-showcase p {
  max-width: 670px;
  color: rgba(243,240,232,0.66);
  font-size: 16px;
  line-height: 1.78;
}

.command-points {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.command-points span {
  padding: 12px 16px;
  border: 1px solid rgba(225,189,122,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: var(--brass-light);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.command-board {
  position: relative;
  min-height: 560px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(225,189,122,0.24);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent 34%),
    rgba(6, 26, 21, 0.88);
  box-shadow: 0 36px 110px rgba(0,0,0,0.38);
  overflow: hidden;
}

.command-board::before {
  position: absolute;
  content: "";
  inset: 18px;
  border: 1px solid rgba(225,189,122,0.1);
  border-radius: 32px;
  pointer-events: none;
}

.command-board__top,
.command-board__metrics {
  position: relative;
  z-index: 2;
}

.command-board__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(243,240,232,0.66);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.command-board__top strong {
  color: var(--brass-light);
}

.command-board__map {
  position: relative;
  z-index: 1;
  min-height: 360px;
  margin: 40px 0 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 52%, rgba(225,189,122,0.17), transparent 34%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 26%);
  overflow: hidden;
}

.command-board__map i {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 62%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,189,122,0.46), transparent);
  transform-origin: left center;
  animation: line-pulse 3.2s ease-in-out infinite;
}

.command-board__map i:nth-child(1) { transform: rotate(18deg) translateX(-50%); }
.command-board__map i:nth-child(2) { transform: rotate(116deg) translateX(-50%); animation-delay: 400ms; }
.command-board__map i:nth-child(3) { transform: rotate(202deg) translateX(-50%); animation-delay: 800ms; }
.command-board__map i:nth-child(4) { transform: rotate(304deg) translateX(-50%); animation-delay: 1200ms; }

.command-node {
  position: absolute;
  min-width: 86px;
  padding: 12px 16px;
  border: 1px solid rgba(225,189,122,0.32);
  border-radius: 999px;
  background: rgba(13,43,36,0.78);
  color: var(--brass-light);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
  box-shadow: 0 16px 35px rgba(0,0,0,0.22);
  animation: float-soft 6s ease-in-out infinite;
}

.command-node--one { left: 8%; top: 18%; }
.command-node--two { right: 10%; top: 24%; animation-delay: 600ms; }
.command-node--three { left: 18%; bottom: 16%; animation-delay: 900ms; }
.command-node--four { right: 16%; bottom: 18%; animation-delay: 1300ms; }

.command-board__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.command-board__metrics div {
  min-height: 112px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid rgba(225,189,122,0.14);
  border-radius: 24px;
  background: rgba(255,255,255,0.035);
}

.command-board__metrics strong {
  color: var(--brass-light);
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
}

.command-board__metrics span {
  color: rgba(243,240,232,0.58);
  font-size: 11px;
  line-height: 1.45;
  text-transform: uppercase;
}

.signature-services {
  position: relative;
  padding: clamp(110px, 11vw, 176px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(13,43,36,0.12), transparent 28%),
    var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.signature-services::after {
  position: absolute;
  content: "";
  right: -15vw;
  top: 14%;
  width: 36vw;
  aspect-ratio: 1;
  border: 1px solid rgba(13,43,36,0.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,154,85,0.16), transparent 55%);
}

.signature-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.48fr);
  align-items: end;
  gap: clamp(32px, 6vw, 82px);
}

.signature-heading p:not(.section-kicker) {
  margin: 0;
  color: rgba(16,21,19,0.62);
}

.service-cinema {
  position: relative;
  z-index: 2;
  overflow: hidden;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.service-cinema.is-dragging {
  cursor: grabbing;
}

.service-cinema__track {
  width: max-content;
  padding: 8px 0 40px;
  display: flex;
  gap: 24px;
  animation: reference-flow 48s linear infinite;
}

.service-cinema:hover .service-cinema__track {
  animation-play-state: paused;
}

.cinema-card {
  position: relative;
  width: clamp(340px, 37vw, 560px);
  height: clamp(470px, 46vw, 650px);
  display: block;
  overflow: hidden;
  border: 1px solid rgba(13,43,36,0.14);
  border-radius: 42px;
  background: var(--forest);
  box-shadow: 0 30px 90px rgba(13,43,36,0.18);
  isolation: isolate;
  transition: transform 620ms var(--ease-premium), box-shadow 620ms var(--ease-premium), border-color 350ms ease;
}

.cinema-card:hover {
  z-index: 3;
  border-color: rgba(197,154,85,0.72);
  box-shadow: 0 42px 110px rgba(13,43,36,0.28);
  transform: translateY(-14px) scale(1.016);
}

.cinema-card::before {
  position: absolute;
  z-index: 1;
  content: "";
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,20,16,0.22), transparent 34%),
    linear-gradient(0deg, rgba(8,22,17,0.95), transparent 68%);
}

.cinema-card::after {
  position: absolute;
  z-index: 2;
  content: "";
  inset: 18px;
  border: 1px solid rgba(243,240,232,0.16);
  border-radius: 30px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 420ms ease, transform 620ms var(--ease-premium);
}

.cinema-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.cinema-card img {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
  transition: transform 1.3s var(--ease-premium), filter 600ms ease;
}

.cinema-card:hover img {
  transform: scale(1.1);
  filter: saturate(1) contrast(1.02);
}

.cinema-card__tag {
  position: absolute;
  z-index: 3;
  left: 28px;
  top: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(243,240,232,0.22);
  border-radius: 999px;
  background: rgba(8,18,14,0.48);
  color: rgba(243,240,232,0.78);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.cinema-card__copy {
  position: absolute;
  z-index: 3;
  inset: auto 30px 30px;
  transform: translateY(34px);
  transition: transform 620ms var(--ease-premium);
}

.cinema-card:hover .cinema-card__copy {
  transform: translateY(0);
}

.cinema-card__copy h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 62px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.cinema-card__copy p {
  max-width: 440px;
  margin: 18px 0 20px;
  color: rgba(243,240,232,0.68);
  font-size: 13px;
  line-height: 1.66;
}

.cinema-card__copy strong {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brass-light);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-section--premium,
.industries-section--premium,
.services-section--premium,
.projects-section--premium,
.process-section--premium {
  position: relative;
}

.industries-section--premium .industry-card,
.service-row--premium,
.projects-section--premium .project-card,
.process-section--premium .process-step {
  border-radius: clamp(24px, 2.8vw, 40px);
}

.service-row--premium {
  position: relative;
  overflow: hidden;
}

.service-row--premium::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(105deg, transparent 15%, rgba(225,189,122,0.08), transparent 55%);
  transform: translateX(-120%);
  transition: transform 700ms var(--ease-premium);
}

.service-row--premium:hover::after {
  transform: translateX(120%);
}

.projects-section--premium .project-grid {
  grid-template-columns: repeat(6, 1fr);
}

.projects-section--premium .project-card {
  grid-column: span 2;
}

.projects-section--premium .project-card--wide {
  grid-column: span 3;
}

.closing-showcase {
  position: relative;
  min-height: 92svh;
  padding: clamp(120px, 12vw, 190px) 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #091713;
  color: var(--ivory);
}

.closing-showcase::before {
  position: absolute;
  content: "";
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(197,154,85,0.18), transparent 34%),
    linear-gradient(180deg, rgba(9,23,19,0.1), rgba(9,23,19,0.92));
  z-index: 1;
}

.closing-showcase__media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  opacity: 0.42;
}

.closing-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.05);
  animation: closing-pan 16s ease-in-out infinite alternate;
}

.closing-showcase__media img:nth-child(2) {
  animation-delay: 1.2s;
}

.closing-showcase__media img:nth-child(3) {
  animation-delay: 2.1s;
}

.closing-showcase__copy {
  position: relative;
  z-index: 2;
  max-width: 960px;
  text-align: center;
}

.closing-showcase__copy .section-kicker {
  justify-content: center;
  color: var(--brass-light);
}

.closing-showcase__copy p {
  margin: 24px auto 34px;
}

.closing-showcase__copy .button {
  width: max-content;
  margin: 0 auto;
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes float-soft {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@keyframes line-pulse {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.84; }
}

@keyframes closing-pan {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.08) translateY(-18px); }
}

@media (max-width: 1180px) {
  .command-grid,
  .signature-heading {
    grid-template-columns: 1fr;
  }

  .command-board {
    min-height: 520px;
  }

  .projects-section--premium .project-card,
  .projects-section--premium .project-card--wide {
    grid-column: span 3;
  }
}

@media (max-width: 860px) {
  .hero--index {
    min-height: auto;
  }

  .hero-radar {
    width: 106px;
    left: 4%;
    top: 8%;
  }

  .command-section,
  .signature-services,
  .closing-showcase {
    padding-block: 86px;
  }

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

  .command-board {
    min-height: 460px;
    border-radius: 30px;
  }

  .command-board__map {
    min-height: 280px;
  }

  .command-board__metrics {
    grid-template-columns: 1fr;
  }

  .service-cinema {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .service-cinema__track {
    width: max-content;
    padding-inline: 20px;
    animation: none;
  }

  .cinema-card {
    scroll-snap-align: center;
  }

  .projects-section--premium .project-grid {
    grid-template-columns: 1fr;
  }

  .projects-section--premium .project-card,
  .projects-section--premium .project-card--wide {
    grid-column: auto;
  }

  .closing-showcase__media {
    grid-template-columns: 1fr;
  }

  .closing-showcase__media img:nth-child(n + 2) {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-orbit,
  .hero--index::after {
    display: none;
  }

  .command-copy h2,
  .signature-heading h2,
  .closing-showcase h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .command-points {
    gap: 8px;
  }

  .command-points span {
    width: 100%;
    text-align: center;
  }

  .command-board {
    min-height: auto;
    padding: 18px;
    border-radius: 24px;
  }

  .command-board__map {
    min-height: 240px;
    margin: 28px 0 18px;
    border-radius: 22px;
  }

  .command-node {
    min-width: 72px;
    padding: 9px 12px;
    font-size: 10px;
  }

  .cinema-card {
    width: min(82vw, 350px);
    height: 460px;
    border-radius: 28px;
  }

  .cinema-card::after {
    inset: 12px;
    border-radius: 20px;
  }

  .cinema-card__tag {
    left: 18px;
    top: 18px;
    max-width: calc(100% - 36px);
    white-space: normal;
    line-height: 1.35;
  }

  .cinema-card__copy {
    inset: auto 20px 22px;
    transform: none;
  }

  .cinema-card__copy h3 {
    font-size: 38px;
  }

  .closing-showcase {
    min-height: 78svh;
    padding-inline: 0;
  }

  .closing-showcase__copy .button {
    width: 100%;
  }
}

/* v3 shared navigation and secure-portal presentation */
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-login {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: rgba(243,240,232,0.78);
  font-size: 13px;
  transition: color 220ms ease, background-color 220ms ease;
}

.header-login:hover,
.header-login:focus-visible { color: var(--ivory); background: rgba(255,255,255,0.07); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 8px; }
.nav-dropdown > a > span { color: var(--brass-light); font-size: 18px; transition: transform 250ms ease; }
.nav-dropdown:hover > a > span,
.nav-dropdown:focus-within > a > span { transform: rotate(180deg); }

.industry-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  width: min(760px, calc(100vw - 48px));
  padding: 18px;
  display: grid;
  grid-template-columns: 0.78fr 1.4fr;
  gap: 18px;
  border: 1px solid rgba(225,189,122,0.22);
  border-radius: 28px;
  background: rgba(12,24,20,0.97);
  box-shadow: 0 30px 80px rgba(0,0,0,0.42);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px) scale(0.985);
  transform-origin: 50% 0;
  transition: opacity 220ms ease, visibility 220ms ease, transform 320ms var(--ease-premium);
}

.nav-dropdown:hover .industry-menu,
.nav-dropdown:focus-within .industry-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); }

.industry-menu__intro {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 20px;
  background: linear-gradient(155deg, var(--forest-light), var(--forest));
}
.industry-menu__intro > span { color: var(--brass-light); font-size: 10px; letter-spacing: 0.11em; text-transform: uppercase; }
.industry-menu__intro strong { margin-top: 38px; font-family: var(--font-serif); font-size: 32px; font-weight: 400; line-height: 1.05; }
.industry-menu__intro p { margin: 12px 0 24px; color: rgba(243,240,232,0.64); font-size: 12px; line-height: 1.6; }
.industry-menu .industry-menu__intro a { width: max-content; padding: 0; display: inline-flex; align-items: center; gap: 12px; color: var(--brass-light); font-size: 12px; }
.industry-menu__intro a::after,
.industry-menu__links a::after { display: none; }

.industry-menu__links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
.industry-menu__links > a,
.industry-menu__group > a {
  min-height: 64px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(225,189,122,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  font-family: var(--font-serif);
  font-size: 20px;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.industry-menu__links > a:hover,
.industry-menu__group > a:hover { background: rgba(197,154,85,0.1); border-color: rgba(225,189,122,0.4); transform: translateY(-2px); }
.industry-menu__links a > span { color: var(--brass); font-family: Arial, sans-serif; font-size: 9px; }
.industry-menu__links .icon-arrow { width: 16px; }
.industry-menu__group { grid-column: span 2; }
.industry-menu__group > a { grid-template-columns: 26px 1fr auto; }
.industry-menu__group > div { padding: 5px 12px 0 42px; display: flex; gap: 20px; }
.industry-menu__group > div a { padding: 7px 0; color: rgba(243,240,232,0.62); font-family: Arial, sans-serif; font-size: 11px; }
.industry-menu__group > div a:hover { color: var(--brass-light); }

.mobile-industry-links { padding: 10px 0 12px 34px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; border-bottom: 1px solid rgba(225,189,122,0.15); }
.mobile-industry-links a { min-height: 40px; padding: 0 12px; display: flex; border: 1px solid rgba(225,189,122,0.12); border-radius: 12px; font-family: Arial, sans-serif; font-size: 12px; }

.portal-main { background: var(--paper); color: var(--ink); }
.portal-login {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 70px) clamp(28px,5vw,80px) 70px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(440px,0.75fr);
  align-items: center;
  gap: clamp(54px,8vw,130px);
  background:
    radial-gradient(circle at 12% 24%, rgba(197,154,85,0.18), transparent 27%),
    linear-gradient(135deg, #f1ede3, #e2dccf);
  overflow: hidden;
}
.portal-login::before { position: absolute; content: ""; inset: 0; pointer-events: none; opacity: 0.24; background-image: linear-gradient(rgba(13,43,36,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(13,43,36,.08) 1px, transparent 1px); background-size: 76px 76px; mask-image: linear-gradient(90deg,#000,transparent 64%); }
.portal-login__intro,
.portal-card { position: relative; z-index: 1; }
.portal-login__intro { max-width: 760px; }
.portal-login__intro h1 { margin: 18px 0 24px; max-width: 760px; color: var(--forest); font-family: var(--font-serif); font-size: clamp(58px,7vw,106px); font-weight: 400; line-height: .94; letter-spacing: -.04em; }
.portal-login__intro > p:not(.section-kicker) { max-width: 670px; color: rgba(16,21,19,.67); font-size: clamp(17px,1.5vw,21px); line-height: 1.7; }
.portal-benefits { margin: 40px 0 30px; padding: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; list-style: none; }
.portal-benefits li { min-height: 76px; padding: 16px 18px; display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 8px; border: 1px solid rgba(13,43,36,.12); border-radius: 18px; background: rgba(255,255,255,.42); transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease; }
.portal-benefits li:hover { transform: translateY(-4px); border-color: rgba(197,154,85,.6); background: rgba(255,255,255,.76); }
.portal-benefits span { color: var(--brass); font-size: 10px; }
.portal-benefits strong { font-size: 14px; }
.portal-security { max-width: 620px; padding: 16px 18px; display: flex; align-items: center; gap: 14px; border-radius: 18px; background: rgba(13,43,36,.08); }
.portal-security > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: var(--brass-light); }
.portal-security p { margin: 0; color: rgba(16,21,19,.64); font-size: 12px; line-height: 1.5; }
.portal-security strong { color: var(--forest); }

.portal-card { width: min(100%,620px); justify-self: end; padding: 26px; border: 1px solid rgba(13,43,36,.1); border-radius: 34px; background: rgba(255,255,255,.86); box-shadow: 0 36px 100px rgba(13,43,36,.17); backdrop-filter: blur(20px); }
.portal-tabs { padding: 6px; display: grid; grid-template-columns: repeat(2,1fr); gap: 6px; border-radius: 18px; background: rgba(13,43,36,.07); }
.portal-tabs button { min-height: 58px; border: 0; border-radius: 13px; background: transparent; color: rgba(16,21,19,.55); font-weight: 750; cursor: pointer; transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease; }
.portal-tabs button.is-active { background: var(--forest); color: var(--brass-light); box-shadow: 0 12px 30px rgba(13,43,36,.22); }
.portal-card__heading { padding: 34px 24px 0; text-align: center; }
.portal-card__heading p { margin: 0 0 8px; color: var(--brass); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.portal-card__heading h2 { margin: 0; color: var(--forest); font-family: var(--font-serif); font-size: clamp(34px,3.5vw,52px); font-weight: 400; line-height: 1.04; }
.portal-card .login-form { margin: 24px 0 0; padding: 24px; border-color: rgba(13,43,36,.1); background: rgba(13,43,36,.025); }
.portal-card .login-form button[type="submit"] { width: 100%; margin-top: 18px; opacity: 1; cursor: pointer; }
.password-field { position: relative; }
.password-field input { padding-right: 58px; }
.password-field button { position: absolute; inset: 0 0 0 auto; width: 52px; margin: 0 !important; border: 0; border-left: 1px solid rgba(13,43,36,.12); border-radius: 0 12px 12px 0; background: rgba(13,43,36,.04); color: var(--forest); opacity: 1 !important; cursor: pointer !important; }
.login-form__options { margin: -3px 0 6px; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: rgba(16,21,19,.6); font-size: 12px; }
.login-form__options a { color: var(--forest); font-weight: 700; }
.check-control { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; }
.check-control input { accent-color: var(--forest); }
.portal-form-status { min-height: 20px; margin: 14px 0 0; color: #8a5e20; font-size: 12px; line-height: 1.5; text-align: center; }
.portal-help { margin: 18px 0 4px; color: rgba(16,21,19,.55); font-size: 12px; text-align: center; }
.portal-help a { color: var(--forest); font-weight: 750; }
.portal-login--compact .portal-login__intro .text-link { margin-top: 24px; color: var(--forest); }

@media (max-width: 1180px) {
  .header-actions { display: none; }
  .portal-login { grid-template-columns: 1fr 480px; gap: 46px; }
  .portal-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .portal-login { padding: calc(var(--header-height) + 46px) 24px 54px; grid-template-columns: 1fr; }
  .portal-login__intro { max-width: 720px; }
  .portal-login__intro h1 { font-size: clamp(54px,12vw,86px); }
  .portal-benefits { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .portal-card { width: 100%; justify-self: stretch; }
}

@media (max-width: 560px) {
  .mobile-industry-links { padding-left: 0; }
  .mobile-industry-links a { min-height: 38px; font-size: 11px; }
  .portal-login { padding-inline: 16px; }
  .portal-benefits { grid-template-columns: 1fr; margin-top: 30px; }
  .portal-card { padding: 14px; border-radius: 24px; }
  .portal-card__heading { padding: 28px 10px 0; }
  .portal-card .login-form { padding: 18px 14px; }
  .portal-tabs button { min-height: 52px; font-size: 12px; }
  .login-form__options { align-items: flex-start; }
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 16px;
  padding: 12px 16px;
  background: var(--brass-light);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.content-shell {
  width: min(100% - 64px, 1320px);
  margin: 0 auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.section-kicker {
  margin: 0 0 24px;
  color: #886329;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-section {
  position: relative;
  padding: clamp(110px, 11vw, 176px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(197, 154, 85, 0.1), transparent 30%),
    var(--paper);
  color: var(--ink);
}

.intro-section::after {
  position: absolute;
  content: "N";
  right: -2vw;
  bottom: -13vw;
  color: rgba(13, 43, 36, 0.035);
  font-family: var(--font-serif);
  font-size: clamp(280px, 40vw, 620px);
  line-height: 1;
  pointer-events: none;
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(410px, 0.92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: clamp(70px, 8vw, 132px);
}

.intro-visual {
  position: relative;
  min-height: 610px;
}

.intro-visual::before {
  position: absolute;
  content: "";
  width: 70%;
  height: 74%;
  left: -22px;
  bottom: -22px;
  border: 1px solid rgba(13, 43, 36, 0.28);
  border-radius: var(--radius-lg);
}

.intro-visual__frame {
  position: absolute;
  inset: 0 6% 8% 0;
  overflow: hidden;
  background: var(--forest);
  border-radius: var(--radius-lg);
}

.intro-visual__frame::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9, 26, 21, 0.45));
  pointer-events: none;
}

.intro-visual__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.06);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.intro-visual:hover img {
  transform: scale(1.035);
}

.intro-visual__stamp {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 178px;
  aspect-ratio: 1;
  padding: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--forest);
  border: 1px solid var(--brass);
  color: var(--brass-light);
  box-shadow: 0 24px 50px rgba(13, 43, 36, 0.26);
  border-radius: var(--radius-md);
}

.intro-visual__stamp span {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-visual__stamp strong {
  align-self: flex-end;
  font-family: var(--font-serif);
  font-size: 68px;
  font-weight: 400;
  line-height: 0.8;
}

.intro-copy h2,
.services-sticky h2,
.process-heading h2,
.commitment-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.intro-copy__lead {
  margin: 34px 0 0;
  color: var(--forest);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.intro-copy > p:not(.section-kicker):not(.intro-copy__lead) {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(16, 21, 19, 0.67);
  font-size: 16px;
  line-height: 1.8;
}

.principle-list {
  margin: 38px 0 32px;
  border-top: 1px solid var(--line-light);
}

.principle-list > div {
  min-height: 59px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.principle-list span {
  color: #946c2d;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.principle-list strong {
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0.03em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid #99713a;
  color: var(--forest);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.045em;
}

.moving-services {
  position: relative;
  padding: clamp(110px, 11vw, 176px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(197, 154, 85, 0.14), transparent 25%),
    linear-gradient(145deg, #0f1714, #0a2b23 68%, #102019);
  color: var(--ivory);
}

.moving-services::before {
  position: absolute;
  content: "";
  width: 40vw;
  aspect-ratio: 1;
  right: -14vw;
  top: -18vw;
  border: 1px solid rgba(225, 189, 122, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(225, 189, 122, 0.02), 0 0 0 120px rgba(225, 189, 122, 0.015);
}

.moving-services__heading {
  position: relative;
  z-index: 2;
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(280px, 0.4fr);
  align-items: end;
  gap: 70px;
}

.moving-services__heading .section-kicker {
  color: var(--brass-light);
}

.moving-services__heading h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.moving-services__heading > p {
  margin: 0 0 7px;
  color: rgba(243, 240, 232, 0.58);
  font-size: 14px;
  line-height: 1.75;
}

.reference-rail {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.reference-track {
  width: max-content;
  padding: 8px 0 38px;
  display: flex;
  gap: 24px;
  animation: reference-flow 42s linear infinite;
  will-change: transform;
}

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

@keyframes reference-flow {
  to { transform: translateX(calc(-50% - 12px)); }
}

.reference-card {
  position: relative;
  width: clamp(340px, 35vw, 520px);
  height: clamp(460px, 45vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(225, 189, 122, 0.2);
  border-radius: var(--radius-lg);
  background: var(--forest);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  isolation: isolate;
  transform: translateY(0) scale(1);
  transition: transform 600ms var(--ease-premium), border-color 400ms ease,
    box-shadow 600ms var(--ease-premium);
}

.reference-card:hover {
  z-index: 3;
  border-color: rgba(225, 189, 122, 0.7);
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.48);
  transform: translateY(-12px) scale(1.015);
}

.reference-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.04);
  transform: scale(1.01);
  transition: transform 1.2s var(--ease-premium), filter 600ms ease;
}

.reference-card:hover > img {
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.09);
}

.reference-card__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 17, 13, 0.38), transparent 32%),
    linear-gradient(0deg, rgba(7, 19, 15, 0.96), rgba(7, 19, 15, 0.04) 68%);
  transition: background 500ms ease;
}

.reference-card__top {
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.reference-card__top span:first-child {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(225, 189, 122, 0.55);
  border-radius: 50%;
  color: var(--brass-light);
  font-family: var(--font-serif);
  font-size: 19px;
  backdrop-filter: blur(10px);
}

.reference-card__top span:last-child {
  padding: 9px 13px;
  border: 1px solid rgba(243, 240, 232, 0.22);
  border-radius: 999px;
  background: rgba(8, 18, 14, 0.38);
  color: rgba(243, 240, 232, 0.74);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.reference-card__copy {
  position: absolute;
  inset: auto 30px 30px;
  transform: translateY(48px);
  transition: transform 600ms var(--ease-premium);
}

.reference-card:hover .reference-card__copy {
  transform: translateY(0);
}

.reference-card__copy h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(38px, 3.6vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.reference-card__copy p {
  max-width: 420px;
  margin: 17px 0 20px;
  color: rgba(243, 240, 232, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.reference-card__copy a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--brass-light);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 350ms ease 80ms;
}

.reference-card:hover .reference-card__copy a {
  opacity: 1;
}

.reference-note {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(243, 240, 232, 0.45);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reference-note i {
  flex: 1;
  height: 1px;
  background: rgba(225, 189, 122, 0.23);
}

.industries-section {
  padding: clamp(110px, 11vw, 168px) 0;
  background:
    radial-gradient(circle at 76% 12%, rgba(197, 154, 85, 0.12), transparent 26%),
    var(--forest);
}

.section-heading {
  margin-bottom: clamp(54px, 7vw, 90px);
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) minmax(600px, 1fr);
  gap: 50px;
  color: var(--ink);
}

.section-heading--light {
  color: var(--ivory);
}

.section-heading__meta {
  padding-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.section-heading__meta span {
  color: var(--brass);
  font-family: var(--font-serif);
  font-size: 30px;
}

.section-heading__meta p {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-heading__copy {
  display: grid;
  grid-template-columns: minmax(480px, 1fr) minmax(230px, 0.48fr);
  align-items: end;
  gap: 54px;
}

.section-heading__copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(54px, 5.25vw, 78px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading__copy > p {
  margin: 0 0 5px;
  color: rgba(16, 21, 19, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.section-heading--light .section-heading__copy > p {
  color: rgba(243, 240, 232, 0.59);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.industry-card {
  position: relative;
  min-height: 365px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(225, 189, 122, 0.25);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.015);
  transition: background-color 320ms ease, transform 320ms ease, box-shadow 320ms ease;
}

.industry-card::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(135deg, rgba(225, 189, 122, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 350ms ease;
}

.industry-card:hover {
  z-index: 2;
  background: var(--forest-light);
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.23);
}

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

.industry-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--brass-light);
}

.industry-card__top > span {
  font-family: var(--font-serif);
  font-size: 28px;
}

.industry-card__top .icon-arrow {
  opacity: 0.45;
}

.industry-card > p:not(.industry-card__description) {
  position: relative;
  z-index: 1;
  margin: auto 0 10px;
  color: rgba(243, 240, 232, 0.46);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.industry-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
}

.industry-card__rule {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 1px;
  margin: 20px 0 17px;
  background: var(--brass);
  transition: width 350ms ease;
}

.industry-card:hover .industry-card__rule {
  width: 100%;
}

.industry-card__description {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(243, 240, 232, 0.57);
  font-size: 13px;
  line-height: 1.65;
}

.industry-card__action {
  position: absolute;
  z-index: 1;
  left: 28px;
  bottom: 24px;
  color: var(--brass-light);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.industry-card:hover .industry-card__description {
  opacity: 0;
}

.industry-card:hover .industry-card__action {
  opacity: 1;
  transform: translateY(0);
}

.industry-marquee {
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(225, 189, 122, 0.25);
  border-bottom: 1px solid rgba(225, 189, 122, 0.25);
  background: var(--ink);
  color: var(--ivory-muted);
}

.industry-marquee > div {
  width: max-content;
  display: flex;
  animation: marquee 36s linear infinite;
}

.industry-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
  font-family: var(--font-serif);
  font-size: 25px;
  white-space: nowrap;
}

.industry-marquee i {
  color: var(--brass);
  font-family: var(--font-geist-sans);
  font-size: 11px;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.services-section {
  padding: clamp(110px, 11vw, 170px) 0;
  background: var(--paper);
  color: var(--ink);
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(370px, 0.75fr) minmax(580px, 1.25fr);
  align-items: start;
  gap: clamp(70px, 9vw, 148px);
}

.services-sticky {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.services-sticky h2 {
  max-width: 560px;
}

.services-sticky > p:not(.section-kicker) {
  max-width: 530px;
  margin: 28px 0 34px;
  color: rgba(16, 21, 19, 0.64);
  font-size: 16px;
  line-height: 1.75;
}

.button--paper {
  width: max-content;
  background: var(--forest);
  color: var(--brass-light);
}

.button--paper:hover,
.button--paper:focus-visible {
  background: var(--brass);
  color: var(--ink);
}

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

.service-row {
  position: relative;
  min-height: 154px;
  padding: 30px;
  display: grid;
  grid-template-columns: 58px 1fr 42px;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  transition: transform 350ms var(--ease-premium), box-shadow 350ms ease,
    border-color 350ms ease;
}

.service-row::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(13, 43, 36, 0.055);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 320ms ease;
}

.service-row:hover::before {
  transform: scaleY(1);
}

.service-row:hover {
  border-color: rgba(13, 43, 36, 0.27);
  box-shadow: 0 20px 42px rgba(13, 43, 36, 0.11);
  transform: translateX(8px);
}

.service-row__number,
.service-row > div,
.service-row__arrow {
  position: relative;
  z-index: 1;
}

.service-row__number {
  color: #956c2f;
  font-family: var(--font-serif);
  font-size: 24px;
}

.service-row h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(29px, 2.2vw, 38px);
  font-weight: 400;
  line-height: 1.1;
}

.service-row p {
  max-width: 590px;
  margin: 0;
  color: rgba(16, 21, 19, 0.57);
  font-size: 13px;
  line-height: 1.65;
}

.service-row__arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 43, 36, 0.2);
  border-radius: 50%;
  color: var(--forest);
  transition: background-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.service-row:hover .service-row__arrow {
  background: var(--forest);
  color: var(--brass-light);
  transform: rotate(45deg);
}

.projects-section {
  padding: clamp(110px, 11vw, 170px) 0;
  background: var(--ivory);
  color: var(--ink);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px 28px;
}

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

.project-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 45px rgba(13, 43, 36, 0.08);
  transition: transform 500ms var(--ease-premium), box-shadow 500ms ease;
}

.project-card:hover {
  box-shadow: 0 34px 68px rgba(13, 43, 36, 0.16);
  transform: translateY(-10px);
}

.project-card__image {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--forest);
}

.project-card--wide .project-card__image {
  height: min(60vw, 630px);
}

.project-card__image::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9, 20, 16, 0.4));
}

.project-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1), filter 450ms ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.045);
  filter: saturate(0.98) contrast(1.02);
}

.project-card__image > span {
  position: absolute;
  z-index: 2;
  left: 22px;
  top: 22px;
  padding: 9px 11px;
  background: rgba(13, 43, 36, 0.84);
  color: var(--brass-light);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.project-card__copy {
  padding: 28px 30px 32px;
}

.project-card__copy > p {
  margin: 0 0 11px;
  color: #8c652d;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card__copy h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.1vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.project-card__copy > div {
  margin-top: 18px;
  padding-top: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-light);
}

.project-card__copy > div > span {
  max-width: 660px;
  color: rgba(16, 21, 19, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.project-card__copy .icon-arrow {
  color: #8c652d;
  flex: 0 0 auto;
}

.process-section {
  position: relative;
  padding: clamp(110px, 11vw, 168px) 0;
  overflow: hidden;
  background: var(--ink);
}

.process-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background:
    radial-gradient(circle at 83% 20%, rgba(22, 61, 50, 0.8), transparent 32%),
    linear-gradient(115deg, transparent 48%, rgba(197, 154, 85, 0.07) 48.1%, transparent 48.3%);
}

.process-heading,
.process-grid {
  position: relative;
  z-index: 1;
}

.process-heading {
  max-width: 880px;
}

.process-heading .section-kicker {
  color: var(--brass-light);
}

.process-heading h2 {
  color: var(--ivory);
}

.process-heading > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(243, 240, 232, 0.58);
  font-size: 15px;
  line-height: 1.75;
}

.process-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-step {
  min-height: 320px;
  padding: 36px clamp(24px, 3vw, 48px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  transition: background-color 300ms ease, transform 350ms var(--ease-premium),
    box-shadow 350ms ease;
}

.process-step:first-child {
  border-left: 1px solid var(--line-dark);
}

.process-step:hover {
  background: rgba(22, 61, 50, 0.48);
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.25);
}

.process-step > div {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--brass-light);
}

.process-step > div span {
  font-family: var(--font-serif);
  font-size: 28px;
}

.process-step > div i {
  flex: 1;
  height: 1px;
  background: var(--line-dark);
}

.process-step h3 {
  margin: 70px 0 16px;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
}

.process-step p {
  margin: 0;
  color: rgba(243, 240, 232, 0.55);
  font-size: 14px;
  line-height: 1.7;
}

.commitment-section {
  padding: clamp(110px, 11vw, 168px) 0;
  background: var(--paper);
  color: var(--ink);
}

.commitment-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.85fr) minmax(570px, 1.15fr);
  align-items: start;
  gap: clamp(70px, 8vw, 132px);
}

.commitment-copy > p:not(.section-kicker) {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(16, 21, 19, 0.64);
  font-size: 16px;
  line-height: 1.75;
}

.commitment-cards {
  border-top: 1px solid var(--line-light);
}

.commitment-cards article {
  min-height: 170px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 60px 0.75fr 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  transition: background-color 300ms ease, transform 300ms var(--ease-premium),
    padding 300ms ease;
}

.commitment-cards article:hover {
  padding-left: 22px;
  padding-right: 22px;
  background: rgba(13, 43, 36, 0.06);
  transform: translateX(8px);
}

.commitment-cards article > span {
  color: #91692e;
  font-family: var(--font-serif);
  font-size: 22px;
}

.commitment-cards h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
}

.commitment-cards p {
  margin: 0;
  color: rgba(16, 21, 19, 0.57);
  font-size: 13px;
  line-height: 1.65;
}

.contact-section {
  padding: 0 32px 32px;
  background: var(--paper);
}

.contact-panel {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: clamp(75px, 8vw, 126px) clamp(28px, 7vw, 110px);
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(530px, 1.1fr);
  gap: clamp(70px, 8vw, 130px);
  background:
    radial-gradient(circle at 12% 90%, rgba(197, 154, 85, 0.11), transparent 28%),
    var(--forest);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-copy .section-kicker {
  color: var(--brass-light);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(243, 240, 232, 0.6);
  font-size: 15px;
  line-height: 1.75;
}

.contact-details {
  margin-top: 52px;
  border-top: 1px solid var(--line-dark);
}

.contact-details > div {
  min-height: 62px;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.contact-details span {
  color: var(--brass-light);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: rgba(243, 240, 232, 0.72);
  font-size: 13px;
}

.contact-form {
  padding: 42px;
  align-self: start;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-lg);
}

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

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  margin-bottom: 9px;
  display: block;
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(13, 43, 36, 0.18);
  border-radius: 12px;
  outline: 0;
  background: rgba(13, 43, 36, 0.025);
  color: var(--ink);
  font-size: 14px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(16, 21, 19, 0.35);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(197, 154, 85, 0.14);
}

.button--contact {
  width: 100%;
  justify-content: space-between;
  border-color: var(--forest);
  background: var(--forest);
  color: var(--brass-light);
}

.button--contact:hover,
.button--contact:focus-visible {
  background: var(--brass);
  color: var(--ink);
}

.form-notice {
  height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--forest);
  font-size: 12px;
  line-height: 1.55;
  opacity: 0;
  transition: height 250ms ease, margin 250ms ease, opacity 250ms ease;
}

.form-notice--visible {
  height: auto;
  margin-top: 16px;
  opacity: 1;
}

.site-footer {
  padding: 80px 0 26px;
  background: #0b100e;
}

.footer-top {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid var(--line-dark);
}

.brand--footer .brand__name {
  color: var(--ivory);
}

.footer-top > p {
  max-width: 450px;
  margin: 0;
  color: rgba(243, 240, 232, 0.55);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.4;
}

.footer-top__button {
  min-height: 48px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line-dark);
  color: var(--brass-light);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 999px;
}

.footer-top__button span {
  font-size: 19px;
  transition: transform 220ms ease;
}

.footer-top__button:hover span {
  transform: translateY(-4px);
}

.footer-links {
  padding: 65px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links p {
  margin: 0 0 11px;
  color: var(--brass-light);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  width: max-content;
  max-width: 100%;
  color: rgba(243, 240, 232, 0.5);
  font-size: 12px;
  line-height: 1.5;
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: var(--ivory);
}

.footer-bottom {
  padding-top: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(225, 189, 122, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(243, 240, 232, 0.33);
  font-size: 10px;
  letter-spacing: 0.04em;
}

@media (max-width: 1180px) {
  .content-shell { width: min(100% - 40px, 1100px); }
  .intro-grid { grid-template-columns: 0.9fr 1.1fr; gap: 65px; }
  .intro-visual { min-height: 530px; }
  .section-heading { grid-template-columns: 150px 1fr; gap: 30px; }
  .section-heading__copy { grid-template-columns: 1fr 0.48fr; gap: 40px; }
  .moving-services__heading { grid-template-columns: 1fr 0.42fr; gap: 45px; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 0.78fr 1.22fr; gap: 65px; }
  .contact-panel { grid-template-columns: 0.86fr 1.14fr; gap: 60px; }
}

@media (max-width: 860px) {
  .content-shell { width: min(100% - 40px, 760px); }
  .intro-grid,
  .services-grid,
  .commitment-grid,
  .contact-panel { grid-template-columns: 1fr; }
  .intro-visual { width: min(100%, 620px); min-height: 620px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading__copy { grid-template-columns: 1fr; gap: 24px; }
  .section-heading__copy > p { max-width: 620px; }
  .moving-services__heading { grid-template-columns: 1fr; gap: 24px; }
  .moving-services__heading > p { max-width: 620px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .services-sticky { position: static; }
  .project-card__image { height: 330px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step,
  .process-step:first-child { min-height: 230px; border: 1px solid var(--line-dark); }
  .process-step h3 { margin-top: 42px; }
  .commitment-cards article { grid-template-columns: 60px 0.7fr 1fr; }
  .contact-section { padding: 0; }
  .contact-panel { width: 100%; padding-left: 20px; padding-right: 20px; }
  .contact-copy { max-width: 650px; }
  .contact-form { max-width: 650px; width: 100%; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .content-shell { width: calc(100% - 32px); }
  .intro-section,
  .moving-services,
  .industries-section,
  .services-section,
  .projects-section,
  .process-section,
  .commitment-section { padding: 88px 0; }

  [data-reveal] { transform: translateY(22px); }
  .section-kicker { margin-bottom: 17px; font-size: 9px; }
  .intro-copy h2,
  .services-sticky h2,
  .process-heading h2,
  .commitment-copy h2,
  .contact-copy h2 { font-size: 45px; line-height: 1.03; }

  .intro-grid { gap: 48px; }
  .intro-visual { min-height: 420px; }
  .intro-visual__frame { right: 8%; }
  .intro-visual__stamp { width: 122px; padding: 16px; }
  .intro-visual__stamp strong { font-size: 48px; }
  .intro-copy__lead { margin-top: 26px; font-size: 17px; }
  .intro-copy > p:not(.section-kicker):not(.intro-copy__lead) { font-size: 14px; line-height: 1.7; }

  .moving-services__heading { margin-bottom: 34px; }
  .moving-services__heading h2 { font-size: 45px; line-height: 1.02; }
  .moving-services__heading > p { font-size: 13px; line-height: 1.65; }
  .reference-rail {
    padding: 0 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .reference-rail::-webkit-scrollbar { display: none; }
  .reference-track { width: max-content; padding-bottom: 22px; gap: 14px; animation: none; }
  .reference-card {
    width: min(82vw, 340px);
    height: 460px;
    border-radius: 26px;
    scroll-snap-align: center;
  }
  .reference-track .reference-card:nth-child(n + 5) { display: none; }
  .reference-card__top { padding: 20px; }
  .reference-card__copy { inset: auto 22px 24px; transform: none; }
  .reference-card__copy h3 { font-size: 39px; }
  .reference-card__copy p { font-size: 12px; }
  .reference-card__copy a { opacity: 1; }
  .reference-note { margin-top: 12px; align-items: flex-start; }
  .reference-note span:first-child { color: var(--brass-light); }

  .section-heading { margin-bottom: 42px; }
  .section-heading__meta { padding-top: 0; gap: 13px; }
  .section-heading__meta span { font-size: 24px; }
  .section-heading__meta p { margin-top: 7px; font-size: 9px; }
  .section-heading__copy h2 { font-size: 45px; }
  .section-heading__copy > p { font-size: 13px; line-height: 1.65; }

  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 320px; padding: 24px; }
  .industry-card:hover { transform: translateY(-4px); }
  .industry-card__action { left: 24px; }
  .industry-card h3 { font-size: 36px; }
  .industry-marquee { padding: 16px 0; }
  .industry-marquee span { gap: 20px; padding-right: 20px; font-size: 20px; }

  .services-grid { gap: 48px; }
  .services-sticky > p:not(.section-kicker) { margin: 22px 0 28px; font-size: 14px; }
  .service-row { min-height: 140px; padding: 22px 18px; grid-template-columns: 34px 1fr 32px; gap: 9px; }
  .service-row__number { font-size: 19px; }
  .service-row h3 { font-size: 28px; }
  .service-row p { font-size: 12px; }
  .service-row__arrow { width: 32px; height: 32px; }

  .project-grid { grid-template-columns: 1fr; gap: 48px; }
  .project-card--wide { grid-column: auto; }
  .project-card__image,
  .project-card--wide .project-card__image { height: 280px; }
  .project-card__copy { padding: 24px 22px 27px; }
  .project-card__copy h3 { font-size: 34px; }

  .process-heading > p:last-child { margin-top: 22px; font-size: 13px; }
  .process-grid { margin-top: 52px; }
  .process-step { min-height: 220px; padding: 28px 24px; }
  .process-step h3 { margin-top: 38px; font-size: 42px; }
  .process-step p { font-size: 13px; }

  .commitment-grid { gap: 48px; }
  .commitment-copy > p:not(.section-kicker) { margin-top: 22px; font-size: 14px; }
  .commitment-cards article { min-height: 0; padding: 26px 0; grid-template-columns: 48px 1fr; gap: 10px; }
  .commitment-cards article > p { grid-column: 2; }
  .commitment-cards h3 { font-size: 27px; }

  .contact-panel { padding-top: 82px; padding-bottom: 82px; gap: 50px; border-radius: 28px 28px 0 0; }
  .contact-copy > p:not(.section-kicker) { margin-top: 22px; font-size: 13px; }
  .contact-details { margin-top: 36px; }
  .contact-details > div { grid-template-columns: 65px 1fr; }
  .contact-details a,
  .contact-details p { font-size: 11px; }
  .contact-form { padding: 25px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .site-footer { padding-top: 65px; }
  .footer-top { padding-bottom: 42px; grid-template-columns: 1fr; gap: 28px; }
  .footer-top > p { grid-column: auto; grid-row: auto; font-size: 19px; }
  .footer-top__button { width: max-content; }
  .footer-links { padding: 48px 0; grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (hover: none) {
  .industry-card__action { display: none; }
  .industry-card:hover .industry-card__description { opacity: 1; }
  .reference-card__copy { transform: none; }
  .reference-card__copy a { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  .industry-marquee > div { animation: none; }
  .reference-track { animation: none; }
}

/* PHP edition: premium interaction layer */
.scroll-progress {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--brass), var(--brass-light), #f4d796);
  box-shadow: 0 0 18px rgba(225, 189, 122, 0.7);
  transform: scaleX(0);
  transform-origin: left;
}

.pointer-glow {
  position: fixed;
  z-index: 0;
  width: 420px;
  height: 420px;
  left: -210px;
  top: -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 189, 122, 0.085), transparent 68%);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--pointer-x, 0), var(--pointer-y, 0), 0);
  transition: opacity 300ms ease;
  will-change: transform;
}

body.has-pointer .pointer-glow { opacity: 1; }

.site-header { isolation: isolate; }

.brand__logo {
  width: auto;
  max-width: 220px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(225, 189, 122, 0.14);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-drift 16s ease-in-out infinite alternate;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: var(--brass-light);
  box-shadow: 0 0 30px rgba(225, 189, 122, 0.65);
}

.hero-orbit--one {
  width: min(54vw, 780px);
  aspect-ratio: 1;
  right: -17vw;
  top: 5%;
}

.hero-orbit--one::before { width: 7px; height: 7px; left: 8%; top: 28%; }
.hero-orbit--one::after { width: 4px; height: 4px; right: 24%; bottom: 5%; }
.hero-orbit--two {
  width: min(28vw, 420px);
  aspect-ratio: 1;
  left: -11vw;
  bottom: 4%;
  animation-delay: -6s;
}
.hero-orbit--two::before { width: 5px; height: 5px; right: 10%; top: 33%; }

@keyframes orbit-drift {
  from { transform: rotate(-4deg) scale(0.96); opacity: 0.45; }
  to { transform: rotate(8deg) scale(1.04); opacity: 1; }
}

.hero-visual::after {
  position: absolute;
  z-index: 6;
  content: "";
  width: 46%;
  height: 1px;
  right: -12%;
  top: 34%;
  background: linear-gradient(90deg, transparent, var(--brass-light), transparent);
  opacity: 0.5;
  animation: scan-line 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scan-line {
  0%, 100% { transform: translateY(-80px) scaleX(0.65); opacity: 0; }
  45%, 55% { transform: translateY(120px) scaleX(1); opacity: 0.65; }
}

.parallax-layer { will-change: transform; }

.magnetic { will-change: transform; }

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.reference-card::after,
.industry-card::after,
.project-card::after,
.process-step::after,
.commitment-cards article::after {
  position: absolute;
  z-index: 4;
  content: "";
  width: 55%;
  height: 170%;
  left: -85%;
  top: -35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: rotate(18deg);
  transition: left 800ms var(--ease-premium);
  pointer-events: none;
}

.reference-card:hover::after,
.industry-card:hover::after,
.project-card:hover::after,
.process-step:hover::after,
.commitment-cards article:hover::after { left: 135%; }

.service-row {
  border-radius: var(--radius-md);
  transition: transform 350ms var(--ease-premium), background-color 350ms ease,
    box-shadow 350ms ease, padding-left 350ms var(--ease-premium);
}

.service-row:hover {
  padding-left: 28px;
  background: rgba(13, 43, 36, 0.06);
  box-shadow: 0 18px 44px rgba(13, 43, 36, 0.08);
  transform: translateX(8px);
}

.service-row:hover .service-row__arrow {
  color: var(--ivory);
  background: var(--forest);
  transform: rotate(45deg) scale(1.08);
}

.service-row__arrow { transition: transform 350ms var(--ease-premium), background-color 350ms ease, color 350ms ease; }

.project-card,
.process-step,
.commitment-cards article { position: relative; overflow: hidden; }

.project-card:hover .project-card__image img { transform: scale(1.075); }
.project-card__image img { transition: transform 900ms var(--ease-premium), filter 500ms ease; }

.contact-panel {
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  position: absolute;
  content: "";
  width: 460px;
  height: 460px;
  right: -240px;
  top: -240px;
  border: 1px solid rgba(225, 189, 122, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(225, 189, 122, 0.025), 0 0 0 110px rgba(225, 189, 122, 0.018);
  animation: contact-breathe 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes contact-breathe {
  50% { transform: scale(1.12); opacity: 0.62; }
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.form-notice--error { color: #ffd3c7; }
.form-notice--success { color: #c8f4d8; }

@media (max-width: 860px) {
  .pointer-glow { display: none; }
  .hero-orbit--one { width: 90vw; right: -48vw; }
  .hero-orbit--two { width: 62vw; left: -38vw; }
  .brand__logo { max-width: 175px; height: 44px; }
}

@media (max-width: 560px) {
  .service-row:hover { padding-left: 18px; transform: translateY(-3px); }
  .hero-visual::after { display: none; }
  .brand__logo { max-width: 145px; height: 38px; }
  .scroll-progress { height: 2px; }
}

@media (hover: none) {
  .tilt-card { transform: none !important; }
  .reference-card::after,
  .industry-card::after,
  .project-card::after,
  .process-step::after,
  .commitment-cards article::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit,
  .hero-visual::after,
  .contact-panel::before { animation: none !important; }
  .pointer-glow { display: none; }
  .parallax-layer,
  .tilt-card,
  .magnetic { transform: none !important; }
}

/* Multi-page PHP edition */
.desktop-nav a.is-active,
.desktop-nav a[aria-current="page"] {
  color: var(--brass-light);
}

.desktop-nav a.is-active::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.section-action {
  display: flex;
  justify-content: center;
  padding-top: 54px;
}

.button--ghost-dark {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(13, 43, 36, 0.35);
  border-radius: 999px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 260ms ease, background-color 260ms ease, transform 260ms ease;
}

.button--ghost-dark:hover,
.button--ghost-dark:focus-visible {
  color: var(--ivory);
  background: var(--forest);
  transform: translateY(-3px);
}

.inner-hero {
  position: relative;
  min-height: min(820px, 88svh);
  padding: calc(var(--header-height) + 78px) 0 82px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 84% 20%, rgba(22, 61, 50, 0.75), transparent 30%),
    linear-gradient(115deg, #101513 0%, #0d211b 58%, #102d25 100%);
  overflow: hidden;
  isolation: isolate;
}

.inner-hero::before,
.contact-page::before,
.login-page::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: min(60vw, 850px);
  aspect-ratio: 1;
  right: -25vw;
  top: -30%;
  border: 1px solid rgba(225, 189, 122, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(225, 189, 122, 0.025), 0 0 0 160px rgba(225, 189, 122, 0.015);
  animation: contact-breathe 10s ease-in-out infinite;
}

.inner-hero__texture,
.contact-page__texture {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,0.014) 3px 4px),
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(255,255,255,0.012) 8px 9px);
}

.inner-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.78fr);
  align-items: center;
  gap: clamp(55px, 8vw, 126px);
}

.inner-hero__copy h1,
.contact-copy h1,
.login-page__panel h1 {
  max-width: 880px;
  margin: 28px 0 26px;
  font-family: var(--font-serif);
  font-size: clamp(56px, 6vw, 102px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.052em;
}

.inner-hero__copy h1 em,
.contact-copy h1 em {
  color: var(--brass-light);
  font-weight: 400;
}

.inner-hero__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(243, 240, 232, 0.7);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.7;
}

.inner-hero__visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  border: 1px solid rgba(225, 189, 122, 0.25);
  border-radius: var(--radius-lg);
  background: var(--forest);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.inner-hero__visual::after,
.industry-showcase-card::after,
.service-detail-card::after,
.value-card::after,
.capability-card::after {
  position: absolute;
  z-index: 4;
  content: "";
  width: 48%;
  height: 160%;
  left: -75%;
  top: -30%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
  transform: rotate(18deg);
  transition: left 850ms var(--ease-premium);
  pointer-events: none;
}

.inner-hero__visual:hover::after,
.industry-showcase-card:hover::after,
.service-detail-card:hover::after,
.value-card:hover::after,
.capability-card:hover::after { left: 135%; }

.inner-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
  transition: transform 1s var(--ease-premium), filter 500ms ease;
}

.inner-hero__visual:hover img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.04);
}

.inner-hero__visual figcaption {
  position: absolute;
  z-index: 5;
  inset: auto 24px 24px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: rgba(13, 28, 23, 0.78);
  backdrop-filter: blur(16px);
}

.inner-hero__visual figcaption span {
  color: var(--brass-light);
  font-family: var(--font-serif);
  font-size: 30px;
}

.inner-hero__visual figcaption p {
  margin: 0;
  color: rgba(243,240,232,0.78);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-section {
  position: relative;
  padding: clamp(90px, 11vw, 170px) 0;
}

.page-section--paper { background: var(--paper); color: var(--ink); }
.page-section--ivory { background: var(--ivory); color: var(--ink); }
.page-section--dark { background: var(--ink); color: var(--ivory); }

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.75fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: start;
}

.split-intro h2,
.timeline-layout h2,
.outcome-layout h2,
.process-band h2,
.page-cta h2 {
  margin: 20px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.split-intro p,
.timeline-layout p {
  color: rgba(16,21,19,0.68);
  font-size: 17px;
  line-height: 1.85;
}

.split-intro .lead-copy {
  margin-top: 0;
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: clamp(29px, 3vw, 45px);
  line-height: 1.22;
}

.capability-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-card,
.value-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(225,189,122,0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(13,43,36,0.18));
  overflow: hidden;
  transition: transform 400ms var(--ease-premium), border-color 300ms ease, background 300ms ease;
}

.capability-card:hover,
.value-card:hover {
  border-color: rgba(225,189,122,0.55);
  background: linear-gradient(145deg, rgba(197,154,85,0.15), rgba(13,43,36,0.28));
  transform: translateY(-7px);
}

.capability-card > span,
.value-card > span {
  color: var(--brass-light);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.capability-card h3,
.value-card h3 {
  margin: auto 0 20px;
  max-width: 300px;
  font-family: var(--font-serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.08;
}

.capability-card svg { align-self: flex-end; color: var(--brass-light); }
.value-card p { margin: 0; color: rgba(243,240,232,0.62); line-height: 1.7; }

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 0.78fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.outcome-image {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(13,43,36,0.16);
}

.outcome-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
  transition: transform 900ms var(--ease-premium);
}

.outcome-image:hover img { transform: scale(1.06); }

.outcome-image > span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(13,43,36,0.86);
  color: var(--brass-light);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome-list { margin-top: 40px; border-top: 1px solid var(--line-light); }
.outcome-list > div {
  min-height: 76px;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  transition: padding-left 300ms ease, color 300ms ease;
}
.outcome-list > div:hover { padding-left: 12px; color: var(--forest); }
.outcome-list span { color: var(--brass); font-size: 12px; }
.outcome-list strong { font-size: 17px; font-weight: 600; }

.page-cta {
  padding: 32px;
  background: var(--paper);
}

.page-cta__panel {
  min-height: 390px;
  padding: clamp(42px, 7vw, 100px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 18%, rgba(197,154,85,0.17), transparent 29%),
    linear-gradient(130deg, var(--forest), #0a1e19);
  color: var(--ivory);
  overflow: hidden;
}

.page-cta__panel > div { max-width: 830px; }
.page-cta__panel .section-kicker { color: var(--brass-light); }

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

.industry-showcase-card {
  position: relative;
  min-height: 560px;
  display: block;
  border: 1px solid rgba(225,189,122,0.17);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.industry-showcase-card:nth-child(3n) { grid-column: span 2; min-height: 640px; }
.industry-showcase-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 1s var(--ease-premium), filter 500ms ease; }
.industry-showcase-card:hover img { transform: scale(1.065); filter: saturate(1.1); }
.industry-showcase-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,19,15,0.08), rgba(8,19,15,0.92)); }
.industry-showcase-card__top { position: absolute; inset: 26px 28px auto; display: flex; justify-content: space-between; color: var(--ivory); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.industry-showcase-card__copy { position: absolute; inset: auto 30px 30px; max-width: 650px; }
.industry-showcase-card__copy h2 { margin: 0 0 14px; font-family: var(--font-serif); font-size: clamp(43px, 5vw, 76px); font-weight: 400; line-height: 1; }
.industry-showcase-card__copy p { color: rgba(243,240,232,0.72); line-height: 1.65; }
.industry-showcase-card__copy > span { display: inline-flex; align-items: center; gap: 14px; color: var(--brass-light); font-size: 13px; font-weight: 700; }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.service-detail-card {
  position: relative;
  min-height: 430px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(225,189,122,0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(13,43,36,0.21));
  overflow: hidden;
  transition: transform 400ms var(--ease-premium), border-color 300ms ease;
}
.service-detail-card:hover { transform: translateY(-8px); border-color: rgba(225,189,122,0.5); }
.service-detail-card > div { display: flex; justify-content: space-between; color: var(--brass-light); }
.service-detail-card h2 { margin: 72px 0 22px; max-width: 520px; font-family: var(--font-serif); font-size: clamp(38px, 4vw, 60px); font-weight: 400; line-height: 1.02; }
.service-detail-card p { color: rgba(243,240,232,0.66); line-height: 1.75; }
.service-detail-card ul { margin: 30px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(225,189,122,0.15); list-style: none; }
.service-detail-card li { padding: 7px 0; color: rgba(243,240,232,0.78); font-size: 13px; }
.service-detail-card li::before { content: "✦"; margin-right: 11px; color: var(--brass); }

.process-band > div:first-child { max-width: 780px; margin-bottom: 66px; }
.process-step--light { border-color: rgba(13,43,36,0.13); background: #e8e2d5; color: var(--ink); }
.process-step--light p { color: rgba(16,21,19,0.65); }

.project-grid--full .project-card { min-height: 620px; }
.metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(225,189,122,0.18); border-radius: var(--radius-lg); overflow: hidden; }
.metric-strip > div { min-height: 190px; padding: 34px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(225,189,122,0.18); }
.metric-strip > div:last-child { border-right: 0; }
.metric-strip strong { color: var(--brass-light); font-family: var(--font-serif); font-size: 54px; font-weight: 400; }
.metric-strip span { color: rgba(243,240,232,0.65); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }

.timeline-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr); gap: clamp(65px, 10vw, 150px); align-items: center; }

.contact-page {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 68px) 32px 60px;
  display: grid;
  align-items: center;
  background: linear-gradient(125deg, #101513, #0c2a21);
  overflow: hidden;
}
.contact-panel--page { width: min(100%, 1440px); min-height: 680px; margin: 0 auto; border-radius: var(--radius-lg); }
.contact-panel--page .contact-copy h1 { font-size: clamp(55px, 6vw, 94px); }
.contact-panel--page .contact-copy > p:not(.section-kicker) { max-width: 600px; }

.login-page { position: relative; min-height: 100svh; padding-top: var(--header-height); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(470px, 0.75fr); background: var(--ink); overflow: hidden; }
.login-page__visual { min-height: 760px; overflow: hidden; }
.login-page__visual img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(0.65) brightness(0.68); animation: slow-zoom 18s ease-in-out infinite alternate; }
@keyframes slow-zoom { to { transform: scale(1.08); } }
.login-page__panel { position: relative; z-index: 2; padding: clamp(55px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, var(--forest), #0a1e18); }
.login-page__panel h1 { margin-bottom: 18px; }
.login-page__panel > p { color: rgba(243,240,232,0.68); line-height: 1.7; }
.login-page__back { position: absolute; top: 42px; color: var(--brass-light); font-size: 13px; }
.login-form { margin: 32px 0 28px; padding: 28px; border: 1px solid rgba(225,189,122,0.19); border-radius: var(--radius-md); background: rgba(255,255,255,0.035); }
.login-form input:disabled { opacity: 0.55; cursor: not-allowed; }
.login-form button { width: 100%; margin-top: 10px; opacity: 0.62; cursor: not-allowed; }
.login-note { padding: 18px 20px; border-radius: var(--radius-sm); background: rgba(197,154,85,0.1); }
.login-note span { color: var(--brass-light); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.login-note p { margin: 8px 0 0; color: rgba(243,240,232,0.68); font-size: 13px; line-height: 1.65; }

@media (max-width: 1180px) {
  .header-shell { grid-template-columns: minmax(220px, 1fr) auto minmax(205px, 1fr); gap: 20px; }
  .desktop-nav { gap: 18px; }
  .inner-hero__grid { grid-template-columns: 1fr 0.82fr; gap: 48px; }
  .inner-hero__visual, .inner-hero__visual img { min-height: 500px; }
}

@media (max-width: 980px) {
  .inner-hero { min-height: auto; padding-top: calc(var(--header-height) + 56px); }
  .inner-hero__grid, .split-intro, .outcome-layout, .timeline-layout { grid-template-columns: 1fr; }
  .inner-hero__copy { max-width: 760px; }
  .inner-hero__visual, .inner-hero__visual img { min-height: 520px; }
  .capability-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-image, .outcome-image img { min-height: 500px; }
  .page-cta__panel { align-items: flex-start; flex-direction: column; justify-content: center; }
  .metric-strip { grid-template-columns: repeat(2, 1fr); }
  .metric-strip > div:nth-child(2) { border-right: 0; }
  .metric-strip > div:nth-child(-n+2) { border-bottom: 1px solid rgba(225,189,122,0.18); }
  .login-page { grid-template-columns: 0.75fr 1fr; }
}

@media (max-width: 760px) {
  .inner-hero { padding-bottom: 52px; }
  .inner-hero__copy h1, .contact-copy h1, .login-page__panel h1 { font-size: clamp(48px, 14vw, 72px); }
  .inner-hero__visual, .inner-hero__visual img { min-height: 430px; }
  .capability-grid, .value-grid, .service-detail-grid, .industry-showcase-grid { grid-template-columns: 1fr; }
  .industry-showcase-card:nth-child(3n) { grid-column: auto; }
  .industry-showcase-card { min-height: 520px !important; }
  .service-detail-card { min-height: 390px; }
  .service-detail-card h2 { margin-top: 52px; }
  .contact-page { padding-inline: 16px; }
  .contact-panel--page { border-radius: var(--radius-md); }
  .login-page { display: block; padding-top: var(--header-height); }
  .login-page__visual { position: absolute; inset: var(--header-height) 0 0; min-height: auto; opacity: 0.2; }
  .login-page__panel { min-height: calc(100svh - var(--header-height)); padding: 82px 24px 60px; background: linear-gradient(145deg, rgba(13,43,36,0.92), rgba(10,30,24,0.96)); }
  .login-page__back { top: 30px; }
}

@media (max-width: 560px) {
  .page-section { padding: 78px 0; }
  .inner-hero { padding-top: calc(var(--header-height) + 36px); }
  .inner-hero__grid { gap: 42px; }
  .inner-hero__copy > p:not(.eyebrow) { font-size: 16px; }
  .inner-hero__visual, .inner-hero__visual img { min-height: 355px; }
  .inner-hero__visual figcaption { inset: auto 14px 14px; padding: 14px; border-radius: var(--radius-sm); }
  .inner-hero__visual figcaption span { font-size: 24px; }
  .capability-grid, .value-grid { grid-template-columns: 1fr; }
  .capability-card, .value-card { min-height: 190px; }
  .outcome-image, .outcome-image img { min-height: 380px; }
  .page-cta { padding: 16px; }
  .page-cta__panel { min-height: 420px; padding: 38px 24px; border-radius: var(--radius-md); }
  .industry-showcase-card { min-height: 460px !important; }
  .industry-showcase-card__top { inset: 20px 20px auto; }
  .industry-showcase-card__copy { inset: auto 20px 22px; }
  .industry-showcase-card__copy h2 { font-size: 46px; }
  .service-detail-card { padding: 26px 22px; }
  .metric-strip { grid-template-columns: 1fr; }
  .metric-strip > div { min-height: 150px; border-right: 0; border-bottom: 1px solid rgba(225,189,122,0.18); }
  .metric-strip > div:last-child { border-bottom: 0; }
  .contact-page { padding-top: calc(var(--header-height) + 28px); }
}

@media (prefers-reduced-motion: reduce) {
  .inner-hero::before,
  .contact-page::before,
  .login-page::before,
  .login-page__visual img { animation: none !important; }
}

.page-login .site-header,
.page-forgot-password .site-header {
  background: rgba(12,24,20,0.96);
  border-color: rgba(225,189,122,0.16);
  backdrop-filter: blur(18px);
}

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

/* v4 final homepage overrides kept at the end so shared page styles stay stable. */
.page-index .hero--index { min-height: 106svh; }
.page-index .hero-visual--premium .hero-image { border-radius: clamp(22px, 2.2vw, 38px); }
.page-index .command-section,
.page-index .signature-services,
.page-index .closing-showcase { isolation: isolate; }
.page-index .projects-section--premium .project-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.page-index .projects-section--premium .project-card { grid-column: span 2; }
.page-index .projects-section--premium .project-card--wide { grid-column: span 3; }
.page-index .industries-section--premium .industry-card,
.page-index .service-row--premium,
.page-index .projects-section--premium .project-card,
.page-index .process-section--premium .process-step { border-radius: clamp(24px, 2.8vw, 40px); }

@media (max-width: 1180px) {
  .page-index .projects-section--premium .project-card,
  .page-index .projects-section--premium .project-card--wide { grid-column: span 3; }
}

@media (max-width: 860px) {
  .page-index .hero--index { min-height: auto; }
  .page-index .projects-section--premium .project-grid { grid-template-columns: 1fr; }
  .page-index .projects-section--premium .project-card,
  .page-index .projects-section--premium .project-card--wide { grid-column: auto; }
}

/* Manual live-server fixes: header owns navigation, footer owns mobile quick bar. */
.mobile-footer-bar {
  display: none;
}

.page-index .signature-heading {
  margin-bottom: clamp(34px, 5vw, 62px);
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  align-items: center;
}

.signature-heading__copy {
  position: relative;
  z-index: 2;
}

.signature-heading__copy .section-kicker {
  margin-bottom: 22px;
}

.signature-heading__copy p:not(.section-kicker) {
  margin: 24px 0 0;
  max-width: 650px;
  color: rgba(16,21,19,0.62);
}

.signature-preview {
  position: relative;
  min-height: 460px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 24% 20%, rgba(197,154,85,0.18), transparent 32%),
    linear-gradient(145deg, rgba(13,43,36,0.08), rgba(255,255,255,0.18));
  overflow: hidden;
}

.signature-preview::before {
  position: absolute;
  content: "";
  inset: 28px;
  border: 1px solid rgba(13,43,36,0.11);
  border-radius: 34px;
}

.signature-preview__badge {
  position: absolute;
  z-index: 4;
  left: 28px;
  top: 28px;
  padding: 11px 15px;
  border: 1px solid rgba(13,43,36,0.16);
  border-radius: 999px;
  background: rgba(243,240,232,0.72);
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.signature-preview__card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13,43,36,0.18);
  border-radius: 30px;
  background: var(--forest);
  box-shadow: 0 26px 70px rgba(13,43,36,0.22);
  animation: signature-float 7s ease-in-out infinite;
}

.signature-preview__card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.04);
  transition: transform 900ms var(--ease-premium), filter 420ms ease;
}

.signature-preview:hover .signature-preview__card img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.02);
}

.signature-preview__card--one {
  width: 72%;
  height: 58%;
  left: 7%;
  top: 22%;
}

.signature-preview__card--two {
  z-index: 2;
  width: 47%;
  height: 36%;
  right: 5%;
  top: 9%;
  animation-delay: 700ms;
}

.signature-preview__card--three {
  z-index: 3;
  width: 52%;
  height: 35%;
  right: 12%;
  bottom: 7%;
  animation-delay: 1200ms;
}

@keyframes signature-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.7deg); }
}

@media (hover: hover) and (pointer: fine) {
  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    color: var(--brass-light);
  }
}

@media (max-width: 1180px) {
  .page-index .signature-heading {
    grid-template-columns: 1fr;
  }

  .signature-preview {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .mobile-footer-bar {
    position: fixed;
    z-index: 120;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    min-height: 58px;
    padding: 7px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    border: 1px solid rgba(225,189,122,0.22);
    border-radius: 22px;
    background: rgba(10, 23, 19, 0.92);
    box-shadow: 0 18px 55px rgba(0,0,0,0.36);
    backdrop-filter: blur(18px);
  }

  .mobile-footer-bar a {
    min-height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: rgba(243,240,232,0.64);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.02em;
    transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
  }

  .mobile-footer-bar a.is-active,
  .mobile-footer-bar a[aria-current="page"] {
    background: var(--brass);
    color: var(--ink);
    transform: translateY(-2px);
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

@media (max-width: 560px) {
  .page-index .signature-heading {
    gap: 26px;
  }

  .signature-preview {
    min-height: 300px;
    border-radius: 28px;
  }

  .signature-preview::before {
    inset: 14px;
    border-radius: 20px;
  }

  .signature-preview__badge {
    left: 16px;
    top: 16px;
    max-width: calc(100% - 32px);
    white-space: normal;
    line-height: 1.35;
  }

  .signature-preview__card {
    border-radius: 20px;
  }

  .signature-preview__card--one {
    width: 78%;
    height: 56%;
    left: 4%;
    top: 28%;
  }

  .signature-preview__card--two {
    width: 52%;
    height: 34%;
    right: 3%;
    top: 12%;
  }

  .signature-preview__card--three {
    width: 58%;
    height: 32%;
    right: 7%;
    bottom: 6%;
  }
}

/* Mobile header login: sits between brand and menu button. */
@media (max-width: 1180px) {
  .site-header .header-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .site-header .brand {
    min-width: 0;
  }

  .mobile-header-login {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border: 1px solid rgba(225,189,122,0.55);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(225,189,122,0.2), rgba(225,189,122,0.04)),
      rgba(13,43,36,0.52);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 28px rgba(0,0,0,0.18);
    color: var(--brass-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease, transform 220ms ease;
  }

  .mobile-header-login:hover,
  .mobile-header-login:focus-visible {
    border-color: rgba(225,189,122,0.9);
    background: var(--brass);
    color: var(--ink);
    transform: translateY(-1px);
  }

  .menu-toggle {
    justify-self: end;
  }
}

@media (max-width: 560px) {
  .site-header .header-shell {
    width: calc(100% - 28px);
    gap: 8px;
  }

  .site-header .brand {
    gap: 9px;
  }

  .site-header .brand__name {
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-header-login {
    min-height: 38px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 390px) {
  .site-header .brand__name {
    max-width: 112px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .mobile-header-login {
    padding: 0 10px;
  }
}

/* Compact homepage spacing + one-line desktop industry blocks. */
.page-index .signature-services {
  padding-top: clamp(58px, 5.8vw, 94px);
  padding-bottom: clamp(36px, 4vw, 64px);
}

.page-index .signature-heading {
  margin-bottom: clamp(22px, 3vw, 38px);
}

.page-index .signature-preview {
  min-height: clamp(280px, 26vw, 380px);
}

.page-index .service-cinema__track {
  padding-bottom: clamp(14px, 2vw, 24px);
}

.page-index .cinema-card {
  width: clamp(300px, 30vw, 470px);
  height: clamp(360px, 34vw, 500px);
  border-radius: clamp(24px, 2.4vw, 34px);
}

.page-index .cinema-card__copy h3 {
  font-size: clamp(34px, 3.1vw, 50px);
}

.page-index .intro-section--premium,
.page-index .industries-section--premium,
.page-index .services-section--premium,
.page-index .projects-section--premium,
.page-index .process-section--premium {
  padding-top: clamp(58px, 6vw, 98px);
  padding-bottom: clamp(58px, 6vw, 98px);
}

.page-index .section-heading {
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

@media (min-width: 1181px) {
  .page-index .industries-section--premium .content-shell {
    width: min(100% - 64px, 1760px);
  }

  .page-index .industries-section--premium .section-heading {
    grid-template-columns: 170px 1fr;
    gap: 34px;
  }

  .page-index .industries-section--premium .section-heading__copy {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.42fr);
    gap: 32px;
  }

  .page-index .industry-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .page-index .industry-card {
    min-height: 285px;
    padding: 22px 18px;
    border-radius: 26px;
  }

  .page-index .industry-card__top > span {
    font-size: 25px;
  }

  .page-index .industry-card h3 {
    font-size: clamp(28px, 2vw, 36px);
    line-height: 1.04;
  }

  .page-index .industry-card__description {
    font-size: 12px;
    line-height: 1.55;
  }

  .page-index .industry-card__rule {
    margin: 16px 0 13px;
  }

  .page-index .industry-card__action {
    left: 18px;
    bottom: 18px;
  }

  .page-index .projects-section--premium .content-shell {
    width: min(100% - 64px, 1640px);
  }

  .page-index .projects-section--premium .project-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .page-index .projects-section--premium .project-card,
  .page-index .projects-section--premium .project-card--wide {
    grid-column: span 1;
  }

  .page-index .project-card__image,
  .page-index .project-card--wide .project-card__image {
    height: clamp(230px, 19vw, 320px);
  }

  .page-index .project-card__copy {
    padding: 22px;
  }

  .page-index .project-card__copy h3 {
    font-size: clamp(28px, 2.25vw, 38px);
  }
}

@media (max-width: 1180px) {
  .page-index .signature-services,
  .page-index .intro-section--premium,
  .page-index .industries-section--premium,
  .page-index .services-section--premium,
  .page-index .projects-section--premium,
  .page-index .process-section--premium {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .page-index .signature-preview {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .page-index .signature-services,
  .page-index .intro-section--premium,
  .page-index .industries-section--premium,
  .page-index .services-section--premium,
  .page-index .projects-section--premium,
  .page-index .process-section--premium {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .page-index .signature-heading {
    margin-bottom: 20px;
  }

  .page-index .signature-preview {
    min-height: 250px;
  }

  .page-index .cinema-card {
    width: min(82vw, 330px);
    height: 380px;
  }

  .page-index .industry-card {
    min-height: 245px;
    padding: 22px;
  }

  .page-index .project-grid {
    gap: 22px;
  }

  .page-index .project-card__image,
  .page-index .project-card--wide .project-card__image {
    height: 220px;
  }
}

/* Reon compact homepage layer: remove empty spaces and keep industry cards tight. */
.page-index .signature-services {
  padding-top: clamp(34px, 3.2vw, 58px) !important;
  padding-bottom: clamp(22px, 2.4vw, 42px) !important;
}

.page-index .signature-services .content-shell {
  width: min(100% - 64px, 1580px);
}

.page-index .signature-heading {
  min-height: 0 !important;
  margin-bottom: clamp(12px, 1.6vw, 24px) !important;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr) !important;
  gap: clamp(22px, 3vw, 48px) !important;
  align-items: center !important;
}

.page-index .signature-preview {
  min-height: 0 !important;
  height: clamp(220px, 19vw, 315px) !important;
  border-radius: 28px !important;
}

.page-index .signature-heading__copy .section-kicker {
  margin-bottom: 12px !important;
}

.page-index .signature-heading__copy p:not(.section-kicker) {
  margin-top: 12px !important;
}

.page-index .service-cinema__track {
  padding: 0 0 14px !important;
  gap: 16px !important;
}

.page-index .cinema-card {
  width: clamp(270px, 23vw, 405px) !important;
  height: clamp(255px, 23vw, 390px) !important;
  border-radius: 28px !important;
}

.page-index .cinema-card::after {
  inset: 12px !important;
  border-radius: 20px !important;
}

.page-index .cinema-card__tag {
  left: 18px !important;
  top: 18px !important;
  padding: 7px 10px !important;
  font-size: 8px !important;
}

.page-index .cinema-card__copy {
  inset: auto 20px 20px !important;
  transform: none !important;
}

.page-index .cinema-card__copy h3 {
  font-size: clamp(28px, 2.4vw, 42px) !important;
  letter-spacing: -0.02em !important;
}

.page-index .cinema-card__copy p {
  margin: 10px 0 12px !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.page-index .intro-section--premium,
.page-index .industries-section--premium,
.page-index .services-section--premium,
.page-index .projects-section--premium,
.page-index .process-section--premium {
  padding-top: clamp(42px, 4.2vw, 72px) !important;
  padding-bottom: clamp(42px, 4.2vw, 72px) !important;
}

.page-index .section-heading {
  margin-bottom: clamp(18px, 2.2vw, 34px) !important;
}

.page-index .section-heading__meta {
  padding-top: 0 !important;
}

.page-index .services-grid {
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 1.4fr) !important;
  gap: clamp(24px, 3vw, 54px) !important;
}

.page-index .services-sticky > p:not(.section-kicker) {
  margin: 16px 0 22px !important;
}

.page-index .service-list {
  gap: 10px !important;
}

.page-index .service-row {
  min-height: 112px !important;
  padding: 20px !important;
  border-radius: 24px !important;
}

.page-index .service-row h3 {
  margin-bottom: 6px !important;
  font-size: clamp(25px, 1.8vw, 32px) !important;
}

.page-index .industry-marquee {
  padding: 10px 0 !important;
}

@media (min-width: 1280px) {
  .page-index .industries-section--premium .content-shell {
    width: min(100% - 48px, 1880px) !important;
  }

  .page-index .industries-section--premium .section-heading {
    grid-template-columns: 145px 1fr !important;
    gap: 24px !important;
  }

  .page-index .industries-section--premium .section-heading__copy {
    grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.36fr) !important;
    gap: 28px !important;
  }

  .page-index .industries-section--premium .section-heading__copy h2 {
    font-size: clamp(48px, 4.7vw, 84px) !important;
  }

  .page-index .industry-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .page-index .industry-card {
    min-height: 230px !important;
    padding: 18px 16px !important;
    border-radius: 22px !important;
  }

  .page-index .industry-card__top > span {
    font-size: 22px !important;
  }

  .page-index .industry-card > p:not(.industry-card__description) {
    margin-top: auto !important;
    margin-bottom: 8px !important;
    font-size: 8px !important;
    letter-spacing: 0.12em !important;
  }

  .page-index .industry-card h3 {
    font-size: clamp(24px, 1.65vw, 34px) !important;
    line-height: 1.04 !important;
  }

  .page-index .industry-card__rule {
    width: 34px !important;
    margin: 12px 0 10px !important;
  }

  .page-index .industry-card__description {
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  .page-index .industry-card__action {
    left: 16px !important;
    bottom: 14px !important;
    font-size: 8px !important;
  }

  .page-index .projects-section--premium .content-shell {
    width: min(100% - 56px, 1680px) !important;
  }

  .page-index .projects-section--premium .project-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .page-index .projects-section--premium .project-card,
  .page-index .projects-section--premium .project-card--wide {
    grid-column: span 1 !important;
    border-radius: 24px !important;
  }

  .page-index .project-card__image,
  .page-index .project-card--wide .project-card__image {
    height: clamp(185px, 14vw, 250px) !important;
  }

  .page-index .project-card__copy {
    padding: 18px !important;
  }

  .page-index .project-card__copy h3 {
    font-size: clamp(23px, 1.55vw, 32px) !important;
  }

  .page-index .project-card__copy > div {
    margin-top: 12px !important;
    padding-top: 12px !important;
  }
}

@media (max-width: 1279px) {
  .page-index .signature-heading {
    grid-template-columns: 1fr !important;
  }

  .page-index .signature-preview {
    height: 285px !important;
  }

  .page-index .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .page-index .industry-card {
    min-height: 230px !important;
  }

  .page-index .services-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .page-index .signature-services,
  .page-index .intro-section--premium,
  .page-index .industries-section--premium,
  .page-index .services-section--premium,
  .page-index .projects-section--premium,
  .page-index .process-section--premium {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .page-index .signature-services .content-shell {
    width: calc(100% - 28px) !important;
  }

  .page-index .signature-heading {
    gap: 18px !important;
  }

  .page-index .signature-preview {
    height: 210px !important;
    border-radius: 22px !important;
  }

  .page-index .service-cinema {
    -webkit-mask-image: none !important;
    mask-image: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
  }

  .page-index .service-cinema__track {
    animation: none !important;
    width: max-content !important;
    padding: 0 14px 8px !important;
  }

  .page-index .cinema-card {
    width: min(78vw, 310px) !important;
    height: 300px !important;
    scroll-snap-align: center !important;
  }

  .page-index .cinema-card__copy p {
    display: none !important;
  }

  .page-index .industry-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .page-index .industry-card {
    min-height: 178px !important;
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .page-index .industry-card h3 {
    font-size: 32px !important;
  }

  .page-index .industry-card__description {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .page-index .service-row {
    min-height: 104px !important;
    grid-template-columns: 44px 1fr 34px !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  .page-index .project-grid {
    gap: 16px !important;
  }

  .page-index .project-card__image,
  .page-index .project-card--wide .project-card__image {
    height: 190px !important;
  }
}

/* Reon About page premium layout. */
.page-about .inner-hero {
  min-height: 92svh;
}

.page-about .inner-hero__copy h1 {
  max-width: 980px;
}

.about-profile__grid,
.about-service-map__grid,
.about-workflow__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: start;
}

.about-profile__copy h2,
.about-service-map h2,
.about-workflow h2,
.about-contact-band h2 {
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.about-profile__copy > p:not(.section-kicker),
.about-service-map__grid > div:first-child > p,
.about-workflow__grid > div:first-child > p {
  color: rgba(16, 21, 19, 0.68);
  font-size: 17px;
  line-height: 1.85;
}

.about-fact-card {
  position: relative;
  padding: clamp(24px, 3.2vw, 42px);
  border: 1px solid rgba(13, 43, 36, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 154, 85, 0.2), transparent 34%),
    linear-gradient(145deg, #f4efe4, #e5dece);
  box-shadow: 0 28px 70px rgba(13, 43, 36, 0.12);
  overflow: hidden;
}

.about-fact-card > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(13, 43, 36, 0.12);
}

.about-fact-card span,
.about-contact-links span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-fact-card strong {
  max-width: 220px;
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.about-fact-card dl {
  margin: 24px 0 0;
}

.about-fact-card dl > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(13, 43, 36, 0.1);
}

.about-fact-card dt {
  color: rgba(16, 21, 19, 0.5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-fact-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.about-fact-card > a {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-weight: 800;
}

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

.about-pillar-card {
  position: relative;
  min-height: 330px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(225, 189, 122, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 12%, rgba(225, 189, 122, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(13, 43, 36, 0.22));
  overflow: hidden;
}

.about-pillar-card > span {
  color: var(--brass-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.about-pillar-card h3 {
  margin: auto 0 20px;
  max-width: 360px;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.02;
}

.about-pillar-card p {
  margin: 0;
  color: rgba(243, 240, 232, 0.66);
  line-height: 1.7;
}

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

.about-category-list a {
  min-height: 106px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 50px minmax(125px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(13, 43, 36, 0.1);
  border-radius: 24px;
  background: #f4efe4;
  transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.about-category-list a:hover,
.about-category-list a:focus-visible {
  transform: translateX(8px);
  border-color: rgba(197, 154, 85, 0.55);
  background: #fffaf0;
}

.about-category-list span {
  color: var(--brass);
  font-family: var(--font-serif);
  font-size: 28px;
}

.about-category-list strong {
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
}

.about-category-list small {
  color: rgba(16, 21, 19, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.about-workflow-list {
  border-top: 1px solid rgba(13, 43, 36, 0.12);
}

.about-workflow-list article {
  min-height: 124px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(13, 43, 36, 0.12);
}

.about-workflow-list span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.about-workflow-list h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 22px;
}

.about-workflow-list p {
  margin: 0;
  color: rgba(16, 21, 19, 0.64);
  line-height: 1.7;
}

.about-contact-band {
  padding-top: clamp(42px, 6vw, 86px);
  padding-bottom: clamp(42px, 6vw, 86px);
}

.about-contact-band__panel {
  min-height: 330px;
  padding: clamp(28px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  border: 1px solid rgba(225, 189, 122, 0.18);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 20%, rgba(225, 189, 122, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(13, 43, 36, 0.24));
}

.about-contact-links {
  display: grid;
  gap: 12px;
}

.about-contact-links a,
.about-contact-links p {
  margin: 0;
  padding: 18px 20px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(225, 189, 122, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .about-profile__grid,
  .about-service-map__grid,
  .about-workflow__grid,
  .about-contact-band__panel {
    grid-template-columns: 1fr;
  }

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

  .about-pillar-card {
    min-height: 240px;
  }
}

@media (max-width: 680px) {
  .page-about .inner-hero {
    min-height: auto;
  }

  .page-about .inner-hero__copy h1 {
    font-size: clamp(44px, 12.5vw, 62px);
  }

  .page-about .inner-hero__visual,
  .page-about .inner-hero__visual img {
    min-height: 330px;
  }

  .page-about .page-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .about-profile__copy h2,
  .about-service-map h2,
  .about-workflow h2,
  .about-contact-band h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .about-fact-card {
    padding: 22px;
    border-radius: 24px;
  }

  .about-fact-card > div:first-child {
    display: grid;
  }

  .about-fact-card strong {
    max-width: none;
    text-align: left;
  }

  .about-fact-card dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .about-category-list a {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    gap: 12px 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .about-category-list small {
    grid-column: 2;
  }

  .about-workflow-list article {
    min-height: 0;
    grid-template-columns: 42px 1fr;
    padding: 18px 0;
  }

  .about-contact-band__panel {
    min-height: 0;
    padding: 22px;
    border-radius: 24px;
  }
}

/* Reon sitewide premium pass v4.1.0 */
:root {
  --header-height: 124px;
}

.header-topline {
  height: 34px;
  border-bottom: 1px solid rgba(225, 189, 122, 0.14);
  background: rgba(6, 16, 13, 0.72);
  color: rgba(243, 240, 232, 0.72);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-topline__inner {
  width: min(100% - 64px, 1440px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  overflow: hidden;
}

.header-topline__inner span,
.header-topline__inner a {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-topline__inner span:not(:first-child)::before,
.header-topline__inner a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brass);
  flex: 0 0 auto;
}

.header-topline__inner span:first-child {
  color: var(--brass-light);
}

.header-topline__inner a {
  margin-left: auto;
  color: var(--ivory);
}

.site-header .header-shell {
  height: calc(var(--header-height) - 34px);
}

.site-header--scrolled .header-topline {
  background: rgba(8, 17, 15, 0.94);
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 720;
}

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

.header-login {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(243, 240, 232, 0.18);
  border-radius: 999px;
  color: rgba(243, 240, 232, 0.72);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.header-login:hover,
.header-login:focus-visible {
  border-color: rgba(225, 189, 122, 0.55);
  background: rgba(225, 189, 122, 0.08);
  color: var(--brass-light);
}

.footer-hero {
  padding-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  border-bottom: 1px solid var(--line-dark);
}

.footer-hero__brand {
  display: grid;
  gap: 24px;
}

.footer-hero__brand > p {
  max-width: 760px;
  margin: 0;
  color: rgba(243, 240, 232, 0.72);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 1.05;
}

.footer-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-primary-link {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--brass);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.footer-proof {
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border-bottom: 1px solid rgba(225, 189, 122, 0.12);
}

.footer-proof div {
  min-height: 92px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 7px;
  border: 1px solid rgba(225, 189, 122, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.footer-proof span {
  color: var(--brass-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-proof strong {
  color: var(--ivory);
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.25;
}

.footer-links--premium {
  padding: 46px 0 52px;
  grid-template-columns: 0.86fr 0.92fr 0.92fr 1.3fr;
  gap: clamp(24px, 4vw, 60px);
}

.footer-links--premium p {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.footer-links--premium a,
.footer-links--premium span {
  color: rgba(243, 240, 232, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.footer-contact-card {
  padding: 22px;
  border: 1px solid rgba(225, 189, 122, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.footer-contact-card a,
.footer-contact-card > span {
  width: 100%;
  padding: 13px 0;
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(225, 189, 122, 0.1);
}

.footer-contact-card span span,
.footer-contact-card a span {
  width: auto;
  color: var(--brass-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact-card > span:last-child {
  border-bottom: 0;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(243, 240, 232, 0.52);
}

.contact-faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
}

.contact-faq__grid h2 {
  margin: 0;
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.98;
}

.contact-faq__grid > div:first-child p:not(.section-kicker) {
  max-width: 520px;
  color: rgba(16, 21, 19, 0.64);
  line-height: 1.7;
}

.contact-faq__list {
  display: grid;
  gap: 12px;
}

.contact-faq__list article {
  padding: 22px 24px;
  border: 1px solid rgba(13, 43, 36, 0.11);
  border-radius: 24px;
  background: #f6f1e7;
}

.contact-faq__list h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: clamp(20px, 2vw, 26px);
}

.contact-faq__list p {
  margin: 0;
  color: rgba(16, 21, 19, 0.64);
  line-height: 1.65;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 98px;
  }

  .header-topline {
    display: none;
  }

  .site-header .header-shell {
    height: var(--header-height);
  }

  .footer-hero,
  .footer-links--premium {
    grid-template-columns: 1fr 1fr;
  }

  .footer-hero__actions {
    justify-content: flex-start;
  }

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

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

  .site-header .header-shell {
    height: var(--header-height);
  }

  .header-actions {
    display: none;
  }

  .mobile-nav__cta--secondary {
    margin-top: -8px;
    background: rgba(255,255,255,0.04);
  }

  .site-footer {
    padding-top: 46px;
  }

  .footer-hero,
  .footer-links--premium,
  .footer-proof {
    grid-template-columns: 1fr;
  }

  .footer-hero {
    gap: 22px;
    padding-bottom: 28px;
  }

  .footer-hero__brand > p {
    font-size: clamp(26px, 8.5vw, 38px);
  }

  .footer-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-primary-link,
  .footer-top__button {
    width: 100%;
    justify-content: center;
  }

  .footer-proof {
    padding: 22px 0;
  }

  .footer-proof div {
    min-height: 74px;
    padding: 15px 16px;
  }

  .footer-links--premium {
    gap: 26px;
    padding: 30px 0 36px;
  }

  .footer-links--premium a,
  .footer-links--premium span {
    font-size: 16px;
  }

  .footer-contact-card {
    padding: 18px;
    border-radius: 20px;
  }

  .footer-bottom {
    display: grid;
  }

  .contact-faq__grid {
    grid-template-columns: 1fr;
  }

  .contact-faq__list article {
    padding: 18px;
    border-radius: 18px;
  }
}
