:root {
  --paper: #f3eee5;
  --paper-soft: #fbf8f2;
  --ink: #161916;
  --ink-soft: #41463e;
  --muted: #656b61;
  --line: #d7cfbf;
  --accent: #d5533e;
  --accent-dark: #ad3d2d;
  --green: #749373;
  --dark: #171b18;
  --dark-card: #20251f;
  --dark-line: #373d34;
  --shadow: 0 22px 60px rgba(28, 27, 21, 0.08);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip {
  background: var(--ink);
  color: white;
  left: 1rem;
  padding: 0.65rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 100;
}

.skip:focus {
  top: 1rem;
}

.shell {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 38px;
}

.header {
  background: rgba(243, 238, 229, 0.86);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  transition: border-color 180ms ease, backdrop-filter 180ms ease;
  z-index: 20;
}

.header.is-scrolled {
  backdrop-filter: blur(16px);
  border-color: var(--line);
}

.nav {
  align-items: center;
  display: flex;
  height: 82px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.15rem;
  font-weight: 650;
  gap: 0.75rem;
  letter-spacing: -0.035em;
}

.nav-links {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 0.93rem;
  font-weight: 500;
  gap: 2rem;
}

.nav-links > a:not(.nav-cta):hover,
.footer a:hover {
  color: var(--accent-dark);
}

.nav-cta {
  background: var(--ink);
  color: var(--paper-soft);
  padding: 0.78rem 1.22rem;
  transition: background 160ms ease;
}

.nav-cta:hover {
  background: var(--accent);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  gap: 7px;
  padding: 0.6rem;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  width: 23px;
}

.hero {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 74px 0 72px;
  position: relative;
}

.hero::after {
  background: radial-gradient(circle, rgba(213, 83, 62, 0.13), transparent 68%);
  content: "";
  height: 580px;
  pointer-events: none;
  position: absolute;
  right: -230px;
  top: 32px;
  width: 580px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 62px;
  grid-template-columns: minmax(500px, 1.04fr) minmax(390px, 0.82fr);
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(3.65rem, 5.55vw, 5.62rem);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.95;
  margin-bottom: 1.7rem;
}

h1 em {
  color: var(--accent);
  font-style: italic;
}

.intro {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  margin-bottom: 2.15rem;
  max-width: 630px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3.1rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 650;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.45rem;
  transition: background 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--ink);
}

.button.inverted {
  border-color: var(--dark-line);
  color: var(--paper);
  margin-top: auto;
}

.button.inverted:hover {
  border-color: var(--paper);
}

