/* IsleMessage — Disciplined Editorial
   One grid. One section header. One row pattern.
   Paper + ink + terracotta. Serif display + sans body.
*/

:root {
  --paper: #f2ede2;
  --paper-2: #ebe4d3;
  --paper-3: #e4dcc8;
  --ink: #0e0e0c;
  --ink-2: #2a2925;
  --muted: #75706a;
  --line: #d6cfbf;
  --line-ink: #0e0e0c;
  --accent: #c8553d;
  --accent-2: #a64330;

  --max: 1280px;
  --gutter: 40px;
  --section-y: 140px;
  --head-gap: 80px;

  --display: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: var(--paper); }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--paper); padding: 12px 20px; z-index: 999; }
.skip-link:focus { left: 10px; top: 10px; }

/* ========== TYPE ========== */

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 0.98;
}
.display em { font-style: italic; color: var(--accent); }

.label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* ========== TOP BAR ========== */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(242, 237, 226, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid var(--ink);
}
.topbar-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}
.topbar-banner .label { color: var(--accent); font-weight: 500; }
.topbar-banner .sep { color: var(--paper); opacity: 0.35; }
.topbar-banner a {
  color: var(--paper);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.topbar-banner a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
@media (max-width: 560px) {
  .topbar-banner-inner { font-size: 9.5px; gap: 10px; }
  .topbar-banner .sep { display: none; }
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.mark {
  font-family: var(--display);
  font-size: 26px;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.mark em { font-style: italic; color: var(--accent); }
.mark sup {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-left: 10px;
  text-transform: uppercase;
  position: relative;
  top: -10px;
}
.nav {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.nav a {
  font-size: 13.5px;
  color: var(--ink-2);
  padding: 4px 0;
  position: relative;
  transition: color .2s;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.top-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  transition: background .2s, color .2s;
}
.top-cta:hover { background: var(--ink); color: var(--paper); }
.top-cta .arr { font-family: var(--display); font-size: 16px; line-height: 1; }
.nav-toggle { display: none; font-size: 22px; justify-self: end; }

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 20px 32px;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 0;
  transition: background .25s, color .25s, border-color .25s;
}
.btn .arr {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent);
  transition: transform .3s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.btn:hover .arr { color: var(--paper); transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost:hover .arr { color: var(--accent); }

/* ========== SECTION BASE ========== */

section { padding: var(--section-y) 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 960px;
  margin-bottom: var(--head-gap);
}
.section-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  width: fit-content;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.section-head .lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
  margin-top: 8px;
}

/* ========== HERO ========== */

.hero { padding: 170px 0 120px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hero-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.hero-meta .label { white-space: nowrap; }
.hero-meta .dash { flex: 1; height: 1px; background: var(--line); }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(54px, 7.5vw, 114px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}
.hero h1 em { color: var(--accent); }
.hero .lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* ========== INBOX MOCKUP ========== */

.inbox {
  background: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--sans);
  position: relative;
  box-shadow: 12px 12px 0 0 var(--paper-3);
}
.inbox-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--paper-2);
}
.inbox-head .title {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.inbox-head .title em { font-style: italic; color: var(--accent); }
.inbox-head .count {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.inbox-head .count b { color: var(--accent); font-weight: 500; }
.vm {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 16px;
  align-items: start;
  transition: background .2s;
}
.vm:last-of-type { border-bottom: 1px solid var(--ink); }
.vm:hover { background: var(--paper-2); }
.vm.active {
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  padding-left: 19px;
}
.vm-time {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
  line-height: 1.3;
}
.vm-time b { display: block; color: var(--ink); font-weight: 500; font-size: 11px; }
.vm-body .name {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 6px;
}
.vm-body .snippet {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 320px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vm.active .vm-body .snippet {
  color: var(--ink);
  display: block;
  overflow: visible;
}
.vm-play {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--ink);
  transition: background .2s, color .2s;
  flex-shrink: 0;
  margin-top: 2px;
}
.vm:hover .vm-play { background: var(--ink); color: var(--paper); }
.vm.active .vm-play {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}
.vm.active .vm-play::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--paper);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.vm.active .vm-play span { display: none; }
.vm .wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 16px;
  margin-top: 6px;
  margin-bottom: 8px;
}
.vm .wave span {
  flex: 1;
  background: var(--ink);
  animation: bar 1.2s ease-in-out infinite;
}
.vm .wave span:nth-child(3n) { background: var(--accent); }
.vm .wave span:nth-child(1)  { height: 35%; animation-delay: 0s; }
.vm .wave span:nth-child(2)  { height: 60%; animation-delay: .08s; }
.vm .wave span:nth-child(3)  { height: 90%; animation-delay: .16s; }
.vm .wave span:nth-child(4)  { height: 45%; animation-delay: .24s; }
.vm .wave span:nth-child(5)  { height: 75%; animation-delay: .32s; }
.vm .wave span:nth-child(6)  { height: 95%; animation-delay: .40s; }
.vm .wave span:nth-child(7)  { height: 55%; animation-delay: .48s; }
.vm .wave span:nth-child(8)  { height: 80%; animation-delay: .56s; }
.vm .wave span:nth-child(9)  { height: 40%; animation-delay: .64s; }
.vm .wave span:nth-child(10) { height: 70%; animation-delay: .72s; }
.vm .wave span:nth-child(11) { height: 90%; animation-delay: .80s; }
.vm .wave span:nth-child(12) { height: 50%; animation-delay: .88s; }
.vm .wave span:nth-child(13) { height: 78%; animation-delay: .96s; }
.vm .wave span:nth-child(14) { height: 42%; animation-delay: 1.04s; }
.vm .wave span:nth-child(15) { height: 65%; animation-delay: 1.12s; }
.vm .wave span:nth-child(16) { height: 85%; animation-delay: 1.20s; }
.vm .wave span:nth-child(17) { height: 55%; animation-delay: 1.28s; }
.vm .wave span:nth-child(18) { height: 72%; animation-delay: 1.36s; }
@keyframes bar { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }
.vm .typed {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
}
.vm .cursor {
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--accent);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.inbox-foot {
  padding: 16px 22px;
  border-top: 1px solid var(--ink);
  background: var(--paper-2);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.inbox-foot b { color: var(--ink); font-weight: 500; }

/* ========== ROW PATTERN (used for capabilities, workflow, industries) ========== */

.row-list {
  border-top: 1px solid var(--ink);
}
.row {
  display: grid;
  grid-template-columns: 90px 1.4fr 2fr;
  gap: 60px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding-left .4s ease;
  color: var(--ink);
}
.row:last-child { border-bottom: 1px solid var(--ink); }
.row:hover { padding-left: 20px; }
.row:hover .row-title { color: var(--accent); }
.row-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 12px;
}
.row-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  transition: color .3s;
}
.row-title em { color: var(--accent); font-style: italic; }
.row-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 520px;
  padding-top: 10px;
}
.row-body .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  list-style: none;
}
.row-body .tags li {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.row-body .tags li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
/* link variant (for industries) */
a.row { cursor: pointer; }
a.row .row-body::after {
  content: "→";
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  display: inline-block;
  margin-left: 8px;
  transition: transform .3s;
}
a.row:hover .row-body::after { transform: translateX(6px); }

/* ========== QUOTE ========== */

.quote {
  padding: 160px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.quote blockquote {
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 50px;
}
.quote blockquote em { color: var(--accent); }
.quote cite {
  font-style: normal;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.quote cite span { color: var(--muted); }

/* ========== FAQ ========== */

.faq-list {
  max-width: 960px;
  border-top: 1px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--ink); }
.faq-item[open] { background: var(--paper-2); }
.faq-item summary {
  padding: 30px 0;
  list-style: none;
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  transition: padding-left .3s;
}
.faq-item summary:hover { padding-left: 20px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.faq-item .q {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.15;
}
.faq-item .t {
  font-family: var(--display);
  font-size: 30px;
  color: var(--accent);
  text-align: center;
  transition: transform .3s;
  line-height: 1;
}
.faq-item[open] .t { transform: rotate(45deg); }
.faq-item .a {
  padding: 0 30px 32px 80px;
  max-width: 720px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
}

/* ========== CTA ========== */

.cta {
  padding: 180px 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.cta .kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--paper);
  margin-bottom: 40px;
}
.cta .kicker .label { color: rgba(242, 237, 226, 0.7); }
.cta h2 {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.cta h2 em { color: var(--accent); }
.cta p {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(242, 237, 226, 0.7);
  max-width: 560px;
  margin: 0 auto 50px;
}
.cta .btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}
.cta .btn .arr { color: var(--paper); }
.cta .btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta .btn:hover .arr { color: var(--accent); }
.cta .btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.cta .btn-ghost .arr { color: var(--accent); }
.cta .btn-ghost:hover { background: var(--paper); color: var(--ink); }
.cta-actions { display: inline-flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

/* ========== FOOTER ========== */

.footer {
  background: var(--paper);
  border-top: 1px solid var(--ink);
  padding: 80px 0 36px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.foot-brand .mark { font-size: 38px; }
.foot-brand p {
  max-width: 360px;
  margin-top: 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer li a {
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
  transition: color .2s;
}
.footer li a:hover { color: var(--accent); font-style: italic; }
.foot-bot {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bot .col { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.foot-bot span, .foot-bot a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot-bot .badge {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--accent);
}

/* ========== INTERIOR PAGE HERO ========== */

.page-hero { padding: 170px 0 90px; }
.page-hero .crumb {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.page-hero .crumb a, .page-hero .crumb span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-hero .crumb a:hover { color: var(--ink); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(54px, 7.5vw, 114px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
  max-width: 1100px;
}
.page-hero h1 em { color: var(--accent); }
.page-hero .lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 620px;
}

/* ========== CONTACT FORM ========== */

.contact-section { padding: 60px 0 160px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 {
  font-family: var(--display);
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 0.98;
  margin: 24px 0 32px;
}
.contact-left h2 em { color: var(--accent); }
.contact-left p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 420px;
  margin-bottom: 44px;
}
.contact-info-list { list-style: none; }
.contact-info-list li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-info-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-info-list .label { display: block; margin-bottom: 6px; }
.contact-info-list strong {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--ink);
}
.form-editorial { padding-top: 0; }
.form-editorial .field-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.form-editorial .field-row:first-child { border-top: 1px solid var(--ink); }
.form-editorial .field-row > label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-editorial input,
.form-editorial select,
.form-editorial textarea {
  width: 100%;
  font-family: var(--display);
  font-size: 22px;
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 0;
  outline: none;
}
.form-editorial input::placeholder,
.form-editorial textarea::placeholder {
  color: var(--muted);
  font-style: italic;
  opacity: 0.55;
}
.form-editorial textarea { resize: none; min-height: 80px; line-height: 1.3; font-size: 20px; }
.form-editorial select { appearance: none; -webkit-appearance: none; padding-right: 30px; cursor: pointer; }
.form-editorial .submit-row {
  padding-top: 36px;
  margin-top: 20px;
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.form-editorial .fine {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.55;
}
.form-success {
  padding: 80px 40px;
  text-align: center;
  border: 1px solid var(--ink);
}
.form-success h3 { font-family: var(--display); font-size: 48px; line-height: 1; margin-bottom: 20px; }
.form-success p { color: var(--muted); font-size: 16px; }

/* ========== REVEAL ========== */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1080px) {
  :root { --section-y: 110px; --head-gap: 60px; --gutter: 28px; }
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .inbox { max-width: 520px; }
  .row { grid-template-columns: 70px 1fr; }
  .row-body { grid-column: 1 / -1; padding-left: 86px; padding-top: 20px; max-width: none; }
}

@media (max-width: 820px) {
  .topbar-inner { grid-template-columns: 1fr auto; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--ink); flex-direction: column; gap: 0; padding: 20px 28px; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .top-cta { display: none; }
  .nav-toggle { display: block; justify-self: end; }

  .hero { padding: 140px 0 90px; }
  .hero-meta { flex-wrap: wrap; }

  .row { padding: 40px 0; gap: 24px; grid-template-columns: 1fr; }
  .row:hover { padding-left: 0; }
  .row-num { padding-top: 0; }
  .row-body { padding-left: 0; padding-top: 8px; }

  .section-head h2 { font-size: 46px; }
  .cta h2 { font-size: 54px; }
  .faq-item summary { grid-template-columns: 40px 1fr 24px; gap: 14px; }
  .faq-item .q { font-size: 21px; }
  .faq-item .a { padding-left: 54px; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-bot { flex-direction: column; align-items: flex-start; }

  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-editorial .field-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
}

@media (max-width: 520px) {
  body { font-size: 15.5px; }
  section { padding: 80px 0; }
  .hero h1 { font-size: 48px; }
  .section-head h2 { font-size: 38px; }
  .row-title { font-size: 30px !important; }
  .quote blockquote { font-size: 28px; }
  .faq-item .q { font-size: 18px; }
  .cta h2 { font-size: 42px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .foot-grid { grid-template-columns: 1fr; }
  .inbox { box-shadow: 8px 8px 0 0 var(--paper-3); }
}

/* ========== ARTICLE (blog post) ========== */

.article-header { padding: 170px 0 60px; }
.article-header .container { max-width: 900px; }
.article-header .crumb {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}
.article-header .crumb a,
.article-header .crumb span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-header .crumb a:hover { color: var(--ink); }
.article-header .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.article-header .meta .cat { color: var(--accent); }
.article-header h1 {
  font-family: var(--display);
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.article-header h1 em { color: var(--accent); font-style: italic; }
.article-header .lede {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-2);
  padding-top: 28px;
  border-top: 1px solid var(--ink);
  max-width: 760px;
}

.article-body { padding: 20px 0 60px; }
.article-body .container { max-width: 760px; }
.article-body h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 70px 0 26px;
  color: var(--ink);
}
.article-body h2 em { color: var(--accent); font-style: italic; }
.article-body h3 {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.1;
  margin: 44px 0 18px;
}
.article-body p {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.article-body > p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 3.4em;
  font-style: italic;
  float: left;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--accent);
}
.article-body a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding: 0 1px;
  transition: background .2s, color .2s;
}
.article-body a:hover { background: var(--accent); color: var(--paper); }
.article-body ul, .article-body ol {
  margin: 0 0 28px 24px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
}
.article-body li { margin-bottom: 10px; }
.article-body blockquote {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.25;
  margin: 44px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  background: var(--paper-2);
  font-style: italic;
}
.article-body strong { color: var(--ink); font-weight: 600; }

.article-cta {
  background: var(--paper-2);
  border: 1px solid var(--ink);
  padding: 48px 44px;
  margin: 60px 0 40px;
  text-align: center;
}
.article-cta h3 {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 18px;
}
.article-cta h3 em { color: var(--accent); font-style: italic; }
.article-cta p {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 26px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.article-related {
  padding: 80px 0 140px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.article-related .container { max-width: 1080px; }
.article-related h2 {
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}
.article-related h2 em { color: var(--accent); font-style: italic; }

@media (max-width: 820px) {
  .article-header h1 { font-size: 40px; }
  .article-body h2 { font-size: 30px; margin-top: 50px; }
  .article-body h3 { font-size: 24px; }
  .article-body p { font-size: 16.5px; }
  .article-cta { padding: 36px 24px; }
}
