:root {
  --ink: #092523;
  --muted: #587471;
  --line: rgba(206, 173, 94, 0.32);
  --surface: #ffffff;
  --soft: #ecf8f5;
  --teal: #006b67;
  --teal-dark: #003734;
  --teal-deep: #062624;
  --aqua: #10c4bd;
  --gold: #d8ad47;
  --gold-light: #ffe28a;
  --cream: #f9f4e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--teal-deep);
}

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

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

.top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px clamp(18px, 5vw, 72px);
  color: #fff;
  font-size: 13px;
  background:
    linear-gradient(90deg, rgba(0, 55, 52, 0.96), rgba(0, 107, 103, 0.94)),
    var(--teal-dark);
}

.top-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.top-strip div span:not(:last-child)::after {
  margin-left: 12px;
  color: var(--gold);
  content: "/";
}

.top-strip a {
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 38, 36, 0.94);
  backdrop-filter: blur(14px);
  transition: padding 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(2, 24, 23, 0.98);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.brand,
.nav,
.hero-actions,
.header-actions,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--gold-light);
  font-weight: 800;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(216, 173, 71, 0.45), 0 0 22px rgba(16, 196, 189, 0.22);
}

.nav {
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.nav a:hover {
  color: var(--gold-light);
}

.nav a.active {
  color: var(--gold-light);
}

.header-cta {
  min-height: 40px;
  padding: 10px 18px;
  color: var(--teal-dark);
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.header-actions {
  gap: 10px;
}

.header-actions > a:not(.header-cta) {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(216, 173, 71, 0.36);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 68px clamp(18px, 5vw, 72px) 56px;
  background:
    radial-gradient(circle at 78% 24%, rgba(16, 196, 189, 0.26), transparent 30%),
    radial-gradient(circle at 18% 26%, rgba(216, 173, 71, 0.2), transparent 24%),
    linear-gradient(135deg, #062624 0%, #074844 48%, #021817 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 132px;
  background: linear-gradient(0deg, rgba(2, 24, 23, 0.74), transparent);
  content: "";
  pointer-events: none;
  z-index: -1;
}

.hero-bg-motion {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.glow-ring {
  position: absolute;
  border: 1px solid rgba(255, 226, 138, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(216, 173, 71, 0.24);
  animation: rotateSlow 20s linear infinite;
}

.ring-one {
  right: -90px;
  top: 58px;
  width: 520px;
  height: 520px;
}

.ring-two {
  left: -140px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  animation-duration: 26s;
  animation-direction: reverse;
}

.spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px 8px rgba(255, 226, 138, 0.36);
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.spark-one {
  left: 12%;
  top: 24%;
}

.spark-two {
  right: 18%;
  top: 18%;
  animation-delay: 0.7s;
}

.spark-three {
  right: 34%;
  bottom: 18%;
  animation-delay: 1.2s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(216, 173, 71, 0.38);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px rgba(255, 226, 138, 0.82);
}

.hero-copy {
  max-width: 650px;
}

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

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

h1 {
  margin-bottom: 22px;
  color: #fff8df;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  font-weight: 850;
}

.button::after {
  position: absolute;
  inset: 0;
  width: 46%;
  transform: translateX(-140%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
}

.button:hover::after {
  animation: shimmer 760ms ease;
}

.button.primary {
  color: var(--teal-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 26px rgba(216, 173, 71, 0.22);
}

.button.secondary {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.04);
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: visible;
  border: 1px solid rgba(216, 173, 71, 0.45);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  animation: floatY 6s ease-in-out infinite;
}

.hero-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(216, 173, 71, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: -32px -38px auto auto;
  width: 260px;
  height: 260px;
  animation: rotateSlow 16s linear infinite;
}

.orbit-two {
  left: -48px;
  bottom: -46px;
  width: 180px;
  height: 180px;
  animation: rotateSlow 18s linear infinite reverse;
}

.floating-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 230px;
  padding: 18px;
  border: 1px solid rgba(216, 173, 71, 0.55);
  border-radius: 8px;
  background: rgba(2, 24, 23, 0.78);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  color: var(--gold-light);
}

.floating-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffaf0;
}

.service-row article {
  position: relative;
  padding: 30px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
  transition: transform 220ms ease, background 220ms ease;
}

.service-row article:hover {
  transform: translateY(-6px);
  background: #fff2cf;
}

.service-row article:last-child {
  border-right: 0;
}

.service-row span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 900;
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 86px clamp(18px, 5vw, 72px);
  background: #fffaf0;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.logo-panel {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 24% 18%, rgba(16, 196, 189, 0.36), transparent 28%),
    radial-gradient(circle at 78% 64%, rgba(216, 173, 71, 0.22), transparent 28%),
    linear-gradient(135deg, #031917, #07514d);
}

.logo-panel img {
  aspect-ratio: auto;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.36));
}

.split-copy {
  max-width: 640px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  color: var(--muted);
  background:
    linear-gradient(var(--gold), var(--gold)) 0 10px / 14px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) 6px 4px / 2px 14px no-repeat;
}

.section {
  padding: 86px clamp(18px, 5vw, 72px);
}

.section.muted {
  background:
    linear-gradient(180deg, rgba(236, 248, 245, 0.94), rgba(249, 244, 232, 0.98)),
    var(--soft);
}

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

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card div {
  padding: 24px;
}

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

.product-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 850;
}

.banner-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 78px clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 25, 23, 0.96), rgba(0, 107, 103, 0.58)),
    url("./assets/sowena-hero.png") center / cover;
}

.banner-section h2,
.banner-section p,
.banner-section .eyebrow {
  color: #fff;
}

