:root {
  --ink: #17212b;
  --navy: #0b2b45;
  --blue: #075fa6;
  --teal: #087f86;
  --red: #d52b2b;
  --green: #397660;
  --paper: #ffffff;
  --mist: #f2f6f7;
  --line: #d9e2e5;
  --muted: #5b6770;
  --shadow: 0 18px 44px rgba(11, 43, 69, 0.12);
  --section: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.5vw, 5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-inner,
.nav-shell,
.hero-inner {
  width: min(calc(100% - 40px), var(--section));
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid rgba(11, 43, 69, 0.1);
  background: rgba(255, 255, 255, 0.97);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand img {
  width: 148px;
  height: auto;
}

.brand span {
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-navigation a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 700;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
  color: var(--teal);
}

.primary-navigation .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  color: white;
  background: var(--navy);
  border-radius: 4px;
}

.primary-navigation .nav-cta:hover,
.primary-navigation .nav-cta:focus-visible {
  color: white;
  background: var(--blue);
}

.nav-cta svg,
.button svg,
.text-link svg,
.contact-methods svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.icon-button svg {
  width: 21px;
  height: 21px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 116px));
  overflow: hidden;
  background: #e8f5f6 url("assets/hero-medical-suction.webp") center right / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 62%;
  background: rgba(255, 255, 255, 0.92);
  content: "";
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  border-bottom: 10px solid var(--teal);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 0 58px;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: #42515a;
  font-size: 1.17rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy);
}

.button-secondary {
  color: var(--navy);
  background: white;
  border-color: #aebcc2;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--navy);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 46px;
  color: #40515a;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-notes svg {
  width: 18px;
  color: var(--teal);
}

.products-section,
.capabilities-section,
.quality-section,
.about-section,
.contact-section {
  padding: 104px 0;
}

.section-heading {
  max-width: 710px;
}

.section-heading > p:last-child,
.quality-copy > p,
.about-copy > p,
.contact-copy > p {
  color: var(--muted);
}

.heading-row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 34px;
}

.heading-row > div {
  max-width: 720px;
}

.heading-row > div > p:last-child {
  margin-bottom: 0;
}

.search-box {
  display: flex;
  width: min(100%, 310px);
  flex: 0 0 310px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid #b7c4ca;
  border-radius: 4px;
  background: white;
}

.search-box:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 95, 166, 0.12);
}

.search-box svg {
  width: 19px;
  color: var(--muted);
}

.search-box input {
  width: 100%;
  height: 46px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.filter-button span {
  margin-left: 5px;
  opacity: 0.68;
  font-size: 0.72rem;
}

.product-results-bar {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.product-results-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

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

.product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
  border-color: #aab9bf;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--mist);
}

.product-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-category {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.product-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.91rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 18px;
}

.product-tags span {
  padding: 4px 7px;
  color: #38515c;
  background: var(--mist);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
}

.card-link svg {
  width: 16px;
}

.quote-link {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
}

.empty-state {
  padding: 40px 0;
  color: var(--muted);
  text-align: center;
}

.load-more-row {
  display: flex;
  justify-content: center;
  padding-top: 34px;
}

.load-more-row .button[hidden] {
  display: none;
}

.capabilities-section {
  background: var(--mist);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
  align-items: start;
}

.capability-list {
  border-top: 1px solid #b9c8cd;
}

.capability-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid #b9c8cd;
}

.capability-list article > svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

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

.quality-section {
  color: white;
  background: var(--navy);
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
  align-items: center;
}

.quality-section h2,
.quality-section .eyebrow {
  color: white;
}

.quality-copy > p {
  color: #c5d4dc;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 800;
}

.quality-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.quality-points div {
  min-height: 148px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.quality-points span {
  display: block;
  margin-bottom: 24px;
  color: #7fc5c9;
  font-size: 0.76rem;
  font-weight: 800;
}

.quality-points p {
  margin-bottom: 0;
  color: white;
  font-weight: 700;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
}

.about-copy > p {
  font-size: 1.08rem;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts div {
  display: grid;
  gap: 2px;
  padding: 20px 0;
}

.about-facts div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.about-facts strong {
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1;
}

.about-facts span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.about-copy address {
  display: flex;
  gap: 13px;
  color: var(--navy);
  font-style: normal;
  font-weight: 700;
}

.about-copy address svg {
  width: 21px;
  flex: 0 0 auto;
  color: var(--red);
}

.contact-section {
  background: #eef5f2;
  border-top: 1px solid #d6e3dd;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.contact-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.contact-methods {
  display: grid;
  gap: 10px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  overflow-wrap: anywhere;
  font-weight: 800;
}

.inquiry-form {
  padding: 34px;
  background: white;
  border: 1px solid #ccd9d3;
  border-radius: 6px;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #b8c5c9;
  border-radius: 4px;
  outline: 0;
  background: white;
}

.form-grid input {
  height: 48px;
}

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

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 95, 166, 0.12);
}

