:root {
  --navy: #0a2438;
  --navy-2: #12344c;
  --teal: #008c8a;
  --teal-dark: #006f73;
  --steel: #586a78;
  --line: #d9e3e7;
  --mist: #f3f8f8;
  --white: #ffffff;
  --ink: #172936;
  --muted: #667784;
  --accent: #c2842f;
  --shadow: 0 18px 45px rgba(10, 36, 56, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

[id] {
  scroll-margin-top: 132px;
}

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

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

a:hover,
a:focus {
  color: var(--teal-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

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

.screen-reader-text:focus {
  width: auto;
  height: auto;
  clip: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(10, 36, 56, 0.04);
}

.admin-bar .site-header {
  top: 32px;
}

.top-strip {
  color: var(--white);
  background: var(--navy);
  font-size: 0.88rem;
}

.top-strip__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 3px solid var(--teal);
  border-radius: 7px;
  font-size: 0.95rem;
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy-2);
  font-weight: 700;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__links a {
  padding-block: 6px;
}

.nav__links a[aria-current="page"],
.nav__links .current-menu-item > a,
.nav__links .current_page_item > a {
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--teal-dark);
  border: 1px solid var(--teal-dark);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
}

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

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

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

.button--small {
  min-height: 38px;
  padding: 8px 14px;
}

.button--full {
  width: 100%;
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, #eef7f8 0%, #ffffff 55%, #eaf4f2 100%);
  border-bottom: 1px solid var(--line);
}

.hero__grid,
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: 56px;
  min-height: 560px;
  padding-block: 54px;
}

.hero__content {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 820px;
  font-size: clamp(2.25rem, 6vw, 4.8rem);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.15rem, 4.6vw, 4.05rem);
}

.hero-title-line {
  display: block;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.14rem;
}

p {
  margin: 14px 0 0;
  color: var(--muted);
}

.hero__lead {
  max-width: 660px;
  color: var(--steel);
  font-size: 1.1rem;
}