.hero-trust {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-trust li {
  color: var(--muted);
  font-size: 0.84rem;
  padding-left: 1.05rem;
  position: relative;
}

.hero-trust li::before {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.65em;
  width: 6px;
}

.console {
  background: var(--dark);
  border-radius: 22px;
  box-shadow: 0 35px 80px rgba(17, 18, 15, 0.18);
  color: var(--paper);
  padding: 26px;
  position: relative;
  z-index: 1;
}

.console-top {
  align-items: center;
  border-bottom: 1px solid var(--dark-line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 20px;
}

.console-title {
  font-size: 0.93rem;
  font-weight: 650;
}

.status {
  align-items: center;
  color: #c9d6c4;
  display: inline-flex;
  font-size: 0.78rem;
  gap: 7px;
}

.status i {
  background: #7da378;
  border-radius: 100%;
  display: block;
  height: 7px;
  width: 7px;
}

.request {
  background: var(--dark-card);
  border: 1px solid var(--dark-line);
  border-radius: 13px;
  margin-bottom: 25px;
  padding: 19px 20px;
}

.request-label {
  color: #9ca594;
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.request p {
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

.flow {
  display: grid;
  gap: 10px;
}

.flow-row {
  align-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 12px;
  color: #9da596;
  display: grid;
  gap: 15px;
  grid-template-columns: 10px 1fr;
  padding: 14px 16px;
}

.flow-row.active {
  color: var(--paper);
}

.flow-row .dot {
  background: #51574d;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.flow-row.active .dot {
  background: var(--accent);
}

.flow-row strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 550;
}

.flow-row small {
  color: #9da596;
  display: block;
  font-size: 0.76rem;
}

.validation {
  align-items: center;
  background: #282d26;
  border-radius: 10px;
  color: #bec5b9;
  display: flex;
  font-size: 0.8rem;
  justify-content: space-between;
  margin-top: 22px;
  padding: 12px 16px;
}

.validation strong {
  color: #e18a7c;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof {
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid div {
  border-right: 1px solid var(--line);
  padding: 38px 42px 38px 0;
}

.proof-grid div:not(:first-child) {
  padding-left: 42px;
}

.proof-grid div:last-child {
  border-right: 0;
}

.metric {
  color: var(--accent);
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.proof-grid p {
  color: var(--muted);
  margin: 0;
  max-width: 265px;
}

.section {
  border-bottom: 1px solid var(--line);
  padding: 92px 0;
}

.section-head {
  max-width: 820px;
}

.section-head h2,
.guardrails h2,
.contact h2 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.4vw, 4.1rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.02;
  margin-bottom: 0;
}

.solutions {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
}

.solution {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  min-height: 278px;
  padding: 27px 25px;
}

.number {
  color: var(--accent);
  display: block;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  margin-bottom: 3.45rem;
}

.solution h3 {
  font-family: var(--serif);
  font-size: 1.62rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.12;
  margin-bottom: 0.9rem;
}

.solution p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.62;
  margin-bottom: 0;
}

.audiences {
  background: #ece5d8;
}

.audiences .section-head {
  max-width: 920px;
}

.audience-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
}

.audience-card {
  border-top: 2px solid var(--accent);
  padding: 25px 18px 0 0;
}

.audience-card span {
  color: var(--accent-dark);
  display: block;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  margin-bottom: 1.7rem;
}

.audience-card h3 {
  font-family: var(--serif);
  font-size: 1.63rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.12;
  margin-bottom: 0.85rem;
}

.audience-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.dark {
  background: var(--dark);
  border-color: var(--dark-line);
  color: var(--paper);
}

.dark .eyebrow {
  color: #df7766;
}

.offers {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.offer {
  border: 1px solid var(--dark-line);
  display: flex;
  flex-direction: column;
  min-height: 582px;
  padding: 30px 27px;
  position: relative;
}

.offer.featured {
  background: var(--dark-card);
  border-color: var(--accent);
}

.badge {
  background: var(--accent);
  color: white;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: -30px -27px 24px;
  padding: 11px 27px;
  text-transform: uppercase;
}

.offer-name {
  color: #df7766;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.offer h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.08;
  margin-bottom: 0.95rem;
}

.offer-text {
  color: #b8beb2;
  font-size: 0.93rem;
  line-height: 1.58;
  min-height: 70px;
}

.quote-message {
  border: 1px solid var(--dark-line);
  margin: 1.2rem 0 1.35rem;
  padding: 17px 16px;
}

.quote-message strong {
  color: var(--paper);
  display: block;
  font-family: var(--serif);
  font-size: 1.44rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.quote-message span {
  color: #bbc1b5;
  display: block;
  font-size: 0.83rem;
  line-height: 1.5;
}

.offer ul {
  border-top: 1px solid var(--dark-line);
  color: #d2d6ca;
  font-size: 0.9rem;
  list-style: none;
  margin: 0 0 1.7rem;
  padding: 1rem 0 0;
}

.offer li {
  padding: 0.37rem 0 0.37rem 1.25rem;
  position: relative;
}

.offer li::before {
  color: #df7766;
  content: "+";
  font-weight: 700;
  left: 0;
  position: absolute;
}

.method-grid {
  display: grid;
  gap: 84px;
  grid-template-columns: 0.84fr 1fr;
}

.sticky {
  align-self: start;
  position: sticky;
  top: 125px;
}

.section-copy {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 1.65rem 0 0;
  max-width: 470px;
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  border-bottom: 1px solid var(--line);
  padding: 0 0 38px;
}

.steps li + li {
  padding-top: 38px;
}

.steps span {
  color: var(--accent-dark);
  display: block;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.steps h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.guardrails {
  background: #e8e1d3;
  border-bottom: 1px solid var(--line);
  padding: 75px 0;
}

.guardrail-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 0.8fr;
}

.guardrail-card {
  background: var(--ink);
  color: var(--paper);
  padding: 37px 39px;
}

.guardrail-card p {
  font-size: 1.06rem;
  line-height: 1.72;
  margin: 0;
}

.local-grid {
  display: grid;
  gap: 66px;
  grid-template-columns: 0.98fr 1fr;
}

.text-link {
  border-bottom: 1px solid var(--accent);
  color: var(--accent-dark);
  display: inline-block;
  font-size: 0.94rem;
  font-weight: 650;
  margin-top: 2.1rem;
  padding-bottom: 0.24rem;
}

.locations {
  display: grid;
  gap: 17px;
}

.location-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  padding: 30px 31px;
}

.location-card > span {
  color: var(--accent-dark);
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 0.95rem;
  text-transform: uppercase;
}

.location-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.12;
  margin-bottom: 0.5rem;
}

.location-card p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.location-card small {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: block;
  font-size: 0.84rem;
  padding-top: 1.05rem;
}

.faq-grid {
  display: grid;
  gap: 72px;
  grid-template-columns: 0.7fr 1fr;
}

.questions details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.questions details:last-child {
  border-bottom: 1px solid var(--line);
}

.questions summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.43rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.25;
  list-style: none;
  padding-right: 34px;
  position: relative;
}

.questions summary::-webkit-details-marker {
  display: none;
}

.questions summary::after {
  color: var(--accent);
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
}

.questions details[open] summary::after {
  content: "−";
}

.questions p {
  color: var(--muted);
  margin: 1rem 38px 0 0;
}

.contact {
  background: var(--ink);
  color: var(--paper);
  padding: 94px 0;
}

.contact-grid {
  display: grid;
  gap: 84px;
  grid-template-columns: 0.82fr 1fr;
}

.contact-copy > p:not(.eyebrow) {
  color: #bfc5ba;
  font-size: 1.04rem;
  margin: 1.6rem 0 2rem;
  max-width: 445px;
}

.contact .eyebrow {
  color: #df7766;
}

.email {
  border-bottom: 1px solid #777e71;
  display: inline-block;
  padding-bottom: 0.2rem;
}

.form {
  background: var(--dark-card);
  border: 1px solid var(--dark-line);
  padding: 34px;
}

.field-pair {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.form label {
  color: #cdd3c7;
  display: block;
  font-size: 0.82rem;
  font-weight: 550;
  margin-bottom: 16px;
}

.form input,
.form textarea {
  background: #181c18;
  border: 1px solid #40473d;
  color: var(--paper);
  display: block;
  margin-top: 8px;
  outline: none;
  padding: 14px 15px;
  transition: border-color 160ms ease;
  width: 100%;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--accent);
}

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

.form textarea::placeholder {
  color: #70786b;
}

.honey {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.form-bottom {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.consent {
  color: #9ca496;
  font-size: 0.74rem;
  line-height: 1.45;
  margin: 0;
}

.consent a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  font-size: 0.88rem;
  margin: 18px 0 0;
  min-height: 0;
}

.form-status.success {
  color: #a8c79d;
}

.form-status.notice,
.form-status.error {
  color: #e18a7c;
}

.footer {
  background: var(--ink);
  border-top: 1px solid var(--dark-line);
  color: #abb2a5;
  padding: 34px 0;
}

.footer-grid {
  align-items: center;
  display: grid;
  font-size: 0.86rem;
  gap: 20px;
  grid-template-columns: 1fr 1.35fr auto auto;
}

.footer .brand {
  color: var(--paper);
}

.footer-links {
  display: inline-flex;
  gap: 18px;
}

.copyright {
  margin: 0;
}

.legal-header {
  border-bottom: 1px solid var(--line);
  position: static;
}

.legal-back {
  color: var(--muted);
  font-size: 0.93rem;
}

.legal-back:hover,
.legal-content a:hover {
  color: var(--accent-dark);
}

.legal-page {
  padding: 72px 0 92px;
}

.legal-layout {
  display: grid;
  gap: 72px;
  grid-template-columns: 0.72fr 1fr;
}

.legal-summary {
  align-self: start;
  position: sticky;
  top: 45px;
}

.legal-summary h1 {
  font-size: clamp(2.85rem, 4.5vw, 4.25rem);
  margin-bottom: 1.15rem;
}

.legal-summary > p:last-child {
  color: var(--muted);
}

.legal-content {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  padding: 40px 42px;
}

.legal-content section + section {
  border-top: 1px solid var(--line);
  margin-top: 31px;
  padding-top: 31px;
}

.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.18;
  margin-bottom: 0.85rem;
}

.legal-content p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.legal-content a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  background: #eee6d9;
  border-left: 3px solid var(--accent);
  font-size: 0.91rem;
  margin-top: 20px !important;
  padding: 15px 17px;
}

