/* Kaye-Smith Enterprises — white enterprise system
   Paper ground, charcoal type, one olive mark from the wordmark. */

:root {
  --paper: #f7f6f2;
  --white: #ffffff;
  --ink: #2a2e33;
  --ink-2: #5a6068;
  --ink-3: #8a9098;
  --rule: #ddd9cf;
  --rule-strong: #c8c3b6;
  --moss: #8ba63a;
  --moss-ink: #5f7324;
  --moss-soft: #eef3dc;
  --shadow: 0 1px 0 rgba(42, 46, 51, 0.04);
  --max: 1240px;
  --read: 68ch;
  --header-h: 108px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.wrap-wide {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Utility bar ---------- */
.util {
  background: var(--ink);
  color: #e8e6df;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.util .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  gap: 16px;
}
.util a { color: #e8e6df; text-decoration: none; }
.util a:hover { color: #fff; }
.util-mark {
  color: var(--moss);
  font-weight: 600;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 32px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img,
.brand-ks {
  height: 56px;
  width: auto;
  max-width: min(440px, 42vw);
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 16px;
  color: var(--ink-2);
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"] {
  box-shadow: inset 0 -3px 0 var(--moss);
}
.nav-cta {
  margin-left: 10px;
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 12px 22px !important;
  font-size: 17px;
}
.nav-cta:hover { background: #1a1d21 !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--ink);
  margin: 4px auto;
}

/* ---------- Enterprise banner hero ---------- */
.hero-banner {
  background: #fff;
  border-bottom: 1px solid var(--rule);
}
.hero-banner img {
  width: 100%;
  height: auto;
  max-height: min(720px, 72vh);
  object-fit: contain;
  object-position: center top;
  display: block;
  margin-inline: auto;
}
.stat-strip {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-row div {
  padding: 22px 20px 22px 0;
  border-right: 1px solid var(--rule);
}
.stat-row div:last-child { border-right: 0; }
.stat-row b {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.stat-row span {
  display: block;
  margin-top: 4px;
  color: var(--ink-2);
  font-size: 14px;
}

/* ---------- Client brand marquee ---------- */
.brands {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
  overflow: hidden;
}
.brands-fade {
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brands-track {
  display: flex;
  width: max-content;
  animation: brand-scroll 42s linear infinite;
}
.brands-fade:hover .brands-track { animation-play-state: paused; }
.brands-set {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
}
.brands-set img {
  height: 26px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.42;
  filter: grayscale(1);
}
.brands-set img:hover {
  opacity: 0.9;
  filter: none;
}
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Family announcement (replaces pin strip) ---------- */
.family {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.family-grid {
  display: grid;
  grid-template-columns: 504px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 48px 0 56px;
}
.family-embed {
  width: 100%;
  max-width: 504px;
  background: var(--white);
  border: 1px solid var(--rule);
}
.family-embed iframe {
  display: block;
  width: 100%;
  max-width: 504px;
  height: 1088px;
  border: 0;
  background: var(--white);
}
.family-photo img {
  width: 100%;
  height: auto;
  display: block;
  background: #d7e6f0;
}
.family-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--moss-ink);
  background: var(--moss-soft);
  padding: 6px 10px;
  display: inline-block;
  margin: 0 0 16px;
}
.family h2 {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 16px;
  text-wrap: balance;
}
.family p {
  margin: 0 0 14px;
  color: var(--ink-2);
  font-size: 16px;
}
.family-list {
  margin: 0 0 18px;
  padding-left: 1.15em;
  color: var(--ink-2);
}
.family-list li { margin: 0 0 8px; }

.pin-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--moss-ink);
  background: var(--moss-soft);
  padding: 6px 10px;
  align-self: start;
  white-space: nowrap;
}
.pin-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.pin-links a {
  color: var(--moss-ink);
  font-weight: 600;
  font-size: 14px;
  text-underline-offset: 3px;
}
.pin-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 240px;
}
.pin-form label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
}
.pin-row { display: flex; gap: 0; }
.pin-row input {
  flex: 1;
  border: 1px solid var(--rule-strong);
  border-right: 0;
  background: var(--paper);
  padding: 10px 12px;
  outline: none;
}
.pin-row input:focus { border-color: var(--ink); background: var(--white); }
.pin-row button {
  background: var(--ink);
  color: var(--white);
  border: 0;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pin-row button:hover { background: #1a1d21; }
.pin-note, .form-note {
  font-size: 12px;
  color: var(--ink-3);
  margin: 0;
}
.form-ok { color: var(--moss-ink); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
  background: var(--white);
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--rule);
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3);
  margin: 0 0 20px;
}
.hero h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-lead {
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 46ch;
  margin: 0 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: #1a1d21; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-moss { background: var(--moss); color: #1c220c; }
.btn-moss:hover { background: #7b9430; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-plain { background: var(--paper); }
.section-white { background: var(--white); border-block: 1px solid var(--rule); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--moss-ink);
  margin: 0 0 10px;
}
.section h2,
.page-title h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.lede {
  margin: 0;
  color: var(--ink-2);
  max-width: var(--read);
  font-size: 18px;
}

/* ---------- Service grid (not nested cards) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.svc {
  padding: 28px 24px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  text-decoration: none;
  display: block;
}
.svc:hover { background: #fcfcfa; }
.svc-num {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 600;
}
.svc h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin: 10px 0 10px;
}
.svc p { margin: 0; color: var(--ink-2); font-size: 15.5px; }
.svc-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--moss-ink);
}

/* ---------- Steps / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.steps { list-style: none; margin: 0; padding: 0; }
.steps li {
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.steps li:last-child { border-bottom: 1px solid var(--rule); }
.steps strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}
.steps p { margin: 0; color: var(--ink-2); font-size: 15.5px; }

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.tl {
  padding: 28px 24px 8px 0;
  border-right: 0;
}
.tl-year {
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--moss-ink);
  margin-bottom: 10px;
}
.tl h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}
.tl p { margin: 0; color: var(--ink-2); font-size: 15px; padding-right: 20px; }

/* ---------- Industries ---------- */
.ind-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.ind {
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  font-size: 18px;
  font-weight: 500;
}
.ind span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-2);
  margin-top: 4px;
}

/* ---------- Trust strip ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item h3 {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.trust-item p { margin: 0; color: var(--ink-2); font-size: 14.5px; }

/* ---------- Page chrome ---------- */
.page-mast {
  height: 260px;
  overflow: hidden;
  background: #e8eae8;
  border-bottom: 0;
}
.page-mast img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.page-title {
  position: relative;
  z-index: 1;
  margin-top: 0;
  background: var(--white);
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--rule);
}
.fig {
  margin: 28px 0 8px;
}
.fig img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 340px;
  object-fit: cover;
}
.fig-cap {
  font-size: 13px;
  color: var(--ink-3);
  margin: 8px 0 0;
}
.split-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.loop-card {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: 0 72px;
  align-items: center;
  margin: 0 0 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.loop-card-media {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  background: #eceae4;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.loop-card-media video,
.loop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.loop-card-media img { display: none; }
.loop-card-copy .eyebrow { margin-bottom: 10px; }
.loop-card-copy h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(40px, 4.8vw, 56px);
  font-weight: 500;
  margin: 0 0 20px;
  text-wrap: balance;
  color: var(--ink);
}
.loop-card-copy p {
  margin: 0 0 18px;
  color: var(--ink);
  max-width: none;
  font-size: 21px;
  line-height: 1.5;
}
.loop-card-copy p:last-of-type { margin-bottom: 18px; }
.loop-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.fig-wide {
  margin: 8px 0 40px;
}
.fig-wide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.page-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
}
.page-jump a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--moss-ink);
}
.page-jump a:hover { color: var(--ink); }
.map-frame {
  width: 100%;
  height: 280px;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.page-title p {
  margin: 16px 0 0;
  color: var(--ink);
  max-width: 68ch;
  font-size: 21px;
  line-height: 1.45;
}
.prose {
  max-width: none;
}
.about-grid,
.fill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}
.about-grid h2,
.fill-grid h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px;
}
.about-grid p,
.fill-grid p {
  margin: 0 0 12px;
  color: var(--ink-2);
}
.about-grid p:last-child,
.fill-grid p:last-child { margin-bottom: 0; }
.fill-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-2);
}
.fill-grid li { margin: 4px 0; }
.svc-block {
  padding: 8px 0 28px;
  border-top: 1px solid var(--rule);
}
.svc-block:nth-child(-n+2) { border-top: 0; padding-top: 0; }
.ind-card {
  padding: 8px 0 24px;
  border-top: 1px solid var(--rule);
}
.ind-card:nth-child(-n+2) { border-top: 0; padding-top: 0; }
.shop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 36px;
}
.shop-item { display: flex; flex-direction: column; }
.shop-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #eceae4;
}
.shop-item .label {
  margin: 16px 0 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--moss-ink);
}
.shop-item h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  margin: 6px 0 8px;
}
.shop-item p {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.45;
}
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 8px;
}
.pair img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #eceae4;
  display: block;
}
.digital-band {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.tech-grid div {
  padding: 22px 24px 22px 0;
  border-right: 0;
}
.tech-grid b { display: block; margin-bottom: 6px; }
.tech-grid p { margin: 0; color: var(--ink-2); font-size: 14.5px; }
.ind-hit {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.ind-hit .ico {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: var(--ink);
}
.ind-hit .ico svg { width: 36px; height: 36px; display: block; }
.ind-more {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.ind-card.is-open .ind-more { display: block; }
.ind-more blockquote {
  margin: 0 0 10px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 17px;
  color: var(--ink);
}
.ind-more cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.ind-hit .open-hint {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--moss-ink);
}
.prose h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  margin: 48px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose > p:first-of-type {
  font-size: 19px;
  color: var(--ink);
  line-height: 1.5;
}
.prose h3 {
  font-size: 18px;
  margin: 28px 0 8px;
}
.prose p, .prose li { color: var(--ink-2); }
.prose p { margin: 0 0 16px; }
.prose a { color: var(--moss-ink); font-weight: 600; }
.prose ul { padding-left: 1.15em; }
.prose li { margin: 0 0 8px; }

.article {
  background: var(--white);
  padding: 56px 0 88px;
}
.article-meta {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 16px;
}

/* ---------- News list ---------- */
.news-list { display: grid; gap: 0; }
.news-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  align-items: start;
}
.news-item:hover h3 { color: var(--moss-ink); }
.news-date {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.news-item h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
}
.news-item p { margin: 0; color: var(--ink-2); }
.news-item.is-pinned { background: var(--white); margin: 0 -24px; padding: 28px 24px; border: 1px solid var(--rule); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--rule-strong);
  background: var(--white);
  padding: 12px 12px;
  outline: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.addr {
  font-style: normal;
  color: var(--ink-2);
}
.addr strong { display: block; color: var(--ink); margin-bottom: 6px; }

/* ---------- Locations ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.loc {
  padding: 28px 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}
.loc h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px;
}
.loc p { margin: 0; color: var(--ink-2); }

/* ---------- CTA band ---------- */
.cta {
  background: var(--ink);
  color: #f3f1ea;
  padding: 72px 0;
}
.cta h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 0 0 16px;
  max-width: 18ch;
  color: #fff;
}
.cta p { color: #c8c4ba; max-width: 46ch; margin: 0 0 28px; }
.cta .btn-ink { background: var(--white); color: var(--ink); }
.cta .btn-ghost { color: #fff; border-color: #5a5e64; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--rule);
  padding: 48px 0 28px;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.site-footer h2 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--ink-3);
  font-weight: 600;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 8px; }
