:root {
  --ink: #171714;
  --charcoal: #242321;
  --muted: #6f685f;
  --line: rgba(23, 23, 20, 0.12);
  --gold: #c9a15f;
  --gold-light: #f6dfad;
  --cream: #f8f3ea;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(17, 17, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

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

img,
video {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 12px clamp(16px, 4vw, 54px);
  background: rgba(30, 29, 27, 0.94);
  border-bottom: 1px solid rgba(246, 223, 173, 0.22);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: auto;
  height: 58px;
  max-width: min(300px, 56vw);
  object-fit: contain;
}

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

.nav a {
  color: #f5efe5;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav a:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.nav a.active {
  color: #171714;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(246, 223, 173, 0.4);
  color: #fff;
  background: transparent;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.page-hero {
  min-height: 62svh;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.42;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.95), rgba(7, 7, 6, 0.72), rgba(7, 7, 6, 0.36)),
    radial-gradient(circle at 25% 20%, rgba(201, 161, 95, 0.26), transparent 32%);
}

.hero-content {
  position: relative;
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
  color: #fff;
}

.hero-logo {
  width: min(460px, 100%);
  border-radius: var(--radius);
  margin-bottom: 28px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.3));
}

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

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

h1 {
  max-width: 840px;
  font-size: clamp(2.45rem, 6vw, 5.7rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.35rem;
}

p {
  line-height: 1.7;
}

.hero-content > p:not(.eyebrow) {
  max-width: 720px;
  color: #e7dfd2;
  font-size: 1.1rem;
}

.hero-actions,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn,
.filters button,
.add-to-quote,
.quote-item button {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 900;
  cursor: pointer;
}

.btn.primary,
.add-to-quote {
  color: #14120e;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.stat-card,
.product-card,
.quote-form,
.quote-cart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 24px;
}

a.stat-card {
  display: block;
}

.stat-card b {
  display: block;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.55;
}

.division-card {
  overflow: hidden;
  padding: 0;
}

.division-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.division-card b,
.division-card span {
  display: block;
  padding-inline: 22px;
}

.division-card b {
  margin-top: 20px;
}

.division-card span {
  padding-bottom: 22px;
}

.stat-card.highlight {
  background: var(--charcoal);
  color: #fff;
}

.stat-card.highlight span {
  color: #e5d8c3;
}

.what-we-do .section-heading p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

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

.feature-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-grid h3,
.feature-grid p {
  padding-inline: 20px;
}

.feature-grid h3 {
  margin-top: 20px;
}

.feature-grid p {
  margin-bottom: 22px;
  color: var(--muted);
}

.showcase-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  align-items: start;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.showcase-grid a {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.showcase-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.showcase-grid b,
.showcase-grid span {
  padding-inline: 20px;
}

.showcase-grid b {
  padding-top: 18px;
  font-size: 1.2rem;
}

.showcase-grid span {
  padding-bottom: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.split-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  margin-bottom: 78px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 23, 20, 0.96), rgba(42, 40, 35, 0.98)),
    radial-gradient(circle at 15% 10%, rgba(201, 161, 95, 0.28), transparent 34%);
  box-shadow: var(--shadow);
}

.split-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: #e4daca;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 18px;
}

.trust-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.trust-section > div:first-child {
  padding: 34px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 23, 20, 0.96), rgba(42, 40, 35, 0.98)),
    radial-gradient(circle at 18% 8%, rgba(201, 161, 95, 0.28), transparent 34%);
  box-shadow: var(--shadow);
}

.trust-section > div:first-child p:not(.eyebrow) {
  color: #e4daca;
}

.trust-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-grid article,
.testimonial-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-grid b {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.trust-grid p,
.testimonial-grid p {
  color: var(--muted);
}

.testimonial-grid article {
  display: grid;
  align-content: space-between;
  min-height: 190px;
}

.testimonial-grid b {
  color: var(--ink);
}

.procurement-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.procurement-band > div:first-child {
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 23, 20, 0.96), rgba(42, 40, 35, 0.98)),
    radial-gradient(circle at 20% 10%, rgba(201, 161, 95, 0.28), transparent 36%);
  box-shadow: var(--shadow);
}

.procurement-band > div:first-child p:not(.eyebrow) {
  color: #e4daca;
}

.procurement-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.procurement-steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.procurement-steps b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #171714;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.procurement-steps p {
  color: var(--muted);
}

.procurement-list {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  align-items: start;
}

.medical-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 36px;
  padding: 80px max(16px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 23, 20, 0.96), rgba(42, 40, 35, 0.98)),
    linear-gradient(90deg, rgba(201, 161, 95, 0.18), transparent);
}

.packaging-section .section-heading p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.packaging-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.packaging-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.packaging-grid h3,
.packaging-grid p {
  padding: 0 20px;
}

.packaging-grid h3 {
  margin-top: 20px;
}

.packaging-grid p {
  margin-bottom: 22px;
  color: var(--muted);
}

.packaging-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.packaging-list b {
  margin-right: 8px;
  align-self: center;
}

