
:root {
  --ink: #10202a;
  --ink-2: #183442;
  --muted: #5d6d76;
  --line: #dbe5e8;
  --paper: #f6f8f7;
  --white: #ffffff;
  --accent: #f6b53f;
  --accent-2: #24a87a;
  --danger: #ef6f4d;
  --shadow: 0 24px 70px rgba(16, 32, 42, 0.13);
  --radius: 22px;
  --max: 1180px;
  --header-height: 114px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 99;
  background: var(--accent);
  color: var(--ink);
  padding: .75rem 1rem;
  border-radius: .5rem;
}
.skip-link:focus { left: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246, 248, 247, .92);
  border-bottom: 1px solid rgba(16, 32, 42, .1);
}
.top-bar {
  background: var(--ink);
  color: rgba(255,255,255,.88);
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: .45rem 1rem;
  font-size: .88rem;
}
.top-bar a { color: #fff; text-decoration: none; }
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: max-content;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #ffe09a);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -.04em;
  box-shadow: inset 0 -10px 22px rgba(16,32,42,.12);
}
.brand small, .brand strong { display: block; line-height: 1.05; }
.brand small { color: var(--muted); margin-top: .2rem; font-size: .8rem; }
.site-menu {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin-left: auto;
}
.site-menu a {
  text-decoration: none;
  padding: .7rem .72rem;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: .94rem;
}
.site-menu a:hover,
.site-menu a[aria-current="page"] {
  background: #e6ecec;
}
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .8rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  border: 0;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(246,181,63,.28);
  cursor: pointer;
}
.button.secondary {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}
.menu-button { display: none; }
.hero {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(4rem, 6vw, 6.8rem) max(1rem, calc((100vw - var(--max)) / 2 + 1rem)) clamp(3rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(300px, .72fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #10202a url("../img/hero-video-poster.jpg") center / cover no-repeat;
  box-shadow: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 84% 16%, rgba(246,181,63,.28), transparent 30%),
    linear-gradient(90deg, rgba(16,32,42,.96) 0%, rgba(16,32,42,.86) 46%, rgba(16,32,42,.54) 100%);
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}
.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-copy { max-width: 760px; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { color: #fff; }
.hero p,
.hero .hero-intro { color: rgba(255,255,255,.82); }
.hero .hero-points li { color: rgba(255,255,255,.9); }
.hero .button.secondary {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--accent-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .78rem;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 {
  font-size: clamp(2.55rem, 5vw, 5.15rem);
  margin: 0 0 1.2rem;
  max-width: 980px;
}
h2 { font-size: clamp(2rem, 3vw, 3.2rem); margin: 0 0 1rem; }
h3 { font-size: 1.28rem; margin: 0 0 .75rem; }
p { color: var(--muted); }
.hero-intro {
  font-size: 1.2rem;
  max-width: 760px;
  margin-bottom: 1.4rem;
}
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; margin: 1.3rem 0; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: .55rem;
}
.hero-points li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink-2);
  font-weight: 700;
}
.hero-points li::before, .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 900;
}
.hero-visual {
  aspect-ratio: 5 / 3;
  min-height: 0;
  border-radius: 30px;
  padding: .55rem;
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(255,255,255,.46);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  overflow: hidden;
}
.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 24px;
}
.hero-photo-caption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: .5rem .7rem;
  border-radius: 999px;
  background: rgba(16,32,42,.88);
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .02em;
}
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1rem;
}
.section-head { max-width: 820px; margin-bottom: 2rem; }
.section-head.compact { max-width: 760px; }
.section-head p { font-size: 1.08rem; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}
.trust-strip div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
}
.trust-strip strong { display: block; font-size: 1.35rem; }
.trust-strip span { color: var(--muted); font-size: .94rem; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.card, .list-card, .panel, .contact-card, .enquiry-form, .related-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: 0 12px 32px rgba(16,32,42,.05);
}
.card { min-height: 250px; display: flex; flex-direction: column; }
.card p { flex: 1; }
.card-media {
  margin: -1.45rem -1.45rem 1rem;
  height: 178px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 18px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7faf9);
}
.card-media img {
  width: 100%;
  height: 100%;
  padding: .8rem;
  object-fit: contain;
}
.product-showcase {
  padding-top: 3rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(16,32,42,.06);
  display: grid;
  grid-template-rows: 220px 1fr;
}
.product-image {
  background: linear-gradient(180deg, #fff, #f7faf9);
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}
.product-image img {
  width: 100%;
  height: 100%;
  padding: 1rem;
  object-fit: contain;
}
.product-copy {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.product-copy span {
  color: var(--accent-2);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-copy p { flex: 1; }
.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: #edf3f1;
  color: var(--accent-2);
  font-weight: 900;
  font-size: .78rem;
}
.text-link {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  width: fit-content;
}
.text-link.light { color: #fff; border-bottom-color: var(--accent); }
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 1.4rem;
  align-items: start;
}
.panel {
  background: #10202a;
  color: #fff;
  border-color: rgba(255,255,255,.08);
}
.panel p, .panel li { color: rgba(255,255,255,.82); }
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .75rem; }
.check-list li { position: relative; padding-left: 1.75rem; }
.list-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.list-card ul { columns: 2; padding-left: 1.1rem; color: var(--muted); }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.step {
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step span {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  font-weight: 900;
  margin-bottom: 1rem;
}
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 720px; background: var(--white); }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--ink); color: #fff; }
td:first-child { font-weight: 800; color: var(--ink); }
.notice {
  background: linear-gradient(135deg, rgba(246,181,63,.18), rgba(36,168,122,.12));
  border-top: 1px solid rgba(16,32,42,.08);
  border-bottom: 1px solid rgba(16,32,42,.08);
  max-width: none;
  padding-left: max(1rem, calc((100vw - var(--max))/2 + 1rem));
  padding-right: max(1rem, calc((100vw - var(--max))/2 + 1rem));
}
.notice > div { max-width: 880px; }
.contact-block { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1rem; align-items: start; }
.enquiry-form { display: grid; gap: .9rem; }
.enquiry-form label { display: grid; gap: .35rem; font-weight: 800; }
.enquiry-form input, .enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .9rem 1rem;
  font: inherit;
  background: #fbfdfc;
}
.form-note { font-size: .88rem; margin: 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.related-card { display: grid; gap: .45rem; text-decoration: none; }
.related-card span { color: var(--accent-2); font-weight: 900; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.related-card strong { font-size: 1.1rem; }
.related-card small { color: var(--muted); font-size: .92rem; }
.faq-list { display: grid; gap: .75rem; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.15rem;
}
summary { cursor: pointer; font-weight: 900; font-size: 1.05rem; }
.cta-band {
  max-width: var(--max);
  margin: 2rem auto 5rem;
  padding: 2rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--ink), #193946);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-band p { color: rgba(255,255,255,.78); }
.cta-actions { display: grid; gap: .9rem; justify-items: end; }
.site-footer {
  background: #0b161d;
  color: #fff;
  padding: 4rem 1rem 1.5rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 2rem;
}
.site-footer p, .site-footer small { color: rgba(255,255,255,.68); }
.site-footer a { display: block; color: rgba(255,255,255,.78); text-decoration: none; margin: .4rem 0; }
.site-footer a:hover { color: #fff; }
.site-footer h2 { font-size: 1rem; margin-top: 0; letter-spacing: 0; }
.footer-bottom {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}
@media (max-width: 980px) {
  .top-bar { flex-wrap: wrap; }
  .menu-button {
    display: inline-flex;
    margin-left: auto;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 999px;
    padding: .7rem .9rem;
    font-weight: 900;
  }
  .site-menu {
    position: absolute;
    left: 1rem; right: 1rem; top: calc(100% - .4rem);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: .8rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .site-menu.is-open { display: flex; }
  .site-menu a { border-radius: 12px; }
  .header-cta { display: none; }
  .hero, .split-section, .contact-block, .cta-band { grid-template-columns: 1fr; }
  .hero {
    --header-height: 104px;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    padding-top: 3rem;
  }
  .hero-visual { min-height: 300px; aspect-ratio: 16 / 9; }
  .card-grid, .trust-strip, .process-grid, .related-grid, .footer-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .nav-wrap { padding: .75rem 1rem; }
  .brand small { display: none; }
  .top-bar span { display: none; }
  .hero {
    --header-height: 92px;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    padding: 2.4rem 1rem 2rem;
  }
  .hero-visual { display: none; }
  .section { padding: 3rem 1rem; }
  .card-grid, .trust-strip, .process-grid, .related-grid, .footer-grid, .list-grid, .product-grid { grid-template-columns: 1fr; }
  .list-card ul { columns: 1; }
  .cta-band { margin-inline: 1rem; padding: 1.5rem; }
  .footer-bottom { flex-direction: column; }
  h1 { font-size: clamp(2.25rem, 13vw, 3.4rem); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg-video { display: none; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


/* v5 layout refinements: full-screen hero, cleaner grid, less clutter */
:root {
  --header-height: 126px;
}
html {
  scroll-padding-top: calc(var(--header-height) + 1rem);
}
.section,
.cta-band {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}
.hero {
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  min-height: 560px;
  padding-top: clamp(1.6rem, 4vh, 3.4rem);
  padding-bottom: clamp(1.6rem, 4vh, 3.4rem);
  grid-template-columns: minmax(0, 1.03fr) minmax(280px, .57fr);
  gap: clamp(1rem, 2.6vw, 2.2rem);
  align-content: center;
  overflow: hidden;
}
.hero::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(246,181,63,.32), transparent 28%),
    linear-gradient(90deg, rgba(16,32,42,.94) 0%, rgba(16,32,42,.82) 47%, rgba(16,32,42,.38) 100%);
}
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero-copy {
  max-width: 720px;
}
.hero h1 {
  font-size: clamp(2.45rem, 4.45vw, 4.75rem);
  max-width: 820px;
  margin-bottom: 1rem;
}
.hero-intro {
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.55;
  margin-bottom: 1.05rem;
}
.hero-actions {
  margin: 1.05rem 0;
}
.hero-points {
  margin-top: 1rem;
  gap: .42rem;
}
.hero-points li {
  font-size: .96rem;
  line-height: 1.38;
}
.hero-visual {
  aspect-ratio: 4 / 3;
  max-height: min(43svh, 360px);
  align-self: center;
  border-radius: 26px;
  padding: .45rem;
}
.hero-photo {
  object-fit: cover;
  border-radius: 20px;
}
.hero-photo.product-hero-photo {
  object-fit: contain;
}
.hero-photo-caption {
  display: none;
}
.trust-strip {
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
}
.card-grid,
.product-grid,
.related-grid,
.process-grid {
  align-items: stretch;
  gap: 1.25rem;
}
.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.card,
.product-card,
.related-card,
.step {
  height: 100%;
  min-width: 0;
  overflow: hidden;
}
.card {
  min-height: 0;
}
.card-media {
  height: 176px;
  margin-bottom: 1.05rem;
  background: #fff;
}
.card-media img {
  width: 100%;
  height: 100%;
  padding: .65rem;
  object-fit: contain;
}
.product-showcase {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}
.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}
.product-card {
  grid-template-rows: 178px 1fr;
}
.product-image {
  background: #fff;
}
.product-image img {
  width: 100%;
  height: 100%;
  padding: .7rem;
  object-fit: contain;
}
.product-copy {
  padding: 1rem 1.05rem 1.1rem;
}
.product-copy h3,
.card h3 {
  margin-bottom: .55rem;
}
.product-copy p,
.card p {
  margin-top: 0;
}
.section + .section {
  padding-top: 3.75rem;
}
@media (min-width: 981px) and (max-height: 760px) {
  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
    grid-template-columns: minmax(0, 1.08fr) minmax(250px, .48fr);
  }
  .hero h1 {
    font-size: clamp(2.15rem, 3.7vw, 3.95rem);
    margin-bottom: .7rem;
  }
  .hero-intro {
    font-size: .98rem;
    margin-bottom: .75rem;
  }
  .hero-actions {
    margin: .75rem 0;
  }
  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .35rem .85rem;
  }
  .hero-points li {
    font-size: .84rem;
    padding-left: 1.35rem;
  }
  .hero-visual {
    max-height: 280px;
  }
}
@media (max-width: 980px) {
  .hero {
    height: auto;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
  .hero-visual {
    max-height: none;
  }
}
@media (max-width: 680px) {
  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .hero-points li {
    font-size: .93rem;
  }
  .card-media {
    height: 160px;
  }
  .product-card {
    grid-template-rows: 165px 1fr;
  }
}

/* v6 fixes: video-only hero and uncropped product card images */
.hero {
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: start;
  align-items: center;
  align-content: center;
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  min-height: clamp(520px, calc(100svh - var(--header-height)), 760px);
  max-height: 780px;
  padding-top: clamp(2rem, 5vh, 4rem);
  padding-bottom: clamp(2rem, 5vh, 4rem);
}
.hero::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(246,181,63,.34), transparent 30%),
    linear-gradient(90deg, rgba(16,32,42,.96) 0%, rgba(16,32,42,.88) 52%, rgba(16,32,42,.45) 100%);
}
.hero-bg-video {
  object-fit: cover;
  object-position: center center;
}
.hero-copy {
  max-width: 900px;
}
.hero h1 {
  max-width: 960px;
}
.hero-intro {
  max-width: 820px;
}
.hero-visual {
  display: none !important;
}
.card-grid,
.product-grid,
.related-grid,
.process-grid {
  gap: 1.35rem;
}
.card,
.product-card {
  overflow: hidden;
}
.card-media {
  height: clamp(230px, 21vw, 280px);
  margin: -1.45rem -1.45rem 1.25rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}
.card-media img,
.product-image img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center;
  padding: 0 !important;
  margin: auto;
}
.product-card {
  grid-template-rows: 250px 1fr;
}
.product-image {
  padding: 1rem;
  overflow: hidden;
  background: #fff;
}
@media (min-width: 981px) and (max-height: 760px) {
  .hero {
    height: calc(100svh - var(--header-height));
    min-height: clamp(470px, calc(100svh - var(--header-height)), 620px);
    max-height: none;
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }
  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .hero {
    height: auto;
    min-height: calc(100svh - var(--header-height));
    max-height: none;
  }
  .card-media {
    height: 235px;
  }
}
@media (max-width: 680px) {
  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .card-media {
    height: 220px;
  }
  .product-card {
    grid-template-rows: 220px 1fr;
  }
}


/* v7 customer-focused polish: distinct product images and fully visible grid media */
.card-grid {
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.45rem);
}
.card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-media {
  width: calc(100% + 2.9rem);
  height: auto !important;
  min-height: 250px;
  aspect-ratio: 16 / 10;
  margin: -1.45rem -1.45rem 1.25rem;
  padding: clamp(1rem, 1.9vw, 1.4rem) !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.card-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 0 !important;
  margin: 0 auto !important;
}
.product-card {
  grid-template-rows: minmax(250px, auto) 1fr;
}
.product-image {
  min-height: 250px;
  padding: clamp(1rem, 1.8vw, 1.35rem) !important;
  display: grid;
  place-items: center;
}
.product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}
.section-head p {
  max-width: 900px;
}
@media (min-width: 981px) {
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-media { min-height: clamp(260px, 19vw, 320px); }
}
@media (max-width: 980px) {
  .card-media { min-height: 245px; }
  .product-image { min-height: 235px; }
}
@media (max-width: 680px) {
  .card-media { min-height: 230px; aspect-ratio: 4 / 3; }
  .product-image { min-height: 220px; }
}
