:root {
  --bg: #edf2f7;
  --bg-soft: #f7fafc;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-muted: rgba(255, 255, 255, 0.72);
  --ink: #2f353b;
  --ink-soft: #4f555d;
  --line: rgba(79, 85, 93, 0.12);
  --line-strong: rgba(79, 85, 93, 0.22);
  --accent: #3172b7;
  --accent-deep: #275f99;
  --accent-soft: rgba(49, 114, 183, 0.14);
  --ink-panel: #4f555d;
  --ink-panel-soft: #41464d;
  --ink-panel-line: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(79, 85, 93, 0.1);
  --shadow-strong: 0 30px 70px rgba(49, 114, 183, 0.16);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(49, 114, 183, 0.14), transparent 24%),
    radial-gradient(circle at 92% 8%, rgba(49, 114, 183, 0.08), transparent 20%),
    linear-gradient(180deg, #fbfdff 0%, #f2f6fb 44%, #edf2f7 100%);
}

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

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

.page-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-name {
  color: var(--accent);
  font-size: clamp(2rem, 2.8vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.brand-divider {
  width: 2px;
  align-self: stretch;
  border-radius: 999px;
  background: rgba(79, 85, 93, 0.22);
}

.brand-tagline {
  display: grid;
  gap: 2px;
  color: #4f555d;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.05;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: var(--shadow-strong);
}

.header-cta:hover,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line-strong);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  padding: 96px 0 48px;
}

.hero-copy,
.hero-side {
  min-width: 0;
}

.hero-copy {
  padding: 22px 0 10px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero h1,
.section-heading h2,
.contact-card-main h2,
.legal-hero h1 {
  margin: 0;
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 9.5ch;
  font-size: clamp(3.9rem, 8vw, 7.3rem);
}

.hero-text,
.section-heading p,
.service-card p,
.benefit-card p,
.customer-card p,
.contact-card p,
.info-card p,
.about-copy-card p,
.statement-copy p,
.statement-card p,
.topic-article p,
.topic-article-list li,
.topic-article-note p,
.topic-bullet-list li,
.legal-card p,
.legal-lead,
.footer-text {
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-text {
  max-width: 60ch;
  margin: 24px 0 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-points,
.contact-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points,
.chip-row,
.about-highlights,
.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points li,
.chip-row span,
.about-highlights span,
.topic-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(49, 114, 183, 0.16);
  box-shadow: var(--shadow);
}

.hero-side {
  display: grid;
  gap: 18px;
}

.info-card,
.quick-facts article,
.statement-card,
.benefit-card,
.about-photo-card,
.about-copy-card,
.customer-card,
.contact-card,
.topic-article,
.topic-split-card,
.legal-card,
.footer-top {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.info-card {
  padding: 32px;
  border-radius: var(--radius-xl);
}

.info-card-main {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  background:
    radial-gradient(circle at top right, rgba(49, 114, 183, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 252, 0.92));
}

.info-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, transparent 0%, transparent 50%, rgba(49, 114, 183, 0.07) 100%);
  pointer-events: none;
}

.card-label,
.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-card-main h2 {
  margin: 18px 0 12px;
  max-width: 10ch;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.chip-row {
  margin-top: 24px;
}

.mini-steps {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.7;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 74px;
}

.quick-facts article {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-md);
}

.quick-facts article::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), rgba(49, 114, 183, 0.32));
}

.quick-facts p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.65;
}

.quick-facts strong,
.statement-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.section-block {
  padding: 34px 0 54px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading h2,
.contact-card-main h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
}

.section-heading p {
  max-width: 64ch;
  margin: 0;
}

.brand-statement {
  padding-top: 8px;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  padding: 34px;
  border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 246, 251, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.statement-copy h2 {
  margin: 0;
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.statement-copy p {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
}

.statement-cards {
  display: grid;
  gap: 16px;
}

.statement-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(49, 114, 183, 0.12);
  box-shadow: var(--shadow);
}

.statement-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.26rem;
  letter-spacing: -0.03em;
}