.packaging-list span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #f4ead8;
  color: #654916;
  font-weight: 900;
  font-size: 0.86rem;
}

.packaging-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}

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

.packaging-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 17, 15, 0.08);
}

.packaging-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.medical-band p {
  max-width: 680px;
  color: #e4daca;
}

.medical-band ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.medical-band li {
  padding: 16px;
  border: 1px solid rgba(246, 223, 173, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.filters button {
  background: #fff;
  border: 1px solid var(--line);
}

.filters button.active {
  color: #14120e;
  background: var(--gold-light);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 390px;
  padding: 22px;
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: #f2eee7;
  border: 1px solid var(--line);
}

.product-card > span {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  color: #513a13;
  background: #f5dfb0;
  font-size: 0.76rem;
  font-weight: 900;
}

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

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.tags small {
  padding: 6px 8px;
  border-radius: 999px;
  background: #f5f0e8;
  color: #6d5d49;
  font-weight: 800;
}

.quote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.medical-gallery-section .section-heading p:not(.eyebrow) {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}

.medical-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.medical-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 17, 15, 0.08);
}

.medical-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.medical-gallery figure:hover img {
  transform: scale(1.04);
}

.quote-cart {
  min-height: 120px;
  padding: 16px;
}

.quote-cart.empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  box-shadow: none;
  border-style: dashed;
}

.quote-item {
  display: grid;
  grid-template-columns: 1fr 90px auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.quote-item:last-child {
  border-bottom: 0;
}

.quote-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.quote-item input {
  width: 70px;
}

.quote-item button {
  background: #171714;
  color: #fff;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: #4d473f;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.success {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: #173d1c;
  background: #dff4df;
  font-weight: 900;
}

.footer {
  padding: 46px 16px;
  text-align: center;
  color: #d8d2c8;
  background: #171714;
}

.footer img {
  width: min(300px, 90vw);
  border-radius: var(--radius);
}

.footer p {
  max-width: 620px;
  margin: 14px auto 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #f6dfad;
  border: 1px solid rgba(246, 223, 173, 0.25);
}

.small {
  font-size: 0.88rem;
  color: #a7a096;
}

.admin h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

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

td small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #eee5d8;
}

/* MOBILE FIRST HARDENING PASS */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-header,
.section,
.hero-content,
.footer-inner,
.product-card,
.stat-card,
.feature-grid article,
.showcase-grid a,
.quote-form,
.quote-cart {
  min-width: 0;
}

.nav {
  min-width: 0;
}

.nav a,
.btn,
.filters button,
.add-to-quote,
.quote-item button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-card h3,
.feature-grid h3,
.showcase-grid b,
.division-card b,
.stat-card b {
  overflow-wrap: anywhere;
}