.legal-content > .legal-note {
  margin-bottom: 31px;
  margin-top: 0 !important;
}

.legal-definition {
  margin: 0;
}

.legal-definition div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 165px 1fr;
  padding: 15px 0;
}

.legal-definition div:first-child {
  padding-top: 0;
}

.legal-definition div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-definition dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
}

.legal-definition dd {
  color: var(--ink-soft);
  margin: 0;
}

.legal-footer {
  padding: 27px 0;
}

.legal-footer-row {
  display: flex;
  font-size: 0.88rem;
  gap: 26px;
}

.legal-footer-row span:first-child {
  margin-right: auto;
}

.territory-hero {
  border-bottom: 1px solid var(--line);
  padding: 72px 0 78px;
}

.territory-intro {
  max-width: 1000px;
}

.territory-intro h1 {
  max-width: 990px;
}

.territory-intro .intro {
  max-width: 770px;
}

.territory-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.territory-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  padding: 39px 40px;
}

.territory-card h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.08;
  margin-bottom: 1.3rem;
}

.territory-card > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 2rem;
}

.territory-detail {
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  display: grid;
  font-size: 0.91rem;
  gap: 4px;
  padding-top: 1.25rem;
}

.territory-detail strong {
  margin-bottom: 3px;
}

.territory-services {
  background: var(--dark);
  color: var(--paper);
  padding: 88px 0 94px;
}

