:root {
  --ink: #14201e;
  --deep: #1c2b28;
  --gold: #b58a4a;
  --forest: #243b32;
  --taupe: #a58f7a;
  --terracotta: #c96f4a;
  --paper: #f5f5f2;
  --line: #d9dbd5;
  --muted: #66706d;
  --white: #fff;
  --serif: "Playfair Display", serif;
  --sans: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  max-width: 100%;
}
html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
}
img {
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.site-header {
  min-height: 0;
  padding: 9px clamp(20px, 5vw, 76px) 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(36, 59, 50, 0.97);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--terracotta);
  color: var(--white);
}
.brand {
  order: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.2;
}
.brand-copy h1 {
  margin: 0;
  color: var(--white);
  font: 700 38px/1.05 var(--serif);
  letter-spacing: 0.01em;
}
.brand-description {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  width: auto;
  padding: 3px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.brand-description strong {
  color: var(--white);
  font-weight: 700;
}
.brand-description .brand-delivery {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}
.brand-description .brand-services {
  color: #ffd8c8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}
.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  border-radius: 10px;
  background: #07101d;
  box-shadow: 0 3px 14px rgba(8, 17, 29, 0.22);
}
.site-header nav {
  order: 3;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  width: 100%;
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
  font-weight: 600;
}
.site-header nav a:hover {
  color: #ffd8c8;
}
.site-header nav::-webkit-scrollbar {
  display: none;
}
.site-header nav a.active {
  color: #ffd8c8;
  border-bottom: 2px solid var(--terracotta);
}
.page-hidden {
  display: none !important;
}
.nav-cta {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: transparent;
  color: #ffd8c8 !important;
}
.menu-toggle {
  order: 3;
  position: absolute;
  top: 12px;
  right: 12px;
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.55);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}
.eyebrow span {
  color: var(--muted);
  margin-left: 8px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 13px 18px;
  border-radius: 2px;
  font-weight: 600;
  white-space: nowrap;
}
.button.dark {
  background: var(--terracotta);
  color: var(--white);
}
.hero {
  height: min(58vh, 620px);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background: #0b241e;
}
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slides {
  overflow: hidden;
}
.hero-slide {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 1.1s ease,
    transform 7s ease;
  background: #0b241e;
}
.hero-slide.compact-hero-slide {
  object-fit: contain;
  padding: 0 7vw;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.04);
  animation: hero-pan 10s ease-in-out both;
}
@keyframes hero-pan {
  0% {
    transform: scale(1.04) translateX(-1.2%);
  }
  50% {
    transform: scale(1.05) translateX(1.2%);
  }
  100% {
    transform: scale(1.04) translateX(-1.2%);
  }
}
.hero-dots {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 7vw, 110px);
  bottom: 26px;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.hero-dots button.active {
  background: #fff;
}
.section {
  padding: 100px clamp(20px, 7vw, 110px);
}
.section-heading {
  max-width: 790px;
  margin-bottom: 44px;
}
.section h2,
.contact h2 {
  font: 500 clamp(36px, 4.8vw, 68px)/1.08 var(--serif);
  margin: 8px 0 16px;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
}
.capabilities {
  background: #12201e;
  color: #f8f6ef;
}
.capabilities .section-heading > p:last-child {
  color: #b8c0bd;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #394542;
  border-left: 1px solid #394542;
}
.service-engagement-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  border: 1px solid #394542;
  background: #394542;
}
.service-engagement-strip article {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: #1d302b;
}
.service-engagement-strip strong {
  color: #c9a76c;
  font: 500 23px var(--serif);
}
.service-engagement-strip span {
  color: #b8c0bd;
  font-size: 14px;
}
.cap-card {
  min-height: 235px;
  padding: 26px;
  border: 0;
  border-right: 1px solid #394542;
  border-bottom: 1px solid #394542;
  background: transparent;
  color: inherit;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.25s;
}
.cap-card:hover,
.cap-card:focus-visible {
  background: #20312e;
  transform: translateY(-4px);
  outline: none;
}
.cap-card .num {
  font-family: var(--serif);
  font-size: 42px;
  color: #6e7b77;
}
.cap-card h3 {
  font: 500 24px/1.15 var(--serif);
  margin: 28px 0 8px;
}
.cap-card span:last-child {
  color: #c9a76c;
  font-size: 13px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}
