/* ===========================================================================
   Eden — public site LOOK system  (products.css)
   Loaded AFTER the base eden sheet on all six public pages, so it wins the
   cascade. The design is a materials / office / monograph register: warm rag
   paper, near-black warm ink, one restrained brass rule, real material grain,
   hairline rules, sharp edges, almost no motion.

   Strategy: most of the base sheet re-skins itself from the tokens below.
   Only the components that carried a "cheap SaaS" tell (dark full-bleed hero
   with a gradient scrim, hover-zoom tiles, pill chips, soft card stacks) are
   overridden by hand, plus a few new editorial components (cover, catalog,
   plate, ledger, spec).
   ======================================================================== */

:root {
  /* --- night office (escape cream-brochure cliché) -------------------- */
  --paper: #0c0d0b; /* void / shop floor after hours */
  --paper-2: #141612;
  --linen: #121410;
  --cream: #f2efe6; /* ivory on ink */
  --ink: #f2efe6; /* light type on dark ground */
  --ink-soft: #a7a295;
  --stone: #7d786c;

  --forest: #d8c49a; /* primary action fill: warm ivory metal */
  --forest-deep: #c4ad7e;

  --sage: #c9a962;
  --brass: #c9a962;
  --brass-soft: rgba(201, 169, 98, 0.4);

  --line: rgba(242, 239, 230, 0.12);
  --line-strong: rgba(242, 239, 230, 0.22);

  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --r-xl: 10px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
  --wrap: 1200px;

  --tex-limestone: url("../../media/texture/texture-honed-limestone-960w.webp");
  --tex-concrete: url("../../media/texture/texture-board-marked-concrete-960w.webp");
  --tex-metal: url("../../media/texture/texture-brushed-metal-960w.webp");
  --tex-rag: url("../../media/texture/texture-cotton-rag-paper-960w.webp");
}

body {
  background: var(--paper);
  color: var(--ink);
}

/* --- base type: readable first ----------------------------------------- */

body {
  font-size: 18px;
  line-height: 1.62;
  letter-spacing: -0.002em;
}

.lede {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.25vw, 1.14rem);
  line-height: 1.66;
}

.measure {
  max-width: 64ch;
}

/* loosen the over-tight display tracking the base refinement layer set, and
   let the variable optical size carry the weight instead. */
h1,
.h-display,
.h-section,
h2,
.cover__title,
.hero h1,
.cta h2 {
  font-optical-sizing: auto;
  letter-spacing: -0.008em;
  font-weight: 600;
}

.kicker {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

/* a short brass rule used to open a section, monograph-style */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--brass);
}

::selection {
  background: rgba(201, 169, 98, 0.35);
  color: #14120c;
}

/* --- header: quiet, solid, one company across every page --------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--paper) 82%, transparent);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  padding-block: 15px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: 0.005em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 1px;
  background: transparent;
  border: 1px solid var(--brass-soft);
}
.brand-mark svg {
  fill: var(--brass);
}

.site-nav {
  gap: 30px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  color: var(--ink-soft);
  padding-block: 4px;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--brass);
}

.nav-toggle {
  border-radius: 2px;
  border-color: var(--line-strong);
}

/* --- buttons: sharp, deliberate, no bounce ----------------------------- */

.btn {
  border-radius: 2px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}
.btn:hover {
  transform: none;
}
.btn--forest {
  background: var(--forest);
  color: #14120c;
}
.btn--forest:hover {
  background: var(--forest-deep);
  color: #14120c;
}
.btn--cream {
  background: var(--cream);
  color: #14120c;
}
.btn--cream:hover {
  background: #fff;
  color: #14120c;
}
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  background: rgba(242, 239, 230, 0.06);
  border-color: var(--cream);
}

/* --- the plate: a hairline-framed figure, our one photo treatment ------ */

.plate {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--forest-deep);
}
.plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plate-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: min(84%, 30ch);
  padding: 12px 16px 13px;
  border-top: 1px solid var(--brass);
  background: rgba(20, 22, 18, 0.9);
  backdrop-filter: blur(6px);
  color: var(--cream);
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.plate-caption b {
  display: block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 3px;
}

/* ============================ COVER (home) ============================= */

