:root {
  --ink: #070909;
  --panel: #0d1010;
  --panel-soft: #121616;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(184, 111, 57, 0.42);
  --paper: #f2f0e9;
  --muted: #999e9b;
  --gold: #b86f39;
  --gold-light: #d79a70;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--paper);
  color: var(--ink);
}
.skip-link:focus { top: 1rem; }
.shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.site-header.scrolled {
  background: rgba(7, 9, 9, .9);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.nav { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 600;
}
.brand-mark { width: 34px; height: 34px; }
.brand-mark path { stroke: var(--gold); fill: none; stroke-width: 1.4; }
.brand strong { color: var(--gold-light); font-weight: 500; }
.brand-logo {
  display: block;
  width: 200px;
  height: 74px;
  object-fit: contain;
}
.footer-logo-link { margin-bottom: 20px; }
.footer-logo {
  width: 240px;
  height: 120px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: #c5c8c5;
  font-size: .77rem;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--gold-light); }
.nav-cta {
  padding: 10px 17px;
  border: 1px solid var(--line-strong);
}
.menu-button { display: none; background: none; border: 0; color: var(--paper); padding: 8px; }

.hero {
  min-height: 820px;
  height: 100svh;
  max-height: 980px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,9,9,.98) 0%, rgba(7,9,9,.84) 45%, rgba(7,9,9,.24) 100%),
    radial-gradient(circle at 76% 45%, rgba(198,162,96,.13), transparent 34%);
}
.grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent 25%, black);
}
.orbital {
  position: absolute;
  right: max(-120px, calc((100vw - var(--max)) / 2 - 80px));
  top: 50%;
  width: min(52vw, 690px);
  aspect-ratio: 1;
  transform: translateY(-50%);
}
.orbit, .orbit::before, .orbit::after {
  position: absolute;
  inset: 10%;
  content: "";
  border: 1px solid rgba(198,162,96,.31);
  border-radius: 50%;
}
.orbit { animation: rotate 40s linear infinite; }
.orbit::before { inset: 13%; border-color: rgba(255,255,255,.12); }
.orbit::after { inset: 32%; border-color: rgba(198,162,96,.46); }
.axis { position: absolute; inset: 49.9% 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: rotate(-28deg); }
.axis.alt { transform: rotate(62deg); opacity: .45; }
.node { position: absolute; width: 9px; height: 9px; border: 1px solid var(--gold-light); border-radius: 50%; background: var(--ink); box-shadow: 0 0 24px var(--gold); }
.node.one { top: 23%; left: 27%; }
.node.two { right: 13%; top: 48%; }
.node.three { bottom: 14%; left: 42%; }
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-content { position: relative; z-index: 2; padding-top: 72px; max-width: 770px; }
.eyebrow {
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.08; }
h1 { margin-bottom: 26px; font-size: clamp(3.6rem, 7.2vw, 7rem); letter-spacing: -.055em; }
h1 em, h2 em { color: var(--gold-light); font-style: normal; }
.lede { max-width: 635px; margin: 0 0 38px; color: #b9bdb9; font-size: clamp(1rem, 1.5vw, 1.18rem); }
.actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .2s;
}
.button:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.button.ghost { background: transparent; color: var(--paper); border-color: var(--line); }
.button.ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.hero-meta {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 42px;
  text-align: center;
  color: #777d79;
  font-size: .67rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-meta span::before { content: "—"; margin-right: 10px; color: var(--gold); }

.section { padding: 130px 0; border-bottom: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: .7fr 1.4fr; gap: 70px; margin-bottom: 70px; }
.section h2 { margin-bottom: 22px; font-size: clamp(2.6rem, 5vw, 4.7rem); letter-spacing: -.045em; }
.section-copy { color: var(--muted); max-width: 650px; }
.kicker { color: var(--gold); font-size: .7rem; letter-spacing: .19em; text-transform: uppercase; }

.products { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.product { min-height: 540px; padding: 50px; position: relative; overflow: hidden; background: var(--panel); }
.product + .product { border-left: 1px solid var(--line); }
.product-number { color: #686c69; font-size: .69rem; letter-spacing: .16em; }
.product-visual { height: 175px; position: relative; margin: 34px 0 43px; display: grid; place-items: center; }
.product-logo {
  width: 176px;
  height: 176px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, .42);
}
.shield {
  width: 120px;
  height: 140px;
  border: 1px solid var(--gold);
  clip-path: polygon(50% 0, 95% 19%, 86% 73%, 50% 100%, 14% 73%, 5% 19%);
  background: radial-gradient(circle at 50% 42%, rgba(198,162,96,.19), transparent 53%);
}
.shield::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  left: calc(50% - 32px);
  top: 38px;
  border: 1px solid rgba(227,199,134,.45);
  border-radius: 50%;
}
.pulse {
  width: 160px;
  height: 160px;
  border: 1px solid rgba(198,162,96,.5);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(198,162,96,.06), 0 0 0 60px rgba(198,162,96,.025);
}
.pulse::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: calc(50% - 4px);
  top: calc(50% - 4px);
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 28px var(--gold);
}
.product h3 { margin-bottom: 15px; font-size: 2.1rem; }
.product p { color: var(--muted); margin-bottom: 28px; max-width: 470px; }
.text-link { color: var(--gold-light); text-decoration: none; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.text-link::after { content: " ↗"; margin-left: 8px; }

.principles { display: grid; grid-template-columns: repeat(4, 1fr); }
.principle { padding: 32px 28px 0 0; border-top: 1px solid var(--line); }
.principle + .principle { padding-left: 28px; border-left: 1px solid var(--line); }
.principle span { display: block; color: var(--gold); font-size: .68rem; letter-spacing: .12em; margin-bottom: 34px; }
.principle h3 { font-family: inherit; font-weight: 500; font-size: 1rem; letter-spacing: .02em; }
.principle p { color: #7f8581; font-size: .9rem; }

.cta { padding: 100px 0; background: linear-gradient(125deg, #151916, #0a0c0c); }
.cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.cta h2 { max-width: 720px; margin: 0; font-size: clamp(2.6rem, 5vw, 4.8rem); }
.site-footer { padding: 65px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 65px; }
.footer-copy { max-width: 440px; color: #7f8581; font-size: .88rem; }
.footer-column h3 { font-family: inherit; color: #6d726f; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a { display: block; width: fit-content; margin: 10px 0; color: #b6bab6; font-size: .87rem; text-decoration: none; }
.footer-column a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-top: 25px; color: #626763; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }

.page-hero { padding: 190px 0 85px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 15%, rgba(198,162,96,.1), transparent 25%); }
.page-hero h1 { font-size: clamp(3.2rem, 6vw, 5.5rem); }
.page-hero p { max-width: 650px; color: var(--muted); font-size: 1.08rem; }
.prose { max-width: 820px; padding: 85px 0 120px; }
.prose h2 { margin: 55px 0 16px; font-size: 2rem; }
.prose h3 { margin: 35px 0 8px; font-family: inherit; font-size: 1.05rem; }
.prose p, .prose li { color: #a9adaa; }
.prose a { color: var(--gold-light); }
.prose .updated { color: #696e6b; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-card { margin-top: 45px; padding: 35px; border: 1px solid var(--line-strong); background: var(--panel); }
.contact-section { display: grid; grid-template-columns: 1.6fr .75fr; gap: 80px; padding-top: 85px; padding-bottom: 120px; }
.contact-form label { display: block; }
.contact-form label > span { display: block; margin-bottom: 9px; color: #b9bdb9; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 15px;
  background: var(--panel);
  color: var(--paper);
  font: inherit;
  outline: none;
  transition: border-color .2s;
}
.contact-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.contact-form select:hover { border-color: var(--line-strong); }
.contact-form select option {
  background: var(--panel);
  color: var(--paper);
}
.contact-form select option:checked {
  background: var(--gold);
  color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.human-check { display: grid; grid-template-columns: 1fr 150px; gap: 30px; align-items: end; margin: 25px 0; padding: 25px; border: 1px solid var(--line-strong); background: var(--panel-soft); }
.human-check p { margin: 5px 0 0; color: var(--paper); }
.form-submit { display: flex; align-items: center; gap: 24px; }
.form-submit button:disabled { opacity: .55; cursor: wait; }
.form-status { margin: 0; color: var(--muted); font-size: .9rem; }
.form-status.success { color: #9fc79f; }
.form-status.error-text { color: #dc958a; }
.contact-aside { align-self: start; padding: 35px; border-top: 1px solid var(--gold); background: var(--panel); }
.contact-aside h2 { font-size: 2.2rem; }
.contact-aside p { color: var(--muted); }
.contact-aside a { color: var(--gold-light); overflow-wrap: anywhere; }
.contact-aside .small { margin-top: 40px; font-size: .8rem; }
.error { min-height: 100svh; display: grid; place-items: center; text-align: center; }

@media (max-width: 800px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .nav { height: 72px; }
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; left: 0; top: 72px; width: 100%; padding: 25px 16px 32px; background: #090b0b; border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .hero { min-height: 740px; max-height: none; }
  .hero-content { padding-top: 30px; }
  h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  .orbital { width: 85vw; right: -45%; opacity: .7; }
  .hero-meta { gap: 10px; flex-direction: column; bottom: 25px; }
  .section { padding: 85px 0; }
  .section-head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 45px; }
  .products { grid-template-columns: 1fr; }
  .product { min-height: auto; padding: 35px 25px 45px; }
  .product + .product { border-left: 0; border-top: 1px solid var(--line); }
  .principles { grid-template-columns: 1fr 1fr; }
  .principle { padding: 25px 20px 15px 0; }
  .principle + .principle { padding-left: 20px; }
  .principle:nth-child(3) { border-left: 0; padding-left: 0; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .brand-word { display: none; }
  .principles { grid-template-columns: 1fr; }
  .principle + .principle { border-left: 0; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .contact-section, .form-grid { grid-template-columns: 1fr; }
  .contact-section { gap: 50px; }
  .human-check { grid-template-columns: 1fr; }
  .form-submit { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