.territory-services .eyebrow {
  color: #df7766;
}

.territory-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0;
}

.territory-list div {
  border: 1px solid var(--dark-line);
  padding: 27px 25px;
}

.territory-list h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.042em;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.territory-list p {
  color: #b8beb2;
  font-size: 0.92rem;
  margin: 0;
}

.territory-callout {
  align-items: center;
  background: var(--dark-card);
  border: 1px solid var(--dark-line);
  display: flex;
  gap: 50px;
  justify-content: space-between;
  padding: 28px 31px;
}

.territory-callout p {
  color: #d0d5ca;
  margin: 0;
  max-width: 730px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.seo-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(226, 83, 57, 0.08), transparent 32%),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 42%);
}

.seo-hero h1 {
  max-width: 1010px;
}

.seo-hero .intro {
  max-width: 860px;
}

.static-nav {
  align-items: center;
}

.seo-content {
  border-bottom: 1px solid var(--line);
}

.seo-two-col {
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.seo-section {
  border-bottom: 1px solid var(--line);
  padding: 0 0 34px;
}

.seo-section + .seo-section {
  margin-top: 34px;
}

.seo-section h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0 0 1rem;
}

.seo-section p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.76;
  margin: 0;
  max-width: 780px;
}

.seo-section p + p {
  margin-top: 1rem;
}

.seo-section ul,
.seo-section ol {
  color: var(--muted);
  line-height: 1.72;
  margin: 1rem 0 0;
  max-width: 780px;
  padding-left: 1.25rem;
}

.seo-section li + li {
  margin-top: 0.45rem;
}

.seo-section h3 {
  color: var(--ink);
  font-size: 1.25rem;
  margin: 1.25rem 0 0.6rem;
}

.seo-section a,
.text-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.seo-side-card {
  align-self: start;
  background: var(--ink);
  border: 1px solid var(--dark-line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  color: var(--paper);
  padding: 30px;
  position: sticky;
  top: 24px;
}

.seo-side-card h3 {
  color: var(--paper);
  font-family: var(--display);
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 1rem;
}

.seo-side-card p {
  color: rgba(243, 238, 229, 0.76);
  line-height: 1.65;
}

.seo-side-card ol {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 1.2rem;
}

.seo-side-card li {
  color: rgba(243, 238, 229, 0.82);
  line-height: 1.45;
}

.seo-side-card .button {
  margin-top: 12px;
  width: 100%;
}

.seo-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.seo-card-grid article {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 26px;
  min-height: 185px;
  padding: 28px;
}

.seo-card-grid h3 {
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0 0 0.85rem;
}

.seo-card-grid p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.seo-band {
  background: var(--ink);
  color: var(--paper);
  padding: 26px 0;
}

.seo-link-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-link-grid a {
  border: 1px solid var(--dark-line);
  border-radius: 18px;
  color: var(--paper);
  font-weight: 800;
  padding: 18px;
}

.seo-link-grid a:hover {
  border-color: rgba(243, 238, 229, 0.55);
}

.toc {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 24px;
  margin-bottom: 34px;
  padding: 24px 26px;
}

.toc ol {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.2rem;
}

.toc a {
  color: var(--ink);
  font-weight: 800;
}

.mini-contact {
  border-top: 1px solid var(--line);
}

.quote-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--dark-line);
  border-radius: 28px;
  color: var(--paper);
  padding: 28px;
}