.cover {
  position: relative;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: #070807;
  min-height: min(92vh, 860px);
  overflow: hidden;
}
.cover__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cover__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.cover__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 70% 40%, rgba(7, 8, 7, 0.15) 0%, rgba(7, 8, 7, 0.72) 55%, rgba(7, 8, 7, 0.94) 100%),
    linear-gradient(180deg, rgba(7, 8, 7, 0.55) 0%, rgba(7, 8, 7, 0.2) 35%, rgba(7, 8, 7, 0.88) 100%);
}
.cover__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  padding-block: 56px 64px;
  min-height: inherit;
  align-content: end;
}
.cover__brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin: 0 0 10px;
}
.cover__text {
  align-self: end;
  max-width: 40rem;
}
.cover__title {
  margin-top: 14px;
  font-size: clamp(2.55rem, 7vw, 4.6rem);
  line-height: 0.98;
  max-width: 14ch;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.cover__lede {
  margin-top: 20px;
  max-width: 48ch;
  color: rgba(242, 239, 230, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.58;
}
.cover .btn-row {
  margin-top: 28px;
  gap: 12px;
}
.cover .btn--ghost {
  border-color: rgba(242, 239, 230, 0.35);
  color: var(--cream);
}
.cover .kicker {
  color: var(--brass);
}
.cover__plate {
  display: none; /* full-bleed media replaces inset plate */
}
.cover__caption {
  margin-top: 22px;
  max-width: 36ch;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(242, 239, 230, 0.62);
}
.cover__caption b {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}

@media (min-width: 900px) {
  .cover__inner {
    grid-template-columns: minmax(0, 1fr);
    padding-block: 72px 80px;
    align-content: center;
  }
}

/* Header CTA: long locked phrase — keep readable */
.header-cta .btn--forest {
  max-width: min(100%, 16rem);
  text-align: center;
  line-height: 1.25;
  white-space: normal;
}
@media (max-width: 719px) {
  .header-cta .btn--forest {
    display: none; /* phone uses menu + page CTAs; avoid crushing the bar */
  }
}

/* ========================= SPEC / COMMAND BAND ======================== */
/* Eden is AI-first: MCP / API / CLI. Stated as an office record, quietly,
   not as a developer-docs section. */

.spec-band {
  border-block: 1px solid var(--line);
  background: var(--paper-2);
}
.spec-band__inner {
  display: grid;
  gap: 22px;
  padding-block: 34px;
}
.spec-band p {
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-family: ui-monospace, "SFMono-Regular", "Menlo", monospace;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.spec-tags span {
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--paper);
}
.spec-tags span::before {
  content: "› ";
  color: var(--brass);
}

@media (min-width: 820px) {
  .spec-band__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
  }
}

/* ============================== CATALOG =============================== */
/* Three product lines as a catalogue of lines — asymmetric, editorial,
   distinct media — never three identical cards. */

.catalog {
  margin-top: 46px;
  border-top: 1px solid var(--line-strong);
}
.catalog__row {
  display: grid;
  gap: 24px;
  padding-block: 40px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.catalog__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.catalog__num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.catalog__row h3 {
  margin-top: 12px;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.02;
}
.catalog__row .lede {
  margin-top: 14px;
  max-width: 46ch;
}
.catalog__spec {
  margin-top: 16px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
}
.catalog__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--brass);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.catalog__link:hover {
  gap: 13px;
}
.catalog__plate {
  margin: 0;
  aspect-ratio: 16 / 11;
}

@media (min-width: 860px) {
  .catalog__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(36px, 5vw, 64px);
    padding-block: 52px;
  }
  .catalog__row:nth-child(even) .catalog__body {
    order: 2;
  }
  .catalog__row:nth-child(even) .catalog__plate {
    order: 1;
  }
  /* vary the plate size so the page is a catalogue, not a grid */
  .catalog__row:nth-child(2) {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  }
  .catalog__row:nth-child(2) .catalog__plate {
    aspect-ratio: 4 / 3;
  }
  .catalog__row:nth-child(3) .catalog__plate {
    aspect-ratio: 3 / 2;
  }
}

/* ============================= PROOF STRIP ============================ */
/* An ink band with brass hairline dividers — restrained, not a card row. */

.proof-strip {
  border-block: 1px solid var(--forest-deep);
  background: var(--forest-deep);
  color: var(--cream);
}
.proof-strip__grid {
  display: grid;
  gap: 0;
  background: transparent;
}
.proof-strip__item {
  padding: 28px 26px 30px;
  background: transparent;
  border-top: 2px solid var(--brass);
}
.proof-strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.proof-strip__item span {
  display: block;
  margin-top: 7px;
  color: rgba(243, 239, 230, 0.68);
  font-size: 13.5px;
  line-height: 1.55;
}

