/* ============================================================
   RESPONDEX — Editorial/narrative design system
   Paper ivory, burgundy (flagged/expiring), bronze-gold (approved/winning)
   Instrument Sans (chrome/headlines) + Lora (body/long-form)
   ============================================================ */

:root {
  --paper: #F7F1E6;
  --paper-dim: #F1E9D9;
  --ink: #2A241C;
  --ink-soft: #55503f;
  --ink-faint: #8a8370;
  --rule: #ddd2b8;
  --burgundy: #6B1F2E;
  --burgundy-dim: #f0e0e0;
  --bronze: #A9812F;
  --bronze-dim: #f2e9d3;
  --white: #FFFDF8;

  --grotesk: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Lora', Georgia, 'Times New Roman', serif;

  --maxw: 1120px;
  --maxw-text: 720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(42, 36, 28, 0.05) 1px, transparent 0);
  background-size: 20px 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .grotesk {
  font-family: var(--grotesk);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: inherit; }
img { max-width: 100%; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.text-col {
  max-width: var(--maxw-text);
  margin: 0 auto;
}

/* ---------- Nav ---------- */
.site-nav {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--grotesk);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}
.brand em {
  font-style: normal;
  color: var(--burgundy);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: var(--grotesk);
  font-size: 15px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--ink);
  padding: 8px 18px;
  border-radius: 2px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--grotesk);
  font-weight: 500;
  font-size: 16px;
  padding: 13px 28px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all .15s ease;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--burgundy); border-color: var(--burgundy); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-bronze { background: var(--bronze); color: var(--white); border-color: var(--bronze); }
.btn-bronze:hover { background: #8f6a24; border-color: #8f6a24; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ---------- Masthead (newspaper-style dateline above the hero) ---------- */
.masthead {
  border-bottom: 1px solid var(--rule);
}
.masthead-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.masthead-row span:first-child { color: var(--ink); }

/* ---------- Hero (editorial, centered, no split) ---------- */
.hero {
  padding: 96px 0 64px;
  text-align: center;
}
.hero .kicker {
  font-family: var(--grotesk);
  font-size: 14px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  max-width: 900px;
  margin: 0 auto 24px;
}
.hero .sub {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 38px;
  line-height: 1.6;
}
.hero .cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero .fineprint {
  font-family: var(--grotesk);
  font-size: 13px;
  color: var(--ink-faint);
}

.page-hero {
  padding: 72px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.page-hero .kicker {
  font-family: var(--grotesk);
  font-size: 14px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 48px); max-width: 780px; margin: 0 auto 18px; }
.page-hero .sub { font-size: 19px; color: var(--ink-soft); max-width: 640px; margin: 0 auto; }

/* ---------- Logo strip ---------- */
.logo-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
}
.logo-strip .label {
  text-align: center;
  font-family: var(--grotesk);
  font-size: 13px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.logo-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 3px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

/* ---------- Editorial section ---------- */
.section {
  padding: 88px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.section:last-of-type { border-bottom: none; }
.section:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--paper);
  border: 1px solid var(--rule);
  transform: translateX(-50%) rotate(45deg);
}
.section-head {
  max-width: var(--maxw-text);
  margin: 0 auto 48px;
}
.section-head.center { text-align: center; }
.section-head .kicker {
  font-family: var(--grotesk);
  font-size: 13px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-head.center .kicker { justify-content: center; }
.kicker-num {
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 700;
  color: var(--paper);
  background: var(--burgundy);
  padding: 2px 7px;
  border-radius: 2px;
  letter-spacing: 0;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 19px;
  color: var(--ink-soft);
}

/* ---------- Pull quote ---------- */
.pullquote {
  max-width: 820px;
  margin: 56px auto;
  text-align: center;
  padding: 0 20px;
}
.pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.4;
  color: var(--ink);
}
.pullquote cite {
  display: block;
  font-family: var(--grotesk);
  font-style: normal;
  font-size: 14px;
  color: var(--ink-faint);
  margin-top: 20px;
}
.pullquote .accent { color: var(--burgundy); }

/* ---------- Numbered narrative list (feature list, not cards) ---------- */
.narrative-list {
  max-width: 780px;
  margin: 0 auto;
}
.narrative-item {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
}
.narrative-item:last-child { padding-bottom: 0; }
.narrative-num {
  font-family: var(--grotesk);
  font-size: 15px;
  font-weight: 600;
  color: var(--bronze);
  flex-shrink: 0;
  width: 44px;
  padding-top: 4px;
}
.narrative-body h3 {
  font-size: 22px;
  margin: 0 0 10px;
}
.narrative-body p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
}
.narrative-body .tag {
  display: inline-block;
  font-family: var(--grotesk);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 2px;
  margin-top: 12px;
}
.tag-flag { background: var(--burgundy-dim); color: var(--burgundy); }
.tag-win { background: var(--bronze-dim); color: var(--bronze); }