.quote-panel p {
  color: rgba(243, 238, 229, 0.72);
  line-height: 1.6;
  margin: 16px 0 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .method-grid,
  .guardrail-grid,
  .local-grid,
  .faq-grid,
  .contact-grid,
  .seo-two-col {
    gap: 46px;
    grid-template-columns: 1fr;
  }

  .seo-side-card {
    position: static;
  }

  .seo-card-grid,
  .seo-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-copy {
    max-width: 760px;
  }

  .console {
    max-width: 580px;
  }

  .solutions,
  .offers,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offers .featured {
    grid-column: span 2;
    grid-row: 1;
  }

  .offer {
    min-height: auto;
  }

  .sticky {
    position: static;
  }
}

@media (max-width: 760px) {
  .shell {
    padding: 0 21px;
  }

  .nav {
    height: 72px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    background: var(--paper-soft);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: none;
    gap: 0;
    left: 0;
    padding: 0.8rem 21px 1rem;
    position: absolute;
    right: 0;
    top: 72px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 0.72rem 0;
  }

  .nav-cta {
    margin-top: 0.45rem;
    padding-left: 1rem !important;
  }

  .hero {
    padding: 49px 0 53px;
  }

  .hero-grid {
    display: block;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 3.7rem);
    margin-bottom: 1.3rem;
  }

  .intro {
    margin-bottom: 1.65rem;
  }

  .actions {
    margin-bottom: 2.25rem;
  }

  .actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 39px;
  }

  .console {
    padding: 20px;
  }

  .proof-grid,
  .solutions,
  .offers,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .proof-grid div:not(:first-child) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 27px 0;
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }

  .section,
  .contact {
    padding: 62px 0;
  }

  .section-head h2,
  .guardrails h2,
  .contact h2 {
    font-size: clamp(2.3rem, 11vw, 3rem);
  }

  .solutions,
  .offers {
    margin-top: 38px;
  }

  .offers .featured {
    grid-column: auto;
  }

  .guardrails {
    padding: 58px 0;
  }

  .guardrail-card,
  .form {
    padding: 26px 22px;
  }

  .field-pair,
  .footer-grid,
  .territory-cards,
  .territory-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .legal-page {
    padding: 48px 0 58px;
  }

  .legal-layout {
    display: block;
  }

  .legal-summary {
    margin-bottom: 34px;
    position: static;
  }

  .legal-content {
    padding: 26px 21px;
  }

  .legal-definition div {
    gap: 5px;
    grid-template-columns: 1fr;
  }

  .legal-footer-row {
    flex-wrap: wrap;
  }

  .legal-footer-row span:first-child {
    flex-basis: 100%;
    margin-bottom: 4px;
  }

  .territory-hero {
    padding: 50px 0 58px;
  }

  .territory-card {
    padding: 29px 23px;
  }

  .territory-services {
    padding: 62px 0;
  }

  .territory-callout {
    align-items: stretch;
    flex-direction: column;
    gap: 25px;
    padding: 24px 21px;
  }

  .static-nav {
    background: transparent;
    border: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.9rem;
    justify-content: flex-end;
    padding: 0;
    position: static;
  }

  .static-nav a {
    padding: 0.2rem 0;
  }

  .static-nav .nav-cta {
    padding: 0.72rem 1rem !important;
  }

  .seo-card-grid,
  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .seo-card-grid article {
    min-height: auto;
    padding: 24px 21px;
  }

  .seo-side-card,
  .toc,
  .quote-panel {
    padding: 24px 21px;
  }
}


/* SEO blog enrichment blocks */
.seo-rich-block {
  scroll-margin-top: 96px;
}