@media (min-width: 720px) {
  .proof-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1px;
  }
  .proof-strip__item + .proof-strip__item {
    box-shadow: -1px 0 0 rgba(243, 239, 230, 0.16);
  }
}

/* ============================ PRODUCT HERO =========================== */
/* Interior pages (office / measure / voice): split editorial, sharp plate,
   H1 never sits under a photo. */

.product-hero {
  padding-block: 44px 60px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.product-hero__grid {
  display: grid;
  gap: 34px;
  align-items: center;
}
.product-hero h1 {
  margin-top: 16px;
  max-width: 15ch;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1;
}
.product-hero .lede {
  margin-top: 22px;
  max-width: 52ch;
}
.product-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--forest-deep);
  box-shadow: none;
}
.product-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.product-hero__media--portrait {
  max-height: 700px;
}
.product-hero__caption {
  position: absolute;
  right: auto;
  left: 0;
  bottom: 0;
  max-width: min(90%, 40ch);
  padding: 13px 18px 14px;
  border: 0;
  border-top: 1px solid var(--brass);
  border-radius: 0;
  background: rgba(20, 22, 18, 0.9);
  color: var(--cream);
  font-size: 12.5px;
  line-height: 1.5;
  backdrop-filter: blur(6px);
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  align-items: baseline;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.price-line strong {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
}
.price-line span {
  color: var(--ink-soft);
  font-size: 14px;
}

@media (min-width: 900px) {
  .product-hero {
    padding-block: 60px 84px;
  }
  .product-hero__grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 60px;
  }
  .product-hero__media,
  .product-hero__media img {
    min-height: 520px;
  }
}

/* ============================ PRODUCT CARDS ========================== */
/* Kept for the office page "share the job" row. Sharp hairline, no shadow,
   no hover zoom. */

.product-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--linen);
  box-shadow: none;
}
.product-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--forest-deep);
  border-bottom: 1px solid var(--line);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}
.product-card:hover .product-card__image img {
  transform: none;
}
.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}
.product-card h3 {
  margin-top: 10px;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.08;
}
.product-card .lede {
  margin-top: 12px;
  font-size: 15px;
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.product-card__link span[aria-hidden] {
  color: var(--brass);
}

@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =============================== LEDGER ============================== */
/* The office index and the step lists — a serious hairline ledger, not a
   grid of soft boxes. Overrides the base .work-list. */

.work-list {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border: 0;
  border-top: 1px solid var(--line-strong);
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.work-list__item {
  display: grid;
  gap: 8px;
  padding: 26px 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
}
.work-list__num {
  color: var(--brass);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.work-list__item h3 {
  font-size: 1.4rem;
  line-height: 1.15;
}
.work-list__item p {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 62ch;
}

@media (min-width: 760px) {
  .work-list {
    grid-template-columns: 1fr;
  }
  .work-list__item {
    grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
    gap: 32px;
    align-items: start;
    padding: 30px 0;
  }
  .work-list__item h3 {
    grid-column: 1;
  }
  .work-list__num {
    grid-row: 1;
    grid-column: 1;
    margin-bottom: 2px;
  }
  /* number + title in the left column, prose in the right */
  .work-list__item {
    grid-template-areas: "head body";
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  }
  .work-list__num {
    grid-area: auto;
  }
}

/* simpler, robust two-column ledger row */
@media (min-width: 760px) {
  .work-list__item {
    display: grid;
    grid-template-columns: minmax(0, 4.2fr) minmax(0, 7.8fr);
    grid-template-rows: auto auto;
    column-gap: 36px;
    row-gap: 6px;
  }
  .work-list__num {
    grid-column: 1;
    grid-row: 1;
  }
  .work-list__item h3 {
    grid-column: 1;
    grid-row: 2;
  }
  .work-list__item p {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
}

/* =============================== STATEMENT ========================== */
/* The manifesto line, set on a cast-concrete wall. Solid ink + material. */

.statement {
  position: relative;
  overflow: hidden;
  padding-block: 88px;
  background: #070807;
  color: var(--cream);
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tex-concrete) center / cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.statement > .wrap {
  position: relative;
}
.statement blockquote {
  max-width: 20ch;
  margin: 0;
  padding-top: 20px;
  border-top: 2px solid var(--brass);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
}
.statement p {
  max-width: 58ch;
  margin-top: 24px;
  color: rgba(243, 239, 230, 0.72);
}
.statement .kicker--cream {
  color: var(--brass);
}

/* ================================ CTA =============================== */
/* Solid ink field with a ghost of brushed metal — never a photo-under-scrim
   contractor brochure. */

.cta {
  position: relative;
  overflow: hidden;
  background: #070807;
  color: var(--cream);
}
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  filter: grayscale(1) contrast(1.05);
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tex-metal) center / cover no-repeat;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}
.cta__scrim {
  position: absolute;
  inset: 0;
  background: rgba(20, 21, 17, 0.72);
}
.cta__body {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-block: 92px;
  text-align: left;
  margin-inline: 0;
}
.cta h2 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  padding-top: 18px;
  border-top: 2px solid var(--brass);
  display: inline-block;
}
.cta p {
  margin-top: 20px;
  color: rgba(243, 239, 230, 0.76);
  font-size: 16px;
  line-height: 1.66;
}
.cta .btn-row {
  margin-top: 30px;
  justify-content: flex-start;
}
.cta .kicker--cream {
  color: var(--brass);
}

/* ============================= ADAM FEATURE ========================= */

.adam-feature {
  display: grid;
  gap: 32px;
  align-items: center;
}
.adam-feature__image {
  overflow: hidden;
  max-height: 660px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--forest-deep);
}
.adam-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.adam-feature__copy .lede {
  margin-top: 18px;
}

