:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --surface-muted: #f0f2f4;
  --text: #1d2731;
  --muted: #5d6772;
  --line: #d8dde3;
  --brand: #f45b34;
  --brand-dark: #d94b27;
  --brand-soft: #fff1eb;
  --process-link: #c8ced5;
  --hero-overlay: rgba(11, 18, 24, 0.2);
  --shadow: 0 16px 40px rgba(15, 28, 41, 0.08);
  --container: min(1100px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Libre Franklin", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef1f4 0%, #f7f8fa 14rem, #f5f5f5 100%);
  line-height: 1.6;
}

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

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  background: #fff;
}

.site-header {
  position: relative;
  color: #fff;
  overflow: clip;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14));
  pointer-events: none;
}

.hero-home,
.hero-subpage {
  min-height: 32rem;
  background-color: #2b3642;
  background-image:
    linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    url("../images/hero-main.jpg");
  background-size: cover;
  background-position: center center;
}

.hero-home {
  min-height: 88vh;
  background-image: none;
}

.hero-approach {
  background-image:
    linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    url("../images/approach-panel.jpg");
}

.hero-contact {
  min-height: 28vh;
  max-height: 20rem;
  background-image:
    linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    url("../images/hero-main.jpg");
  background-position: center 46%;
}

@media (min-width: 861px) {
  .hero-home,
  .image-break {
    background-attachment: fixed;
  }

  .hero-zoom-layer {
    background-attachment: fixed;
  }
}

.hero-inner {
  min-height: inherit;
  position: relative;
  z-index: 1;
}

