:root {
  --deep-navy: #081a32;
  --ink-navy: #06111f;
  --primary-navy: #102a56;
  --royal-blue: #3048a0;
  --steel-blue: #426a92;
  --accent-orange: #f0804e;
  --accent-coral: #e86068;
  --off-white: #f5f7fa;
  --light-grey: #e7ebf0;
  --medium-grey: #687384;
  --charcoal: #18212b;
  --white: #ffffff;
  --success: #1b6d4a;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(8, 26, 50, 0.18);
  --heavy-shadow: 0 32px 90px rgba(3, 11, 22, 0.34);
  --container: 1180px;
  --header-height: 82px;
  font-family: Inter, "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #eef3f8 0, var(--off-white) 360px, #ffffff 100%);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid var(--accent-orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--accent-orange);
  color: var(--white);
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 800;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(6, 17, 31, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 17, 31, 0.98);
  box-shadow: 0 14px 34px rgba(3, 11, 22, 0.34);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  min-height: auto;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 750;
  padding: 10px 13px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="true"] {
  color: var(--white);
  border-bottom-color: var(--accent-orange);
}

.primary-nav .nav-quote {
  margin-left: 8px;
  background: var(--accent-orange);
  color: var(--deep-navy);
  border: 0;
  padding-inline: 18px;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(240, 128, 78, 0.24);
}

.primary-nav .nav-quote:hover,
.primary-nav .nav-quote[aria-current="true"] {
  background: #ff9667;
  color: var(--deep-navy);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 6px 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  color: var(--white);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink-navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(240, 128, 78, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(6, 17, 31, 0.96), rgba(8, 26, 50, 0.78) 48%, rgba(24, 33, 43, 0.62)),
    url("../images/hero.jpg") center / cover no-repeat;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--royal-blue), var(--accent-orange), var(--accent-coral));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: end;
  padding-block: 108px 96px;
}

.hero-content {
  max-width: 760px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--accent-orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.08;
  font-weight: 880;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 6.4vw, 5.8rem);
  letter-spacing: -0.025em;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 22px;
  color: inherit;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--accent-orange);
  color: var(--deep-navy);
  box-shadow: 0 18px 34px rgba(240, 128, 78, 0.22);
}

.button-primary:hover {
  background: #ff9667;
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

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

.credibility-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  border: 1px solid var(--panel-border);
  box-shadow: var(--heavy-shadow);
  backdrop-filter: blur(12px);
}

.credibility-panel dl {
  margin: 0;
}

.credibility-panel div {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.credibility-panel div:last-child {
  border-bottom: 0;
}

.credibility-panel dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.credibility-panel dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 850;
}

.section {
  padding-block: 108px;
}

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

.about-grid,
.contact-grid,
.partners-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 64px;
  align-items: start;
}

.contact-grid {
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 0.85fr);
  gap: 44px;
  align-items: stretch;
}

.profile-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 58px;
  background: var(--ink-navy);
  border: 1px solid rgba(8, 26, 50, 0.1);
  box-shadow: var(--shadow);
}

.profile-highlights article {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f5f7fa);
  padding: 28px 24px;
  border-right: 1px solid var(--light-grey);
}

.profile-highlights article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), rgba(48, 72, 160, 0.2));
}

.profile-highlights h3,
.track-record h3 {
  margin: 0;
  color: var(--deep-navy);
  line-height: 1.18;
}

.profile-highlights h3 {
  font-size: 1.05rem;
}

.profile-highlights p,
.track-record p {
  margin: 12px 0 0;
  color: var(--medium-grey);
}

.track-record {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-top: 36px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(240, 128, 78, 0.08), transparent 34%),
    var(--ink-navy);
  color: var(--white);
  box-shadow: var(--heavy-shadow);
}

.track-record h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.track-record p {
  color: rgba(255, 255, 255, 0.72);
}

.track-record__table {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.track-record__table > div {
  display: grid;
  grid-template-columns: 86px minmax(160px, 0.8fr) minmax(220px, 1fr);
}

.track-record__table > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.track-record__table span {
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.82);
}