.seo-table-wrap {
  background: linear-gradient(180deg, rgba(251, 248, 242, 0.98), rgba(255, 255, 255, 0.68));
  border: 1px solid rgba(215, 207, 191, 0.95);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(28, 27, 21, 0.075);
  margin: 1.45rem 0 2.15rem;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.seo-table-wrap::-webkit-scrollbar {
  height: 10px;
}

.seo-table-wrap::-webkit-scrollbar-track {
  background: rgba(215, 207, 191, 0.32);
  border-radius: 999px;
}

.seo-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(116, 147, 115, 0.58);
  border-radius: 999px;
}

.seo-table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.96rem;
  min-width: 760px;
  width: 100%;
}

.seo-table thead {
  background: var(--dark);
  color: var(--paper-soft);
}

.seo-table th,
.seo-table td {
  border-bottom: 1px solid rgba(215, 207, 191, 0.82);
  line-height: 1.55;
  padding: 17px 19px;
  text-align: left;
  vertical-align: top;
}

.seo-table th {
  color: var(--paper-soft);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  white-space: nowrap;
}

.seo-table th:first-child {
  border-top-left-radius: 23px;
}

.seo-table th:last-child {
  border-top-right-radius: 23px;
}

.seo-table td {
  color: var(--ink-soft);
}

.seo-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.44);
}

.seo-table tbody tr:hover {
  background: rgba(213, 83, 62, 0.055);
}

.seo-table td:first-child {
  color: var(--ink);
  font-weight: 780;
  width: 24%;
}

.seo-table tr:last-child td {
  border-bottom: 0;
}