.hero-zoom-layer {
  position: absolute;
  inset: -4%;
  background-color: #2b3642;
  background-image:
    linear-gradient(var(--hero-overlay), var(--hero-overlay)),
    url("../images/hero-main.jpg");
  background-size: cover;
  background-position: center center;
  transform: scale(var(--hero-scale, 1));
  transform-origin: center center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 13, 18, 0.01), rgba(8, 13, 18, 0.08) 58%, rgba(8, 13, 18, 0.18)),
    linear-gradient(90deg, rgba(8, 13, 18, 0.1), rgba(8, 13, 18, 0.01) 56%, rgba(8, 13, 18, 0.1));
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(1100px, calc(100vw - 2rem));
  padding: 0.65rem 1rem;
  margin-top: 1rem;
  background: rgba(16, 24, 30, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.topbar.is-scrolled,
.simple-header .topbar {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(216, 221, 227, 0.86);
  box-shadow: 0 12px 30px rgba(15, 28, 41, 0.12);
}

.hero-home .topbar {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-dark {
  color: var(--text);
}

.brand-logo {
  width: 2.9rem;
  height: 2.9rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
  text-transform: none;
}

.brand-dark .brand-tagline {
  color: var(--muted);
}

.topbar.is-scrolled .brand-name,
.topbar.is-scrolled .brand-tagline,
.simple-header .brand-name,
.simple-header .brand-tagline {
  color: var(--text);
}

.topbar.is-scrolled .brand-tagline,
.simple-header .brand-tagline {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav-dark a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .is-active,
.site-nav-dark a:hover,
.site-nav-dark a:focus-visible,
.site-nav-dark .is-active {
  color: #fff;
}

.site-nav-dark .is-active,
.site-nav-dark a:hover,
.site-nav-dark a:focus-visible {
  color: var(--text);
}

.topbar.is-scrolled .site-nav a,
.simple-header .site-nav a {
  color: #394450;
}

.topbar.is-scrolled .site-nav .is-active,
.topbar.is-scrolled .site-nav a:hover,
.topbar.is-scrolled .site-nav a:focus-visible,
.simple-header .site-nav .is-active,
.simple-header .site-nav a:hover,
.simple-header .site-nav a:focus-visible {
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.55rem 0.8rem;
  font: inherit;
  cursor: pointer;
}

.menu-toggle-dark {
  border-color: var(--line);
  color: var(--text);
}

.menu-toggle-home {
  display: none;
  border-color: rgba(57, 68, 80, 0.18);
  background: #ffffff;
  color: var(--text);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: calc(44rem - 9rem);
  padding: 9rem 0 3.5rem;
}

.hero-content-compact {
  min-height: calc(26rem - 7rem);
  padding-top: 5.5rem;
}

.hero-content-contact {
  min-height: max(12rem, calc(28vh - 2rem));
  padding: 3rem 0 2rem;
  align-items: end;
  justify-content: flex-start;
}

.hero-home .hero-content {
  min-height: calc(88vh - 9rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--brand-dark);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  margin-bottom: 1.15rem;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.58rem, 2.35vw, 2.55rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.hero-home-content {
  justify-content: flex-start;
}

.hero-brand-panel {
  display: inline-flex;
  align-items: end;
  gap: 1.25rem;
  padding: 0;
}

.hero-brand-logo {
  width: 9.9rem;
  height: auto;
  object-fit: contain;
}

.hero-brand-copy {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.2rem;
}

.hero-brand-copy h1 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(2.35rem, 3.6vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-brand-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.2;
}

.hero-brand-panel-subpage {
  transform: scale(0.86);
  transform-origin: left bottom;
}

.hero-brand-logo-subpage {
  width: 8.2rem;
}

.hero-brand-copy-subpage h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.hero-brand-copy-subpage p {
  font-size: 0.98rem;
}

.hero-nav-shell {
  position: sticky;
  top: 0;
  z-index: 24;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(216, 221, 227, 0.94);
  box-shadow: 0 8px 20px rgba(15, 28, 41, 0.08);
}

.hero-nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 3.6rem;
  padding: 0.5rem 1rem;
}

.site-nav-home {
  justify-content: flex-start;
  width: auto;
}

.site-nav-home a {
  color: #394450;
}

.site-nav-home .is-active,
.site-nav-home a:hover,
.site-nav-home a:focus-visible {
  color: var(--brand-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.button-light {
  background: #fff;
  border-color: rgba(217, 75, 39, 0.18);
  color: var(--brand-dark);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.button:hover,
.button:focus-visible {
  background: var(--brand-dark);
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 4.5rem 0;
}

.section-contrast {
  background: var(--surface-muted);
}

.overlap-section {
  margin-top: 0;
  position: relative;
  z-index: 3;
}

.overlap-panel {
  padding: 2.35rem 2.5rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(216, 221, 227, 0.86);
  border-top: 6px solid var(--brand);
  box-shadow: 0 18px 40px rgba(15, 28, 41, 0.09);
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: -0.25rem;
}

.content-wrap,
.policy-wrap {
  display: grid;
  gap: 2rem;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 58rem;
}

.section-heading h2,
.callout-card h2,
.image-break-intro h2,
.process-header h2 {
  max-width: 14ch;
}

.section-heading p,
.feature-card p,
.process-card p,
.contact-copy p,
.callout-card p,
.policy-wrap p,
.policy-list,
td,
th,
.image-break-intro p,
.process-body p {
  color: var(--muted);
}

.table-card,
.feature-card,
.process-card,
.contact-form,
.callout-card,
.policy-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.table-card {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: none;
  border: 0;
}

table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem 1.15rem;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

thead th {
  background: #f4f6f8;
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.process-card {
  padding: 1.75rem;
}

.feature-card {
  border-top: 4px solid #d7dde4;
}

.image-break {
  position: relative;
  min-height: 33rem;
  background-color: #1d2731;
  background-image:
    linear-gradient(rgba(12, 19, 25, 0.18), rgba(12, 19, 25, 0.38)),
    url("../images/approach-panel.jpg");
  background-size: cover;
  background-position: center 64%;
}

.image-break-backdrop {
  position: absolute;
  inset: 0;
}

.image-break-content {
  position: relative;
  z-index: 1;
  min-height: 33rem;
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 3.5rem;
}

.image-break-intro {
  max-width: 34rem;
  padding: 2rem 2.1rem;
  background: rgba(255, 255, 255, 0.94);
  border-left: 4px solid var(--brand);
  box-shadow: 0 24px 48px rgba(8, 15, 22, 0.16);
}

.image-break-intro h2 {
  margin-bottom: 0.85rem;
}

.process-section {
  padding-top: 0;
}

.process-shell {
  margin-top: -6.25rem;
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(216, 221, 227, 0.9);
  border-top: 6px solid var(--brand);
  box-shadow: 0 30px 60px rgba(15, 28, 41, 0.14);
}

.process-shell .eyebrow {
  font-size: 0.96rem;
  margin-bottom: 0.65rem;
}

.process-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.process-intro {
  margin-top: 0.8rem;
  max-width: 34rem;
  color: var(--muted);
}

.process-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.process-arrow {
  width: 3.35rem;
  height: 3.35rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #f3f5f7);
  color: var(--text);
  font: inherit;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 28, 41, 0.08);
}

.process-arrow:hover,
.process-arrow:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
}

.process-count {
  min-width: 4rem;
  text-align: center;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.process-carousel {
  position: relative;
  min-height: 15.5rem;
}

.process-slide {
  display: none;
  position: relative;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 2rem 2.1rem;
  background: #ffffff;
  border: 1px solid rgba(216, 221, 227, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.process-slide.is-active {
  display: grid;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 7rem;
  height: 7rem;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--process-link);
  color: var(--brand);
  box-shadow: 0 0 0 0.45rem rgba(255, 255, 255, 0.95);
}

.process-icon img {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: contain;
}

.process-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.process-body p {
  max-width: 42rem;
  font-size: 1rem;
}

.process-body h3 {
  font-size: 1.6rem;
}

.process-dots {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 0.65rem;
}

.process-dot {
  width: 0.95rem;
  height: 0.95rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ced5dd;
  cursor: pointer;
}

.process-dot.is-active {
  background: var(--brand);
}

.process-demo {
  margin-top: 2.35rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.process-demo h3 {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.process-demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #101b23;
  border: 1px solid rgba(216, 221, 227, 0.95);
  box-shadow: 0 22px 50px rgba(15, 28, 41, 0.16);
}

.callout-band {
  padding-top: 0;
}

.callout-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  padding: 2rem;
  border-left: 4px solid var(--brand);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.65rem;
  background: #f2e4e4;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.home-page main > .section:first-child {
  padding-top: 6.25rem;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-note {
  padding: 1rem;
  background: #f7f8fa;
  border-left: 3px solid var(--brand);
}

.form-status {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--line);
}

.form-status-success {
  background: #edf8f1;
  border-left-color: #3d8a5a;
  color: #215235;
}

.form-status-error {
  background: #fff3ef;
  border-left-color: var(--brand);
  color: #7d3321;
}

.form-status-list {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
}

.form-meta-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(154, 47, 47, 0.2);
  border-color: var(--brand);
}

.simple-header {
  color: var(--text);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.simple-header-inner {
  display: grid;
  gap: 0.75rem;
  padding: 3rem 0 2.25rem;
  max-width: 42rem;
}

.policy-wrap {
  padding: 2rem;
}

.policy-list {
  margin: 0;
  padding-left: 1.1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .hero-home {
    min-height: 80vh;
  }

  .hero-home .hero-content {
    min-height: calc(80vh - 8rem);
    padding-top: 7.5rem;
  }

  .hero-brand-logo {
    width: 8rem;
  }

  .hero-brand-copy h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .hero-brand-copy p {
    font-size: 0.96rem;
  }

  .section {
    padding: 4rem 0;
  }

  .home-page main > .section:first-child {
    padding-top: 4.5rem;
  }

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

  .image-break,
  .image-break-content {
    min-height: 25rem;
  }

  .process-shell {
    margin-top: -3rem;
    padding: 2rem;
  }

  .process-slide {
    grid-template-columns: 6.5rem minmax(0, 1fr);
    gap: 1.5rem;
    padding: 1.75rem;
  }

  .process-icon {
    width: 6rem;
    height: 6rem;
  }

  .process-icon img {
    width: 3.8rem;
    height: 3.8rem;
  }
}

@media (max-width: 860px) {
  .feature-grid,
  .process-grid,
  .contact-layout,
  .callout-card,
  .process-slide {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: 74vh;
  }

  .hero-home .hero-content {
    min-height: calc(74vh - 7rem);
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }

  .hero-brand-panel {
    align-items: center;
  }

  .process-header {
    flex-direction: column;
    align-items: start;
  }

  .process-controls {
    justify-content: flex-start;
  }

  .process-shell {
    margin-top: 0;
  }

  .process-carousel {
    min-height: 0;
  }

  .process-slide {
    gap: 1.25rem;
  }

  .process-icon {
    margin: 0 auto;
  }

  .callout-card,
  .contact-layout {
    gap: 1.25rem;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.3rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem;
    background: rgba(16, 24, 30, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 30px rgba(10, 18, 26, 0.24);
  }

  .site-nav-dark {
    background: #ffffff;
    border-color: var(--line);
  }

  .site-nav-home {
    background: #ffffff;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.6rem 0;
  }

  .topbar {
    align-items: center;
    flex-wrap: wrap;
    width: calc(100vw - 2rem);
    padding: 0.6rem 0.85rem;
  }

  .hero-nav-bar {
    justify-content: space-between;
    padding-inline: 0.85rem;
    min-height: 3rem;
  }

  .menu-toggle-home {
    display: inline-flex;
  }

  .site-nav-home {
    justify-content: flex-start;
    width: auto;
  }

  .brand {
    max-width: calc(100% - 6rem);
  }

  .brand-logo {
    width: 3.35rem;
    height: 3.35rem;
  }

  .hero-content {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 2.4rem;
  }

  .hero-home {
    min-height: 68vh;
  }

  .hero-home .hero-content {
    min-height: calc(68vh - 6rem);
    padding-top: 5.25rem;
    padding-bottom: 2.6rem;
  }

  .hero-content-contact {
    min-height: auto;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .overlap-panel,
  .process-shell {
    padding: 1.25rem;
  }

  .image-break-content {
    padding-top: 3rem;
  }

  .hero-brand-panel {
    width: 100%;
    gap: 1rem;
    align-items: flex-start;
    padding: 0;
  }

  .hero-brand-logo {
    width: 4.85rem;
  }

  .hero-brand-logo-subpage {
    width: 4.35rem;
  }

  .hero-brand-copy h1 {
    font-size: clamp(1.5rem, 8vw, 2.25rem);
  }

  .hero-brand-copy p {
    font-size: 0.88rem;
  }

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

  .button,
  .button-light {
    width: 100%;
  }

  th,
  td {
    padding: 0.85rem 0.9rem;
    font-size: 0.88rem;
  }

  table {
    min-width: 36rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .home-page main > .section:first-child {
    padding-top: 3.75rem;
  }

  .image-break,
  .image-break-content {
    min-height: 19rem;
  }

  .process-body h3 {
    font-size: 1.35rem;
  }

  .process-body p {
    font-size: 0.96rem;
  }

  .process-arrow {
    width: 3rem;
    height: 3rem;
  }

  .contact-form {
    padding: 1.2rem;
  }

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

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(1100px, calc(100vw - 1.25rem));
  }

  .hero-home {
    min-height: 62vh;
  }

  .hero-home .hero-content {
    min-height: calc(62vh - 5rem);
    padding-top: 4.75rem;
    padding-bottom: 2.1rem;
  }

  .hero-brand-panel {
    gap: 0.75rem;
  }

  .hero-brand-logo {
    width: 4rem;
  }

  .hero-brand-logo-subpage {
    width: 3.8rem;
  }

  .hero-brand-copy h1,
  .hero-brand-copy-subpage h1 {
    font-size: clamp(1.3rem, 8vw, 1.9rem);
  }

  .hero-brand-copy p,
  .hero-brand-copy-subpage p {
    font-size: 0.8rem;
  }

  .hero-nav-bar {
    min-height: 3.25rem;
    padding-inline: 0.65rem;
  }

  .site-nav {
    left: 0.65rem;
    right: 0.65rem;
  }

  .overlap-panel,
  .process-shell,
  .policy-wrap {
    padding: 1rem;
  }

  .feature-card,
  .callout-card {
    padding: 1.25rem;
  }

  .process-icon {
    width: 5rem;
    height: 5rem;
  }

  .process-icon img {
    width: 3.2rem;
    height: 3.2rem;
  }

  .process-step {
    font-size: 0.72rem;
  }

  .contact-form label {
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.8rem 0.85rem;
  }

  table {
    min-width: 32rem;
  }
}
