* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: #F7F6F2;
  color: #232A33;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: #C0392B; }
img { max-width: 100%; height: auto; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary { background-color: #232A33; color: #FFFFFF; }
.btn-primary:hover { background-color: #C0392B; }

.btn-secondary {
  background-color: transparent;
  color: #232A33;
  border: 2px solid #232A33;
}
.btn-secondary:hover { background-color: #232A33; color: #FFFFFF; }

.btn-vermilion { background-color: #C0392B; color: #FFFFFF; }
.btn-vermilion:hover { background-color: #232A33; }

.eyebrow-chip {
  display: inline-block;
  background-color: #C0392B;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 22px;
}

.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.js .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; transition: none; }
}

.seal-nav.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #F7F6F2;
  border-bottom: 1px solid #232A33;
}

.seal-nav.scrolled { box-shadow: 0 3px 0 0 #C0392B; }

.seal-nav .nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.seal-nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.seal-nav .brand-seal {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #C0392B;
}

.seal-nav .brand-name {
  color: #232A33;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
}

.seal-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.seal-nav .nav-links a {
  display: inline-block;
  color: #232A33;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 0;
  position: relative;
}

.seal-nav .nav-links a:hover { color: #C0392B; }

.seal-nav .nav-links .active { color: #C0392B; }

.seal-nav .nav-links .active::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #C0392B;
  margin-right: 7px;
  vertical-align: 1px;
}

.seal-nav .nav-links .active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #C0392B;
}

.nav-toggle {
  display: none;
  background-color: transparent;
  border: 1px solid #232A33;
  cursor: pointer;
  padding: 9px 12px;
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #232A33;
  margin: 4px 0;
}

.brushstroke-hero {
  background-color: #F7F6F2;
  padding: 96px 0 110px;
}

.brushstroke-hero .hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brushstroke-hero .hero-copy { flex: 1 1 620px; }

.brushstroke-hero .hero-copy h1 {
  color: #232A33;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 26px;
}

.brushstroke-hero .hero-copy .hero-sub {
  color: #232A33;
  font-size: 18px;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 34px;
}

.brushstroke-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.brushstroke-hero .brushstroke-graphic {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 160px;
}

.brushstroke-hero .brushstroke-graphic .stroke {
  display: block;
  width: 34px;
  border-radius: 10px;
}

.brushstroke-hero .stroke-tall { height: 150px; background-color: #232A33; }
.brushstroke-hero .stroke-mid { height: 110px; background-color: #E8EAE6; }
.brushstroke-hero .stroke-short { height: 70px; background-color: #C0392B; }

.capability-columns {
  background-color: #E8EAE6;
  padding: 96px 0;
}

.capability-columns .section-head {
  max-width: 780px;
  margin-bottom: 52px;
}

.capability-columns .section-head h2 {
  color: #232A33;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 18px;
}

.capability-columns .section-intro {
  color: #232A33;
  font-size: 17px;
}

.capability-columns .columns-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.capability-columns .column-card {
  background-color: #F7F6F2;
  border-top: 6px solid #232A33;
  padding: 38px 32px 44px;
  display: flex;
  flex-direction: column;
}

.capability-columns .column-number {
  color: #C0392B;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.capability-columns .column-card h3 {
  color: #232A33;
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 16px;
}

.capability-columns .column-card p {
  color: #232A33;
  font-size: 16px;
}

.ink-band {
  background-color: #232A33;
  color: #F7F6F2;
  padding: 96px 0;
}

.ink-band .ink-band-head { max-width: 820px; margin-bottom: 56px; }

.ink-band .eyebrow-chip { background-color: #C0392B; color: #FFFFFF; }

.ink-band h2 {
  color: #F7F6F2;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 20px;
}

.ink-band .band-lead {
  color: #F7F6F2;
  font-size: 18px;
  max-width: 720px;
}

.ink-band .principles-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ink-band .principle {
  padding: 0 40px;
  color: #F7F6F2;
}

.ink-band .principle + .principle { border-left: 1px solid #F7F6F2; }

.ink-band .principle h3 {
  color: #F7F6F2;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.ink-band .principle p {
  color: #F7F6F2;
  font-size: 16px;
}

.two-tone-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.two-tone-panel .panel-half {
  padding: 88px 56px;
}

.two-tone-panel .panel-promise {
  background-color: #C0392B;
  color: #232A33;
  border-right: 1px solid #232A33;
}

.two-tone-panel .panel-method {
  background-color: #232A33;
  color: #F7F6F2;
}

.two-tone-panel .panel-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.two-tone-panel .panel-promise .panel-label { color: #232A33; }
.two-tone-panel .panel-method .panel-label { color: #F7F6F2; }

.two-tone-panel .panel-half h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 16px;
}

.two-tone-panel .panel-promise h2 { color: #232A33; }
.two-tone-panel .panel-method h2 { color: #F7F6F2; }

.two-tone-panel .panel-half p {
  font-size: 17px;
  margin-bottom: 12px;
}

.two-tone-panel .panel-promise p { color: #232A33; }
.two-tone-panel .panel-method p { color: #F7F6F2; }

.cta-band {
  background-color: #232A33;
  color: #F7F6F2;
  text-align: center;
  padding: 96px 0;
}

.cta-band h2 {
  color: #F7F6F2;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-band p {
  color: #F7F6F2;
  font-size: 18px;
  margin-bottom: 34px;
}

.inkslab-footer {
  background-color: #232A33;
  color: #F7F6F2;
  padding: 64px 0 36px;
}

.inkslab-footer .footer-zones {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid #F7F6F2;
  padding-bottom: 44px;
  margin-bottom: 26px;
}

.inkslab-footer .footer-brand { text-align: left; }

.inkslab-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 10px;
}

.inkslab-footer .footer-seal {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #C0392B;
}

.inkslab-footer .footer-name {
  color: #F7F6F2;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
}

.inkslab-footer .footer-org {
  color: #F7F6F2;
  font-size: 14px;
}

.inkslab-footer .footer-center {
  border-left: 1px solid #F7F6F2;
  border-right: 1px solid #F7F6F2;
}

.inkslab-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.inkslab-footer .footer-links a {
  color: #F7F6F2;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.inkslab-footer .footer-links a:hover { color: #C0392B; }

.inkslab-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  font-size: 14px;
}

.inkslab-footer .footer-contact a {
  color: #F7F6F2;
  text-decoration: none;
}

.inkslab-footer .footer-contact a:hover { color: #C0392B; }

.inkslab-footer .footer-legal {
  text-align: center;
  color: #F7F6F2;
  font-size: 13px;
}

.inkslab-footer .footer-legal a {
  color: #F7F6F2;
  text-decoration: underline;
}

.inkslab-footer .footer-legal a:hover { color: #C0392B; }

.page-head {
  background-color: #F7F6F2;
  padding: 80px 0 64px;
}

.page-head h1 {
  color: #232A33;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}

.page-head p {
  color: #232A33;
  font-size: 18px;
  max-width: 720px;
}

.section-block {
  padding: 80px 0;
}

.section-block.alt { background-color: #E8EAE6; }

.section-block h2 {
  color: #232A33;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 18px;
}

.section-block p {
  color: #232A33;
  font-size: 16px;
  margin-bottom: 16px;
  max-width: 800px;
}

.section-block .service-marker {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #C0392B;
  margin-bottom: 16px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  background-color: #F7F6F2;
  border-top: 4px solid #232A33;
  padding: 28px 24px;
}

.process-step .step-no {
  color: #C0392B;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.process-step h3 {
  color: #232A33;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-step p {
  color: #232A33;
  font-size: 15px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form { background-color: #E8EAE6; padding: 40px 36px; }

.contact-form .field {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  color: #232A33;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #232A33;
  border-radius: 2px;
  color: #232A33;
  font-family: inherit;
  font-size: 16px;
  padding: 12px 14px;
}

.contact-form textarea { min-height: 150px; resize: vertical; }

.contact-form .form-status {
  display: none;
  margin-top: 18px;
  color: #232A33;
  font-weight: 700;
  background-color: #C0392B;
  color: #FFFFFF;
  padding: 12px 16px;
}

.contact-form .form-status.visible { display: block; }

.contact-details { padding-top: 4px; }

.contact-details h2 {
  color: #232A33;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
}

.contact-details .detail-card {
  background-color: #E8EAE6;
  padding: 22px 24px;
  margin-bottom: 18px;
}

.contact-details .detail-card h3 {
  color: #232A33;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-details .detail-card p,
.contact-details .detail-card a {
  color: #232A33;
  font-size: 16px;
  text-decoration: none;
}

.contact-details .detail-card a:hover { color: #C0392B; }

.contact-details .business-hours {
  background-color: #E8EAE6;
  padding: 22px 24px;
}

.contact-details .business-hours h3 {
  color: #232A33;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-details .business-hours p {
  color: #232A33;
  font-size: 16px;
}

.faq-list { margin-top: 60px; }

.faq-list h2 {
  color: #232A33;
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 28px;
}

.faq-item {
  background-color: #E8EAE6;
  border-left: 4px solid #232A33;
  margin-bottom: 14px;
}

.faq-item.open { border-left-color: #C0392B; }

.faq-question {
  width: 100%;
  text-align: left;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 18px 22px;
  color: #232A33;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  color: #232A33;
  font-size: 16px;
  padding: 0 22px 20px;
  margin: 0;
}

@media (max-width: 980px) {
  .brushstroke-hero .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .brushstroke-hero .hero-copy h1 { font-size: 44px; }

  .capability-columns .columns-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ink-band .principles-row { grid-template-columns: 1fr; gap: 28px; }

  .ink-band .principle { padding: 0; }

  .ink-band .principle + .principle { border-left: none; }

  .two-tone-panel { grid-template-columns: 1fr; }

  .two-tone-panel .panel-promise { border-right: none; }

  .process-row { grid-template-columns: 1fr 1fr; }

  .contact-layout { grid-template-columns: 1fr; }

  .inkslab-footer .footer-zones {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .inkslab-footer .footer-brand { text-align: center; }
  .inkslab-footer .footer-logo { justify-content: center; }
  .inkslab-footer .footer-contact { text-align: center; align-items: center; }
  .inkslab-footer .footer-center { border-left: none; border-right: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }

  .seal-nav .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #F7F6F2;
    border-bottom: 1px solid #232A33;
  }

  .seal-nav .nav-links.open { display: flex; }

  .seal-nav .nav-links li { width: 100%; }

  .seal-nav .nav-links a {
    display: block;
    padding: 14px 24px;
    border-top: 1px solid #E8EAE6;
  }

  .seal-nav .nav-links .active::after { display: none; }
}

@media (max-width: 600px) {
  .brushstroke-hero { padding: 64px 0 80px; }

  .brushstroke-hero .hero-copy h1 { font-size: 36px; }

  .brushstroke-hero .hero-actions { flex-direction: column; align-items: stretch; }

  .brushstroke-hero .hero-actions .btn { text-align: center; }

  .brushstroke-hero .brushstroke-graphic { height: 120px; gap: 10px; }

  .brushstroke-hero .stroke-tall { height: 110px; width: 26px; }
  .brushstroke-hero .stroke-mid { height: 80px; width: 26px; }
  .brushstroke-hero .stroke-short { height: 52px; width: 26px; }

  .capability-columns { padding: 72px 0; }
  .ink-band { padding: 72px 0; }
  .cta-band { padding: 72px 0; }

  .two-tone-panel .panel-half { padding: 56px 24px; }

  .process-row { grid-template-columns: 1fr; }

  .page-head { padding: 56px 0 48px; }
  .page-head h1 { font-size: 34px; }

  .section-block { padding: 56px 0; }
}
