@font-face {
  font-family: "Gotham Local";
  src:
    local("Gotham Book"),
    local("Gotham-Book"),
    local("Gotham Book Regular"),
    local("Gotham");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Local";
  src:
    local("Gotham Medium"),
    local("Gotham-Medium"),
    local("Gotham Medium Regular"),
    local("Gotham Book"),
    local("Gotham-Book");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Local";
  src:
    local("Gotham Semibold"),
    local("Gotham SemiBold"),
    local("Gotham-Semibold"),
    local("Gotham Medium"),
    local("Gotham-Medium"),
    local("Gotham Bold"),
    local("Gotham-Bold");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Local";
  src:
    local("Gotham Bold"),
    local("Gotham-Bold"),
    local("Gotham Black"),
    local("Gotham-Black"),
    local("Gotham Medium"),
    local("Gotham-Medium");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --background: #13161c;
  --foreground: #f7f2ec;
  --primary: #FBB717;
  --primary-deep: #FBB717;
  --primary-foreground: #111111;
  --secondary: #232730;
  --muted: #1c2028;
  --muted-foreground: #a9a4a0;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(251, 183, 23, 0.25);
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1220px;
  --nav-height: 88px;
  --nav-jump-offset: 224px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-jump-offset);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Gotham Local", "Gotham", "Helvetica Neue", Arial, sans-serif;
  color: var(--foreground);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  caret-color: transparent;
}

/* Prevent browser caret artifacts on this static marketing page */
body * {
  caret-color: transparent;
}

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

img,
svg {
  display: block;
}

::selection {
  background: rgba(251, 183, 23, 0.35);
  color: #ffffff;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  pointer-events: none;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(14, 17, 21, 0.94);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: 100%;
  max-width: none;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 128px;
  pointer-events: auto;
}

.site-header .container.nav-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px 128px;
}

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

.brand-mark-logo {
  width: auto;
  height: 2.1rem;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-end;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.nav-links a {
  color: var(--muted-foreground);
  transition: color 180ms ease;
}

.site-header.is-scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #FBB717;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition:
    transform 180ms ease,
    filter 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 16px 35px rgba(251, 183, 23, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  filter: brightness(1.08);
}

.button-secondary {
  background: #ffffff;
  color: #111111;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  filter: brightness(0.92);
}

.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--foreground);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #101319;
}

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

.hero-media {
  z-index: 0;
  background:
    radial-gradient(1100px 720px at 20% 18%, rgba(16, 24, 35, 0.34), transparent 55%),
    radial-gradient(980px 680px at 78% 14%, rgba(19, 35, 58, 0.5), transparent 58%),
    linear-gradient(180deg, #0f1218 0%, #0b0f15 100%);
}

.hero-motion-canvas,
.hero-trial-video,
.hero-aurora,
.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-trial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.9;
  filter: grayscale(1) saturate(0.12) contrast(1.12) brightness(0.9);
  mix-blend-mode: luminosity;
}

.hero-motion-canvas {
  display: none;
  width: 100%;
  height: 100%;
  opacity: 0.88;
  mix-blend-mode: screen;
}

.hero-aurora {
  inset: auto;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.8;
  will-change: transform, opacity;
}

.hero-aurora-gold {
  display: none;
  width: clamp(280px, 36vw, 560px);
  height: clamp(280px, 36vw, 560px);
  top: 12%;
  left: -4%;
  background:
    radial-gradient(circle at 35% 35%, rgba(251, 183, 23, 0.5), rgba(251, 183, 23, 0.12) 55%, transparent 72%);
  animation: auroraDriftGold 18s ease-in-out infinite alternate;
}

.hero-aurora-blue {
  width: clamp(240px, 28vw, 440px);
  height: clamp(240px, 28vw, 440px);
  right: 2%;
  bottom: 10%;
  background:
    radial-gradient(circle at 40% 40%, rgba(66, 125, 205, 0.34), rgba(66, 125, 205, 0.08) 58%, transparent 74%);
  animation: auroraDriftBlue 22s ease-in-out infinite alternate;
}