.home-about {
  background: #ecece7;
}
.home-about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0 26px;
}
.home-about-points article {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: #fff;
  border-top: 3px solid var(--gold);
}
.home-about-points strong {
  font: 500 48px var(--serif);
  color: var(--gold);
}
.home-about-points span {
  color: var(--muted);
}
.home-destinations {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px;
  margin-top: 28px;
}
.about-detail {
  background: #12201e;
  color: var(--white);
}
.about-detail .eyebrow {
  color: #d5ae69;
}
.about-detail-intro {
  max-width: 850px;
  margin-bottom: 46px;
}
.about-detail-intro > p:last-child,
.about-detail .prose {
  color: #c6cfca;
}
.about-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}
.about-detail .prose h3,
.about-detail-card h3 {
  margin-top: 0;
  color: var(--white);
  font: 500 30px/1.15 var(--serif);
}
.about-detail .prose h3:not(:first-child) {
  margin-top: 34px;
}
.about-detail .prose ul {
  margin: 18px 0 0;
  padding-left: 22px;
}
.about-detail .prose li {
  margin: 0 0 10px;
}
.about-detail-card {
  align-self: start;
  padding: 28px;
  border: 1px solid #445650;
  background: #1d302b;
  color: #c6cfca;
}
.about-detail-card p {
  margin: 0 0 14px;
}
.about-detail-card p:last-child {
  margin-bottom: 0;
}
.about-detail .metrics {
  border-color: #445650;
  margin-top: 50px;
}
.about-detail .metrics div {
  border-color: #445650;
}
.about-detail .metrics span {
  color: #c6cfca;
}
.prose {
  font-size: 18px;
  color: #4e5956;
}
.metrics {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metrics div {
  padding: 30px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
}
.metrics div:last-child {
  border: 0;
}
.metrics strong {
  font: 500 56px var(--serif);
  color: var(--gold);
}
.metrics span {
  max-width: 150px;
}
.products {
  background: #ecece7;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #cfd2cc;
  border: 1px solid #cfd2cc;
}
.product-grid article {
  background: #f7f7f4;
  padding: 32px;
}
.product-grid h3 {
  font: 500 25px var(--serif);
  margin: 0 0 10px;
}
.product-grid p {
  color: var(--muted);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-subheading {
  max-width: 760px;
  margin: 80px 0 30px;
}
.project-subheading h3 {
  font: 500 clamp(30px, 4vw, 50px)/1.1 var(--serif);
  margin: 8px 0 12px;
}
.project-subheading > p:last-child {
  color: var(--muted);
  font-size: 17px;
}
.project-card {
  background: #fff;
}
.project-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #e1e2de;
}
.project-card div {
  padding: 25px;
}
.project-card span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.project-card h3 {
  font: 500 27px var(--serif);
  margin: 8px 0;
}
.project-card p {
  color: var(--muted);
}
.project-benefits-toggle,
.project-read-more-toggle {
  margin-top: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1e5b50;
  font: 600 13px var(--sans);
  cursor: pointer;
}
.project-read-more {
  margin-top: 10px;
}
.project-benefits {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}
.project-benefits ul {
  margin: 0;
  padding-left: 18px;
}
.project-benefits li {
  margin-bottom: 7px;
}
.sports-material-panel {
  margin-top: 34px;
  padding: 32px;
  border: 1px solid var(--line);
  background: #f7f4ed;
}
.sports-material-panel h3 {
  max-width: 760px;
  font: 500 clamp(28px, 3vw, 42px)/1.12 var(--serif);
  margin: 8px 0 14px;
}
.sports-material-panel > p:not(.eyebrow):not(.sports-material-footer) {
  max-width: 900px;
  color: var(--muted);
}
.sports-material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 25px;
  border: 1px solid var(--line);
  background: var(--line);
}
.sports-material-grid article {
  padding: 20px;
  background: #fff;
}
.sports-material-grid h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font: 600 18px var(--sans);
}
.sports-material-grid p,
.sports-material-footer {
  color: var(--muted);
  font-size: 14px;
}
.sports-material-grid p {
  margin: 0;
}
.sports-material-footer {
  margin: 22px 0 0;
}
.disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 30px;
}
.clients {
  background: #fff;
}
.client-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.client-cloud span {
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 999px;
  background: #fafaf8;
}
.experience-note {
  max-width: 920px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.experience-note p {
  margin: 0 0 10px;
}
.sectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #dfe4df;
}
.sector-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sector-list span {
  padding: 18px;
  background: rgba(255, 255, 255, 0.55);
  border-left: 3px solid var(--gold);
}
.contact {
  padding: 90px clamp(20px, 7vw, 110px);
  background: #b68c51;
  color: #12201e;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: 60px;
  overflow: hidden;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.contact-panel {
  display: grid;
  gap: 18px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.55);
}
.contact-form label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(18, 32, 30, 0.3);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
}
.contact-form textarea,
.contact-submit {
  grid-column: 1 / -1;
}
.contact-submit {
  justify-self: start;
  border: 0;
  padding: 11px 16px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}