.seo-table strong {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 760px) {
  .seo-table-wrap {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 1.1rem 0 1.8rem;
    overflow: visible;
  }

  .seo-table,
  .seo-table thead,
  .seo-table tbody,
  .seo-table tr,
  .seo-table th,
  .seo-table td {
    display: block;
    width: 100%;
  }

  .seo-table {
    border-collapse: separate;
    font-size: 0.92rem;
    min-width: 0;
  }

  .seo-table thead {
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .seo-table tbody tr {
    background: rgba(251, 248, 242, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(28, 27, 21, 0.06);
    margin: 0 0 14px;
    overflow: hidden;
  }

  .seo-table tbody tr:nth-child(even),
  .seo-table tbody tr:hover {
    background: rgba(251, 248, 242, 0.96);
  }

  .seo-table td {
    border-bottom: 1px solid rgba(215, 207, 191, 0.72);
    color: var(--ink-soft);
    padding: 13px 16px 14px;
  }

  .seo-table td::before {
    color: var(--accent-dark);
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    margin-bottom: 0.22rem;
    text-transform: uppercase;
  }

  .seo-table td:first-child {
    background: rgba(213, 83, 62, 0.085);
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 850;
    width: 100%;
  }

  .seo-table tbody tr:last-child td:not(:last-child) {
    border-bottom: 1px solid rgba(215, 207, 191, 0.72);
  }

  .seo-table td:last-child {
    border-bottom: 0;
  }
}

.seo-diagram {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.35rem;
  max-width: 860px;
}

.seo-diagram span {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
  padding: 15px 16px;
  position: relative;
}

.seo-diagram span:not(:last-child)::after {
  content: "→";
  color: var(--accent-dark);
  font-weight: 900;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translate(50%, -50%);
}

.seo-checklist {
  list-style: none;
  padding-left: 0 !important;
}

.seo-checklist li {
  border-bottom: 1px solid rgba(32, 37, 30, 0.1);
  padding: 0.35rem 0 0.35rem 1.7rem;
  position: relative;
}

.seo-checklist li::before {
  color: var(--accent-dark);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

@media (max-width: 760px) {
  .seo-diagram {
    grid-template-columns: 1fr;
  }

  .seo-diagram span:not(:last-child)::after {
    bottom: -18px;
    left: 24px;
    right: auto;
    top: auto;
    transform: rotate(90deg);
  }
}

/* Table layout hard-fix v4: applied globally + cache-busted in HTML */
main .seo-table-wrap,
main .content-table,
main .table-wrap {
  background: #fffaf3 !important;
  border: 1px solid rgba(35, 32, 24, 0.12) !important;
  border-radius: 22px !important;
  box-shadow: 0 16px 38px rgba(28, 27, 21, 0.08) !important;
  display: block !important;
  margin: 1.45rem 0 2.25rem !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  width: 100% !important;
  -webkit-overflow-scrolling: touch !important;
}

main table.seo-table,
main .seo-section table,
main .blog-content table,
main article table {
  background: #fffaf3 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  color: var(--ink, #171813) !important;
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  table-layout: auto !important;
  width: 100% !important;
}

main table.seo-table thead,
main .seo-section table thead,
main .blog-content table thead,
main article table thead {
  background: #171813 !important;
  color: #f7efe2 !important;
}

main table.seo-table thead tr,
main .seo-section table thead tr,
main .blog-content table thead tr,
main article table thead tr {
  background: #171813 !important;
}

main table.seo-table th,
main .seo-section table th,
main .blog-content table th,
main article table th {
  background: #171813 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #f7efe2 !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.06em !important;
  padding: 16px 18px !important;
  text-align: left !important;
  text-transform: uppercase !important;
  vertical-align: top !important;
}

main table.seo-table th:first-child,
main .seo-section table th:first-child,
main .blog-content table th:first-child,
main article table th:first-child {
  border-top-left-radius: 21px !important;
}

main table.seo-table th:last-child,
main .seo-section table th:last-child,
main .blog-content table th:last-child,
main article table th:last-child {
  border-top-right-radius: 21px !important;
}

main table.seo-table td,
main .seo-section table td,
main .blog-content table td,
main article table td {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(35, 32, 24, 0.1) !important;
  color: #484438 !important;
  padding: 16px 18px !important;
  text-align: left !important;
  vertical-align: top !important;
}

main table.seo-table tbody tr:nth-child(even),
main .seo-section table tbody tr:nth-child(even),
main .blog-content table tbody tr:nth-child(even),
main article table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.58) !important;
}

main table.seo-table tbody tr:hover,
main .seo-section table tbody tr:hover,
main .blog-content table tbody tr:hover,
main article table tbody tr:hover {
  background: rgba(213, 83, 62, 0.065) !important;
}

main table.seo-table td:first-child,
main .seo-section table td:first-child,
main .blog-content table td:first-child,
main article table td:first-child {
  color: #171813 !important;
  font-weight: 800 !important;
}

main table.seo-table tr:last-child td,
main .seo-section table tr:last-child td,
main .blog-content table tr:last-child td,
main article table tr:last-child td {
  border-bottom: 0 !important;
}

@media (max-width: 760px) {
  main .seo-table-wrap,
  main .content-table,
  main .table-wrap {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  main table.seo-table,
  main table.seo-table thead,
  main table.seo-table tbody,
  main table.seo-table tr,
  main table.seo-table th,
  main table.seo-table td,
  main .seo-section table,
  main .seo-section table thead,
  main .seo-section table tbody,
  main .seo-section table tr,
  main .seo-section table th,
  main .seo-section table td,
  main article table,
  main article table thead,
  main article table tbody,
  main article table tr,
  main article table th,
  main article table td {
    display: block !important;
    width: 100% !important;
  }

  main table.seo-table thead,
  main .seo-section table thead,
  main article table thead {
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }

  main table.seo-table tbody tr,
  main .seo-section table tbody tr,
  main article table tbody tr {
    background: #fffaf3 !important;
    border: 1px solid rgba(35, 32, 24, 0.12) !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 28px rgba(28, 27, 21, 0.07) !important;
    margin: 0 0 14px !important;
    overflow: hidden !important;
  }

  main table.seo-table td,
  main .seo-section table td,
  main article table td {
    border-bottom: 1px solid rgba(35, 32, 24, 0.1) !important;
    padding: 13px 16px 14px !important;
  }

  main table.seo-table td::before,
  main .seo-section table td::before,
  main article table td::before {
    color: #a64231 !important;
    content: attr(data-label) !important;
    display: block !important;
    font-size: 0.7rem !important;
    font-weight: 850 !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 0.22rem !important;
    text-transform: uppercase !important;
  }

  main table.seo-table td:first-child,
  main .seo-section table td:first-child,
  main article table td:first-child {
    background: rgba(213, 83, 62, 0.09) !important;
    color: #171813 !important;
    font-size: 0.98rem !important;
    font-weight: 850 !important;
  }
}
