:root {
  --bg: #f4f1ea;
  --bg-soft: #ece8df;
  --text: #161616;
  --muted: #5d584f;
  --soft: #888173;
  --ink: #111111;
  --line: rgba(22, 22, 22, 0.08);
  --line-light: rgba(255, 255, 255, 0.16);
  --gold: #be9c43;
  --gold-soft: rgba(190, 156, 67, 0.16);
  --glass: rgba(255, 255, 255, 0.28);
  --glass-strong: rgba(255, 255, 255, 0.42);
  --glass-dark: rgba(17, 17, 17, 0.2);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 18px 48px -18px rgba(17, 17, 17, 0.14);
  --shadow-glow: 0 28px 80px -32px rgba(190, 156, 67, 0.32);
  --ring-inner: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100vw - 3rem));
  /* Spacing scale (8pt base) */
  --space-1: 0.5rem;   /* 8 */
  --space-2: 0.75rem;  /* 12 */
  --space-3: 1rem;     /* 16 */
  --space-4: 1.5rem;   /* 24 */
  --space-5: 2rem;     /* 32 */
  --space-6: 2.75rem;  /* 44 */
  --space-7: 3.75rem;  /* 60 */
  --space-8: 5.25rem;  /* 84 */
  --space-9: 7rem;     /* 112 */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(190, 156, 67, 0.12), transparent 22%),
    linear-gradient(180deg, #fbf9f4 0%, #f3efe7 42%, #f7f4ed 100%);
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  padding: 0.85rem 0 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  transition: padding 220ms ease;
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: space-between;
  position: relative;
  transition:
    max-width 240ms ease,
    padding 240ms ease,
    gap 240ms ease,
    border-radius 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.brand {
  width: min(214px, 38vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-segment {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.08);
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    padding 240ms ease;
}

.header-brand {
  padding: 0;
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  flex: 0 0 auto;
}

.header-nav-shell {
  justify-content: center;
  padding: 0.35rem 1.35rem;
  margin-inline: auto;
  flex: 0 1 auto;
}

.header-actions {
  justify-content: flex-end;
  gap: 0.55rem;
  padding: 0;
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  white-space: nowrap;
}

.site-nav a {
  font-size: 0.86rem;
  color: rgba(22, 22, 22, 0.68);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #111111;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #171717;
  color: #f7f4ee;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.14);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 6px auto;
  background: #111111;
  transition: transform 180ms ease;
}

body[data-page="contact"] .menu-toggle {
  border-color: rgba(255, 255, 255, 0.2);
}

body[data-page="contact"] .menu-toggle span,
.site-header.is-scrolled .menu-toggle span {
  background: #ffffff;
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled {
  padding-top: 0.5rem;
}

.site-header.is-scrolled .header-row {
  max-width: min(980px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 0.35rem 0.55rem;
  gap: 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 17, 17, 0.74);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.18);
}

.site-header.is-scrolled .header-segment {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

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

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active {
  color: #ffffff;
}

.site-header.is-scrolled .header-cta {
  background: #f7f4ee;
  color: #111111;
}

.site-header.is-scrolled .header-brand,
.site-header.is-scrolled .header-nav-shell,
.site-header.is-scrolled .header-actions {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.9rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.page-hero .eyebrow::before,
.section-heading .eyebrow::before,
.hero-center .eyebrow::before {
  display: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.hero-home {
  position: relative;
  overflow: clip;
  padding: 9.5rem 0 var(--space-8);
  background:
    radial-gradient(1100px 520px at 82% 12%, rgba(190, 156, 67, 0.14), transparent 62%),
    radial-gradient(780px 380px at 8% 92%, rgba(190, 156, 67, 0.08), transparent 60%),
    linear-gradient(180deg, #fbf9f4 0%, #f4f0e8 50%, #f8f5ee 100%);
}

.hero-home-aura {
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 260px;
  background: radial-gradient(closest-side, rgba(190, 156, 67, 0.12), transparent 72%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-home-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 4rem;
  align-items: center;
}

.hero-home-shell > * {
  min-width: 0;
}

.hero-home-copy {
  display: grid;
  gap: 1.1rem;
  max-width: 560px;
}

.hero-home-copy .eyebrow {
  margin-bottom: 0.25rem;
}

.hero-display {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 700;
  text-wrap: balance;
  margin: 0;
}

.hero-display em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.035em;
}

.hero-lede {
  margin: 0.25rem 0 0;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
  max-width: 46ch;
}

.hero-intro {
  margin: 0.35rem 0 0;
  font-size: 1.02rem;
  line-height: 1.68;
  max-width: 54ch;
  color: var(--muted);
}

.hero-home-copy .hero-actions {
  margin-top: 1rem;
}

.hero-meta {
  list-style: none;
  padding: 1.1rem 1.35rem;
  margin: 1.35rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow:
    var(--ring-inner),
    0 14px 36px -18px rgba(17, 17, 17, 0.16);
}

.hero-meta li {
  display: grid;
  gap: 0.2rem;
}

.hero-meta li + li {
  padding-left: 1rem;
  border-left: 1px solid rgba(22, 22, 22, 0.08);
}

.hero-meta span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-meta strong {
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
}

.hero-home-media {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 480px;
}

.hero-home-figure {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
}

.hero-badge {
  position: absolute;
  left: -2.6rem;
  bottom: 2.2rem;
  max-width: 280px;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(26px) saturate(1.3);
  -webkit-backdrop-filter: blur(26px) saturate(1.3);
  box-shadow:
    var(--ring-inner),
    0 26px 60px -28px rgba(17, 17, 17, 0.3);
  z-index: 2;
}

.hero-badge span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.hero-badge span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(190, 156, 67, 0.16);
}

.hero-badge strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.38;
  letter-spacing: -0.015em;
  color: var(--text);
  font-weight: 600;
}

.glass-card,
.glass-tile,
.feature-card,
.sector-card,
.contact-card,
.wide-panel,
.capability-detail,
.glass-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28) 52%, rgba(255, 255, 255, 0.18));
  backdrop-filter: blur(26px) saturate(1.35);
  -webkit-backdrop-filter: blur(26px) saturate(1.35);
  box-shadow:
    var(--ring-inner),
    0 1px 0 rgba(22, 22, 22, 0.04),
    0 22px 60px -28px rgba(17, 17, 17, 0.22);
  transition:
    transform 420ms var(--ease),
    box-shadow 420ms var(--ease),
    border-color 420ms var(--ease);
}

.glass-card::before,
.glass-tile::before,
.feature-card::before,
.sector-card::before,
.contact-card::before,
.wide-panel::before,
.capability-detail::before,
.glass-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.55), transparent 55%),
    radial-gradient(90% 60% at 100% 100%, rgba(190, 156, 67, 0.06), transparent 60%);
  pointer-events: none;
}