.hero-orbit {
  display: none;
  inset: auto;
  border-radius: 50%;
  border: 1px solid rgba(251, 183, 23, 0.18);
  box-shadow:
    inset 0 0 40px rgba(251, 183, 23, 0.04),
    0 0 40px rgba(251, 183, 23, 0.08);
  opacity: 0.55;
  will-change: transform;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-orbit::after {
  width: 14px;
  height: 14px;
  top: 10%;
  left: calc(50% - 7px);
  background: rgba(251, 183, 23, 0.85);
  box-shadow: 0 0 28px rgba(251, 183, 23, 0.65);
}

.hero-orbit-large {
  width: clamp(220px, 22vw, 360px);
  height: clamp(220px, 22vw, 360px);
  top: 10%;
  right: 8%;
  animation: orbitSpinLarge 26s linear infinite;
}

.hero-orbit-small {
  width: clamp(120px, 11vw, 190px);
  height: clamp(120px, 11vw, 190px);
  bottom: 16%;
  left: 18%;
  opacity: 0.42;
  animation: orbitSpinSmall 18s linear infinite reverse;
}

.hero-overlay {
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.46));
}

.hero-grid {
  display: none;
  z-index: 3;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, transparent 0%, black 28%, black 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
}

.hero-content,
.section > .container {
  transform-style: preserve-3d;
  will-change: transform;
  transform: translate3d(0, var(--layer-y, 0px), var(--layer-z, 0px))
    rotateX(var(--layer-rx, 0deg));
  transition: transform 140ms linear;
}

main {
  perspective: 1400px;
  transform-style: preserve-3d;
}

.hero-content {
  width: 100%;
  padding-top: calc(var(--nav-height) + 28px);
  padding-bottom: 28px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  min-height: 100vh;
}

.hero-copy {
  width: 100vw;
  max-width: 100vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height) - 56px);
}

.hero-eyebrow {
  position: absolute;
  left: 50%;
  bottom: clamp(32px, 6vh, 76px);
  width: max-content;
  max-width: calc(100vw - 32px);
  transform: translateX(-50%);
  margin-bottom: 0;
  opacity: 0;
  animation: heroPillIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

.hero-main-copy {
  transform: translateY(-144px);
}

@keyframes heroPillIn {
  from {
    opacity: 0;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.eyebrow,
.section-eyebrow,
.pillar-eyebrow,
.project-eyebrow,
.team-role,
.contact-side-title {
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

.word-rise {
  display: inline-flex;
  flex-wrap: wrap;
  column-gap: 0.45em;
  row-gap: 0.2em;
}

.section-heading h2.word-rise,
.contact-copy h2.word-rise {
  display: flex;
  row-gap: 0;
}

.word-rise-word {
  display: inline-flex;
  overflow: hidden;
  padding-bottom: 0;
  line-height: inherit;
}

.word-rise-word > span {
  display: inline-block;
  transform-origin: 50% 100%;
  transform: translate3d(0, 0.72em, 0);
  opacity: 0;
  filter: blur(6px);
  will-change: transform, opacity, filter;
}

.word-rise.is-visible .word-rise-word > span {
  animation: wordRiseIn 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--word-index, 0) * 72ms);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 14px 19px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  font-size: 0.82rem;
  color: var(--primary);
}

.hero-lockup {
  width: clamp(360px, 78vw, 1872px);
  display: block;
  max-width: 100%;
  margin: 0 auto 28px;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.26));
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(2.3rem, 5.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero-title .text-primary {
  color: #FBB717;
}

.section-eyebrow,
.pillar-eyebrow,
.project-eyebrow,
.team-role,
.contact-side-title {
  color: var(--primary);
}

.hero-description,
.section-heading p,
.service-card p,
.pillar-card p,
.project-card p,
.team-card p,
.contact-copy p,
.contact-note,
.site-footer p,
.office-list p {
  color: var(--muted-foreground);
}

.hero-description {
  width: min(100%, 1112px);
  max-width: 1112px;
  margin: 0 auto;
  font-size: clamp(1.22rem, 1.52vw, 1.46rem);
  line-height: 1.9;
}

.hero-description + .hero-description {
  margin-top: 22px;
}

.hero-description-block {
  margin-top: 26px;
}

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

.service-card,
.pillar-card,
.project-card,
.team-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.section {
  position: relative;
  padding: 110px 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

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

.section-band {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.band-glow {
  display: none;
}

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

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.text-primary {
  color: #FBB717;
}

.section-heading p,
.contact-copy p {
  margin: 18px 0 0;
  font-size: 1.04rem;
  line-height: 1.9;
}

.service-grid,
.project-grid {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "desc desc";
  column-gap: 16px;
  row-gap: 8px;
  align-items: start;
  padding: 30px;
  border-radius: 30px;
  max-height: 236px;
  overflow: hidden;
  transition:
    max-height 460ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 320ms ease,
    border-color 320ms ease,
    background-color 320ms ease,
    box-shadow 320ms ease;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
}

.service-card::before,
.project-card::before,
.team-card::before,
.pillar-card::before,
.contact-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(251, 183, 23, 0.8),
    transparent
  );
  opacity: 0;
  transition: opacity 320ms ease;
}

.service-card:hover,
.service-card:focus-within,
.project-card:hover,
.team-card:hover,
.contact-side:hover,
.contact-side:focus-within {
  max-height: 760px;
  border-color: var(--border-strong);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.service-card:hover,
.service-card:focus-within {
  z-index: 2;
  transform: none;
  box-shadow: none;
}

.pillar-card:hover,
.pillar-card:focus-within,
.pillar-card-innovation:hover,
.pillar-card-innovation:focus-within {
  transform: none;
  border-color: var(--border-strong);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.service-card:hover::before,
.service-card:focus-within::before,
.project-card:hover::before,
.team-card:hover::before,
.pillar-card:hover::before,
.pillar-card:focus-within::before,
.pillar-card-innovation:hover::before,
.pillar-card-innovation:focus-within::before,
.contact-side:hover::before,
.contact-side:focus-within::before {
  opacity: 1;
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 0;
}

.service-icon {
  grid-area: icon;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 18px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-card-expand p {
  grid-area: desc;
  max-height: 5.8em;
  opacity: 0.92;
  margin: 6px 0 0;
  overflow: hidden;
  display: block;
  position: relative;
  transition:
    max-height 460ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 240ms ease,
    margin-top 320ms ease;
}

.service-card-expand:hover p,
.service-card-expand:focus-within p,
.service-card-expand:active p {
  max-height: 36em;
  opacity: 1;
  margin-top: 16px;
}

.service-card h3,
.pillar-card h3,
.project-card h3,
.team-card h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.service-card h3 {
  grid-area: title;
  margin-top: 2px;
  font-size: 1.25rem;
  line-height: 1.14;
}

.pillar-card p,
.project-card p,
.team-card p,
.contact-note,
.office-list p,
.site-footer p {
  margin: 16px 0 0;
  line-height: 1.85;
}

.service-card p {
  line-height: 1.85;
}

.about-layout,
.team-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 56px;
}

.about-layout {
  pointer-events: none;
}

.team-layout {
  pointer-events: none;
}

.about-layout > *,
.team-layout > * {
  pointer-events: auto;
}

#projects > .container {
  pointer-events: none;
}

#projects > .container > * {
  pointer-events: auto;
}

#projects > .container > .project-grid {
  pointer-events: none;
}

#projects > .container > .project-grid > .project-card {
  pointer-events: auto;
}