.form-span {
  grid-column: 1 / -1;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.site-footer {
  padding: 48px 0;
  color: #c7d4dc;
  background: #071c2c;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand {
  margin-bottom: 17px;
  color: white;
}

.footer-brand img {
  padding: 5px;
  background: white;
}

.footer-inner p {
  margin-bottom: 6px;
  font-size: 0.82rem;
}

.footer-meta {
  max-width: 430px;
  text-align: right;
}

.product-dialog {
  width: min(1000px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(4, 19, 30, 0.3);
}

.product-dialog::backdrop {
  background: rgba(7, 28, 44, 0.72);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: white;
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.dialog-layout > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: contain;
  background: var(--mist);
}

.dialog-content {
  max-height: calc(100svh - 32px);
  padding: 52px 44px 44px;
  overflow-y: auto;
}

.dialog-content h2 {
  font-size: 2.2rem;
}

.dialog-content > p:not(.eyebrow, .verification-status, .verification-note) {
  color: var(--muted);
}

.dialog-section h3 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.dialog-content ul {
  padding-left: 20px;
  color: #35454d;
}

.dialog-content li {
  margin-bottom: 7px;
}

.verification-status {
  display: inline-block;
  margin: 10px 0 0;
  padding: 5px 8px;
  color: #1d5f4a;
  background: #e5f4ed;
  border: 1px solid #b9ddce;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 700;
}

.verification-status[data-status="partial"] {
  color: #71541b;
  background: #fff4d8;
  border-color: #ead293;
}

.verification-status[data-status="pending_verification"] {
  color: #7a3838;
  background: #fbeaea;
  border-color: #ebc4c4;
}

.model-number-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.model-number-list span {
  padding: 4px 7px;
  color: #29414d;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.74rem;
  overflow-wrap: anywhere;
}

#dialog-packaging {
  margin: 0;
  color: #35454d;
}

.verification-note {
  margin: 24px 0;
  padding: 12px 14px;
  color: #4d5d64;
  background: var(--mist);
  border-left: 3px solid var(--teal);
  font-size: 0.8rem;
}

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

  .primary-navigation {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow);
  }

  .primary-navigation.is-open {
    display: grid;
  }

  .primary-navigation a {
    padding: 12px;
  }

  .primary-navigation .nav-cta {
    margin-top: 6px;
  }

  .hero::before {
    width: 72%;
  }

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

  .capability-layout,
  .quality-layout,
  .about-layout,
  .contact-layout {
    gap: 54px;
  }
}

@media (max-width: 760px) {
  .section-inner,
  .nav-shell,
  .hero-inner {
    width: min(calc(100% - 28px), var(--section));
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.45rem);
  }

  h2 {
    font-size: 2rem;
  }

  .brand img {
    width: 124px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 110px);
    background-position: 62% center;
  }

  .hero::before {
    width: 100%;
    background: rgba(255, 255, 255, 0.84);
  }

  .hero-inner {
    justify-content: flex-end;
    padding: 80px 0 44px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 190px;
  }

  .hero-notes {
    display: grid;
    gap: 8px;
    margin-top: 30px;
  }

  .products-section,
  .capabilities-section,
  .quality-section,
  .about-section,
  .contact-section {
    padding: 72px 0;
  }

  .heading-row,
  .capability-layout,
  .quality-layout,
  .about-layout,
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .search-box {
    width: 100%;
    max-width: none;
    flex-basis: auto;
  }

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

  .filter-button {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .quality-points div {
    min-height: 126px;
    padding: 18px;
  }

  .about-copy > p {
    font-size: 1rem;
  }

  .contact-copy {
    position: static;
  }

  .inquiry-form {
    padding: 22px;
  }

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

  .form-span {
    grid-column: auto;
  }

  .footer-inner {
    display: grid;
  }

  .footer-meta {
    text-align: left;
  }

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

  .dialog-layout > img {
    height: 260px;
    min-height: 0;
  }

  .dialog-content {
    max-height: none;
    padding: 32px 22px;
    overflow: visible;
  }

  .dialog-content h2 {
    padding-right: 34px;
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