.site-footer a { text-decoration: none; color: var(--ink-2); }
.site-footer a:hover { color: var(--ink); }
.site-footer .brand img { height: 32px; max-width: 220px; }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  color: var(--ink-3);
  font-size: 12px;
}

/* ---------- Quote ---------- */
.pull {
  border-left: 2px solid var(--moss);
  padding: 4px 0 4px 20px;
  margin: 28px 0;
}
.pull p {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 10px;
}
.pull cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}

/* ---------- Table ---------- */
.spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.spec th, .spec td {
  text-align: left;
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.spec th { font-weight: 600; width: 34%; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pin-inner,
  .family-grid,
  .section-head,
  .split,
  .contact-grid,
  .foot-grid,
  .timeline,
  .ind-list,
  .trust,
  .news-item,
  .loop-card,
  .about-grid,
  .fill-grid,
  .stat-row,
  .loc-grid,
  .pair,
  .tech-grid,
  .shop {
    grid-template-columns: 1fr;
  }
  .loop-card { gap: 24px; }
  .loop-card-media { max-width: 360px; }
  .brands { padding: 14px 0; }
  .brands-set { gap: 32px; padding-right: 32px; }
  .brands-set img { height: 22px; }
  .family-embed, .family-embed iframe { max-width: 100%; }
  .brand img { height: 40px; max-width: min(280px, 70vw); }
  .nav a { font-size: 16px; padding: 12px 8px; }
  .nav-toggle { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 20px;
  }
  .site-header.is-open .nav { display: flex; }
  .nav-cta { margin: 8px 0 0; width: fit-content; }
  .hero { padding: 48px 0 56px; }
  .section { padding: 56px 0; }
  .wrap, .wrap-wide { width: min(var(--max), calc(100% - 32px)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .loop-card-media video { display: none; }
  .loop-card-media img { display: block; }
}