.hero__actions,
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.hero__facts div {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero__facts dt {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.hero__media,
.page-hero__image {
  margin: 0;
}

.hero__media img,
.page-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero__media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.page-hero {
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.page-hero__grid {
  min-height: 430px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.page-hero--product {
  background: linear-gradient(135deg, var(--mist), #ffffff);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--teal-dark);
}

.section {
  padding-block: 86px;
}

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

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

.section__heading {
  max-width: 780px;
  margin-bottom: 34px;
  text-align: center;
}

.section__heading--left {
  margin-inline: 0;
  text-align: left;
}

.section__heading--light h2,
.section__heading--light p,
.section--navy h2,
.section--navy h3,
.section--navy p {
  color: var(--white);
}

.section--navy .eyebrow {
  color: #7ad5d0;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.product-card,
.application-card,
.info-panel,
.packaging-card,
.detail-aside,
.mini-grid article,
.feature-grid article,
.contact-methods article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(10, 36, 56, 0.05);
}

.product-card__image {
  display: block;
  background: #f8fbfb;
  border-bottom: 1px solid var(--line);
}

.product-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.object-left {
  object-position: 15% 50%;
}

.object-center {
  object-position: 50% 50%;
}

.object-right {
  object-position: 85% 50%;
}

.product-card__body,
.application-card,
.info-panel,
.packaging-card {
  padding: 24px;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-card h2,
.product-card h3,
.application-card h2 {
  font-size: 1.22rem;
}

.tag {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 9px;
  color: var(--teal-dark);
  background: #e6f4f4;
  border: 1px solid #cfe8e7;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 900;
}

.text-link::after {
  content: ">";
  margin-left: 7px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
}

.card-actions .text-link {
  margin-top: 0;
}

.split,
.two-column,
.contact-grid,
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: start;
}

.two-column--center {
  align-items: center;
}

.scenario-list {
  display: grid;
  gap: 14px;
}

.scenario-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scenario-list__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 900;
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 24px;
  color: var(--steel);
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.feature-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-grid--light article {
  background: var(--white);
  border-color: var(--line);
}

.feature-grid--light h3 {
  color: var(--navy);
}

.feature-grid--light p {
  color: var(--muted);
}

.process {
  display: grid;
  gap: 28px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 7px;
  font-weight: 900;
}

.faq {
  max-width: 890px;
}

.faq__list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  padding: 18px 20px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.cta-band {
  padding-block: 48px;
  color: var(--white);
  background: var(--navy-2);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band .eyebrow {
  color: #7ad5d0;
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy);
  background: #edf5f5;
  font-weight: 900;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.detail-aside {
  position: sticky;
  top: 130px;
  padding: 24px;
}

.detail-aside dl {
  display: grid;
  gap: 16px;
  margin: 18px 0 24px;
}

.detail-aside dt {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-aside dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.detail-content {
  display: grid;
  gap: 34px;
}

.product-detail-section {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(10, 36, 56, 0.05);
}

.product-detail-section + .product-detail-section {
  margin-top: 28px;
}

.detail-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

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

.content-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.mini-grid article {
  padding: 22px;
}

.compact-steps {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--steel);
}

.wp-page-content {
  max-width: 900px;
}

.wp-page-content > *:first-child {
  margin-top: 0;
}

.wp-page-content h2,
.wp-page-content h3,
.wp-page-content h4 {
  margin-top: 32px;
}

.wp-page-content ul,
.wp-page-content ol {
  color: var(--steel);
}

.wp-page-content a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wp-page-content .wp-block-image img {
  border-radius: var(--radius);
}

.post-list {
  display: grid;
  gap: 20px;
}

.post-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.post-card h2 {
  font-size: 1.45rem;
}

.pagination {
  margin-top: 18px;
}

.application-card {
  min-height: 260px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-methods article {
  padding: 20px;
}

.contact-methods a {
  color: var(--teal-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inquiry-panel h3 {
  margin-bottom: 8px;
}

.inquiry-panel .form-note {
  margin-top: 0;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row--full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 140, 138, 0.18);
  border-color: var(--teal);
}

.form-note {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  color: #cddce3;
  background: #081c2c;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 1.05fr;
  gap: 32px;
  padding-block: 52px;
}

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

.brand--footer small,
.site-footer p {
  color: #aebfc8;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a:not(.brand) {
	display: block;
	margin-top: 8px;
	color: #cddce3;
	overflow-wrap: anywhere;
}

.site-footer span {
	display: block;
	margin-top: 8px;
	color: #cddce3;
	overflow-wrap: anywhere;
}

.footer__disclaimer {
  margin-top: 14px;
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 118px;
  }

  [id] {
    scroll-margin-top: 118px;
  }

  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% - 1px);
    display: none;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: grid;
    gap: 12px;
  }

  .nav__list {
    display: grid;
    gap: 12px;
  }

  .hero__grid,
  .page-hero__grid,
  .split,
  .two-column,
  .contact-grid,
  .product-detail-grid,
  .detail-section-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid,
  .page-hero__grid {
    min-height: auto;
  }

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

  .detail-aside {
    position: static;
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 112px;
  }

  [id] {
    scroll-margin-top: 112px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .top-strip__inner,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__text {
    max-width: 190px;
  }

  .hero__grid,
  .page-hero__grid {
    gap: 30px;
    padding-block: 40px;
  }

  h1 {
    font-size: clamp(2rem, 13vw, 3.2rem);
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .hero__facts,
  .card-grid--three,
  .card-grid--two,
  .mini-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 58px;
  }

  .product-card__body,
  .application-card,
  .info-panel,
  .packaging-card,
  .detail-aside,
  .inquiry-form {
    padding: 20px;
  }

  .hero__actions,
  .cta-band__actions,
  .card-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero__actions .button,
  .cta-band__actions .button,
  .card-actions .text-link {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
