:root {
  --steel: #1a2b3c;
  --steel-deep: #0f1a24;
  --steel-soft: #243447;
  --surface: #f4f7fa;
  --surface-2: #e8eef4;
  --white: #ffffff;
  --text: #152535;
  --muted: #5a6b7d;
  --accent: #e07a2f;
  --accent-hover: #c96824;
  --accent-2: #2d8cff;
  --accent-dim: rgba(224, 122, 47, 0.12);
  --border: rgba(21, 37, 53, 0.1);
  --shadow: 0 12px 40px rgba(15, 26, 36, 0.08);
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-display: "IBM Plex Serif", Georgia, serif;
  --max: 1140px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
}

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

a {
  color: var(--accent-2);
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--pad);
  z-index: 500;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 0 0 6px 6px;
}

.skip-link:focus {
  top: 0;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.site-header__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem var(--pad);
  background: var(--steel-deep);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
}

.site-header__phone {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.site-header__phone:hover {
  color: var(--accent);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}

.site-logo__img {
  width: 2.85rem;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(15, 26, 36, 0.22));
}

.site-logo__text {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
}

.site-logo__text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--steel);
  border-radius: 2px;
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
  margin: 0;
  padding: 0;
}

.site-nav__item {
  position: relative;
}

.site-nav a,
.site-nav__trigger {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav__trigger:hover {
  color: var(--steel);
}

.site-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.15rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.site-nav__chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s;
}

.site-nav__submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 15.5rem;
  margin: 0;
  padding: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 120;
}

.site-nav__submenu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
}

.site-nav__submenu a:hover {
  background: var(--surface);
  color: var(--steel);
}

.site-nav__item--dropdown:hover .site-nav__submenu,
.site-nav__item--dropdown:focus-within .site-nav__submenu,
.site-nav__item--dropdown.is-open .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__item--dropdown:hover .site-nav__chevron,
.site-nav__item--dropdown:focus-within .site-nav__chevron,
.site-nav__item--dropdown.is-open .site-nav__chevron {
  transform: rotate(225deg) translateY(1px);
}

.site-nav__cta {
  display: inline-flex;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  background: var(--accent);
  color: var(--white) !important;
}

.site-nav__cta:hover {
  background: var(--accent-hover);
  color: var(--white) !important;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s;
}

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

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

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

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--block {
  width: 100%;
}

.btn--small {
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
}

.btn--ghost-dark {
  background: var(--white);
  color: var(--steel);
  border-color: var(--border);
}