@media (min-width: 900px) {
  .adam-feature {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 60px;
  }
  .adam-feature--reverse .adam-feature__image {
    order: 2;
  }
  .adam-feature--reverse .adam-feature__copy {
    order: 1;
  }
}

/* ============================= TRADE GALLERY ======================== */
/* Sharp plates with a small engraved label — no pill captions. */

.trade-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
}
.trade-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--forest-deep);
}
.trade-gallery img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}
.trade-gallery figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 7px 12px;
  border-top: 1px solid var(--brass);
  border-radius: 0;
  background: rgba(20, 22, 18, 0.86);
  color: var(--cream);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .trade-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .trade-gallery figure,
  .trade-gallery img {
    min-height: 260px;
  }
}

/* ============================= CALLOUT CARDS ======================== */

.callout-card {
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--linen);
}
.callout-card--forest {
  border-color: var(--forest-deep);
  background: var(--forest-deep);
  color: var(--cream);
}
.callout-card--forest .lede {
  color: rgba(243, 239, 230, 0.76);
}
.callout-card--forest .kicker--cream {
  color: var(--brass);
}

/* =============================== VOICE PAIR ========================= */

.voice-pair {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.voice-card {
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--linen);
}
.voice-card:first-child {
  border-top: 2px solid var(--brass);
}
.voice-card:last-child {
  background: var(--forest-deep);
  color: var(--cream);
  border-top: 2px solid var(--brass);
  border-color: var(--forest-deep);
}
.voice-card:last-child .kicker {
  color: var(--brass);
}
.voice-card:last-child .lede {
  color: rgba(243, 239, 230, 0.76);
}
.voice-card h3 {
  margin-top: 10px;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
}
.voice-card .lede {
  margin-top: 14px;
  font-size: 15.5px;
}

@media (min-width: 720px) {
  .voice-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================== MICRO NAV =========================== */
/* No pills. Plain engraved links with a brass hover rule. */

.micro-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.micro-nav a {
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}
.micro-nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--brass);
}

.site-nav a {
  white-space: nowrap;
}

/* ======================= MATERIAL / SECTION BANDS =================== */

.section--limestone {
  position: relative;
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}
.section--rag {
  background: var(--linen);
  border-block: 1px solid var(--line);
}

/* the base sheet's .section--linen becomes a clean limestone band */
.section--linen {
  background: var(--paper-2);
}

/* ===================== PRICING JOINS THE LOOK ====================== */
/* The rate-card page uses base components; nudge them into the monograph
   without touching the calculator or checkout markup. */

