:root {
  --paper: #f5f5f5;
  --paper-2: #efefed;
  --ink: #252527;
  --muted: #646469;
  --line: #d9d9d5;
  --cyan: #2aaac8;
  --magenta: #ba4f7f;
  --yellow: #c7a233;
  --black: #36363a;
  --max: 1440px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 999; background: var(--ink); color: white; padding: 10px 14px; text-decoration: none; }
.skip-link:focus { top: 12px; }
.site-header { border-bottom: 1px solid var(--line); background: rgba(245,245,245,.94); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand span,
h1,
h2,
.footer-name {
  font-family: "Perpetua Titling MT", Perpetua, Georgia, "Times New Roman", serif;
}
.brand span { text-transform: uppercase; letter-spacing: .11em; font-size: .92rem; white-space: nowrap; }
nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: flex-end; }
nav a, .footer-links a { text-decoration: none; color: var(--muted); font-size: .9rem; }
nav a:hover, .footer-links a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
a:focus-visible { outline: 3px solid var(--ink); outline-offset: 4px; border-radius: 2px; }
.hero { min-height: 560px; display: grid; place-items: center; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-inner { text-align: center; padding: 72px 0 78px; }
.mark-wrap { position: relative; width: min(520px, 86vw); height: 190px; margin: 0 auto 18px; display: grid; place-items: center; }
.hero-mark { position: relative; z-index: 2; width: 154px; height: 154px; object-fit: contain; }
.accent { position: absolute; top: 50%; height: 2px; width: 43%; opacity: .78; }
.accent-c { left: 0; background: linear-gradient(90deg, transparent, var(--cyan)); transform: translateY(-14px) rotate(3deg); transform-origin: right center; }
.accent-m { left: 0; background: linear-gradient(90deg, transparent, var(--magenta)); transform: translateY(14px) rotate(-3deg); transform-origin: right center; }
.accent-y { right: 0; background: linear-gradient(90deg, var(--yellow), transparent); transform: translateY(-14px) rotate(-3deg); transform-origin: left center; }
.accent-k { right: 0; background: linear-gradient(90deg, var(--black), transparent); transform: translateY(14px) rotate(3deg); transform-origin: left center; }
.eyebrow, .section-kicker { margin: 0 0 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; }
h1 { margin: 0; text-transform: uppercase; font-weight: 500; letter-spacing: clamp(.08em, .9vw, .18em); font-size: clamp(2.15rem, 5vw, 4.75rem); line-height: 1.08; overflow-wrap: anywhere; }
.hero-copy { max-width: 780px; margin: 22px auto 0; color: #4f4f54; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.cmyk-rule { width: 116px; margin: 30px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); height: 3px; }
.cmyk-rule span:nth-child(1){ background: var(--cyan); }
.cmyk-rule span:nth-child(2){ background: var(--magenta); }
.cmyk-rule span:nth-child(3){ background: var(--yellow); }
.cmyk-rule span:nth-child(4){ background: var(--black); }
.section { padding: 96px 0; border-bottom: 1px solid var(--line); }
.section-soft { background: var(--paper-2); }
.split { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(44px, 8vw, 120px); align-items: start; }
h2 { margin: 0; max-width: 13ch; text-transform: uppercase; letter-spacing: .05em; font-weight: 500; font-size: clamp(1.8rem, 3.1vw, 3rem); line-height: 1.2; }
.prose { max-width: 760px; color: #4f4f54; font-size: 1.05rem; }
.prose p:first-child { margin-top: 0; }
.prose p:last-child { margin-bottom: 0; }
.theme-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.theme-row span { border: 1px solid #cfcfca; background: rgba(255,255,255,.28); padding: 8px 12px; border-radius: 999px; font-size: .9rem; color: #55555a; }
.company-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.company-grid div { background: var(--paper); padding: 22px; min-width: 0; }
.company-grid span { display: block; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.company-grid strong { font-size: 1rem; overflow-wrap: anywhere; }
.site-footer { padding: 46px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
.footer-name { text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }
.site-footer p { margin: 5px 0 0; color: var(--muted); font-size: .88rem; }
.legal-placeholder { color: #7a3232 !important; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
.copyright { border-top: 1px solid var(--line); margin-top: 34px; padding-top: 18px; color: var(--muted); font-size: .82rem; }
@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: auto; padding: 14px 0; align-items: flex-start; }
  .brand span { white-space: normal; line-height: 1.35; font-size: .8rem; }
  nav { gap: 14px; font-size: .85rem; }
  .hero { min-height: 500px; }
  .hero-inner { padding: 50px 0 58px; }
  .mark-wrap { width: 92vw; max-width: 420px; height: 155px; }
  .hero-mark { width: 128px; height: 128px; }
  .accent { width: 39%; }
  h1 { font-size: clamp(1.85rem, 10vw, 3.1rem); }
  .section { padding: 68px 0; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  h2 { max-width: 18ch; }
  .company-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 460px) {
  .header-inner { display: block; }
  nav { margin-top: 12px; justify-content: flex-start; }
  .brand img { width: 36px; height: 36px; }
  .hero-copy { font-size: 1rem; }
  .accent { width: 35%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