.btn--ghost-dark:hover {
  border-color: var(--steel);
  background: var(--surface);
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  padding: 4rem var(--pad);
  background: linear-gradient(145deg, var(--steel-deep) 0%, var(--steel) 55%, #1e3348 100%);
  color: var(--white);
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero__mark {
  margin: 0;
  padding: 0.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  box-shadow: none;
}

.hero__mark img {
  display: block;
  width: clamp(92px, 15vw, 128px);
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
}

.hero__content {
  min-width: 0;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  max-width: 14ch;
}

.hero__lead {
  margin-top: 1.25rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__badges {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__badges li {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  min-width: 120px;
}

.hero__badges strong {
  display: block;
  font-size: 1rem;
  color: var(--accent);
}

.hero__badges span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Trust strip ── */

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-strip__list {
  list-style: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust-strip__list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--steel);
}

.trust-strip__list span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Sections ── */

.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--pad);
}

.section-head__index {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head__title {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--steel);
}

.section-head__desc {
  margin-top: 0.75rem;
  max-width: 36rem;
  color: var(--muted);
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-head__desc {
  margin-left: auto;
  margin-right: auto;
}

/* ── About ── */

.about {
  background: var(--white);
}

.about__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.about__copy p + p {
  margin-top: 1rem;
  color: var(--muted);
}

.about__cards {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
}

.info-card h3 {
  font-size: 1rem;
  color: var(--steel);
}

.info-card p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── Products ── */

.products {
  background: var(--surface);
}

.product-grid {
  list-style: none;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

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

.product-card__icon {
  font-size: 1.5rem;
}

.product-card h3 {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  color: var(--steel);
}

.product-card p {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── Services ── */

.services {
  background: var(--white);
}

.services__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.service-list {
  list-style: none;
  margin-top: 2rem;
  grid-column: 1;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.service-item:last-child {
  border-bottom: 1px solid var(--border);
}

.service-item__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

.service-item h3 {
  font-size: 1.05rem;
  color: var(--steel);
}

.service-item p {
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.coverage-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--steel) 0%, var(--steel-soft) 100%);
  color: var(--white);
}

.coverage-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.coverage-card__provinces {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.coverage-card__provinces li {
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 500;
}

.coverage-card__provinces li::before {
  content: "→ ";
  color: var(--accent);
}

.coverage-card__note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Team ── */

.team {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.team__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

.team-dept {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.team-dept__title {
  font-size: 1rem;
  color: var(--steel);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.team-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

.team-member {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.35rem 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.team-member:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.team-member strong {
  display: block;
  color: var(--steel);
}

.team-member span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.team-member a {
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.team-member a:hover {
  text-decoration: underline;
}

.team-member__contact {
  display: grid;
  gap: 0.2rem;
  text-align: right;
}

.team-list--compact .team-member {
  align-items: center;
}

.team-dept__note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.team-dept__note a {
  font-weight: 700;
  text-decoration: none;
}

.team-dept__note a:hover {
  text-decoration: underline;
}

/* ── Accreditation ── */

.accreditation {
  background: var(--surface);
}

.doc-grid {
  list-style: none;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.doc-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.doc-card h3 {
  font-size: 1.05rem;
  color: var(--steel);
}

.doc-card p {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.doc-card__ref {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  background: var(--accent-dim);
  color: var(--accent-hover);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.doc-card__gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-2);
  text-decoration: none;
}

.doc-card__gallery-link:hover {
  text-decoration: underline;
}

.doc-card__gallery-link::before {
  content: "📷";
  font-size: 0.9rem;
}

/* ── Media galleries ── */

.product-gallery {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.product-gallery__heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--steel);
  text-align: center;
}

.product-gallery__hint {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.product-gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.75rem 0 1rem;
}

.product-gallery__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.22s var(--ease);
}

.product-gallery__tab:hover {
  border-color: var(--steel);
  color: var(--steel);
}

.product-gallery__tab.is-showcase-active {
  border-color: rgba(45, 140, 255, 0.35);
  color: var(--steel);
  box-shadow: 0 0 0 1px rgba(45, 140, 255, 0.12);
}

.product-gallery__tab.is-active {
  background: var(--steel);
  border-color: var(--steel);
  color: var(--white);
}

.product-gallery__tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(15, 26, 36, 0.08);
}

.product-gallery__tab.is-active .product-gallery__tab-count {
  background: rgba(255, 255, 255, 0.18);
}

.product-gallery__showcase {
  position: relative;
  margin: 0 auto;
  max-width: 520px;
}

.product-gallery__showcase-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.product-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.product-gallery__slide.is-changing {
  opacity: 0;
  transform: scale(0.985);
}

.product-gallery__slide-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}

.product-gallery__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: productShowcaseKenBurns 14s ease-in-out infinite alternate;
}

.product-gallery__slide.is-changing .product-gallery__slide-img {
  animation: none;
}

@keyframes productShowcaseKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.product-gallery__showcase-note {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: 0.74rem;
  color: var(--muted);
}

.product-gallery__slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 26, 36, 0.78) 0%, rgba(15, 26, 36, 0.08) 55%, transparent 100%);
  pointer-events: none;
}

.product-gallery__slide-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem 0.9rem 0.85rem;
  text-align: left;
  pointer-events: none;
}

.product-gallery__slide-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.product-gallery__slide-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.product-gallery__slide-caption {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
}

.product-gallery__showcase-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.product-gallery__showcase-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--white);
  color: var(--steel);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}

.product-gallery__showcase-btn:hover {
  border-color: var(--steel);
  background: var(--surface);
}

.product-gallery__showcase-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.product-gallery__showcase-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 99px;
  background: var(--border);
  cursor: pointer;
  transition: all 0.25s;
}

.product-gallery__showcase-dot.is-active {
  width: 1.35rem;
  background: var(--accent);
}

.product-gallery__panels {
  margin-top: 1.25rem;
}

.product-gallery__panel {
  animation: productPanelIn 0.35s var(--ease);
}

.product-gallery__panel[hidden] {
  display: none !important;
}

.product-gallery__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.product-gallery__panel-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--steel);
}