.contact-cards article {
  background: rgba(255, 255, 255, 0.55);
  padding: 15px 18px;
  display: grid;
  grid-template-columns: 112px minmax(240px, 1fr) auto;
  align-items: center;
  gap: 12px;
}
.contact-cards small {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.contact-cards strong {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  overflow-wrap: normal;
}
.contact-cards .email-line {
  min-width: 0;
  white-space: nowrap;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.contact-action {
  font-weight: 600;
  margin-top: 0;
}
footer {
  padding: 13px clamp(20px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: var(--taupe);
  color: var(--white);
  font-size: 12px;
  line-height: 1.4;
  border-top: 3px solid var(--terracotta);
}
.footer-main,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 16px;
}
.footer-main a:hover {
  text-decoration: underline;
}
.footer-meta {
  opacity: .92;
  font-size: 11px;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(4, 9, 8, 0.78);
  padding: 24px;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal.open {
  display: flex;
}
.modal-panel {
  position: relative;
  background: #f7f7f3;
  width: min(1100px, 96vw);
  max-height: 90vh;
  overflow: auto;
  overscroll-behavior: contain;
}
.modal-close {
  position: sticky;
  float: right;
  top: 14px;
  margin: 14px 14px 0 0;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #aeb4b0;
  background: #fff;
  font-size: 28px;
  cursor: pointer;
}
.modal-body {
  padding: 48px;
}
.modal-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}
.modal-body h2 {
  font: 500 clamp(34px, 5vw, 62px)/1.05 var(--serif);
  margin: 8px 60px 16px 0;
}
.modal-intro {
  font-size: 18px;
  color: var(--muted);
  max-width: 760px;
}
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 32px 0;
}
.modal-gallery img {
  width: 100%;
  height: 180px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #e1e2de;
  cursor: zoom-in;
}
.modal-gallery img:first-child {
  grid-row: auto;
  height: 180px;
}
.modal-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.modal-details ul {
  columns: 2;
  padding-left: 20px;
}
.modal-details li {
  margin-bottom: 8px;
}
.video-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.video-links a {
  padding: 11px 15px;
  background: var(--ink);
  color: #fff;
}
.modal-note {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .site-header nav {
    display: flex;
    position: static;
    align-self: stretch;
    width: 100%;
    margin-top: 7px;
    padding: 8px 0 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    flex-direction: row;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .menu-toggle {
    display: none;
  }
  .hero {
    min-height: 400px;
  }
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .sectors,
  .contact {
    grid-template-columns: 1fr;
  }
  .about-detail-grid {
    grid-template-columns: 1fr;
  }
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sports-material-grid {
    grid-template-columns: 1fr 1fr;
  }
  .modal-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .modal-gallery img:first-child {
    grid-row: auto;
    grid-column: 1/-1;
  }
  .modal-details {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .site-header {
    min-height: 0;
    padding: 7px 12px 8px;
  }
  .brand {
    gap: 7px;
  }
  .brand-logo {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
  .brand-copy h1 {
    font-size: 23px;
  }
  .brand-description {
    justify-content: flex-start;
    gap: 2px 7px;
    padding: 4px 58px 0 0;
    font-size: 11.5px;
    line-height: 1.25;
  }
  .brand-description .brand-delivery {
    margin-left: 4px;
  }
  .brand-description .brand-services {
    font-size: 11px;
  }
  .site-header nav {
    gap: 14px;
    font-size: 13px;
  }
  .section {
    padding: 70px 18px;
  }
  .sports-material-panel {
    padding: 22px 18px;
  }
  .sports-material-grid {
    grid-template-columns: 1fr;
  }
  .eyebrow span {
    display: block;
    margin: 4px 0 0;
  }
  .hero {
    height: 48vh;
    min-height: 300px;
    max-height: 480px;
  }
  .hero-slide.compact-hero-slide {
    padding: 0 2vw;
  }
  .hero-overlay {
    left: 20px;
    right: 20px;
    bottom: 28px;
  }
  .cap-grid,
  .service-engagement-strip,
  .project-grid,
  .product-grid,
  .metrics,
  .sector-list,
  .home-about-points {
    grid-template-columns: 1fr;
  }
  .cap-card {
    min-height: 190px;
  }
  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .modal {
    padding: 0;
  }
  .modal-panel {
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
  }
  .modal-body {
    padding: 24px;
  }
  .modal-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .modal-gallery img,
  .modal-gallery img:first-child {
    min-width: 88vw;
    height: 220px;
    scroll-snap-align: center;
  }
  .modal-details ul {
    columns: 1;
  }
  .contact {
    padding: 70px 18px;
  }
  .contact-cards,
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-cards article {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .contact-cards strong {
    font-size: 12px;
  }
  .home-destinations {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 12px 18px;
  }
  .footer-main,
  .footer-meta {
    gap: 4px 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-slide {
    transition: none;
    transform: none;
  }
  .hero-slide.active {
    transform: none;
    animation: none;
  }
}

/* Clickable product ranges */
.products .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: transparent;
  border: 0;
}
.product-card {
  position: relative;
  border: 1px solid #d2d4cf;
  background: #f7f7f4;
  padding: 0;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: 0.25s;
  color: inherit;
}
.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(18, 32, 30, 0.12);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.product-card img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  background: #fff;
}
.product-card span {
  display: block;
  color: var(--gold);
  font: 500 13px var(--sans);
  letter-spacing: 0.12em;
  padding: 24px 28px 0;
}
.product-card h3 {
  font: 500 27px var(--serif);
  margin: 7px 28px 10px;
}
.product-card p {
  color: var(--muted);
  margin: 0 28px 18px;
}
.product-card strong {
  display: block;
  margin: 0 28px 26px;
  font-size: 13px;
  color: #1e3531;
}
.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.product-item {
  border: 1px solid var(--line);
  background: #fff;
}
.product-item img {
  width: 100%;
  height: 190px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f5f5f1;
  cursor: zoom-in;
}
.product-item-steamer img {
  height: 250px;
  background: #fff;
}
.project-card img {
  cursor: zoom-in;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(4, 9, 8, 0.9);
}
.image-lightbox.open {
  display: flex;
}
.image-lightbox img {
  width: min(1100px, 92vw);
  height: min(82vh, 760px);
  object-fit: contain;
  background: #101b18;
}
.image-lightbox button {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.product-item div {
  padding: 15px;
}
.product-item h3 {
  font: 500 19px var(--serif);
  margin: 0 0 5px;
}
.product-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.product-full-list {
  margin: 24px 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
}
.product-full-list h3 {
  font: 500 24px var(--serif);
  margin: 0 0 14px;
}
.product-full-list ul {
  columns: 2;
  column-gap: 36px;
  margin: 0;
  padding-left: 20px;
}
.product-full-list li {
  break-inside: avoid;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}
.product-video {
  margin: 24px 0;
  padding: 18px 20px;
  background: #ece9df;
  border-left: 4px solid var(--gold);
}
.product-video a {
  display: inline-block;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.product-video p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.product-category-list {
  color: var(--muted);
  font-size: 15px;
}
@media (max-width: 600px) {
  .products .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card img {
    height: 210px;
  }
  .product-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-item img {
    height: 145px;
  }
  .product-item-steamer img {
    height: 190px;
  }
  .product-full-list ul {
    columns: 1;
  }
}