.feature-card,
.sector-card,
.contact-card,
.capability-detail {
  will-change: transform;
}

.feature-card:hover,
.sector-card:hover,
.contact-card:hover,
.capability-detail:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    var(--ring-inner),
    0 1px 0 rgba(22, 22, 22, 0.05),
    0 30px 80px -30px rgba(17, 17, 17, 0.26),
    var(--shadow-glow);
}

.glass-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.92rem 1.38rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: #f7f4ee;
  color: #111111;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.button-secondary-dark {
  border-color: rgba(22, 22, 22, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
}

.button-light {
  background: #151515;
  color: #f7f4ee;
}

.light-outline {
  border-color: rgba(255, 255, 255, 0.22);
}

.glass-grid {
  display: grid;
  gap: 0.95rem;
}

.glass-tile {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
}

.glass-tile span {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: var(--space-9) 0;
}

/* Collapse padding only when two sections share the same tone */
.section.tone-mist + .section.tone-mist,
.section.tone-blue + .section.tone-blue,
.section.tone-ink + .section.tone-ink {
  padding-top: 0;
}

.page-hero {
  position: relative;
  padding: 8.75rem 0 var(--space-8);
  overflow: clip;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(720px, 72%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(22, 22, 22, 0.12), transparent);
}

.page-hero.tone-ink::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.page-hero .eyebrow {
  margin-bottom: 0.85rem;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.page-hero .page-hero-copy > p {
  font-size: 1.04rem;
  line-height: 1.68;
  max-width: 54ch;
  color: var(--muted);
}

.page-hero.tone-ink .page-hero-copy > p {
  color: rgba(246, 243, 238, 0.78);
}

.page-hero .hero-actions {
  margin-top: var(--space-4);
}

.tone-mist {
  background:
    linear-gradient(180deg, rgba(247, 244, 236, 0.96), rgba(241, 237, 228, 0.94));
}

.tone-blue {
  background:
    linear-gradient(180deg, rgba(235, 243, 247, 0.92), rgba(246, 243, 235, 0.96));
}

.tone-white {
  background:
    linear-gradient(180deg, rgba(250, 248, 243, 0.98), rgba(244, 240, 232, 0.98));
}

.tone-ink {
  background:
    radial-gradient(circle at top right, rgba(190, 156, 67, 0.14), transparent 28%),
    linear-gradient(180deg, #161616, #0f0f0f);
}

.tone-ink h1,
.tone-ink h2,
.tone-ink h3,
.tone-ink .eyebrow,
.tone-ink .section-copy p,
.tone-ink .wide-panel-copy p,
.tone-ink .footer-copy,
.tone-ink .footer-meta,
.tone-ink p {
  color: #f6f3ee;
}

.tone-ink p {
  color: rgba(246, 243, 238, 0.76);
}

.credentials-strip {
  position: relative;
  padding: var(--space-6) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(244, 240, 232, 0.6));
  border-top: 1px solid rgba(22, 22, 22, 0.06);
  border-bottom: 1px solid rgba(22, 22, 22, 0.06);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.credentials-item {
  position: relative;
  display: grid;
  gap: 0.55rem;
  padding: 1.6rem 1.7rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  box-shadow:
    var(--ring-inner),
    0 14px 36px -16px rgba(17, 17, 17, 0.18);
  transition:
    transform 420ms var(--ease),
    box-shadow 420ms var(--ease);
}

.credentials-item:hover {
  transform: translateY(-2px);
  box-shadow:
    var(--ring-inner),
    0 22px 48px -18px rgba(17, 17, 17, 0.22),
    var(--shadow-glow);
}

.credentials-item span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.credentials-item span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(190, 156, 67, 0.14);
}

.credentials-item h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
}