.track-record__table span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.track-record__table [role="columnheader"] {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-copy p:not(.section-label),
.section-heading p {
  color: var(--medium-grey);
  margin: 18px 0 0;
}

.section h2,
.section-heading h2 {
  color: var(--deep-navy);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.capability-list li {
  position: relative;
  padding: 14px 14px 14px 42px;
  background: var(--off-white);
  border-left: 3px solid var(--accent-orange);
  font-weight: 750;
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--royal-blue);
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.facts-panel {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: min(260px, calc(100% - 32px));
  background: var(--deep-navy);
  color: var(--white);
  padding: 22px;
  border-top: 4px solid var(--accent-orange);
}

.facts-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.facts-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 1.55rem;
}

.products {
  background:
    radial-gradient(circle at 90% 12%, rgba(48, 72, 160, 0.11), transparent 28%),
    linear-gradient(180deg, var(--off-white), #eef3f8);
}

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

.catalogue-state,
.partner-state {
  margin: 28px 0;
  padding: 14px 18px;
  border-left: 4px solid var(--accent-coral);
  background: var(--white);
  color: var(--charcoal);
  font-weight: 750;
}

.catalogue-state.is-error,
.partner-state.is-error {
  border-left-color: var(--accent-coral);
}

.catalogue-state.is-empty,
.partner-state.is-empty {
  border-left-color: var(--royal-blue);
}

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

.category-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.category-card {
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  border: 1px solid rgba(16, 42, 86, 0.1);
  box-shadow: 0 18px 44px rgba(8, 26, 50, 0.08);
  overflow: hidden;
  width: 100%;
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--light-grey);
  filter: saturate(0.92) contrast(1.04);
  transition: transform 220ms ease, filter 220ms ease;
}

.category-card__body {
  padding: 24px;
}

.sample-chip,
.product-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  background: rgba(240, 128, 78, 0.14);
  color: #8d381a;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.category-card h3 {
  margin: 14px 0 8px;
  color: var(--deep-navy);
  font-size: 1.24rem;
  line-height: 1.22;
}

.category-card p {
  margin: 0;
  color: var(--medium-grey);
}

.category-card:focus-visible {
  outline: 3px solid var(--accent-orange);
  outline-offset: 5px;
}

.product-count {
  margin-top: 18px;
  background: rgba(48, 72, 160, 0.1);
  color: var(--royal-blue);
}

.partners {
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 128, 78, 0.1), transparent 30%),
    var(--charcoal);
  color: var(--white);
}

.partners .partners-grid {
  display: block;
}

.partners .section-copy {
  max-width: 820px;
}

.partners h2,
.partners .section-copy p:not(.section-label) {
  color: var(--white);
}

.partners .section-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.partner-panel {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.partner-state {
  margin: 0;
}

.partner-carousel {
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), var(--off-white));
  padding: 24px 0;
  box-shadow: inset 0 1px 0 rgba(8, 26, 50, 0.08), inset 0 -1px 0 rgba(8, 26, 50, 0.08);
}

.partner-carousel__viewport {
  position: relative;
  overflow: hidden;
  padding-block: 4px;
}

.partner-carousel__viewport::before,
.partner-carousel__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 60px;
  pointer-events: none;
}

.partner-carousel__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(245, 247, 250, 0));
}

.partner-carousel__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(245, 247, 250, 0));
}

.partner-carousel__track {
  display: flex;
  gap: 18px;
}

.partner-carousel__track.is-animated {
  width: max-content;
  animation: partner-scroll 34s linear infinite;
}

.partner-carousel:hover .partner-carousel__track,
.partner-carousel:focus-within .partner-carousel__track {
  animation-play-state: paused;
}

