:root {
  --onyx: #0b0b0c;
  --charcoal: #1f2124;
  --ink: #17181a;
  --stone: #d6d2c7;
  --brass: #c9a15a;
  --brass-dark: #a67d37;
  --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; }
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;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.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; }
.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-gold { background: var(--brass); color: white; }
.button-gold:hover { background: var(--brass-dark); }
.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 {
  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-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 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 input: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; }

.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-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #6e6d69;
  font-size: .68rem;
}

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

@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; }
}

@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; }
  .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; 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; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