.credentials-item p {
  font-size: 0.93rem;
  line-height: 1.62;
}

.page-hero-tagline {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  margin-top: -0.3rem;
}

.sector-list {
  list-style: none;
  padding: 0.75rem 0 0;
  margin: 0.25rem 0 0;
  border-top: 1px solid rgba(22, 22, 22, 0.08);
  display: grid;
  gap: 0.6rem;
}

.sector-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.93rem;
  line-height: 1.58;
  color: var(--muted);
}

.sector-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(190, 156, 67, 0.12);
}

.capability-blocks {
  display: grid;
  gap: var(--space-4);
}

.capability-block {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: var(--space-4);
  padding: 2.4rem 2.6rem 2.6rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0.2));
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  box-shadow:
    var(--ring-inner),
    0 1px 0 rgba(22, 22, 22, 0.04),
    0 26px 60px -28px rgba(17, 17, 17, 0.22);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}

.capability-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 60% at 0% 0%, rgba(255, 255, 255, 0.55), transparent 55%),
    radial-gradient(80% 60% at 100% 100%, rgba(190, 156, 67, 0.07), transparent 60%);
  pointer-events: none;
}

.capability-block:hover {
  transform: translateY(-3px);
  box-shadow:
    var(--ring-inner),
    0 1px 0 rgba(22, 22, 22, 0.05),
    0 34px 80px -28px rgba(17, 17, 17, 0.28),
    var(--shadow-glow);
}