.product-gallery__panel-count {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.product-gallery__panel-close {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.product-gallery__panel-close:hover {
  border-color: var(--steel);
  color: var(--steel);
}

.product-gallery.has-open-panel .product-gallery__showcase {
  opacity: 0.92;
}

@keyframes productPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0 1.25rem;
}

.gallery-filter {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-filter:hover {
  border-color: var(--steel);
  color: var(--steel);
}

.gallery-filter.is-active {
  background: var(--steel);
  border-color: var(--steel);
  color: var(--white);
}

.media-gallery {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.media-gallery--products {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.product-gallery__panel .media-gallery--products {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}

.media-gallery--certs {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.media-gallery__item {
  transition: opacity 0.3s, transform 0.3s;
}

.media-gallery__item.is-hidden {
  display: none;
}

.media-gallery__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.media-gallery__trigger:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.media-gallery__trigger img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.media-gallery__item--landscape .media-gallery__trigger img {
  aspect-ratio: 4 / 3;
}

.media-gallery__item--portrait .media-gallery__trigger img {
  aspect-ratio: 3 / 4;
}

.media-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.85rem;
  background: linear-gradient(to top, rgba(15, 26, 36, 0.82), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s;
}

.media-gallery__trigger:hover .media-gallery__overlay,
.media-gallery__trigger:focus-visible .media-gallery__overlay {
  opacity: 1;
}

.media-gallery__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.cert-galleries {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
}

.cert-gallery-block {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  scroll-margin-top: 6rem;
}

.cert-gallery-block__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.cert-gallery-block__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--steel);
  margin-top: 0.25rem;
}

.cert-gallery-block__back {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-2);
  text-decoration: none;
}

.cert-gallery-block__back:hover {
  text-decoration: underline;
}

/* ── Compliance downloads ── */

.compliance-docs {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.compliance-doc {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  scroll-margin-top: 6rem;
}

.compliance-doc__info {
  display: grid;
  gap: 0.2rem;
}

.compliance-doc__title {
  color: var(--steel);
  font-size: 0.95rem;
}

.compliance-doc__caption {
  font-size: 0.82rem;
  color: var(--muted);
}

.compliance-doc__viewer {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.compliance-doc__viewer--image {
  padding: 0;
  cursor: zoom-in;
  border: none;
  background: transparent;
}

.compliance-doc__viewer--image:focus-visible {
  outline: 2px solid rgba(45, 140, 255, 0.45);
  outline-offset: 3px;
}

.compliance-doc__preview {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.compliance-doc__viewer--pdf,
.compliance-doc__viewer--file {
  min-height: 420px;
  height: min(70vh, 520px);
}

/* ── Lightbox ── */

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(15, 26, 36, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.75rem;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.lightbox__close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.lightbox__figure {
  max-width: min(92vw, 720px);
  margin: 0;
}

.lightbox__img {
  width: 100%;
  border-radius: 8px;
}

.lightbox__caption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ── Contact ── */

.contact {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact__copy p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.contact__details {
  list-style: none;
  margin-top: 1.5rem;
}

.contact__details li + li {
  margin-top: 1rem;
}

.contact__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__details a {
  font-weight: 600;
  text-decoration: none;
}

.contact__details address {
  font-style: normal;
  font-weight: 500;
  color: var(--text);
}

.contact__phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

.contact__phones a {
  white-space: nowrap;
}

.contact__phones--stacked {
  display: grid;
  gap: 0.2rem;
}

.contact__sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact__details a:hover {
  text-decoration: underline;
}

.contact-form {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  display: grid;
  gap: 1rem;
}

.contact-form label span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--steel);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(45, 140, 255, 0.35);
  border-color: var(--accent-2);
}

.contact-form__note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

.contact-form__notice {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
}

.contact-form__notice--success {
  background: rgba(34, 120, 60, 0.1);
  border: 1px solid rgba(34, 120, 60, 0.25);
  color: #1a5c32;
}

.contact-form__notice--error {
  background: rgba(180, 40, 40, 0.08);
  border: 1px solid rgba(180, 40, 40, 0.25);
  color: #8b2020;
}

/* WordPress admin bar offset when logged in */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* ── Footer ── */

.site-footer {
  background: var(--steel-deep);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.5rem var(--pad) 3rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}

.site-footer__logo {
  width: 2rem;
  height: auto;
  opacity: 0.92;
}

.site-footer__tagline {
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__copy {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  opacity: 0.5;
}

/* ── Reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__mark {
    justify-self: center;
  }

  .hero__actions,
  .hero__badges {
    justify-content: center;
  }

  .hero__title,
  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

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

  .about__grid,
  .contact__grid,
  .services__layout,
  .team__grid {
    grid-template-columns: 1fr;
  }

  .coverage-card {
    grid-column: 1;
    grid-row: auto;
  }

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

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

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--pad) 1.25rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

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

  .site-nav__item {
    border-top: 1px solid var(--border);
  }

  .site-nav__item:first-child {
    border-top: none;
  }

  .site-nav__trigger,
  .site-nav__item > a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 0;
  }

  .site-nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0.5rem 0.75rem;
    display: none;
  }

  .site-nav__item--dropdown.is-open .site-nav__submenu {
    display: block;
  }

  .site-nav__submenu a {
    white-space: normal;
    padding: 0.5rem 0;
  }

  .site-nav__cta {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .site-header__inner {
    position: relative;
    flex-wrap: wrap;
  }

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

  .hero__badges {
    flex-direction: column;
  }
}

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

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