/* ---------- How it works ---------- */
.steps {
  max-width: 780px;
  margin: 0 auto;
  counter-reset: step;
}
.step-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid var(--rule);
}
.step-row:first-child { border-top: none; }
.step-mark {
  font-family: var(--grotesk);
  font-weight: 700;
  font-size: 26px;
  color: var(--rule);
}
.step-row h4 { font-size: 19px; margin: 0 0 8px; }
.step-row p { margin: 0; color: var(--ink-soft); font-size: 16px; }

/* ---------- Stats ---------- */
.stat-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  text-align: center;
  margin: 8px 0;
}
.stat-num {
  font-family: var(--grotesk);
  font-weight: 700;
  font-size: 44px;
  color: var(--burgundy);
  display: block;
}
.stat-num.bronze { color: var(--bronze); }
.stat-label {
  font-family: var(--grotesk);
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ---------- Time bar (bold editorial visualization) ---------- */
.time-bar-block {
  max-width: 780px;
  margin: 0 auto;
}
.time-bar {
  display: flex;
  width: 100%;
  height: 60px;
  border: 1px solid var(--rule);
}
.time-bar-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  line-height: 1.25;
}
.time-bar-seg.search { background: var(--burgundy); }
.time-bar-seg.draft { background: var(--bronze); }
.time-bar-caption {
  text-align: center;
  font-family: var(--grotesk);
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 14px;
}

/* ---------- Integrations strip ---------- */
.integration-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.integration-pill {
  font-family: var(--grotesk);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 10px 20px;
  border-radius: 2px;
}

/* ---------- Testimonial editorial ---------- */
.testimonial {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 36px 0;
  border-top: 1px solid var(--rule);
}
.testimonial:first-child { border-top: none; padding-top: 0; }
.testimonial p.quote {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  margin: 0 0 16px;
}
.testimonial .attrib {
  font-family: var(--grotesk);
  font-size: 14px;
  color: var(--ink-faint);
}
.testimonial .attrib strong { color: var(--ink-soft); font-weight: 600; }
.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bronze-dim);
  color: #7a5c22;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--grotesk);
  font-weight: 700;
  font-size: 14px;
}

/* ---------- Testimonial grid (two-column rhythm break) ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  max-width: 920px;
  margin: 0 auto;
}
.testimonial-grid .testimonial {
  border-top: none;
  padding: 0;
  margin: 0;
}
.testimonial-grid .testimonial:nth-child(odd) {
  border-right: 1px solid var(--rule);
  padding-right: 56px;
}
.testimonial-grid .testimonial:last-child {
  grid-column: 1 / -1;
  border-top: 1px solid var(--rule);
  border-right: none;
  padding: 32px 0 0;
  margin-top: 8px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.testimonial-grid .testimonial:last-child .testimonial-head { justify-content: center; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--rule);
}
.price-col {
  padding: 40px 32px;
  border-left: 1px solid var(--rule);
  background: var(--white);
}
.price-col:first-child { border-left: none; }
.price-col.featured { background: var(--paper-dim); position: relative; }
.price-col .badge {
  font-family: var(--grotesk);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--burgundy);
  margin-bottom: 12px;
  display: block;
}
.price-col h3 { font-size: 20px; margin: 0 0 6px; }
.price-col .price {
  font-family: var(--grotesk);
  font-size: 38px;
  font-weight: 700;
  margin: 14px 0 4px;
}
.price-col .price span { font-size: 15px; font-weight: 400; color: var(--ink-faint); }
.price-col .desc { font-size: 15px; color: var(--ink-soft); margin-bottom: 24px; }
.price-col ul { list-style: none; padding: 0; margin: 0 0 28px; }
.price-col li {
  font-size: 15px;
  padding: 9px 0;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
}
.price-col li:first-child { border-top: none; }
.price-col li::before { content: "— "; color: var(--bronze); }
.price-col .btn { width: 100%; text-align: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--grotesk);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q .plus { font-size: 20px; color: var(--bronze); transition: transform .2s; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-a p { padding-bottom: 22px; margin: 0; color: var(--ink-soft); font-size: 16px; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  padding: 88px 0;
}
.final-cta h2 { font-size: clamp(28px, 4.5vw, 44px); max-width: 700px; margin: 0 auto 18px; }
.final-cta p { font-size: 18px; color: var(--ink-soft); max-width: 560px; margin: 0 auto 34px; }

/* ---------- Widget (redline demo) ---------- */
.widget {
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--rule);
  background: var(--white);
}
.widget-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--grotesk);
  font-size: 13px;
  color: var(--ink-faint);
}
.widget-body { padding: 28px 32px; font-size: 16px; }
.widget-body p { margin: 0 0 14px; }
.flagged {
  background: var(--burgundy-dim);
  color: var(--burgundy);
  padding: 1px 4px;
  border-radius: 2px;
  cursor: help;
  position: relative;
  border-bottom: 1px dashed var(--burgundy);
}
.approved {
  background: var(--bronze-dim);
  color: #7a5c22;
  padding: 1px 4px;
  border-radius: 2px;
}
.widget-note {
  font-family: var(--grotesk);
  font-size: 13px;
  padding: 14px 32px;
  border-top: 1px solid var(--rule);
  color: var(--ink-faint);
  background: var(--paper-dim);
}
.widget-note .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.dot-burgundy { background: var(--burgundy); }
.dot-bronze { background: var(--bronze); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 56px 0 32px;
  font-family: var(--grotesk);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid .brand { display: block; margin-bottom: 12px; }
.footer-grid .tagline { font-family: var(--serif); font-size: 15px; color: var(--ink-soft); max-width: 260px; }
.footer-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 11px;
}
.footer-col a:hover { color: var(--burgundy); }
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Forms ---------- */
.form-card {
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 44px 40px;
}
.form-card h1 { font-size: 26px; text-align: center; margin-bottom: 8px; }
.form-card .sub { text-align: center; color: var(--ink-soft); font-size: 15px; margin-bottom: 32px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--grotesk);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-family: var(--grotesk);
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--burgundy);
}
.form-card .btn { width: 100%; text-align: center; margin-top: 6px; }
.form-alt { text-align: center; font-size: 14px; color: var(--ink-soft); margin-top: 24px; }
.form-alt a { color: var(--burgundy); text-decoration: none; font-weight: 600; }
.divider-or {
  text-align: center;
  font-family: var(--grotesk);
  font-size: 13px;
  color: var(--ink-faint);
  margin: 22px 0;
  position: relative;
}
.form-note {
  background: var(--paper-dim);
  border: 1px solid var(--rule);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--ink-soft);
  border-radius: 2px;
  margin-top: 18px;
  font-family: var(--grotesk);
}
.form-msg {
  display: none;
  text-align: center;
  font-family: var(--grotesk);
  font-size: 14px;
  color: var(--bronze);
  margin-top: 16px;
  padding: 12px;
  background: var(--bronze-dim);
  border-radius: 2px;
}

