﻿:root {
  --navy: #010101;
  --black: #010101;
  --white: #ffffff;
  --deep-bronze: #442d17;
  --bronze-accent: #81592a;
  --button-bronze: #886034;
  --foot-gold: #b9823c;
  --headline: #e9e2d1;
  --nav-copy: #cdc9c1;
  --body-copy: #797978;
  --silver: #cdc9c1;
  --silver-soft: rgba(205, 201, 193, 0.84);
  --rule: rgba(129, 89, 42, 0.42);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: Montserrat, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Collection manager output and public specimen galleries */
.catalog-section {
  position: relative;
  z-index: 1;
  padding: clamp(68px, 8vw, 118px) 0;
  border-top: 1px solid rgba(129, 89, 42, 0.34);
  border-bottom: 1px solid rgba(129, 89, 42, 0.22);
  background: #080706;
}

.catalog-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(129, 89, 42, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(129, 89, 42, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.catalog-featured {
  background: #050504;
}

.catalog-inner {
  position: relative;
  width: min(calc(100% - 44px), 1260px);
  margin: 0 auto;
}

.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(30px, 6vw, 90px);
  margin-bottom: clamp(34px, 5vw, 62px);
}

.catalog-heading h1,
.catalog-heading h2 {
  max-width: 720px;
  margin: 7px 0 0;
  color: var(--headline);
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.catalog-heading > p {
  margin: 0;
  color: rgba(205, 201, 193, 0.67);
  font-size: 0.92rem;
  line-height: 1.75;
}

.catalog-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
  padding: 18px 0;
  border-top: 1px solid rgba(129, 89, 42, 0.34);
  border-bottom: 1px solid rgba(129, 89, 42, 0.34);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-filters button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(129, 89, 42, 0.36);
  border-radius: 2px;
  background: transparent;
  color: rgba(205, 201, 193, 0.68);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.catalog-filters button:hover,
.catalog-filters button:focus-visible,
.catalog-filters button[aria-pressed="true"] {
  border-color: var(--foot-gold);
  background: rgba(129, 89, 42, 0.16);
  color: var(--headline);
}

.catalog-search {
  display: grid;
  flex: 0 1 330px;
  gap: 7px;
}

.catalog-search span {
  color: rgba(205, 201, 193, 0.66);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(129, 89, 42, 0.56);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--headline);
  font: 0.82rem var(--font-body);
}

.catalog-search input:focus {
  border-color: var(--foot-gold);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
}

.catalog-card {
  min-width: 0;
  border: 1px solid rgba(129, 89, 42, 0.32);
  border-radius: 4px;
  overflow: hidden;
  background: #0e0d0b;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.catalog-card:hover,
.catalog-card:focus-within {
  border-color: rgba(185, 130, 60, 0.78);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
  transform: translateY(-3px);
}

.catalog-card-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #040403;
  cursor: zoom-in;
}

.catalog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 280ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-card:hover .catalog-card-image img,
.catalog-card:focus-within .catalog-card-image img {
  filter: brightness(1.08);
  transform: none;
}

.catalog-card-view {
  position: absolute;
  right: 14px;
  bottom: 13px;
  padding: 7px 9px;
  border: 1px solid rgba(233, 226, 209, 0.3);
  border-radius: 2px;
  background: rgba(1, 1, 1, 0.78);
  color: var(--headline);
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.catalog-card:hover .catalog-card-view,
.catalog-card-image:focus-visible .catalog-card-view {
  opacity: 1;
  transform: translateY(0);
}

.catalog-card-description {
  margin: 16px 0 0;
  color: #b4b1aa;
  font-size: 0.82rem;
  line-height: 1.7;
}

.catalog-card-body {
  min-height: 245px;
  padding: clamp(19px, 2.2vw, 28px);
}

.catalog-card-overline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--foot-gold);
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.catalog-card-overline span + span {
  color: rgba(205, 201, 193, 0.54);
  text-align: right;
}

.catalog-card h3 {
  margin: 17px 0 7px;
  color: var(--headline);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.catalog-card-subtitle {
  min-height: 42px;
  margin: 0;
  color: rgba(205, 201, 193, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}

.catalog-card-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(129, 89, 42, 0.26);
}

.catalog-card-facts div { min-width: 0; }
.catalog-card-facts dt {
  color: rgba(205, 201, 193, 0.43);
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-card-facts dd {
  margin: 5px 0 0;
  overflow-wrap: anywhere;
  color: rgba(205, 201, 193, 0.76);
  font-size: 0.7rem;
  line-height: 1.4;
}

.catalog-card-price {
  margin: 16px 0 0;
  color: var(--headline);
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.catalog-price-note {
  display: block;
  margin-top: 5px;
  color: #a7a5a0;
  font: 0.68rem var(--font-body);
  line-height: 1.5;
}

.catalog-viewer-price {
  margin: 10px 0 0;
  color: var(--headline);
  font: 0.84rem var(--font-body);
}

.catalog-empty {
  margin: 24px 0 0;
  padding: 48px 20px;
  border: 1px dashed rgba(129, 89, 42, 0.38);
  color: rgba(205, 201, 193, 0.6);
  text-align: center;
}

body.catalog-viewer-open { overflow: hidden; }

.catalog-viewer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 74px;
  align-items: center;
  padding: 24px;
  background: rgba(1, 1, 1, 0.96);
  backdrop-filter: blur(12px);
}

.catalog-viewer[hidden] { display: none; }

.catalog-viewer-close {
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  border: 1px solid rgba(205, 201, 193, 0.3);
  border-radius: 50%;
  background: rgba(1, 1, 1, 0.7);
  color: var(--headline);
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}

.catalog-viewer-arrow {
  width: 54px;
  height: 72px;
  padding: 0 0 7px;
  border: 1px solid rgba(129, 89, 42, 0.5);
  border-radius: 3px;
  background: transparent;
  color: var(--headline);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 2.8rem;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.catalog-viewer-arrow:hover,
.catalog-viewer-arrow:focus-visible,
.catalog-viewer-close:hover,
.catalog-viewer-close:focus-visible {
  border-color: var(--foot-gold);
  background: rgba(129, 89, 42, 0.16);
  color: var(--foot-gold);
}

.catalog-viewer-prev { justify-self: start; }
.catalog-viewer-next { justify-self: end; }

.catalog-viewer-figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(100%, 1180px);
  height: calc(100vh - 48px);
  height: calc(100dvh - 48px);
  margin: 0 auto;
}

.catalog-viewer-stage {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
}

.catalog-viewer-stage img {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
}

.catalog-viewer figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  max-width: 920px;
  width: 100%;
  margin: 12px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(129, 89, 42, 0.4);
  max-height: 36vh;
  overflow-y: auto;
}

.catalog-viewer-kicker {
  margin: 0 0 4px;
  color: var(--foot-gold);
  font-family: var(--font-sans);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-viewer h2 {
  margin: 0;
  color: var(--headline);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.catalog-viewer-description {
  max-width: 660px;
  margin: 7px 0 0;
  color: rgba(205, 201, 193, 0.62);
  font-size: 0.74rem;
  line-height: 1.45;
}

.catalog-viewer-count {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(205, 201, 193, 0.6);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.catalog-viewer-caption {
  margin: 10px 0 0;
  color: #a7a5a0;
  font-size: 0.68rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .catalog-heading { grid-template-columns: 1fr; gap: 18px; }
  .catalog-heading > p { max-width: 680px; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-viewer { grid-template-columns: 56px minmax(0, 1fr) 56px; padding: 18px 10px; }
  .catalog-viewer-arrow { width: 43px; height: 62px; }
}

@media (max-width: 700px) {
  .catalog-section { padding: 64px 0; }
  .catalog-inner { width: min(calc(100% - 34px), 1260px); }
  .catalog-heading h2 { font-size: 2rem; }
  .catalog-controls { align-items: stretch; flex-direction: column; }
  .catalog-search { flex-basis: auto; width: 100%; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card-image { aspect-ratio: 1; }
  .catalog-card-body { min-height: 0; }
  .catalog-card-view { opacity: 1; transform: none; }
  .catalog-viewer { grid-template-columns: 1fr; padding: 68px 14px 14px; }
  .catalog-viewer-figure { width: 100%; height: calc(100vh - 82px); height: calc(100dvh - 82px); }
  .catalog-viewer-stage img { max-height: 100%; }
  .catalog-viewer-arrow { position: fixed; top: 14px; bottom: auto; z-index: 2; width: 44px; height: 44px; background: rgba(1, 1, 1, 0.74); }
  .catalog-viewer-prev { left: 15px; }
  .catalog-viewer-next { left: 69px; right: auto; }
  .catalog-viewer figcaption { align-items: flex-start; flex-direction: column; gap: 7px; padding-right: 0; max-height: 42vh; }
  .catalog-viewer-close { top: 14px; right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-card,
  .catalog-card-image img,
  .catalog-card-view { transition: none; }
}

/* Collection pages put browsing before supporting editorial sections. */
.catalog-page .inner-hero-caption {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: min(calc(100% - 44px), 1260px);
  margin: 14px auto 0;
}

.catalog-page .catalog-section {
  padding: 28px 0 52px;
  border-top: 0;
}

.catalog-page .catalog-heading {
  gap: 20px;
  margin-bottom: 20px;
}

.catalog-page .catalog-heading h1 {
  margin: 6px 0 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.12;
}

.catalog-page .catalog-heading > p {
  font-size: 0.82rem;
  line-height: 1.55;
}

.catalog-page .catalog-controls {
  gap: 16px;
  margin-bottom: 20px;
  padding: 12px 0;
}

.catalog-page .catalog-support .section-inner {
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (max-width: 980px) {
  .catalog-page .catalog-heading { gap: 10px; }
}

@media (max-width: 700px) {
  .catalog-page .inner-hero-caption { width: calc(100% - 34px); margin-top: 10px; }
  .catalog-page .catalog-section { padding-top: 22px; }
  .catalog-page .catalog-heading h1 { font-size: 1.6rem; }
  .catalog-page .catalog-heading { margin-bottom: 16px; }
  .catalog-page .catalog-controls { gap: 12px; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--headline);
  font-family: var(--font-body);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  height: 2px;
  background: linear-gradient(90deg, rgba(68, 45, 23, 0.24), rgba(129, 89, 42, 0.95));
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 70px;
  flex-shrink: 0;
  padding: 18px clamp(22px, 4vw, 64px) 8px clamp(240px, 22vw, 340px);
  color: var(--nav-copy);
  background: var(--black);
  border-bottom: 1px solid rgba(129, 89, 42, 0.28);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease, backdrop-filter 220ms ease;
}

.site-header-solid {
  z-index: 15;
  background: var(--black);
  border-bottom: 1px solid rgba(129, 89, 42, 0.36);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.site-logo {
  position: absolute;
  top: 8px;
  left: clamp(18px, 3.2vw, 46px);
  z-index: 6;
  display: block;
  width: clamp(144px, 10.8vw, 198px);
  aspect-ratio: 1;
  text-decoration: none;
  transition: filter 180ms ease, transform 180ms ease, width 220ms ease;
}

.site-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-logo:hover,
.site-logo:focus-visible {
  filter: drop-shadow(0 0 16px rgba(129, 89, 42, 0.42));
  transform: translateY(-1px);
}

.site-header-solid .site-logo {
  top: 6px;
  width: 58px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(16px, 2.2vw, 34px);
  max-width: min(100%, 1060px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 8px 0;
  color: rgba(205, 201, 193, 0.86);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: "Montserrat", "Century Gothic", "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.48);
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--foot-gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--foot-gold);
}

.site-nav a[aria-current="page"] {
  color: var(--headline);
}

.site-nav a[aria-current="page"]::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a[href="contact.html"] {
  margin-left: 0;
}

.site-nav .nav-bag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 28px;
  margin-left: -6px;
  padding: 0;
  color: var(--headline);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav .nav-bag::after {
  display: none;
}

.site-nav .nav-bag span {
  position: relative;
  display: block;
  width: 16px;
  height: 17px;
  border: 1.4px solid currentColor;
  border-radius: 2px 2px 3px 3px;
}

.site-nav .nav-bag span::before {
  position: absolute;
  top: -7px;
  left: 3.3px;
  width: 7px;
  height: 7px;
  border: 1.4px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
}

.site-nav .nav-bag:hover,
.site-nav .nav-bag:focus-visible {
  color: var(--foot-gold);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 0;
  padding-top: 0;
  overflow: visible;
  background: var(--navy);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
  opacity: 1;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 1, 1, 0.48) 0%, rgba(1, 1, 1, 0.18) 42%, rgba(1, 1, 1, 0) 78%),
    linear-gradient(180deg, rgba(1, 1, 1, 0) 0%, rgba(1, 1, 1, 0.22) 72%, #010101 100%);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: clamp(26px, 4.2vw, 70px);
  bottom: -58px;
  z-index: 2;
  width: min(380px, calc(100% - 52px));
}

.hero-kicker {
  margin: 0 0 12px;
  color: var(--foot-gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-title {
  max-width: 390px;
  color: var(--headline);
  font-family: var(--font-serif);
  font-size: clamp(1.08rem, 1.66vw, 1.52rem);
  font-weight: 400;
  line-height: 1.22;
}

.hero-rule {
  width: 44px;
  height: 2px;
  margin: 14px 0 14px;
  background: var(--bronze-accent);
}

.hero-copy {
  max-width: 360px;
  margin: 0;
  color: rgba(205, 201, 193, 0.78);
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--bronze-accent);
  background: transparent;
  color: var(--foot-gold);
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.hero-button-primary {
  background: linear-gradient(180deg, #9d7040, var(--button-bronze));
  border-color: var(--button-bronze);
  color: var(--headline);
}

.hero-button:hover,
.hero-button:focus-visible {
  border-color: var(--headline);
  color: var(--headline);
  box-shadow: 0 0 0 3px rgba(129, 89, 42, 0.18);
}

.inner-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 0;
  padding-top: 8px;
  overflow: visible;
  background: var(--navy);
}

.inner-hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center top;
}

.inner-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 1, 1, 0.34) 0%, rgba(1, 1, 1, 0.14) 42%, rgba(1, 1, 1, 0) 78%),
    linear-gradient(180deg, rgba(1, 1, 1, 0) 0%, rgba(1, 1, 1, 0.18) 70%, #010101 100%);
  content: "";
  pointer-events: none;
}

.inner-hero-caption {
  position: absolute;
  left: clamp(26px, 4.2vw, 70px);
  bottom: -52px;
  z-index: 2;
  width: min(520px, calc(100% - 52px));
}

.inner-hero-caption p:not(.inner-hero-caption-title) {
  max-width: none;
  margin: 0 0 8px;
  color: var(--foot-gold);
  font-family: var(--font-sans);
  font-size: clamp(0.58rem, 0.82vw, 0.72rem);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.inner-hero-caption-title {
  max-width: 520px;
  margin: 0;
  color: var(--headline);
  font-family: var(--font-serif);
  font-size: clamp(1.06rem, 1.62vw, 1.54rem);
  font-weight: 400;
  line-height: 1.18;
}

.inner-hero-image:not([src]) {
  visibility: hidden;
}

.hero::after,
.inner-hero::after {
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  z-index: 1;
  height: clamp(44px, 5vw, 74px);
  background:
    linear-gradient(
      180deg,
      rgba(2, 4, 9, 0) 0%,
      rgba(2, 4, 9, 0.42) 48%,
      rgba(2, 4, 9, 0.88) 74%,
      rgba(2, 4, 9, 0) 100%
    );
  content: "";
  pointer-events: none;
}

.page-section {
  min-height: 36vh;
  scroll-margin-top: 32px;
  background:
    linear-gradient(180deg, rgba(1, 1, 1, 0.98), rgba(10, 7, 4, 1)),
    var(--black);
  border-top: 1px solid var(--rule);
}

.hero + .page-section {
  border-top: 0;
}

.hero + .page-section .section-inner {
  padding-top: clamp(118px, 11vw, 168px);
}

.subpage {
  padding-top: 76px;
}

.page-intro {
  min-height: 34vh;
  background:
    linear-gradient(180deg, rgba(1, 1, 1, 1), rgba(12, 8, 4, 1));
  border-bottom: 1px solid var(--rule);
}

.inner-hero + .page-intro {
  min-height: auto;
}

.inner-hero + .page-intro .section-inner {
  padding-top: clamp(72px, 7vw, 98px);
  padding-bottom: clamp(46px, 5.6vw, 72px);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(1, 1, 1, 1), rgba(21, 14, 8, 1)),
    var(--black);
}

.media-break {
  background:
    linear-gradient(180deg, rgba(1, 1, 1, 1), rgba(8, 5, 3, 0.98)),
    var(--black);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.media-break-inner {
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 58px) clamp(22px, 4vw, 64px);
}

.media-break-image {
  display: block;
  flex: 0 1 auto;
  width: min(1180px, 100%);
  max-width: 100%;
  max-height: 560px;
  margin: 0 auto;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(129, 89, 42, 0.42);
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.56);
}

.media-break-image-dark {
  object-position: center 53%;
}

.media-break-image-sunrise {
  object-position: center 54%;
}

.section-inner {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.section-narrow {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.section-inner.section-narrow {
  width: min(720px, calc(100% - 44px));
  max-width: 720px;
}

.section-narrow > .section-kicker,
.section-narrow > h1,
.section-narrow > h2,
.section-narrow > p,
.section-narrow > .capability-list {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.lead-copy {
  margin-top: 0;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--foot-gold);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2 {
  max-width: 680px;
  margin: 0;
  color: var(--headline);
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 1.65vw, 1.58rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0;
}

h2 {
  color: var(--headline);
}

p {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--body-copy);
  font-size: 0.88rem;
  line-height: 1.65;
}

.capability-list {
  display: grid;
  gap: 0;
  margin: 4px 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.capability-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--nav-copy);
  font-size: 0.86rem;
  line-height: 1.4;
}

.approach-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin-top: 34px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.approach-line span {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.contact-section {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.text-link {
  flex: 0 0 auto;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--silver);
}

.inline-cta {
  display: inline-block;
  margin-top: 30px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.inline-cta::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  background: currentColor;
  content: "";
  opacity: 0.62;
}

.inline-cta:hover,
.inline-cta:focus-visible {
  color: var(--silver);
}

.split-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--rule);
  border-right: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.feature-link {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.feature-link:hover,
.feature-link:focus-visible {
  background: rgba(255, 255, 255, 0.052);
}

.feature-link span,
.content-list span,
.process-grid span {
  color: var(--silver);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-link strong {
  max-width: 320px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.42;
}

.content-list {
  display: grid;
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.content-list article {
  display: grid;
  grid-template-columns: 88px minmax(180px, 0.5fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.025);
}

.content-list h2 {
  font-size: 1.05rem;
  line-height: 1.3;
}

.content-list p {
  margin-top: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.process-grid article {
  min-height: 240px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.025);
}

.process-grid p {
  margin-top: 34px;
}

.option-approach {
  background: linear-gradient(90deg, rgba(7, 15, 29, 1), rgba(2, 4, 9, 1));
}

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

.process-orbit article {
  position: relative;
  min-height: 230px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(129, 89, 42, 0.32);
  background: linear-gradient(180deg, rgba(68, 45, 23, 0.32), rgba(1, 1, 1, 0.82));
}

.process-orbit article::before {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(129, 89, 42, 0.38);
  border-radius: 999px;
  content: "";
}

.process-orbit article::after {
  position: absolute;
  top: 37px;
  right: 28px;
  width: 18px;
  height: 1px;
  background: rgba(129, 89, 42, 0.58);
  content: "";
}

.process-orbit span,
.contact-panel span {
  color: var(--silver);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-orbit p {
  margin-top: 70px;
}

.option-about {
  background:
    linear-gradient(135deg, rgba(21, 14, 8, 1), rgba(1, 1, 1, 1) 58%),
    var(--black);
}

.story-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.story-profile-copy {
  max-width: 640px;
}

.story-profile-no-image {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.story-profile-no-image .story-profile-copy {
  max-width: 760px;
}

.story-profile-copy > .section-kicker,
.story-profile-copy > h1,
.story-profile-copy > p {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.story-portrait {
  position: relative;
  margin: 0;
  padding: clamp(10px, 1.5vw, 16px);
  border: 1px solid rgba(185, 130, 60, 0.48);
  background:
    linear-gradient(180deg, rgba(68, 45, 23, 0.28), rgba(1, 1, 1, 0.58));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.story-portrait::before {
  position: absolute;
  inset: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(233, 226, 209, 0.14);
  content: "";
  pointer-events: none;
}

.story-portrait img {
  display: block;
  width: 100%;
  height: clamp(360px, 36vw, 500px);
  object-fit: cover;
  object-position: 50% 32%;
  filter: sepia(0.08) contrast(1.05) brightness(0.92);
}

.story-portrait figcaption {
  margin-top: 12px;
  color: var(--foot-gold);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-signal {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 5vw, 44px);
  align-items: start;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.signal-copy {
  padding-left: 0;
  border-left: 0;
}

.signal-copy p:first-child {
  margin-top: 0;
}

.capability-signal {
  grid-template-columns: minmax(0, 1fr);
}

.capability-stack {
  display: grid;
  gap: 0;
}

.capability-stack article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(129, 89, 42, 0.28);
}

.capability-stack article + article {
  padding-top: 26px;
}

.capability-stack span {
  color: var(--silver);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.capability-stack h2 {
  font-size: 1rem;
  line-height: 1.3;
}

.capability-stack p {
  margin-top: 12px;
}

.contact-command {
  align-items: stretch;
}

.contact-signal {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.9fr);
}

.contact-stack {
  display: flex;
  justify-content: flex-end;
}

.contact-panel {
  width: min(100%, 360px);
  padding: 28px;
  border: 1px solid rgba(129, 89, 42, 0.32);
  background: linear-gradient(180deg, rgba(68, 45, 23, 0.28), rgba(1, 1, 1, 0.92));
}

.contact-panel .text-link {
  display: inline-block;
  margin-top: 34px;
}

.contact-panel p {
  margin-top: 26px;
  font-size: 0.82rem;
}

.contact-page {
  background:
    linear-gradient(135deg, rgba(21, 14, 8, 1), rgba(1, 1, 1, 1) 58%),
    var(--black);
}

.contact-layout {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  max-width: 920px;
}

.contact-intro {
  max-width: 760px;
}

.contact-secondary {
  margin-top: 14px;
  color: var(--nav-copy);
}

.contact-form {
  display: grid;
  gap: 8px;
  max-width: 920px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

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

.form-field label {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: flex-end;
  min-height: 2.25em;
  color: var(--nav-copy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.form-field label span {
  color: var(--silver);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(129, 89, 42, 0.32);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(68, 45, 23, 0.12), rgba(255, 255, 255, 0.035));
  color: var(--headline);
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.45;
  outline: none;
  padding: 12px 14px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(205, 201, 193, 0.72) 50%),
    linear-gradient(135deg, rgba(205, 201, 193, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  padding-right: 40px;
}

.form-field select option {
  background: #010101;
  color: var(--headline);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  border-color: rgba(129, 89, 42, 0.9);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 3px rgba(129, 89, 42, 0.18);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: rgba(255, 150, 150, 0.82);
}

.field-error {
  margin: 0;
  color: rgba(255, 190, 190, 0.95);
  font-size: 0.76rem;
  line-height: 1.5;
}

.field-error:empty {
  display: none;
}

.form-status {
  min-height: 0;
  margin: 0;
  outline: none;
}

.form-status-success,
.form-status-error {
  padding: 14px 16px;
  border: 1px solid rgba(129, 89, 42, 0.32);
  border-radius: 4px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.form-status-success {
  background: rgba(74, 152, 119, 0.13);
  color: rgba(220, 255, 238, 0.92);
}

.form-status-error {
  background: rgba(154, 79, 79, 0.13);
  color: rgba(255, 220, 220, 0.95);
}

.contact-notice,
.privacy-note {
  max-width: none;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.contact-notice {
  padding: 16px;
  border: 1px solid rgba(129, 89, 42, 0.36);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(68, 45, 23, 0.18), rgba(255, 255, 255, 0.035));
  color: var(--nav-copy);
}

.privacy-note {
  color: rgba(205, 201, 193, 0.62);
}

.contact-page .section-inner {
  padding-bottom: clamp(38px, 5vw, 62px);
}

.privacy-note a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.turnstile-area {
  display: none;
  gap: 4px;
}

.turnstile-area.is-active {
  display: grid;
}

.turnstile-widget {
  min-height: 0;
}

.turnstile-area.is-active .turnstile-widget {
  min-height: 65px;
}

.submit-button {
  justify-self: start;
  margin-top: 6px;
  margin-bottom: 4px;
  min-height: 44px;
  border: 1px solid var(--button-bronze);
  border-radius: 4px;
  background: linear-gradient(180deg, #9d7040, var(--button-bronze));
  color: var(--headline);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  padding: 0 18px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  border-color: var(--headline);
  background: linear-gradient(180deg, #a97942, #6f4b27);
  color: var(--headline);
  box-shadow: 0 0 0 3px rgba(129, 89, 42, 0.18);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.legal-section {
  background:
    linear-gradient(180deg, rgba(1, 1, 1, 1), rgba(12, 8, 4, 1)),
    var(--black);
}

.legal-copy {
  display: grid;
  gap: 28px;
  max-width: 820px;
}

.legal-copy article {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(129, 89, 42, 0.28);
}

.legal-copy h2 {
  font-size: 0.98rem;
  font-weight: 400;
}

.legal-copy h3 {
  margin: 22px 0 0;
  color: var(--nav-copy);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-copy p {
  margin-top: 12px;
}

.legal-copy ul {
  display: grid;
  gap: 8px;
  max-width: 700px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--body-copy);
  font-size: 0.9rem;
  line-height: 1.65;
}

.legal-copy li::marker {
  color: var(--silver);
}

.legal-copy a {
  color: var(--headline);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.editorial-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 80px);
}

.editorial-band p {
  margin-top: 0;
  font-size: 1rem;
}

.site-footer {
  background: #010101;
  border-top: 1px solid var(--rule);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(240px, 0.85fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 34px 0;
}

.footer-brand,
.footer-copy,
.footer-legal {
  margin: 0;
}

.footer-brand {
  color: var(--headline);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer-copy,
.footer-legal {
  color: rgba(205, 201, 193, 0.62);
  font-size: 0.76rem;
  line-height: 1.6;
}

.footer-copy {
  margin-top: 12px;
}

.footer-link-area {
  display: grid;
  gap: 13px;
  justify-items: center;
}

.footer-social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 5px;
}

.footer-social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #fff;
  color: #111;
  font-family: var(--font-body, Arial, sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.footer-social-button-x {
  width: 44px;
  padding: 11px;
}

.footer-social-button svg {
  display: block;
  width: 20px;
  height: 20px;
  flex: none;
  fill: currentColor;
}

.footer-social-button:hover {
  background: #d2ac75;
  border-color: #d2ac75;
  color: #111;
}

.footer-social-button:focus-visible {
  outline: 2px solid #d2ac75;
  outline-offset: 4px;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--nav-copy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.footer-social {
  position: relative;
  width: min(214px, 100%);
  aspect-ratio: 840 / 230;
  opacity: 0.78;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.footer-social-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-social-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 33.333%;
}

.footer-social-linkedin {
  left: 0;
}

.footer-social-x {
  left: 33.333%;
}

.footer-social-instagram {
  left: 66.666%;
}

.footer-social-hit span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer-social:hover,
.footer-social:focus-within {
  filter: drop-shadow(0 0 12px rgba(129, 89, 42, 0.3));
  opacity: 1;
  transform: translateY(-1px);
}

.back-to-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 16;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(129, 89, 42, 0.42);
  border-radius: 50%;
  background: rgba(1, 1, 1, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.back-to-top::before {
  position: absolute;
  top: 16px;
  left: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--headline);
  border-left: 2px solid var(--headline);
  content: "";
  transform: rotate(45deg);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--headline);
  background: rgba(68, 45, 23, 0.86);
}

@media (max-width: 820px) {
  .hero {
    min-height: 0;
  }

  .hero-content {
    bottom: -64px;
    width: min(350px, calc(100% - 44px));
  }

  .hero-title {
    font-size: clamp(1.04rem, 3.25vw, 1.42rem);
  }

  .inner-hero-caption {
    bottom: -30px;
    width: min(500px, calc(100% - 44px));
  }

  .hero + .page-section .section-inner {
    padding-top: 158px;
  }

  .section-grid,
  .contact-section {
    display: block;
  }

  .capability-list,
  .text-link {
    margin-top: 32px;
  }

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

  .split-links,
  .process-grid,
  .process-orbit,
  .story-profile,
  .about-signal,
  .editorial-band,
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .story-portrait {
    width: min(420px, 100%);
  }

  .content-list article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .footer-link-area {
    justify-items: start;
  }

  .signal-copy {
    padding-left: 0;
    border-left: 0;
  }

  .contact-intro {
    position: static;
  }

  .contact-form {
    padding-left: 0;
    border-left: 0;
  }

  .form-field input,
  .form-field select,
  .form-field textarea,
  .contact-notice {
    border-color: rgba(129, 89, 42, 0.38);
    background: linear-gradient(180deg, rgba(68, 45, 23, 0.18), rgba(255, 255, 255, 0.045));
  }

  .form-field label {
    min-height: 0;
  }

  .contact-stack {
    justify-content: flex-start;
  }

  .capability-stack article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 980px) {
  .hero-content {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(380px, calc(100% - 36px));
    margin: -2px 18px 0;
  }

  .hero + .page-section .section-inner {
    padding-top: 54px;
  }

  .inner-hero-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(420px, calc(100% - 36px));
    margin: -1px 18px 0;
  }

  .inner-hero + .page-intro .section-inner {
    padding-top: 48px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(1, 1, 1, 0.28) 0%, rgba(1, 1, 1, 0.72) 44%, #010101 100%);
  }

  .hero-content {
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 34px);
    margin: -2px auto 0;
  }

  .hero-title {
    font-size: clamp(1.05rem, 5.2vw, 1.42rem);
  }

  .hero-kicker {
    margin-bottom: 8px;
    font-size: 0.62rem;
  }

  .inner-hero-caption {
    width: calc(100% - 34px);
    margin: -1px auto 0;
  }

  .inner-hero-caption p:not(.inner-hero-caption-title) {
    margin-bottom: 7px;
    font-size: 0.6rem;
  }

  .inner-hero-caption-title {
    font-size: clamp(1rem, 4.9vw, 1.32rem);
    line-height: 1.2;
  }

  .hero-rule {
    margin: 14px 0;
  }

  .hero-copy {
    font-size: 0.84rem;
    line-height: 1.45;
  }

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

  .hero + .page-section .section-inner {
    padding-top: 54px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .hero-button {
    min-width: 0;
    width: 100%;
  }

  .section-inner {
    width: min(100% - 34px, 1120px);
    padding: 54px 0;
  }

  .media-break-inner {
    width: 100%;
    padding: 34px 17px;
  }

  .media-break-image {
    aspect-ratio: 4 / 3;
    max-height: 380px;
  }

  .contact-page .section-inner {
    padding-bottom: 38px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea,
  .contact-notice {
    background: linear-gradient(180deg, rgba(68, 45, 23, 0.22), rgba(255, 255, 255, 0.052));
  }

  .subpage {
    padding-top: 64px;
  }

  .page-intro {
    min-height: 34vh;
  }

  h1,
  h2 {
    font-size: 1.16rem;
  }

  p {
    font-size: 0.88rem;
  }

  .approach-line span {
    padding: 16px 14px;
    font-size: 0.68rem;
  }

  .feature-link,
  .process-grid article,
  .process-orbit article {
    min-height: auto;
  }

  .feature-link strong,
  .content-list h2 {
    font-size: 0.96rem;
  }
}

.nav-toggle {
  display: none;
}

@media (max-width: 1280px) {
  .site-header,
  .site-header.site-header-solid {
    height: 76px;
    padding: 0 22px;
  }

  .site-logo {
    top: 8px;
    left: 18px;
    width: 88px;
  }

  .site-header-solid .site-logo {
    top: 7px;
    width: 60px;
  }

  .nav-toggle {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 8;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(185, 130, 60, 0.56);
    border-radius: 3px;
    background: rgba(1, 1, 1, 0.74);
    color: var(--headline);
    cursor: pointer;
    place-items: center;
  }

  .site-header-solid .nav-toggle {
    top: 16px;
  }

  .nav-toggle > span {
    position: relative;
    display: block;
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: background 160ms ease, transform 160ms ease;
  }

  .nav-toggle > span::before,
  .nav-toggle > span::after {
    position: absolute;
    left: 0;
    width: 19px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 160ms ease;
  }

  .nav-toggle > span::before {
    transform: translateY(-6px);
  }

  .nav-toggle > span::after {
    transform: translateY(6px);
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    border-color: var(--foot-gold);
    color: var(--foot-gold);
  }

  .nav-toggle[aria-expanded="true"] > span {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] > span::before {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span::after {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    gap: 0;
    width: min(360px, calc(100vw - 36px));
    max-width: none;
    max-height: calc(100vh - 92px);
    margin: 0;
    padding: 12px 20px 16px;
    border: 1px solid rgba(129, 89, 42, 0.48);
    border-top: 0;
    overflow-y: auto;
    background: rgba(4, 3, 2, 0.98);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.62);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
    visibility: hidden;
  }

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

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0;
    border-bottom: 1px solid rgba(129, 89, 42, 0.22);
    font-size: 0.68rem;
    letter-spacing: 0;
  }

  .site-nav a::after {
    right: auto;
    width: 42px;
  }

  .site-nav .nav-bag {
    width: 100%;
    height: 43px;
    margin: 0;
    border-bottom: 0;
    justify-content: flex-start;
  }

  .site-nav .nav-bag span {
    width: 16px;
    height: 17px;
  }

  .hero,
  .inner-hero {
    padding-top: 8px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-header.site-header-solid {
    height: 68px;
    padding: 0 14px;
  }

  .site-logo,
  .site-header-solid .site-logo {
    top: 7px;
    left: 12px;
    width: 58px;
  }

  .nav-toggle,
  .site-header-solid .nav-toggle {
    top: 12px;
    right: 12px;
  }

  .site-nav {
    right: 10px;
    width: calc(100vw - 20px);
  }

  .hero,
  .inner-hero {
    padding-top: 8px;
  }
}