.banner-section div {
  max-width: 720px;
}

.contact-section {
  align-items: start;
  background:
    radial-gradient(circle at 14% 8%, rgba(216, 173, 71, 0.18), transparent 26%),
    var(--cream);
}

.social-section {
  padding: 86px clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 16%, rgba(16, 196, 189, 0.18), transparent 26%),
    linear-gradient(135deg, #052321, #074844);
}

.social-section h2,
.social-section p {
  color: #fff;
}

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

.social-card {
  display: grid;
  gap: 8px;
  min-height: 172px;
  padding: 24px;
  border: 1px solid rgba(216, 173, 71, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 226, 138, 0.72);
  background: rgba(255, 255, 255, 0.1);
}

.catalogue-page {
  background: var(--cream);
}

.catalogue-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  padding: 88px clamp(18px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(3, 25, 23, 0.92), rgba(0, 107, 103, 0.72)),
    url("./assets/sowena-hero.png") center / cover;
}

.catalogue-hero-copy {
  max-width: 760px;
}

.catalogue-hero h1 {
  max-width: 760px;
}

.catalogue-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.catalogue-content {
  padding: 54px clamp(18px, 5vw, 72px) 110px;
}

.moq-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
  padding: 28px;
  border: 1px solid rgba(216, 173, 71, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 12%, rgba(216, 173, 71, 0.18), transparent 24%),
    #fffaf0;
  box-shadow: 0 18px 48px rgba(6, 38, 36, 0.08);
}

.moq-banner h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 38px);
}

.moq-banner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.moq-banner-pills span {
  padding: 8px 12px;
  border: 1px solid rgba(0, 107, 103, 0.16);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  background: rgba(0, 107, 103, 0.06);
}

.product-filter-panel {
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 38, 36, 0.08);
}

.filter-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.filter-panel-head h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.clear-filters {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(0, 107, 103, 0.22);
  border-radius: 999px;
  color: var(--teal);
  font: inherit;
  font-weight: 850;
  background: transparent;
  cursor: pointer;
}

.product-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.product-tools label {
  display: grid;
  gap: 7px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.input,
.select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(0, 107, 103, 0.18);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  background: #fbfffd;
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.quick-filters button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(216, 173, 71, 0.34);
  border-radius: 999px;
  color: var(--teal-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  background: #fffaf0;
  cursor: pointer;
}

.quick-filters button.is-active {
  color: var(--teal-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.active-filters span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 12px;
  background: rgba(0, 107, 103, 0.08);
}

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

.catalogue-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(6, 38, 36, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.catalogue-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 173, 71, 0.66);
  box-shadow: 0 24px 58px rgba(6, 38, 36, 0.16);
}

.catalogue-card-visual {
  display: grid;
  min-height: 214px;
  place-items: center;
  padding: 26px;
  background:
    radial-gradient(circle at 70% 18%, rgba(216, 173, 71, 0.22), transparent 28%),
    linear-gradient(135deg, #052321, #0a615c);
}

.catalogue-card-visual img {
  width: min(86%, 280px);
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.28));
}

.catalogue-card-body {
  padding: 22px;
}

.catalogue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.catalogue-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(0, 107, 103, 0.08);
}

.catalogue-card h3 {
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.catalogue-card p {
  margin-bottom: 16px;
}

.add-quote {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 900;
  background: #fffaf0;
  cursor: pointer;
}

.add-quote.is-selected {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.table-section {
  margin-top: 56px;
}

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

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

th,
td {
  padding: 16px;
  border-bottom: 1px solid rgba(0, 107, 103, 0.1);
  text-align: left;
}

th {
  color: var(--teal-dark);
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

td strong {
  color: var(--ink);
}

.table-action {
  border: 0;
  color: var(--teal);
  font: inherit;
  font-weight: 900;
  background: transparent;
  cursor: pointer;
}

.quote-drawer {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: calc(100vw - 44px);
  padding: 16px;
  border: 1px solid rgba(216, 173, 71, 0.42);
  border-radius: 8px;
  color: #fff;
  background: rgba(2, 24, 23, 0.92);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.quote-drawer div {
  display: grid;
  gap: 3px;
}

.quote-hint {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.quote-drawer .button {
  min-height: 42px;
}

.quote-drawer .button.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.floating-email {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.social-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card strong {
  color: var(--gold-light);
  font-size: 22px;
}

.social-card small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.contact-box {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.contact-box strong {
  color: var(--ink);
}

.contact-box a {
  color: var(--teal);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.reveal {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 720ms ease;
}

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

.reveal-delay {
  transition-delay: 120ms;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(0.86);
    opacity: 0.52;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes shimmer {
  from {
    transform: translateX(-140%) skewX(-18deg);
  }
  to {
    transform: translateX(260%) skewX(-18deg);
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--teal-deep);
}

.footer-brand img {
  width: 132px;
  max-height: 56px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer div {
  flex-wrap: wrap;
  gap: 18px;
  color: var(--gold-light);
  font-size: 14px;
}

@media (max-width: 980px) {
  .top-strip,
  .site-footer,
  .banner-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .service-row,
  .product-grid,
  .social-grid,
  .products-catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .moq-banner,
  .quote-drawer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .top-strip {
    font-size: 12px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-media,
  .hero-media img {
    min-height: 340px;
  }

  .service-row,
  .product-grid,
  .social-grid,
  .products-catalogue-grid,
  .product-tools {
    grid-template-columns: 1fr;
  }

  .service-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .floating-card {
    right: 14px;
    bottom: 14px;
    min-width: 0;
  }
}