.partner-tile {
  flex: 0 0 clamp(180px, 18vw, 250px);
  min-height: 132px;
  display: grid;
  place-items: center;
  text-align: center;
  background: transparent;
  color: var(--deep-navy);
  border: 0;
  padding: 14px;
  text-decoration: none;
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.partner-tile span,
.partner-tile small {
  display: block;
}

.partner-logo {
  max-width: 180px;
  max-height: 82px;
  object-fit: contain;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(8, 26, 50, 0.78);
  padding: 42px 20px;
  overflow-y: auto;
}

.modal-overlay[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.product-modal {
  width: min(100%, 1080px);
  max-height: calc(100svh - 84px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.product-modal__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 28px 30px;
  background: var(--deep-navy);
  color: var(--white);
}

.product-modal__header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.product-modal__header p:not(.section-label) {
  max-width: 70ch;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.modal-close {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: var(--accent-orange);
  color: var(--deep-navy);
}

.product-modal__body {
  overflow-y: auto;
  padding: 30px;
}

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

.product-card {
  border: 1px solid var(--light-grey);
  background: var(--off-white);
  overflow: hidden;
}

.product-image-button {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: var(--light-grey);
  cursor: zoom-in;
}

.product-card img,
.product-image-fallback {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-image-fallback {
  display: grid;
  place-items: center;
  color: var(--medium-grey);
  font-weight: 800;
}

.product-card__body {
  padding: 18px;
}

.product-card h3 {
  margin: 0 0 8px;
  color: var(--deep-navy);
  font-size: 1.05rem;
  line-height: 1.25;
}

.product-card p {
  margin: 0;
  color: var(--medium-grey);
}

.image-viewer-overlay {
  z-index: 120;
  align-items: center;
}

.image-viewer {
  position: relative;
  width: min(100%, 900px);
  background: var(--deep-navy);
  color: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
}

.image-viewer img {
  width: 100%;
  max-height: 70svh;
  object-fit: contain;
  background: var(--charcoal);
}

.image-viewer__close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.image-viewer__text {
  padding: 20px 24px 24px;
}

.image-viewer__text h2 {
  margin: 0;
  font-size: 1.4rem;
}

.image-viewer__text p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.partner-tile span {
  font-weight: 850;
}

.partner-tile small {
  color: var(--medium-grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.contact-card,
.quote-form {
  background: linear-gradient(180deg, #ffffff, var(--off-white));
  border: 1px solid rgba(16, 42, 86, 0.1);
  padding: 32px;
}

.contact-card,
.quote-form,
.category-card,
.product-card {
  border-radius: 0;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-card__intro {
  display: grid;
  gap: 18px;
}

.contact-card address {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 18px;
  background: var(--white);
  border-left: 4px solid var(--accent-orange);
  color: var(--charcoal);
}

.contact-card address strong {
  color: var(--deep-navy);
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-grey);
}

.contact-list li:first-child {
  border-top: 1px solid var(--light-grey);
}

.contact-list span {
  color: var(--royal-blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list a {
  color: var(--deep-navy);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-list em {
  color: var(--medium-grey);
}

.map-panel {
  min-height: 270px;
  background: var(--light-grey);
  border: 1px solid #cad2dd;
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 270px;
  display: block;
  border: 0;
}

.map-link {
  display: inline-flex;
  width: fit-content;
  color: var(--deep-navy);
  font-weight: 850;
}

.quote-form {
  align-self: start;
  box-shadow: var(--heavy-shadow);
}

.form-header h3 {
  margin: 0;
  color: var(--deep-navy);
  font-size: 1.35rem;
}

.form-header p {
  margin: 8px 0 22px;
  color: var(--medium-grey);
}

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

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--deep-navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cad2dd;
  background: var(--white);
  color: var(--charcoal);
  padding: 13px 14px;
  min-height: 50px;
}

.field textarea {
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: var(--medium-grey);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.consent input {
  margin-top: 5px;
}

.form-status {
  padding: 12px 14px;
  background: rgba(27, 109, 74, 0.12);
  border: 1px solid rgba(27, 109, 74, 0.25);
  color: var(--success);
  font-weight: 750;
}

.form-status.is-error {
  background: rgba(232, 96, 104, 0.12);
  border-color: rgba(232, 96, 104, 0.28);
  color: #9b2e34;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 42px;
}

.footer-brand img {
  width: 180px;
  height: auto;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer p {
  margin: 14px 0 0;
}

.site-footer nav a,
.site-footer div a {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-top: 8px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.56);
  text-decoration: none;
}

@media (hover: hover) {
  .category-card:hover {
    transform: translateY(-7px);
    border-color: rgba(240, 128, 78, 0.42);
    box-shadow: 0 28px 70px rgba(8, 26, 50, 0.16);
  }

  .category-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.02) contrast(1.08);
  }
}

.section-observed {
  animation: section-rise 540ms ease both;
  animation-timeline: view();
  animation-range: entry 0% cover 28%;
}

@keyframes section-rise {
  from {
    opacity: 0.72;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 0;
  }

  .primary-nav a {
    padding-inline: 9px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
  }

  .credibility-panel {
    max-width: 620px;
  }

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

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

  .track-record {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

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

  .brand img {
    width: 148px;
  }

  .brand,
  .footer-brand {
    min-height: auto;
    padding: 0;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    align-content: start;
    min-height: calc(100svh - var(--header-height));
    padding: 20px 16px 32px;
    background: var(--deep-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav a {
    justify-content: flex-start;
    min-height: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .primary-nav .nav-quote {
    margin: 18px 0 0;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 72px;
  }

  .section {
    padding-block: 70px;
  }

  .capability-list,
  .form-grid,
  .profile-highlights {
    grid-template-columns: 1fr;
  }

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

  .facts-panel {
    position: static;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .modal-overlay {
    padding: 0;
  }

  .product-modal {
    min-height: 100svh;
    max-height: none;
  }

  .product-modal__header,
  .product-modal__body {
    padding: 22px;
  }

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

  .contact-card,
  .quote-form {
    padding: 22px;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .track-record {
    padding: 22px;
  }

  .track-record__table {
    overflow-x: auto;
  }

  .track-record__table > div {
    min-width: 620px;
  }

  .facts-panel {
    position: static;
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .partner-carousel__track {
    flex-wrap: wrap;
    animation: none !important;
  }
}

/* Admin */
.admin-body,
.admin-login-body {
  min-height: 100vh;
  background: var(--off-white);
}

.admin-login-body {
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-card {
  width: min(100%, 440px);
  background: var(--deep-navy);
  color: var(--white);
  padding: 34px;
  box-shadow: var(--shadow);
}

.admin-login-card img {
  width: 190px;
  margin-bottom: 24px;
}

.admin-login-card h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
}

.admin-login-card p {
  color: rgba(255, 255, 255, 0.74);
}

.admin-login-card .field label {
  color: var(--white);
}

.password-field {
  position: relative;
}

.password-field button {
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-height: 34px;
  border: 0;
  background: var(--light-grey);
  color: var(--deep-navy);
  font-weight: 800;
  cursor: pointer;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--deep-navy);
  color: var(--white);
  padding: 26px;
}

.admin-logo {
  display: inline-flex;
  margin-bottom: 34px;
}

.admin-logo img {
  width: 190px;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav a,
.admin-nav span {
  display: block;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 800;
  border-left: 3px solid transparent;
}

.admin-nav a:hover,
.admin-nav a:focus-visible {
  color: var(--white);
  border-left-color: var(--accent-orange);
  background: rgba(255, 255, 255, 0.08);
}

.admin-nav span {
  color: rgba(255, 255, 255, 0.42);
}

.admin-main-wrap {
  min-width: 0;
  padding: 34px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.admin-topbar h1 {
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.admin-user {
  display: grid;
  justify-items: end;
  gap: 5px;
  font-weight: 800;
}

.admin-user a,
.admin-link-button {
  color: var(--royal-blue);
  font-weight: 850;
}

.admin-flash {
  margin: 0 0 20px;
  padding: 14px 16px;
  background: rgba(27, 109, 74, 0.12);
  border-left: 4px solid var(--success);
  color: var(--success);
  font-weight: 800;
}

.admin-flash--error {
  background: rgba(232, 96, 104, 0.12);
  border-left-color: var(--accent-coral);
  color: #9b2e34;
}

.admin-grid {
  display: grid;
  gap: 18px;
}

.admin-grid--stats {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  margin-bottom: 24px;
}

.admin-stat,
.admin-panel {
  background: var(--white);
  border: 1px solid var(--light-grey);
  box-shadow: 0 16px 44px rgba(8, 26, 50, 0.06);
}

.admin-stat {
  padding: 22px;
}

.admin-stat span {
  display: block;
  color: var(--medium-grey);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.admin-stat strong {
  display: block;
  margin-top: 8px;
  color: var(--deep-navy);
  font-size: 2.1rem;
  line-height: 1;
}

.admin-panel {
  padding: 26px;
  margin-bottom: 24px;
}

.admin-panel h2 {
  margin: 0 0 18px;
  color: var(--deep-navy);
}

.admin-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-panel__header h2 {
  margin: 0;
}

.admin-form,
.admin-filter {
  display: grid;
  gap: 16px;
}

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

.admin-filter {
  grid-template-columns: 1.2fr 1fr 1fr auto auto;
  align-items: end;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  color: var(--deep-navy);
  font-weight: 850;
}

.admin-preview {
  width: 180px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--light-grey);
  background: var(--off-white);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table--wide {
  min-width: 1080px;
}

.admin-table th,
.admin-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--light-grey);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--medium-grey);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table img {
  width: 74px;
  height: 54px;
  object-fit: cover;
  background: var(--off-white);
}

.admin-table img.admin-logo-thumb {
  object-fit: contain;
  background: var(--white);
}

.admin-table small {
  color: var(--medium-grey);
}

.status-chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 3px 9px;
  background: rgba(48, 72, 160, 0.1);
  color: var(--royal-blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.admin-actions form {
  margin: 0;
}

.admin-actions a,
.admin-actions button {
  border: 0;
  background: none;
  color: var(--royal-blue);
  cursor: pointer;
  font-weight: 850;
  padding: 0;
  text-decoration: underline;
}

.admin-actions button {
  color: #9b2e34;
}

.admin-status-form {
  display: grid;
  gap: 8px;
  min-width: 130px;
}

.admin-status-form select {
  min-height: 40px;
  border: 1px solid #cad2dd;
  background: var(--white);
}

.admin-status-form button {
  min-height: 36px;
  border: 0;
  background: var(--royal-blue);
  color: var(--white);
  font-weight: 850;
  cursor: pointer;
}

.admin-preview--logo {
  object-fit: contain;
  background: var(--white);
}

.admin-empty {
  margin: 0;
  padding: 16px;
  background: var(--off-white);
  border-left: 4px solid var(--royal-blue);
  color: var(--medium-grey);
  font-weight: 800;
}

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

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

  .admin-grid--stats,
  .admin-form-grid,
  .admin-filter {
    grid-template-columns: 1fr;
  }

  .admin-main-wrap {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .admin-topbar,
  .admin-panel__header {
    display: grid;
  }

  .admin-user {
    justify-items: start;
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }
}