#services > .container {
  pointer-events: none;
}

#services > .container > * {
  pointer-events: auto;
}

#services > .container > .service-grid {
  pointer-events: none;
}

#services > .container > .service-grid > .service-card {
  pointer-events: auto;
}

.pillar-stack,
.team-stack {
  display: grid;
  gap: 20px;
}

.pillar-stack,
.team-stack {
  pointer-events: none;
}

.pillar-card,
.team-card {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    background-color 320ms ease,
    box-shadow 320ms ease;
}

.pillar-card {
  pointer-events: auto;
}

.project-card,
.team-card {
  pointer-events: auto;
}

.pillar-eyebrow,
.project-eyebrow,
.team-role,
.contact-side-title {
  margin: 0;
  font-size: 0.75rem;
  color: var(--primary);
}

.pillar-card .pillar-eyebrow,
.project-card .project-eyebrow,
.team-card .team-role {
  color: var(--primary);
}

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

.project-card {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.project-metric {
  margin-top: 28px;
  color: var(--foreground);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.contact-panel {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  align-items: stretch;
  gap: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-copy,
.contact-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-copy {
  padding-top: 2px;
}

.contact-details {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  padding-top: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.001);
  color: var(--foreground);
  position: relative;
  z-index: 2;
  transition: color 220ms ease;
}

.contact-detail-icon svg,
.contact-social-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-detail-icon svg {
  transform: translateY(6px);
}

.contact-detail-copy {
  min-width: 0;
}

.contact-detail-label {
  margin: 0;
  color: var(--foreground);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.contact-detail-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted-foreground);
  font-size: 1.18rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-detail-icon-link:hover,
.contact-detail-icon-link:focus-visible,
.contact-detail:has(.contact-detail-link:hover) .contact-detail-icon,
.contact-detail:has(.contact-detail-link:focus-visible) .contact-detail-icon {
  color: var(--primary);
}

.contact-detail-icon-link:focus-visible {
  outline: 2px solid rgba(251, 183, 23, 0.65);
  outline-offset: 4px;
}

.contact-detail-link:hover,
.contact-detail-link:focus-visible {
  color: var(--foreground);
}

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

.contact-social-link {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--foreground);
  position: relative;
  z-index: 2;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
  color: var(--primary);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.contact-side {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    background-color 320ms ease,
    box-shadow 320ms ease;
  position: relative;
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field span {
  color: rgba(247, 242, 236, 0.86);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(9, 12, 17, 0.48);
  color: var(--foreground);
  font: inherit;
  line-height: 1.5;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
  caret-color: auto;
}

.contact-field textarea {
  min-height: 260px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(169, 164, 160, 0.8);
}

.contact-field input:hover,
.contact-field textarea:hover,
.contact-field input:focus-visible,
.contact-field textarea:focus-visible {
  border-color: rgba(251, 183, 23, 0.42);
  background: rgba(9, 12, 17, 0.68);
  box-shadow: 0 0 0 4px rgba(251, 183, 23, 0.08);
  outline: none;
}

.contact-note {
  margin-top: 24px;
}

.office-list {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-actions-side {
  margin-top: 28px;
  flex-direction: column;
  align-items: flex-start;
}

.contact-actions-side .button {
  width: 100%;
}

.contact-actions-side .button-primary {
  box-shadow: none;
}

.contact-section {
  scroll-margin-top: var(--nav-jump-offset);
  padding-top: clamp(56px, 6vh, 96px);
  padding-bottom: clamp(240px, 24vh, 340px);
}

.contact-section > .container {
  min-height: 0;
  transform: none;
  transition: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 34px;
}

.footer-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand {
  margin: 0;
  color: var(--foreground);
}

.footer-bubble {
  margin: 0;
}

.site-footer .footer-bubble {
  margin: 0;
}

.footer-meta .footer-brand {
  margin: 0;
}

.footer-offices {
  text-align: right;
  display: flex;
  align-items: flex-start;
}

.footer-email {
  margin-top: 0;
  color: var(--foreground);
  text-decoration: none;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: var(--primary);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes wordRiseIn {
  0% {
    transform: translate3d(0, 0.72em, 0);
    opacity: 0;
    filter: blur(6px);
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes auroraDriftGold {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }

  100% {
    transform: translate3d(8vw, 5vh, 0) scale(1.08);
    opacity: 0.9;
  }
}

@keyframes auroraDriftBlue {
  0% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.5;
  }

  100% {
    transform: translate3d(-7vw, -6vh, 0) scale(1.12);
    opacity: 0.78;
  }
}

@keyframes orbitSpinLarge {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitSpinSmall {
  from {
    transform: rotate(0deg) scale(0.98);
  }

  to {
    transform: rotate(360deg) scale(1.04);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .word-rise-word > span,
  .word-rise.is-visible .word-rise-word > span {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .hero-aurora,
  .hero-orbit {
    animation: none !important;
  }

  .hero-content,
  .section > .container {
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .site-header .container.nav-shell {
    padding-inline: 48px;
  }

  .hero-content,
  .about-layout,
  .team-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  .site-header .container.nav-shell {
    padding-inline: 24px;
  }

  .nav-links {
    display: none;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand-mark {
    align-self: flex-start;
  }

  .brand-mark-logo {
    height: 1.9rem;
  }

  .hero-content {
    padding-top: calc(var(--nav-height) + 16px);
    padding-bottom: 24px;
    gap: 36px;
  }

  .hero-copy {
    max-width: 100%;
    transform: translateY(-48px);
  }

  .hero-orbit-large {
    top: 6%;
    right: 2%;
  }

  .hero-orbit-small {
    left: 8%;
    bottom: 12%;
  }

  .hero-title {
    white-space: normal;
  }

  .hero-lockup {
    width: min(92vw, 936px);
    margin: 0 auto 28px;
  }

  .hero-description {
    width: min(calc(100% - 16px), 1112px);
  }

  .section,
  .section-band {
    padding: 88px 0;
  }

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

  .service-card-expand p {
    max-height: 5.8em;
    opacity: 0.92;
    margin-top: 6px;
  }

  .service-card {
    max-height: none;
    overflow: visible;
  }

  .contact-field textarea {
    min-height: 190px;
  }

  .contact-side,
  .service-card,
  .pillar-card,
  .project-card,
  .team-card {
    padding: 24px;
  }

  .footer-shell {
    flex-direction: column;
  }

  .footer-offices {
    text-align: left;
  }
}