.statement-card p {
  margin: 0;
  color: var(--ink-soft);
}

.section-ink {
  padding: 40px 34px 54px;
  border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 246, 251, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.section-ink .section-heading h2,
.section-ink .section-heading p,
.section-ink .eyebrow,
.section-ink .topic-article h3,
.section-ink .topic-article-list strong,
.section-ink .topic-split-card h4,
.section-ink .topic-article-note h4 {
  color: inherit;
}

.section-ink .section-heading p,
.section-ink .topic-article p,
.section-ink .topic-article-list li,
.section-ink .topic-article-note p,
.section-ink .topic-bullet-list li {
  color: var(--ink-soft);
}

.section-ink .card-label,
.section-ink .service-index {
  background: var(--accent-soft);
  color: var(--accent);
}

.service-grid,
.benefit-grid,
.about-story,
.customer-grid,
.contact-layout {
  display: grid;
  gap: 18px;
}

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

.service-card,
.benefit-card,
.customer-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.section-ink .service-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(49, 114, 183, 0.12);
  box-shadow: var(--shadow);
}

.service-card h3,
.benefit-card h3,
.customer-card h3,
.contact-card h3 {
  margin: 18px 0 10px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.section-ink .service-card h3 {
  color: var(--ink);
}

.section-ink .service-card p {
  color: var(--ink-soft);
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 252, 0.88));
}

.about-story {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
}

.about-photo-card {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 6px);
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
}

.about-copy-card {
  padding: 32px;
}

.about-copy-card h3 {
  margin: 18px 0 14px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
  line-height: 1.08;
  text-wrap: balance;
}

.about-copy-card p {
  margin: 0 0 16px;
}

.about-highlights {
  margin-top: 24px;
}

.about-highlights span {
  color: var(--ink);
  font-weight: 600;
}

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

.customer-card:first-child {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 252, 0.9));
}

.customer-card:last-child {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(239, 245, 251, 0.9));
  border: 1px solid rgba(49, 114, 183, 0.12);
  box-shadow: var(--shadow);
}

.customer-card:last-child h3,
.customer-card:last-child p {
  color: var(--ink);
}

.customer-card:last-child .card-label {
  background: var(--accent-soft);
  color: var(--accent);
}

.topic-cloud {
  margin-bottom: 10px;
}

.section-ink .topic-cloud span {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(49, 114, 183, 0.14);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.topic-article {
  margin-top: 28px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.section-ink .topic-article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(49, 114, 183, 0.12);
  box-shadow: var(--shadow);
}

.topic-article h3 {
  margin: 18px 0 14px;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-wrap: balance;
}

.topic-article > p {
  max-width: 74ch;
  margin: 0 0 22px;
}

.topic-article-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 22px;
}

.topic-article-list li {
  padding-left: 6px;
}

.topic-article-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.topic-article-note,
.topic-split-card {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
}

.topic-article-note {
  margin-top: 24px;
  background: rgba(49, 114, 183, 0.08);
  border: 1px solid rgba(49, 114, 183, 0.14);
}

.section-ink .topic-article-note,
.section-ink .topic-split-card {
  background: rgba(49, 114, 183, 0.06);
  border: 1px solid rgba(49, 114, 183, 0.12);
}

.topic-article-note h4,
.topic-split-card h4 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.topic-article-note p {
  margin: 0 0 12px;
}

.topic-article-note p:last-child {
  margin-bottom: 0;
}

.topic-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.topic-split-card-full {
  margin-top: 18px;
}

.topic-bullet-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

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

.contact-card {
  padding: 34px;
  border-radius: calc(var(--radius-xl) + 4px);
}

.contact-card-main {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 245, 251, 0.92));
  border: 1px solid rgba(49, 114, 183, 0.12);
  box-shadow: var(--shadow);
}

.contact-card-main .eyebrow,
.contact-card-main h2,
.contact-card-main p {
  color: var(--ink);
}

.contact-card-main p {
  max-width: 58ch;
  color: var(--ink-soft);
}

.contact-card-main h2 {
  max-width: 12ch;
}