.product-image,
.feature-grid img,
.showcase-grid img,
.division-card img,
.medical-gallery img,
.packaging-gallery img {
  display: block;
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    min-height: 70px;
    gap: 12px;
  }

  .brand img {
    height: 52px;
    max-width: min(250px, 58vw);
  }

  .menu-toggle {
    min-height: 44px;
    white-space: nowrap;
  }

  .nav {
    position: fixed;
    top: 78px;
    left: 12px;
    right: 12px;
    max-height: calc(100svh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 80;
  }

  .nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 13px 14px;
    border-radius: 8px;
  }

  .intro-grid,
  .showcase-band,
  .medical-band,
  .quote-section,
  .about-grid,
  .procurement-band,
  .trust-section,
  .procurement-list {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .showcase-grid,
  .trust-grid,
  .testimonial-grid,
  .procurement-steps,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .intro-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .filters {
    width: 100%;
    margin-top: 10px;
  }

  .filters button {
    flex: 1 1 140px;
  }

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

  .table-wrap {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 8px 12px;
  }

  .brand img {
    height: 44px;
    max-width: min(205px, 58vw);
  }

  .menu-toggle {
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .nav {
    top: 64px;
    left: 10px;
    right: 10px;
    max-height: calc(100svh - 76px);
    padding: 10px;
    border-radius: 8px;
  }

  .hero {
    min-height: calc(100svh - 64px);
    align-items: end;
  }

  .page-hero {
    min-height: min(760px, calc(100svh - 64px));
  }

  .hero-video {
    object-position: center center;
    opacity: 0.42;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 7, 6, 0.38), rgba(7, 7, 6, 0.82) 46%, rgba(7, 7, 6, 0.96)),
      radial-gradient(circle at 50% 24%, rgba(201, 161, 95, 0.22), transparent 36%);
  }

  .hero-content {
    width: calc(100% - 24px);
    padding: 34px 0 42px;
  }

  .hero-logo {
    width: min(265px, 82vw);
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.15rem);
    letter-spacing: -0.01em;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
    letter-spacing: -0.01em;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions,
  .filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn,
  .filters button {
    width: 100%;
  }

  .section {
    width: calc(100% - 24px);
    padding: 46px 0;
  }

  .intro-grid,
  .feature-grid,
  .showcase-grid,
  .trust-grid,
  .testimonial-grid,
  .procurement-steps,
  .product-grid,
  .packaging-gallery,
  .packaging-grid {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .product-card,
  .quote-form,
  .quote-cart {
    box-shadow: 0 14px 34px rgba(17, 17, 15, 0.1);
  }

  .product-card {
    min-height: auto;
    padding: 18px;
  }

  .feature-grid h3,
  .feature-grid p,
  .showcase-grid b,
  .showcase-grid span,
  .division-card b,
  .division-card span {
    padding-inline: 16px;
  }

  .medical-band {
    padding: 48px 12px;
  }

  .medical-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quote-section {
    gap: 18px;
  }

  .quote-item {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .quote-item input,
  .quote-item button,
  input,
  textarea,
  select {
    width: 100%;
    font-size: 16px;
  }

  .split-cta {
    padding: 22px;
    margin-bottom: 42px;
  }

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

@media (max-width: 380px) {
  .brand img {
    height: 40px;
    max-width: 180px;
  }

  .menu-toggle {
    padding-inline: 10px;
  }

  .medical-gallery {
    grid-template-columns: 1fr;
  }
}

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

  .nav {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: var(--radius);
    background: #1e1d1b;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .intro-grid,
  .medical-band,
  .quote-section,
  .showcase-band,
  .about-grid,
  .procurement-band,
  .trust-section,
  .procurement-list {
    grid-template-columns: 1fr;
  }

  .showcase-grid,
  .procurement-steps,
  .feature-grid,
  .trust-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .split-cta {
    display: grid;
    padding: 26px;
    margin-bottom: 54px;
  }

  .medical-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-heading {
    display: block;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .intro-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .intro-grid > div:first-child {
    grid-column: 1 / -1;
    max-width: 760px;
  }

  .feature-grid,
  .showcase-grid,
  .trust-grid,
  .testimonial-grid,
  .procurement-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-grid h3,
  .showcase-grid b,
  .trust-grid h3,
  .testimonial-grid b {
    font-size: 1rem;
  }

  .feature-grid p,
  .showcase-grid span,
  .trust-grid p,
  .testimonial-grid p {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand img {
    width: auto;
    height: 50px;
    max-width: min(235px, 64vw);
  }

  .hero {
    min-height: auto;
  }

  .hero-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.34;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 52px 0 66px;
  }

  .hero-logo {
    width: min(340px, 100%);
  }

  h1 {
    font-size: 2.55rem;
  }

  .section {
    width: calc(100% - 28px);
    padding: 54px 0;
  }

  .medical-band {
    padding: 58px 14px;
  }

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

  .medical-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .quote-item {
    grid-template-columns: 1fr;
  }

  .quote-item input {
    width: 100%;
  }
}

/* FINAL MOBILE-FIRST OVERRIDES - keep these last */
@media (max-width: 980px) {
  .site-header {
    min-height: 70px;
    gap: 12px;
  }

  .brand img {
    height: 52px;
    max-width: min(250px, 58vw);
  }

  .nav {
    position: fixed;
    top: 78px;
    left: 12px;
    right: 12px;
    max-height: calc(100svh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 80;
  }

  .nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 13px 14px;
    border-radius: 8px;
  }

  .feature-grid,
  .showcase-grid,
  .trust-grid,
  .testimonial-grid,
  .procurement-steps,
  .product-grid,
  .intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid > div:first-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 8px 12px;
  }

  .brand img {
    height: 44px;
    max-width: min(205px, 58vw);
  }

  .nav {
    top: 64px;
    left: 10px;
    right: 10px;
    max-height: calc(100svh - 76px);
  }

  .hero {
    min-height: calc(100svh - 64px);
    align-items: end;
  }

  .page-hero {
    min-height: min(760px, calc(100svh - 64px));
  }

  .hero-video {
    object-fit: cover;
    object-position: center center;
    opacity: 0.42;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 7, 6, 0.38), rgba(7, 7, 6, 0.82) 46%, rgba(7, 7, 6, 0.96)),
      radial-gradient(circle at 50% 24%, rgba(201, 161, 95, 0.22), transparent 36%);
  }

  .hero-content {
    width: calc(100% - 24px);
    padding: 34px 0 42px;
  }

  .hero-logo {
    width: min(265px, 82vw);
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.15rem);
    letter-spacing: -0.01em;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
    letter-spacing: -0.01em;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions,
  .filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn,
  .filters button {
    width: 100%;
  }

  .section {
    width: calc(100% - 24px);
    padding: 46px 0;
  }

  .intro-grid,
  .feature-grid,
  .showcase-grid,
  .trust-grid,
  .testimonial-grid,
  .procurement-steps,
  .product-grid,
  .packaging-gallery,
  .packaging-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
    padding: 18px;
  }

  .medical-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quote-section {
    gap: 18px;
  }

  .quote-item {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .quote-item input,
  .quote-item button,
  input,
  textarea,
  select {
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .brand img {
    height: 40px;
    max-width: 180px;
  }

  .medical-gallery {
    grid-template-columns: 1fr;
  }
}
