:root {
  --onyx: #0b0b0c;
  --charcoal: #1f2124;
  --ink: #17181a;
  --stone: #d6d2c7;
  --brass: #c9a15a;
  --brass-dark: #78571f;
  --parchment: #f6f4ef;
  --paper: #fbfaf7;
  --muted: #6d6b66;
  --line: rgba(11, 11, 12, .14);
  --radius: 3px;
  --shadow: 0 28px 70px rgba(11, 11, 12, .15);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  padding: 11px 15px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--brass);
  transform: translateY(-180%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.eyebrow {
  margin: 0 0 18px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, .92);
  border-bottom: 1px solid rgba(11,11,12,.06);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.brand-mark {
  width: 30px;
  color: var(--brass-dark);
  display: grid;
  place-items: center;
  line-height: .72;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}
.brand-mark i {
  width: 20px;
  height: 1px;
  background: currentColor;
  display: block;
  margin: 5px 0 6px;
}
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name strong {
  font-family: "Inter Tight", sans-serif;
  letter-spacing: .22em;
  font-size: 1.08rem;
  font-weight: 700;
}
.brand-name small {
  color: var(--brass-dark);
  margin-top: 7px;
  font-size: .62rem;
  letter-spacing: .28em;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.primary-nav > a:not(.nav-cta) { position: relative; }
.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 1px;
  background: var(--brass);
  transition: right .2s ease;
}
.primary-nav > a:not(.nav-cta):hover::after { right: 0; }
.primary-nav > a[aria-current="page"]::after { right: 0; }
.nav-cta {
  padding: 13px 18px;
  border: 1px solid var(--brass);
  color: var(--brass-dark);
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 52px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  margin: 0;
  max-width: 700px;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(4rem, 7vw, 7.1rem);
  line-height: .82;
  letter-spacing: -.055em;
  font-weight: 650;
}
.hero h1 span { color: var(--brass-dark); }
.hero-lede {
  margin: 34px 0 0;
  max-width: 580px;
  font-size: 1.07rem;
  line-height: 1.72;
  color: #4f4d48;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: .66; transform: none; }
.button-gold { background: var(--brass); color: var(--onyx); }
.button-gold:hover { background: var(--brass-dark); color: white; }
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.text-link span { color: var(--brass-dark); font-size: 1.15rem; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.hero-proof {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
  color: #6f6c65;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-proof span + span::before {
  content: "•";
  margin-right: 24px;
  color: var(--brass);
}

/* CSS product composition */
.hero-art {
  min-height: 500px;
  position: relative;
  transform: translateX(18px);
}
.art-glow {
  position: absolute;
  inset: 15% 0 0 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,90,.14), rgba(201,161,90,0) 65%);
}
.art-card, .art-tag, .art-box {
  position: absolute;
  box-shadow: var(--shadow);
}
.art-card {
  width: 310px;
  height: 360px;
  left: 4%;
  top: 9%;
  z-index: 2;
  transform: rotate(-7deg);
  background:
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,0)),
    var(--charcoal);
  border: 1px solid rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  align-content: center;
  color: white;
}
.art-card p {
  margin: 24px 0 0;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.35rem;
  letter-spacing: .22em;
  font-weight: 700;
}
.art-card small {
  color: var(--brass);
  margin-top: 10px;
  letter-spacing: .28em;
  font-weight: 700;
}
.mini-mark {
  color: var(--brass);
  display: grid;
  place-items: center;
  font: 1.35rem/.7 Georgia, serif;
}
.mini-mark i { width: 24px; height: 1px; display: block; background: currentColor; margin: 7px 0; }