.contact-card-side {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 252, 0.9));
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(49, 114, 183, 0.08);
  color: var(--ink);
  font-weight: 600;
}

.contact-page-main {
  padding: 78px 0 20px;
}

.contact-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.contact-hero-lead,
.contact-card-intro,
.form-help,
.form-status,
.contact-link-list span,
.contact-detail-list li,
.contact-step-list li {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-hero-lead {
  max-width: 72ch;
  margin: 0;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.contact-page-grid,
.form-row,
.contact-info-stack {
  display: grid;
  gap: 18px;
}

.contact-page-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.contact-form-card,
.contact-panel,
.contact-bottom-strip {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-form-card,
.contact-panel {
  padding: 34px;
  border-radius: calc(var(--radius-xl) + 4px);
}

.contact-form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 246, 251, 0.92));
  border: 1px solid rgba(49, 114, 183, 0.12);
}

.contact-form-card h2,
.contact-panel h2 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.contact-card-intro {
  max-width: 62ch;
  margin: 0 0 24px;
}

.inline-contact-link {
  color: var(--accent);
  font-weight: 700;
}

.contact-form-shell {
  display: grid;
  gap: 16px;
}

.form-row {
  grid-template-columns: repeat(2, 1fr);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid rgba(79, 85, 93, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  appearance: none;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(79, 85, 93, 0.7);
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: none;
  border-color: rgba(49, 114, 183, 0.45);
  box-shadow: 0 0 0 4px rgba(49, 114, 183, 0.12);
  background: var(--white);
}

.form-submit {
  margin-top: 8px;
}

.form-help,
.form-status {
  margin: 0;
}

.form-status {
  min-height: 1.8em;
  color: var(--accent);
  font-weight: 600;
}

.contact-info-stack {
  align-content: start;
}

.contact-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 252, 0.9));
}

.contact-link-list,
.contact-detail-list,
.contact-step-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
}

.contact-link-list,
.contact-detail-list {
  list-style: none;
}

.contact-link-list li,
.contact-detail-list li {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(49, 114, 183, 0.07);
  border: 1px solid rgba(49, 114, 183, 0.1);
}