.capability-block-head {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.capability-block-index {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.2rem;
}

.capability-block-head .eyebrow {
  margin-bottom: 0.55rem;
}

.capability-block-head .eyebrow::before {
  display: none;
}

.capability-block-head h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  margin-bottom: 0.7rem;
  letter-spacing: -0.03em;
}

.capability-block-head p {
  max-width: 62ch;
}

.capability-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
  padding-left: calc(70px + 1.2rem);
}

.capability-list li {
  position: relative;
  display: grid;
  gap: 0.25rem;
  padding: 1.05rem 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
}

.capability-list li:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(190, 156, 67, 0.28);
}

.capability-list strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.012em;
}

.capability-list span {
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--muted);
}

.footer-license {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.split-feature,
.text-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 3.2rem;
  align-items: center;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.85fr);
  gap: 3rem;
  align-items: center;
}

.page-hero-grid > * {
  min-width: 0;
}

.page-hero-grid .glass-image {
  width: 100%;
  max-width: 480px;
  justify-self: end;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
}

.page-hero-grid .glass-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-hero-grid .glass-image.crop-top img {
  object-position: center top;
}

.page-hero-grid .glass-image.crop-bottom img {
  object-position: center bottom;
}

.page-hero-grid .glass-image.sectors-hero-visual img {
  object-position: center 72%;
}

.section-copy,
.page-hero-copy {
  display: grid;
  gap: 1.1rem;
}

.text-link {
  margin-top: 0.35rem;
  display: inline-flex;
  width: fit-content;
  color: var(--text);
  font-weight: 600;
}

.glass-image {
  margin: 0;
  padding: 10px;
  border-radius: calc(var(--radius-xl) + 6px);
}

.glass-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.section-heading {
  max-width: 760px;
  margin-bottom: var(--space-6);
}

.feature-grid,
.card-grid,
.contact-grid-page {
  display: grid;
  gap: var(--space-3);
}

.feature-grid,
.four-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-up,
.contact-grid-page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.sector-card,
.contact-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.9rem 1.95rem;
  border-radius: var(--radius-lg);
}

.feature-card > *,
.sector-card > *,
.contact-card > * {
  position: relative;
}

.sector-icon {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-grid;
  place-items: center;
  border-radius: 1.1rem;
  color: var(--gold);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    radial-gradient(circle at top left, rgba(190, 156, 67, 0.18), transparent 65%);
  border: 1px solid rgba(190, 156, 67, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 18px 36px -24px rgba(17, 17, 17, 0.22);
}

.sector-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.sector-card h3,
.contact-card h3 {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.feature-card p,
.sector-card p,
.contact-card p {
  font-size: 0.95rem;
  line-height: 1.62;
}

.feature-card span,
.sector-card span,
.contact-card span,
.capability-detail span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.feature-card span::before,
.sector-card span::before,
.contact-card span::before,
.capability-detail span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(190, 156, 67, 0.14);
}

.wide-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 1.3rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
}

.wide-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.wide-panel-skyline {
  object-position: center 42%;
  filter: saturate(0.92) contrast(1.04);
}

.wide-panel-copy {
  display: grid;
  gap: var(--space-3);
  padding: 1rem 1.2rem;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: var(--space-7);
  align-items: start;
}

.statement-spacer {
  height: var(--space-4);
}

.capability-stack {
  display: grid;
  gap: var(--space-3);
}

.capability-detail {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.1rem;
  padding: 1.85rem 2rem;
  border-radius: var(--radius-lg);
}

.capability-detail h3 {
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  margin-top: 0.3rem;
}

.capability-detail p {
  font-size: 0.95rem;
  line-height: 1.62;
  margin-top: 0.4rem;
}

.contact-card a {
  font-size: 1.06rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 220ms var(--ease);
}

.contact-card a:hover {
  color: var(--gold);
}