.page-hero {
  padding-block: 56px 44px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.page-hero .h-display {
  max-width: 20ch;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.02;
}
.page-hero .lede {
  margin-top: 20px;
}

.price-card {
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  border-top: 2px solid var(--brass);
  padding: 34px;
  box-shadow: none;
}
.price-card--forest {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  border-top: 2px solid var(--brass);
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 600;
}
.price-list li::before {
  border-radius: 0;
  width: 6px;
  height: 6px;
  top: 0.66em;
  background: var(--brass);
}

.card {
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: none;
}
.card--paper {
  background: var(--paper);
}

.step__icon {
  border-radius: 2px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--brass);
}

/* software calculator: inherit the sharp tokens; brass accents */
.software-calculator__summary {
  background: var(--forest-deep);
  border-radius: 3px;
  box-shadow: none;
}
.software-calculator__group,
.software-calculator__amount,
.software-calculator__cost {
  border-radius: 2px;
}
.software-calculator__summary .kicker {
  color: var(--brass);
}

/* ======================= FEATURES MONOGRAPH ======================== */
/* A quiet four-chapter walkthrough on the shared system — no dark slide
   deck, no dots. */

.chapter {
  border-bottom: 1px solid var(--line);
  padding-block: 64px;
}
.chapter__index {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.chapter h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.04;
  max-width: 20ch;
}
.chapter__lede {
  margin-top: 20px;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.62;
}
.chapter__grid {
  display: grid;
  gap: 34px;
  margin-top: 34px;
  align-items: center;
}
.figure-pair {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.figure-block {
  padding: 22px 24px;
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--brass);
  border-radius: 2px;
  background: var(--linen);
}
.figure-block--dark {
  background: var(--forest-deep);
  color: var(--cream);
  border-color: var(--forest-deep);
}
.figure-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.figure-block span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.figure-block--dark span {
  color: rgba(243, 239, 230, 0.72);
}
.call-path {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line-strong);
}
.call-path li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.call-path li span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brass);
}
.call-path li strong {
  font-size: 1.05rem;
}
.call-path li small {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 14px;
}
.price-rail {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.price-rail > div {
  padding: 22px 24px;
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--brass);
  border-radius: 2px;
  background: var(--linen);
}
.price-rail span {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}
.price-rail strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.price-rail small {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 13px;
}

@media (min-width: 820px) {
  .chapter__grid--split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
  }
  .figure-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .price-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ============================= RESPONSIVE ========================== */

@media (max-width: 899px) {
  .cover__plate {
    order: -1;
    aspect-ratio: 5 / 4;
    min-height: 0;
  }
}

@media (max-width: 759px) {
  .trade-gallery {
    grid-template-columns: 1fr;
  }
  .cta__body {
    padding-block: 68px;
  }
}

/* ============================ REDUCED MOTION ======================= */

/* ======================== PUBLIC ADAM CHIP ======================== */

.adam-chip {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  max-width: min(92vw, 380px);
  font-family: var(--font-sans);
}
.adam-chip__launch {
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--forest);
  color: #14120c;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  cursor: pointer;
}
.adam-chip__panel {
  display: none;
  width: min(92vw, 380px);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #10120f;
  box-shadow: var(--shadow-soft);
}
.adam-chip.is-open .adam-chip__panel {
  display: flex;
  flex-direction: column;
  max-height: min(70vh, 520px);
}
.adam-chip.is-open .adam-chip__launch {
  display: none;
}
.adam-chip__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.adam-chip__head b {
  font-size: 14px;
  font-weight: 600;
}
.adam-chip__head span {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 400;
}
.adam-chip__close {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
}
.adam-chip__log {
  flex: 1;
  overflow: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.adam-chip__msg {
  max-width: 92%;
  padding: 8px 10px;
  border-radius: 2px;
}
.adam-chip__msg--adam {
  align-self: flex-start;
  background: rgba(242, 239, 230, 0.06);
}
.adam-chip__msg--you {
  align-self: flex-end;
  background: rgba(201, 169, 98, 0.16);
}
.adam-chip__form {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}
.adam-chip__form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #0c0d0b;
  color: var(--cream);
  padding: 10px 12px;
  font: inherit;
}
.adam-chip__form button {
  border: 0;
  border-radius: 2px;
  background: var(--forest);
  color: #14120c;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  cursor: pointer;
}
.adam-chip.is-hidden {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .product-card__image img,
  .catalog__link,
  .btn {
    transition: none;
  }
}
