:root {
  --ink: #070707;
  --ink-soft: #11110f;
  --charcoal: #24231f;
  --gold: #c89b3c;
  --gold-bright: #e4bc67;
  --gold-dark: #7f5b1f;
  --ivory: #f3f0e8;
  --paper: #e7e0d2;
  --silver: #b8bdc4;
  --line: rgba(200, 155, 60, 0.34);
  --muted: #9a968d;
  --display: "Baskerville", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --max: 1240px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 155, 60, 0.06), transparent 24rem),
    linear-gradient(180deg, #090909, var(--ink));
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(200, 155, 60, 0.2);
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 84px;
}

.brand-lockup {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  min-width: 0;
}

.brand-lockup img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(200, 155, 60, 0.48);
}

.brand-lockup span {
  display: block;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-place {
  margin-top: 0.24rem;
  color: var(--gold-bright);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
}

.site-nav ul {
  display: flex;
  gap: 1.45rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  color: #d9d5cb;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "→";
  font-size: 1rem;
}

.button:hover {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.button--ghost {
  color: var(--ivory);
  background: transparent;
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--ivory);
}

.button--small {
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  font-size: 0.67rem;
}

.eyebrow {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0 0 1.2rem;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.display {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.35rem, 8vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.display em {
  color: var(--gold-bright);
  font-weight: 400;
}

.section-title {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.section-title em {
  color: var(--gold-bright);
  font-weight: 400;
}

.lede {
  max-width: 670px;
  margin: 1.5rem 0 0;
  color: #c4c0b7;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.section-copy {
  color: #bdb8ae;
  font-size: 1.02rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -20rem;
  width: 50rem;
  height: 50rem;
  border: 1px solid rgba(200, 155, 60, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding-block: 5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .lede {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.3rem;
}

.hero-note {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2.6rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note::before {
  width: 52px;
  height: 1px;
  background: var(--line);
  content: "";
}

.crest-stage {
  position: relative;
  display: grid;
  min-height: 630px;
  place-items: center;
}

.crest-stage::before,
.crest-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.crest-stage::before {
  inset: 5% 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(200, 155, 60, 0.1), transparent 34%),
    #0b0b0a;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

.crest-stage::after {
  top: 0;
  right: 11%;
  width: 42%;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 620px 0 var(--gold);
}

.crest-stage img {
  position: relative;
  z-index: 2;
  width: min(95%, 580px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 50px rgba(0, 0, 0, 0.65));
}

.stamp {
  position: absolute;
  right: 2%;
  bottom: 2%;
  z-index: 3;
  display: grid;
  width: 112px;
  height: 112px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(7, 7, 7, 0.92);
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  line-height: 1.3;
  place-items: center;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.rail {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--gold);
  color: var(--ink);
}

.rail-track {
  display: flex;
  width: max-content;
  animation: rail-move 30s linear infinite;
}

.rail span {
  display: inline-flex;
  gap: 1.3rem;
  align-items: center;
  min-height: 48px;
  padding-inline: 1.2rem;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rail span::after {
  content: "◆";
  font-size: 0.48rem;
}

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

.section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section--paper {
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(7, 7, 7, 0.035) 9% 9.1%, transparent 9.1%),
    var(--ivory);
}

.section--paper .eyebrow {
  color: var(--gold-dark);
}

.section--paper .section-copy,
.section--paper .lede {
  color: #4d4a43;
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.number-label {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background 240ms ease, color 240ms ease;
}

.service-card::after {
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 9rem;
  height: 9rem;
  border: 1px solid rgba(200, 155, 60, 0.25);
  border-radius: 50%;
  content: "";
  transition: transform 240ms ease;
}

.service-card:hover {
  background: rgba(200, 155, 60, 0.08);
}

.service-card:hover::after {
  transform: scale(1.35);
}

.service-card h3 {
  margin: 5rem 0 1rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.service-card p {
  margin: 0;
  color: #aaa69d;
  font-size: 0.92rem;
}

.service-card a {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.operator-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.operator-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
}

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

.operator-mark::before {
  inset: 0;
  border: 1px solid var(--line);
}

.operator-mark::after {
  inset: 12%;
  border: 1px dashed rgba(200, 155, 60, 0.42);
}

.operator-mark img {
  width: 76%;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
}

.quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 5vw, 5rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.quote strong {
  color: var(--gold-dark);
  font-weight: 400;
}

.signature {
  margin-top: 2rem;
  color: #5d584f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.proof-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
  filter: saturate(0.78) contrast(1.05);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.proof-card:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.025);
}

.proof-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 5rem 2rem 2rem;
  background: linear-gradient(transparent, rgba(7, 7, 7, 0.96) 70%);
}

.proof-overlay p {
  margin: 0 0 0.65rem;
  color: var(--gold-bright);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-overlay h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 400;
}

.proof-placeholder {
  display: grid;
  min-height: 520px;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(200, 155, 60, 0.18), transparent 45%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(200, 155, 60, 0.08) 42px 43px),
    #151511;
  place-items: center;
}

.proof-placeholder span {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 2rem;
  text-align: center;
}

.process-list {
  counter-reset: process;
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.55fr) 1fr;
  gap: 2rem;
  align-items: start;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
  counter-increment: process;
}

.process-item::before {
  color: var(--gold);
  content: "0" counter(process);
  font-family: var(--display);
  font-size: 1rem;
}

.process-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
}

.process-item p {
  max-width: 620px;
  margin: 0;
  color: #a9a59b;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.cta-band::after {
  position: absolute;
  top: -10rem;
  right: -5rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(7, 7, 7, 0.18);
  border-radius: 50%;
  content: "";
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.cta-band h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.cta-band .button {
  border-color: var(--ink);
  color: var(--ivory);
  background: var(--ink);
}

.page-hero {
  position: relative;
  padding-block: clamp(6rem, 12vw, 10rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  top: 3rem;
  right: -8rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(200, 155, 60, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(200, 155, 60, 0.025), 0 0 0 12rem rgba(200, 155, 60, 0.018);
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 5rem;
  align-items: end;
}

.page-kicker {
  margin: 0;
  color: #aaa59b;
}

.page-index {
  display: none;
  justify-self: end;
  color: var(--gold);
  font-family: var(--display);
  font-size: 9rem;
  font-style: italic;
  line-height: 0.7;
  opacity: 0.28;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1.3rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.feature-row span {
  color: var(--gold);
  font-family: var(--display);
  font-style: italic;
}

.feature-row h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}

.feature-row p {
  margin: 0;
  color: #a9a59b;
}

.paper-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.paper-card {
  min-height: 330px;
  padding: 2rem;
  border: 1px solid rgba(7, 7, 7, 0.16);
  background: rgba(255, 255, 255, 0.3);
}

.service-card {
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--gold);
  background: rgba(211, 164, 57, .08);
  transform: translateY(-3px);
}

.service-card .text-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.paper-card .number-label {
  color: var(--gold-dark);
}

.paper-card h3 {
  margin: 5rem 0 1rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.paper-card p {
  color: #58544c;
}

.signal-board {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--line);
  background: #0d0d0c;
  box-shadow: var(--shadow);
}

.signal-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.signal-chart {
  display: flex;
  height: 260px;
  gap: 0.6rem;
  align-items: end;
  padding-top: 2rem;
}

.signal-chart i {
  flex: 1;
  min-height: 8%;
  background: linear-gradient(var(--gold-bright), var(--gold-dark));
  transform-origin: bottom;
  animation: rise 900ms both cubic-bezier(.2,.7,.2,1);
}

.signal-chart i:nth-child(1) { height: 18%; }
.signal-chart i:nth-child(2) { height: 31%; animation-delay: 70ms; }
.signal-chart i:nth-child(3) { height: 27%; animation-delay: 140ms; }
.signal-chart i:nth-child(4) { height: 49%; animation-delay: 210ms; }
.signal-chart i:nth-child(5) { height: 58%; animation-delay: 280ms; }
.signal-chart i:nth-child(6) { height: 72%; animation-delay: 350ms; }
.signal-chart i:nth-child(7) { height: 68%; animation-delay: 420ms; }
.signal-chart i:nth-child(8) { height: 88%; animation-delay: 490ms; }

@keyframes rise {
  from { transform: scaleY(0); }
}

.signal-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #10100f;
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  height: 44px;
  padding-inline: 1rem;
  border-bottom: 1px solid var(--line);
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-dark);
}

.browser-screen {
  display: grid;
  min-height: 390px;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(200, 155, 60, 0.16), transparent 38%),
    #0a0a09;
  place-items: center;
}

.browser-layout {
  display: grid;
  width: 100%;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.browser-copy {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.browser-copy i,
.browser-art i {
  display: block;
  background: rgba(243, 240, 232, 0.16);
}

.browser-copy i:nth-child(1) { width: 38%; height: 8px; background: var(--gold); }
.browser-copy i:nth-child(2) { width: 92%; height: 52px; }
.browser-copy i:nth-child(3) { width: 80%; height: 8px; }
.browser-copy i:nth-child(4) { width: 65%; height: 8px; }
.browser-copy i:nth-child(5) { width: 35%; height: 36px; margin-top: 1rem; background: var(--gold); }
.browser-art { display: grid; place-items: center; border: 1px solid var(--line); }
.browser-art i { width: 62%; aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--gold); background: transparent; }

.calendar-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: #0e0e0d;
  box-shadow: var(--shadow);
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.calendar-post {
  min-height: 130px;
  padding: 0.8rem;
  border: 1px solid rgba(200, 155, 60, 0.2);
  background:
    linear-gradient(145deg, rgba(200, 155, 60, 0.22), transparent 48%),
    #181815;
}

.calendar-post:nth-child(2),
.calendar-post:nth-child(5) {
  background:
    linear-gradient(145deg, rgba(184, 189, 196, 0.2), transparent 48%),
    #181815;
}

.calendar-post span {
  display: block;
  margin-top: 5rem;
  color: var(--silver);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.campaign-map {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
}

.campaign-node {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: #10100f;
  text-align: center;
}

.campaign-node strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
}

.campaign-node span {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campaign-map::before {
  position: absolute;
  right: 12%;
  left: 12%;
  height: 1px;
  background: var(--gold-dark);
  content: "";
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.principle {
  min-height: 300px;
  padding: 2rem;
  border: 1px solid rgba(7, 7, 7, 0.14);
}

.principle h3 {
  margin: 5rem 0 1rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.principle p {
  color: #5f5a52;
}

.founder-plaque {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid var(--line);
}

.founder-seal {
  display: grid;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  place-items: center;
}

.founder-seal img {
  width: 82%;
  border-radius: 50%;
}

.founder-plaque h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
}

.founder-plaque p {
  margin: 0.5rem 0 0;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 3rem;
  align-items: center;
  padding-block: 3rem;
  border-top: 1px solid var(--line);
}

.project-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.project-detail:nth-child(even) .project-image {
  order: 2;
}

.project-image {
  min-height: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #151511;
}

.project-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: top;
}

.project-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.project-copy p {
  color: #aaa59b;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.contact-card {
  padding: 2rem;
  border: 1px solid var(--line);
  background: #10100f;
}

.contact-card dl {
  margin: 0;
}

.contact-card div {
  padding-block: 1rem;
  border-bottom: 1px solid rgba(200, 155, 60, 0.18);
}

.contact-card div:last-child {
  border-bottom: 0;
}

.contact-card dt {
  color: var(--gold-bright);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0.3rem 0 0;
  color: #d7d2c8;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--silver);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(200, 155, 60, 0.34);
  border-radius: 0;
  color: var(--ivory);
  background: #10100f;
}

.field input,
.field select {
  height: 54px;
  padding-inline: 1rem;
}

.field textarea {
  min-height: 180px;
  padding: 1rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6f6b63;
}

.form-note,
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status {
  min-height: 1.5rem;
  color: var(--gold-bright);
}

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

.inquiry-form button[disabled] {
  cursor: wait;
  opacity: .7;
}

.legal-copy h2 {
  margin: 3.5rem 0 1rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.legal-copy p,
.legal-copy li {
  color: #b4afa5;
}

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

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.55fr;
  gap: 4rem;
  padding-block: 5rem 4rem;
}

.footer-brand img {
  width: 110px;
  border-radius: 50%;
}

.footer-brand h2 {
  max-width: 600px;
  margin: 1.5rem 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.footer-col h3 {
  margin: 0 0 1.2rem;
  color: var(--gold-bright);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a,
.footer-col p {
  margin: 0;
  color: #aaa59b;
  font-size: 0.9rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 1.2rem;
  border-top: 1px solid rgba(200, 155, 60, 0.14);
  color: #77736b;
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

body.is-js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

body.is-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    padding: 1.5rem 1rem 2rem;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 7, 7, 0.98);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: grid;
    width: min(100%, var(--max));
    margin-inline: auto;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid rgba(200, 155, 60, 0.14);
  }

  .site-nav a {
    display: block;
    padding-block: 0.95rem;
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 2rem;
  }

  .crest-stage {
    min-height: 520px;
  }

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

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

  .section-head,
  .feature-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(calc(100% - 1.3rem), var(--max));
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-place {
    font-size: 0.55rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 4.5rem 2rem;
  }

  .display {
    font-size: clamp(3.3rem, 17vw, 5.4rem);
  }

  .crest-stage {
    min-height: 420px;
  }

  .crest-stage img {
    width: min(90%, 420px);
  }

  .stamp {
    right: 0;
    width: 92px;
    height: 92px;
    font-size: 0.59rem;
  }

  .section {
    padding-block: 5rem;
  }

  .section-head {
    margin-bottom: 2.5rem;
  }

  .service-grid,
  .proof-grid,
  .paper-card-grid,
  .principle-grid,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

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

  .operator-mark {
    width: min(72vw, 360px);
    margin-inline: auto;
  }

  .proof-card,
  .proof-placeholder {
    min-height: 0;
  }

  .process-item {
    grid-template-columns: 44px 1fr;
    gap: 1rem;
  }

  .process-item p {
    grid-column: 2;
  }

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

  .cta-grid .button {
    justify-self: start;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-index {
    display: none;
  }

  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campaign-map {
    grid-template-columns: 1fr;
  }

  .campaign-map::before {
    top: 12%;
    bottom: 12%;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .founder-plaque,
  .project-detail {
    grid-template-columns: 1fr;
  }

  .founder-seal {
    width: 160px;
  }

  .project-detail:nth-child(even) .project-image {
    order: 0;
  }

  .project-image,
  .project-image img {
    min-height: 0;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .footer-main {
    gap: 2.5rem;
  }

  .footer-bottom {
    display: grid;
    gap: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.is-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