.contact-link-list span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-link-list a {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-step-list {
  padding-left: 22px;
}

.contact-step-list li {
  padding-left: 6px;
}

.contact-bottom-strip {
  margin-top: 26px;
  padding: 30px 32px;
  border-radius: var(--radius-xl);
}

.site-footer {
  margin-top: 22px;
  padding: 24px 0 8px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 30px 32px;
  border-radius: var(--radius-xl);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-text {
  max-width: 56ch;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  color: var(--ink-soft);
}

.legal-main {
  padding: 78px 0 20px;
}

.legal-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.legal-hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.legal-lead {
  max-width: 68ch;
  margin: 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.legal-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.legal-card h2 {
  margin: 0 0 16px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.legal-card p {
  margin: 0 0 10px;
}

.legal-card strong {
  color: var(--ink);
}

.legal-card-wide {
  grid-column: span 2;
}

.legal-note {
  margin-top: 20px;
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: rgba(49, 114, 183, 0.08);
  border: 1px solid rgba(49, 114, 183, 0.14);
}

.legal-note p {
  margin: 0;
  color: var(--ink);
  line-height: 1.75;
}

@media (max-width: 1180px) {
  .hero,
  .statement-grid,
  .service-grid,
  .benefit-grid,
  .about-story,
  .customer-grid,
  .contact-layout,
  .contact-page-grid,
  .topic-split,
  .legal-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1,
  .section-heading h2,
  .contact-card-main h2,
  .statement-copy h2 {
    max-width: 14ch;
  }

  .legal-card-wide {
    grid-column: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
    border-radius: 32px;
    gap: 14px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 18px;
  }

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

  .header-cta {
    display: none;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1280px);
  }

  .brand-name {
    font-size: clamp(1.6rem, 8vw, 2.35rem);
  }

  .brand-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .section-heading h2,
  .contact-card-main h2,
  .statement-copy h2,
  .legal-hero h1,
  .contact-hero h1,
  .contact-form-card h2,
  .contact-panel h2 {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .info-card,
  .quick-facts article,
  .statement-grid,
  .statement-card,
  .section-ink,
  .service-card,
  .benefit-card,
  .about-copy-card,
  .customer-card,
  .topic-article,
  .topic-split-card,
  .contact-card,
  .contact-form-card,
  .contact-panel,
  .contact-bottom-strip,
  .legal-card,
  .footer-top,
  .legal-note {
    padding: 22px;
  }

  .about-photo-card img {
    min-height: 340px;
  }

  .topic-article-list,
  .topic-bullet-list,
  .mini-steps {
    padding-left: 18px;
  }

  .site-header {
    position: static;
    padding: 16px;
  }

  .hero {
    padding: 46px 0 30px;
  }

  .hero-copy {
    padding: 8px 0 0;
  }

  .hero-text,
  .section-heading p,
  .topic-article > p,
  .statement-copy p,
  .contact-hero-lead,
  .contact-card-intro {
    max-width: none;
  }

  .hero-actions,
  .contact-actions,
  .contact-quick-actions {
    gap: 12px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-points,
  .chip-row,
  .about-highlights,
  .topic-cloud {
    gap: 10px;
  }

  .contact-quick-actions {
    display: grid;
  }

  .hero-points li,
  .chip-row span,
  .about-highlights span,
  .topic-cloud span {
    min-height: 40px;
    padding: 0 14px;
  }

  .quick-facts {
    margin-bottom: 44px;
  }

  .section-block {
    padding: 26px 0 38px;
  }

  .section-ink {
    padding-top: 26px;
    padding-bottom: 38px;
  }

  .statement-copy h2,
  .section-heading h2,
  .contact-card-main h2 {
    max-width: none;
  }

  .statement-cards,
  .service-grid,
  .benefit-grid,
  .customer-grid {
    gap: 14px;
  }

  .about-copy-card h3,
  .topic-article h3 {
    margin-bottom: 12px;
  }

  .contact-link-list a {
    font-size: 1rem;
  }

  .topic-article-list {
    gap: 14px;
  }

  .topic-split {
    gap: 14px;
  }

  .footer-top {
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 16px, 1280px);
    padding-top: 16px;
    padding-bottom: 48px;
  }

  .site-header {
    border-radius: 24px;
  }

  .brand-wordmark {
    gap: 10px;
  }

  .brand-divider {
    width: 1px;
  }

  .brand-tagline {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .site-nav {
    gap: 10px 14px;
    font-size: 0.92rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-text,
  .section-heading p,
  .service-card p,
  .benefit-card p,
  .customer-card p,
  .contact-card p,
  .info-card p,
  .about-copy-card p,
  .statement-copy p,
  .statement-card p,
  .topic-article p,
  .topic-article-list li,
  .topic-article-note p,
  .topic-bullet-list li,
  .contact-hero-lead,
  .contact-card-intro,
  .form-help,
  .form-status,
  .contact-link-list span,
  .contact-detail-list li,
  .contact-step-list li {
    font-size: 0.97rem;
    line-height: 1.72;
  }

  .info-card,
  .quick-facts article,
  .statement-grid,
  .statement-card,
  .section-ink,
  .service-card,
  .benefit-card,
  .about-copy-card,
  .customer-card,
  .topic-article,
  .topic-split-card,
  .contact-card,
  .contact-form-card,
  .contact-panel,
  .contact-bottom-strip,
  .legal-card,
  .footer-top,
  .legal-note {
    padding: 18px;
  }

  .info-card-main {
    min-height: auto;
  }

  .info-card-main h2 {
    max-width: none;
    font-size: clamp(1.8rem, 7vw, 2.3rem);
  }

  .quick-facts strong,
  .statement-card strong {
    font-size: 1.45rem;
  }

  .topic-article h3 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .topic-article-note,
  .topic-split-card {
    padding: 18px;
  }

  .contact-link-list li,
  .contact-detail-list li {
    padding: 14px 16px;
  }

  .contact-list li {
    padding: 12px 14px;
  }
}