.site-footer {
  padding: var(--space-5) 0 var(--space-4);
  background: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  width: min(220px, 48vw);
}

.footer-copy,
.footer-meta {
  color: rgba(255, 255, 255, 0.68);
}

.footer-copy {
  margin-top: 0.85rem;
  max-width: 34ch;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal-delay {
  transition-delay: 100ms;
}

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

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

  .js .reveal,
  .button,
  .site-nav a,
  .menu-toggle span {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-home-shell,
  .split-feature,
  .page-hero-grid,
  .text-columns,
  .wide-panel,
  .statement-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 5.6rem 0;
  }

  .page-hero {
    padding: 7.4rem 0 4.4rem;
  }

  .capability-block {
    padding: 2rem 1.9rem 2.1rem;
  }

  .page-hero-grid {
    gap: 2.4rem;
  }

  .page-hero-grid .glass-image {
    justify-self: start;
    max-width: 100%;
    max-height: 360px;
  }

  .hero-home {
    padding: 7.4rem 0 4.8rem;
  }

  .hero-home-shell {
    gap: 3rem;
  }

  .hero-home-media {
    justify-self: start;
    max-width: 100%;
  }

  .hero-home-figure {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }

  .hero-badge {
    left: auto;
    right: 1.2rem;
    bottom: 1.2rem;
    max-width: 260px;
  }

  .feature-grid,
  .four-up,
  .two-up,
  .contact-grid-page {
    grid-template-columns: 1fr;
  }

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

  .capability-list {
    padding-left: 0;
  }

  .capability-block-head {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .capability-block-index {
    font-size: 1.6rem;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
    position: relative;
    z-index: 70;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 1.5rem;
    left: 1.5rem;
    display: grid;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(15, 15, 15, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    z-index: 65;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav a {
    display: block;
    padding: 0.2rem 0 0.85rem;
    font-size: 1rem;
    line-height: 1.2;
    color: rgba(247, 244, 238, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    padding-bottom: 0.1rem;
    border-bottom: 0;
  }

  .site-nav a:hover,
  .site-nav a.is-active,
  .site-header.is-scrolled .site-nav a,
  .site-header.is-scrolled .site-nav a:hover,
  .site-header.is-scrolled .site-nav a.is-active {
    color: #ffffff;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-row {
    justify-content: space-between;
  }

  .header-nav-shell {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex: 0 0 auto;
    overflow: visible;
  }

  .header-actions {
    padding-left: 0.5rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 0.9rem;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 1.4rem, 100%);
  }

  .header-row {
    min-height: 76px;
  }

  .section {
    padding: 4.6rem 0;
  }

  .hero-home {
    padding: 6.4rem 0 4rem;
  }

  .hero-home-shell {
    gap: 2.4rem;
  }

  .hero-display {
    font-size: clamp(2.15rem, 9.5vw, 2.9rem);
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero-home-figure {
    aspect-ratio: 5 / 4;
    max-height: 280px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 1rem 1.2rem;
  }

  .hero-meta li + li {
    padding-left: 0;
    padding-top: 0.6rem;
    border-left: none;
    border-top: 1px solid rgba(22, 22, 22, 0.08);
  }

  .hero-badge {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    max-width: none;
  }

  .page-hero {
    padding: 6.4rem 0 3.6rem;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .page-hero h1 {
    font-size: clamp(1.95rem, 8.4vw, 2.6rem);
  }

  .page-hero-grid .glass-image {
    aspect-ratio: 5 / 4;
    max-height: 280px;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .glass-card,
  .feature-card,
  .sector-card,
  .contact-card,
  .capability-detail {
    padding: 1.4rem;
  }

  .header-cta {
    display: none;
  }

  .wide-panel img {
    height: 260px;
  }

  .credentials-strip {
    padding: 2.4rem 0;
  }

  .credentials-item {
    padding: 1.2rem 1.3rem;
  }

  .capability-block {
    padding: 1.5rem;
  }

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