/* ---------- Blog ---------- */
.post-list { max-width: 780px; margin: 0 auto; }
.post-item {
  padding: 36px 0;
  border-top: 1px solid var(--rule);
}
.post-item:first-child { border-top: none; padding-top: 0; }
.post-item .meta {
  font-family: var(--grotesk);
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-item h2 { font-size: 26px; margin: 0 0 10px; }
.post-item h2 a { text-decoration: none; }
.post-item h2 a:hover { color: var(--burgundy); }
.post-item p { color: var(--ink-soft); font-size: 17px; margin: 0 0 12px; }
.post-item .readmore { font-family: var(--grotesk); font-size: 14px; font-weight: 600; color: var(--burgundy); text-decoration: none; }

.post-hero { padding: 64px 0 40px; text-align: center; border-bottom: 1px solid var(--rule); }
.post-hero .meta { font-family: var(--grotesk); font-size: 13px; color: var(--burgundy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.post-hero h1 { font-size: clamp(30px, 5vw, 46px); max-width: 780px; margin: 0 auto 20px; }
.post-hero .byline { font-family: var(--grotesk); font-size: 14px; color: var(--ink-faint); }

.post-body { max-width: var(--maxw-text); margin: 56px auto; font-size: 19px; }
.post-body p { margin: 0 0 24px; }
.post-body h2 { font-size: 26px; margin: 48px 0 18px; }
.post-body h3 { font-size: 21px; margin: 36px 0 14px; }
.post-body blockquote {
  border-left: 3px solid var(--burgundy);
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  font-style: italic;
  font-size: 21px;
  color: var(--ink-soft);
}
.post-body ul { padding-left: 22px; }
.post-body li { margin-bottom: 10px; }

/* ---------- Legal ---------- */
.legal-body { max-width: var(--maxw-text); margin: 56px auto; font-size: 17px; }
.legal-body h2 { font-size: 22px; margin: 40px 0 14px; }
.legal-body h3 { font-size: 18px; margin: 28px 0 10px; }
.legal-body p, .legal-body li { color: var(--ink-soft); }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-updated { font-family: var(--grotesk); font-size: 13px; color: var(--ink-faint); text-align: center; margin-bottom: 8px; }

/* ---------- About ---------- */
.about-lede { max-width: var(--maxw-text); margin: 0 auto; font-size: 21px; color: var(--ink-soft); text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; background: none; border: 1px solid var(--ink); border-radius: 2px; padding: 6px 10px; font-family: var(--grotesk); font-size: 13px; }
  .hero { padding: 64px 0 40px; }
  .section { padding: 56px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-col { border-left: none; border-top: 1px solid var(--rule); }
  .price-col:first-child { border-top: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .step-row { grid-template-columns: 40px 1fr; }
  .narrative-item { gap: 16px; }
  .stat-row { gap: 32px; }
  .form-card { padding: 32px 24px; }
  .masthead-row { font-size: 10px; gap: 10px; }
  .masthead-row span:nth-child(2) { display: none; }
  .time-bar { height: auto; flex-direction: column; }
  .time-bar-seg { padding: 10px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-grid .testimonial:nth-child(odd) { border-right: none; padding-right: 0; }
  .testimonial-grid .testimonial:not(:first-child) { border-top: 1px solid var(--rule); padding-top: 32px; }
  .testimonial-grid .testimonial:last-child { max-width: none; text-align: left; }
  .testimonial-grid .testimonial:last-child .testimonial-head { justify-content: flex-start; }
}