.art-tag {
  z-index: 4;
  top: 22%;
  left: 38%;
  width: 148px;
  height: 330px;
  background: var(--parchment);
  transform: rotate(7deg);
  padding: 34px 18px 0;
  clip-path: polygon(15% 0, 85% 0, 100% 7%, 100% 100%, 0 100%, 0 7%);
}
.tag-hole {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 13px;
  height: 13px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--onyx);
  box-shadow: inset 0 0 0 2px #8b877d;
}
.art-tag .mini-mark { margin-top: 13px; font-size: 1rem; }
.art-tag ul {
  list-style: none;
  margin: 35px 0 0;
  padding: 0;
  text-align: center;
  font-size: .6rem;
  line-height: 2.5;
  font-weight: 700;
  letter-spacing: .17em;
}
.art-tag footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--charcoal);
  color: var(--brass);
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.art-box {
  z-index: 1;
  width: 330px;
  height: 325px;
  right: 0;
  top: 24%;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(74,49,25,.14) 50%, transparent 50.5%),
    repeating-linear-gradient(0deg, rgba(70,47,24,.035) 0 1px, transparent 1px 4px),
    #b88958;
  border: 1px solid rgba(83,51,24,.22);
  transform: rotate(2deg);
}
.box-tape {
  position: absolute;
  width: 70px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(207,171,119,.52);
}
.box-label {
  position: absolute;
  right: 17px;
  top: 62px;
  width: 220px;
  min-height: 185px;
  background: rgba(250,248,241,.94);
  padding: 15px;
  border: 1px solid rgba(20,20,20,.08);
}
.label-top { display: flex; align-items: center; gap: 10px; }
.label-top .mini-mark { font-size: .64rem; }
.label-top strong { font-size: .66rem; letter-spacing: .18em; display: block; }
.label-top small { color: var(--brass-dark); font-size: .46rem; letter-spacing: .18em; font-weight: 700; }
.box-label > p {
  font-size: .5rem;
  line-height: 1.45;
  letter-spacing: .08em;
  margin: 14px 0 10px;
  border-top: 1px solid #cfc8ba;
  padding-top: 8px;
}
.label-grid {
  display: grid;
  grid-template-columns: 1fr 58px;
  border-top: 1px solid #cfc8ba;
  padding-top: 7px;
  gap: 4px 8px;
  font-size: .42rem;
  letter-spacing: .07em;
}
.barcode {
  height: 4px;
  background: repeating-linear-gradient(90deg, #222 0 1px, transparent 1px 3px);
}
.label-note {
  display: block;
  margin-top: 11px;
  color: var(--brass-dark);
  font-size: .42rem;
  letter-spacing: .07em;
  font-weight: 700;
}

/* sections */
.capabilities { padding: 110px 0; }
.section-head { max-width: 720px; }
.section-head h2, .products-copy h2, .enterprise-card h2, .enterprise-copy h2, .quote-copy h2,
.page-hero h1, .feature-copy h2, .cta-band h2 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.section-head > p:last-child {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.service-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card {
  position: relative;
  min-height: 305px;
  padding: 36px 28px 34px;
  border-right: 1px solid var(--line);
}
.service-card:first-child { border-left: 1px solid var(--line); }
.service-number {
  position: absolute;
  right: 24px;
  top: 22px;
  color: #aaa69b;
  font-size: .65rem;
  letter-spacing: .12em;
}
.service-icon { color: var(--brass-dark); font-size: 2rem; }
.service-card h3 { font-size: 1.15rem; margin: 48px 0 14px; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .9rem; }

.products-section {
  padding: 105px 0;
  background: #ece8df;
}
.products-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
  align-items: start;
}
.products-copy p:not(.eyebrow) {
  max-width: 500px;
  color: #66635d;
  line-height: 1.7;
  margin: 27px 0 32px;
}
.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(11,11,12,.18);
}
.product-list > div {
  padding: 25px 22px 25px 0;
  border-bottom: 1px solid rgba(11,11,12,.18);
}
.product-list > div:nth-child(even) { padding-left: 28px; border-left: 1px solid rgba(11,11,12,.18); }
.product-list span { display: block; font-weight: 700; margin-bottom: 7px; }
.product-list small { color: #6e6b64; line-height: 1.45; }

.process-section {
  padding: 110px 0 120px;
  background: var(--onyx);
  color: white;
}
.section-head.inverse .eyebrow { color: var(--brass); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.process-step { padding: 34px 28px 0 0; min-height: 210px; position: relative; }
.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: 28px;
  top: 36px;
  color: var(--brass);
}
.process-step > span { color: var(--brass); font-size: .68rem; letter-spacing: .12em; }
.process-step h3 { margin: 45px 0 12px; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; }
.process-step p { max-width: 220px; margin: 0; color: #aaa9a5; font-size: .87rem; line-height: 1.55; }

.enterprise-section { padding: 115px 0; }
.enterprise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.enterprise-card {
  padding: 55px;
  background: var(--charcoal);
  color: white;
  min-height: 520px;
}
.enterprise-card h2 { max-width: 520px; }
.enterprise-card ul {
  list-style: none;
  padding: 0;
  margin: 52px 0 0;
  columns: 2;
  column-gap: 28px;
}
.enterprise-card li {
  position: relative;
  padding: 0 0 17px 22px;
  color: #d6d4ce;
  break-inside: avoid;
  font-size: .88rem;
}
.enterprise-card li::before {
  content: "✓";
  color: var(--brass);
  position: absolute;
  left: 0;
}
.enterprise-copy { align-self: center; }
.enterprise-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
  font-size: 1rem;
}
.enterprise-copy h2 + p { margin-top: 32px; }

.quote-section {
  padding: 110px 0;
  background: #171819;
  color: white;
}
.quote-section .eyebrow, .enterprise-card .eyebrow, .content-section.dark .eyebrow { color: var(--brass); }
.quote-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.quote-copy p:not(.eyebrow) { color: #aaa9a5; line-height: 1.65; max-width: 480px; }
.contact-meta { display: flex; flex-direction: column; gap: 8px; margin-top: 44px; color: var(--brass); }
.contact-meta a { font-weight: 700; }
.quote-form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote-form label { display: grid; gap: 9px; }
.quote-form label > span {
  font-size: .65rem;
  letter-spacing: .12em;
  font-weight: 700;
  text-transform: uppercase;
  color: #bcbab5;
}
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  background: rgba(255,255,255,.035);
  color: white;
  padding: 14px 15px;
  outline: none;
  transition: border .2s, background .2s;
}
.quote-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #bcbab5 50%),
    linear-gradient(135deg, #bcbab5 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.quote-form select option { color: var(--ink); background: var(--paper); }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  border-color: var(--brass);
  background: rgba(255,255,255,.06);
}
.quote-form textarea { resize: vertical; }
.quote-form .button { justify-self: start; }
.form-note { margin: 0; max-width: 610px; color: #797875; font-size: .72rem; line-height: 1.5; }
.required-note { margin: 0; color: #aaa9a5; font-size: .72rem; }
.field-error { color: #f0b8ab; font-size: .72rem; line-height: 1.4; }
.quote-form [aria-invalid="true"] { border-color: #df8d7a; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.turnstile-wrap { min-height: 65px; }
.turnstile-note {
  margin: 0;
  padding: 12px 14px;
  border-left: 2px solid var(--brass);
  color: #c9c6bf;
  background: rgba(255,255,255,.045);
  font-size: .76rem;
  line-height: 1.5;
}
.form-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  color: #dedbd4;
  font-size: .86rem;
  line-height: 1.55;
}
.form-status.is-success { color: #e7dfcf; border-color: var(--brass); background: rgba(201,161,90,.1); }
.form-status.is-error { color: #ffd6cc; border-color: #a95b49; background: rgba(169,91,73,.12); }
.form-status.is-pending { color: #d5d2cb; }

.site-footer {
  padding: 52px 0 28px;
  background: var(--onyx);
  color: white;
  border-top: 1px solid rgba(255,255,255,.11);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
}
.footer-main > p {
  color: #8e8c87;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-main > a:last-child { color: var(--brass); font-size: .82rem; }
.footer-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-links a { color: #aaa9a5; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-links a:hover { color: var(--brass); }
.footer-brand .brand-name small { color: var(--brass); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #9e9c96;
  font-size: .68rem;
}

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Interior pages */
.page-hero {
  padding: 112px 0 100px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 90px;
  align-items: end;
}
.page-hero h1 { max-width: 820px; }
.page-hero h1 span { color: var(--brass-dark); }
.page-lede {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.breadcrumb {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--brass-dark); text-decoration: underline; text-underline-offset: 3px; }
.content-section { padding: 105px 0; }
.content-section.tinted { background: #ece8df; }
.content-section.dark { background: var(--onyx); color: white; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 90px;
  align-items: start;
}
.content-intro { position: sticky; top: 130px; }
.content-intro h2, .feature-copy h2 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.content-intro > p:not(.eyebrow), .feature-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}
.dark .content-intro > p:not(.eyebrow), .dark .feature-copy > p:not(.eyebrow) { color: #aaa9a5; }
.detail-list { border-top: 1px solid var(--line); }
.dark .detail-list { border-color: rgba(255,255,255,.16); }
.detail-item {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr);
  gap: 22px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}
.dark .detail-item { border-color: rgba(255,255,255,.16); }
.detail-number { color: var(--brass-dark); font-size: .7rem; letter-spacing: .12em; padding-top: 5px; }
.detail-item h3 { margin: 0 0 11px; font-size: 1.1rem; }
.detail-item p { margin: 0; color: var(--muted); line-height: 1.7; }
.dark .detail-item p { color: #aaa9a5; }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.tag-list span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.dark .tag-list span { border-color: rgba(255,255,255,.16); color: #c7c4bd; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-panel { min-height: 520px; padding: 55px; background: var(--charcoal); color: white; }
.feature-panel .eyebrow { color: var(--brass); }
.feature-panel h2 { margin: 0; font: 600 clamp(2.5rem, 4vw, 4.6rem)/.98 "Inter Tight", sans-serif; letter-spacing: -.045em; }
.feature-panel p { margin: 28px 0 0; color: #aaa9a5; line-height: 1.75; }
.check-list { list-style: none; padding: 0; margin: 34px 0 0; columns: 2; column-gap: 32px; }
.check-list li { position: relative; padding: 0 0 17px 22px; break-inside: avoid; color: #d6d4ce; font-size: .88rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--brass); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.section-offset { margin-top: 60px; }
.info-card { min-height: 280px; padding: 34px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.info-card .eyebrow { margin-bottom: 34px; }
.info-card h2, .info-card h3 { margin: 0 0 14px; font-family: "Inter Tight", sans-serif; font-size: 1.45rem; letter-spacing: -.02em; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.info-card .text-link { margin-top: 25px; }
.product-catalog { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-category { padding: 38px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-category h2 { margin: 0 0 17px; font: 600 1.5rem "Inter Tight", sans-serif; }
.product-category p { margin: 0; color: var(--muted); line-height: 1.7; }
.program-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 55px; border-top: 1px solid rgba(255,255,255,.16); }
.program-flow article { min-height: 205px; padding: 32px 28px 0 0; }
.program-flow span { color: var(--brass); font-size: .68rem; letter-spacing: .12em; }
.program-flow h3 { margin: 38px 0 12px; text-transform: uppercase; letter-spacing: .08em; font-size: 1rem; }
.program-flow p { margin: 0; color: #aaa9a5; line-height: 1.6; font-size: .88rem; }
.cta-band { padding: 86px 0; background: #171819; color: white; }
.cta-band-grid { display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.cta-band h2 { max-width: 780px; }
.cta-band .button { flex-shrink: 0; }
.prose { max-width: 780px; }
.prose h2 { margin: 58px 0 16px; font: 600 1.8rem "Inter Tight", sans-serif; letter-spacing: -.025em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); line-height: 1.75; }
.prose ul { padding-left: 22px; }
.contact-page .quote-section { padding-top: 100px; }
.contact-direct { margin-top: 35px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16); }
.contact-direct strong { display: block; margin-bottom: 8px; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: #aaa9a5; }
.contact-direct a { color: var(--brass); font-weight: 700; }

@media (max-width: 1040px) {
  .primary-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 10px; }
  .hero-art { width: min(720px, 100%); margin: 0 auto; transform: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .service-card:nth-child(4) { border-top: 1px solid var(--line); }
  .products-grid, .enterprise-grid, .quote-grid { grid-template-columns: 1fr; gap: 55px; }
  .page-hero-grid, .content-grid, .feature-grid { grid-template-columns: 1fr; gap: 48px; }
  .content-intro { position: static; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .nav-wrap { min-height: 74px; }
  .nav-toggle {
    width: 42px; height: 42px; display: grid; place-items: center;
    border: 0; background: transparent; cursor: pointer;
  }
  .nav-toggle span { width: 24px; height: 1px; background: var(--ink); display: block; margin: 3px; }
  .primary-nav {
    position: absolute;
    left: 0; right: 0; top: 74px;
    padding: 24px 20px 30px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .primary-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .primary-nav .nav-cta { width: 100%; text-align: center; }
  .hero-grid { min-height: auto; padding: 64px 0; gap: 30px; }
  .hero h1 { font-size: clamp(3.6rem, 17vw, 6rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-proof { gap: 10px 14px; }
  .hero-proof span + span::before { margin-right: 14px; }
  .hero-art { min-height: 420px; width: 100%; transform: scale(.9); transform-origin: top center; margin-bottom: -45px; }
  .art-card { width: 250px; height: 310px; left: -2%; }
  .art-tag { left: 37%; width: 125px; height: 285px; }
  .art-box { width: 260px; height: 280px; right: -3%; }
  .box-label { width: 180px; min-height: 170px; top: 55px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:first-child, .service-card:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .service-card:first-child { border-top: 0; }
  .product-list { grid-template-columns: 1fr; }
  .product-list > div:nth-child(even) { padding-left: 0; border-left: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-bottom: 1px solid rgba(255,255,255,.13); }
  .process-step:not(:last-child)::after { content: "↓"; right: 8px; }
  .enterprise-card { padding: 34px 26px; }
  .enterprise-card ul { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { gap: 15px; flex-direction: column; }
  .page-hero { padding: 82px 0 75px; }
  .content-section { padding: 78px 0; }
  .card-grid, .product-catalog { grid-template-columns: 1fr; }
  .program-flow { grid-template-columns: 1fr; }
  .program-flow article { border-bottom: 1px solid rgba(255,255,255,.13); }
  .cta-band-grid { align-items: flex-start; flex-direction: column; }
  .feature-panel { min-height: auto; padding: 40px 28px; }
}

@media (max-width: 520px) {
  .brand { gap: 11px; }
  .brand-mark { width: 25px; font-size: 1rem; }
  .brand-name strong { font-size: .94rem; letter-spacing: .18em; }
  .brand-name small { font-size: .54rem; }
  .hero-grid { padding-top: 56px; }
  .hero .eyebrow { max-width: 330px; line-height: 1.65; }
  .hero h1 { font-size: clamp(3.4rem, 16.7vw, 4.7rem); line-height: .86; }
  .hero-lede { font-size: 1rem; line-height: 1.65; }
  .hero-proof { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .hero-proof span + span::before { content: none; }
  .hero-art { min-height: 345px; transform: none; margin: 0; }
  .art-card { width: 215px; height: 265px; left: -38px; top: 8%; }
  .art-card p { font-size: 1rem; }
  .art-tag { left: 43%; top: 16%; width: 104px; height: 245px; padding: 31px 12px 0; }
  .art-tag ul { margin-top: 25px; font-size: .5rem; }
  .art-box { width: 220px; height: 235px; right: -82px; top: 24%; }
  .box-label { width: 150px; min-height: 150px; top: 43px; right: 10px; padding: 10px; }
  .label-grid { grid-template-columns: 1fr 38px; }
  .capabilities, .products-section, .process-section, .enterprise-section, .quote-section { padding: 78px 0; }
  .section-head h2, .products-copy h2, .enterprise-card h2, .enterprise-copy h2, .quote-copy h2,
  .page-hero h1, .feature-copy h2, .cta-band h2 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .enterprise-card { min-height: auto; }
  .detail-item { grid-template-columns: 38px minmax(0, 1fr); gap: 14px; }
  .check-list { columns: 1; }
  .quote-form .button { width: 100%; }
  .footer-links { align-items: flex-start; flex-direction: column; gap: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
