:root {
  --ink: #151515;
  --ink-soft: #343434;
  --paper: #f5f4f0;
  --white: #ffffff;
  --line: #d8d6cf;
  --muted: #65645f;
  --cyan: #05c7d9;
  --cyan-dark: #007b86;
  --coral: #ff5538;
  --coral-dark: #d93c25;
  --yellow: #ffcb3d;
  --shadow: 0 14px 34px rgba(21, 21, 21, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
body.drawer-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 68px;
  padding: 8px 3.5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { width: max-content; display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-size: 18px; font-weight: 950; letter-spacing: 0; }
.brand small { margin-top: 5px; color: var(--coral-dark); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: 0; }
.site-header nav { display: flex; align-items: center; gap: 30px; }
.site-header nav a { color: var(--ink-soft); font-size: 14px; font-weight: 750; text-decoration: none; }
.site-header nav a:hover { color: var(--coral-dark); }
.request-button {
  justify-self: end;
  min-height: 44px;
  padding: 0 8px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}
.request-button:hover { background: var(--coral-dark); border-color: var(--coral-dark); }
.request-button svg { width: 18px; height: 18px; }
.request-button b { min-width: 28px; height: 28px; padding: 0 7px; display: grid; place-items: center; border-radius: 4px; background: var(--yellow); color: var(--ink); font-size: 12px; }

.hero {
  position: relative;
  min-height: 540px;
  height: calc(100vh - 130px);
  max-height: 670px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-shade { position: absolute; inset: 0; background: rgba(10, 10, 10, 0.34); }
.hero-shade::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 58%; background: rgba(12, 12, 12, 0.79); }
.hero-content { position: relative; z-index: 2; width: min(760px, 92vw); padding: 64px 3.5vw 138px; }
.eyebrow { margin: 0 0 13px; color: var(--yellow); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
.eyebrow.dark { color: var(--coral-dark); }
.hero h1 { max-width: 680px; margin: 0; font-size: 76px; font-weight: 950; line-height: 0.9; letter-spacing: 0; }
.hero-lead { max-width: 660px; margin: 22px 0 0; color: var(--white); font-size: 27px; font-weight: 800; line-height: 1.15; }
.hero-copy { max-width: 590px; margin: 14px 0 0; color: #e5e5e2; font-size: 16px; }
.hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button svg { width: 18px; height: 18px; }
.button.primary { background: var(--coral); color: var(--white); }
.button.primary:hover { background: var(--coral-dark); }
.button.secondary { border-color: rgba(255,255,255,.72); background: rgba(15,15,15,.52); color: var(--white); }
.button.secondary:hover { border-color: var(--cyan); color: var(--cyan); }
.button.outline { border-color: var(--ink); background: var(--white); color: var(--ink); }
.button.outline:hover { background: var(--paper); }
.button.wide { width: 100%; }
.hero-proof {
  position: absolute;
  z-index: 2;
  left: 3.5vw;
  bottom: 24px;
  min-height: 72px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.34);
  border-bottom: 1px solid rgba(255,255,255,.34);
}
.hero-proof span { min-width: max-content; padding: 13px 28px; color: #dededb; font-size: 13px; }
.hero-proof span:first-child { padding-left: 0; }
.hero-proof span + span { border-left: 1px solid rgba(255,255,255,.28); }
.hero-proof strong { margin-right: 6px; color: var(--white); font-size: 22px; }

.catalogue { padding: 66px 3.5vw 88px; }
.section-heading { max-width: 1640px; margin: 0 auto 28px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading h2, .details-band h2, .drawer-header h2 { margin: 0; font-size: 40px; line-height: 1.05; letter-spacing: 0; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); }
.catalogue-tools { max-width: 1640px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.search-field { position: relative; width: min(350px, 100%); flex: 0 0 auto; }
.search-field svg { position: absolute; left: 13px; top: 13px; width: 19px; height: 19px; color: #77766f; }
.search-field input { width: 100%; height: 46px; padding: 0 14px 0 42px; border: 1px solid #bcbab2; border-radius: 6px; background: var(--white); color: var(--ink); outline: none; }
.search-field input:focus { border-color: var(--cyan-dark); box-shadow: 0 0 0 3px rgba(5,199,217,.17); }
.filters { min-width: 0; padding: 3px; display: flex; align-items: center; gap: 3px; overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; background: var(--white); }
.filters button { min-height: 38px; padding: 0 13px; flex: 0 0 auto; border: 0; border-radius: 4px; background: transparent; color: #4e4d49; font-size: 13px; font-weight: 800; white-space: nowrap; cursor: pointer; }
.filters button:hover { background: var(--paper); }
.filters button.active { background: var(--ink); color: var(--white); }
.results { max-width: 1640px; min-height: 22px; margin: 0 auto 12px; color: #73716b; font-size: 13px; }
.product-grid { max-width: 1640px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.product-card { min-width: 0; height: 100%; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--white); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.product-card:hover { transform: translateY(-2px); border-color: #b9b7b0; box-shadow: var(--shadow); }
.product-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #e8e7e2; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-tag { position: absolute; left: 9px; top: 9px; padding: 4px 7px; border-radius: 4px; background: rgba(21,21,21,.9); color: var(--white); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.product-body { min-height: 232px; padding: 14px; display: flex; flex: 1; flex-direction: column; }
.product-title-row { min-height: 48px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: 10px; }
.product-title-row h3 { min-width: 0; margin: 0; font-size: 16px; line-height: 1.22; }
.price { flex: 0 0 auto; color: var(--coral-dark); font-size: 17px; font-weight: 950; text-align: right; }
.product-body > p { min-height: 63px; margin: 7px 0 9px; color: #62615c; font-size: 12.5px; line-height: 1.45; }
.bundle-deal, .bundle-placeholder { min-height: 25px; margin-bottom: 9px; display: inline-flex; align-items: center; gap: 6px; color: var(--cyan-dark); font-size: 12px; font-weight: 900; }
.bundle-deal svg { width: 14px; height: 14px; }
.product-footer { margin-top: auto; min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.colour-note { color: #77766f; font-size: 10.5px; font-weight: 750; }
.add-button { min-width: 58px; height: 38px; padding: 0 12px; flex: 0 0 auto; border: 0; border-radius: 5px; background: var(--ink); color: var(--white); font-size: 13px; font-weight: 850; cursor: pointer; }
.add-button:hover, .add-button.added { background: var(--coral-dark); }
.empty-state { max-width: 1640px; margin: 40px auto; padding: 50px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.empty-state h3 { margin: 0; font-size: 25px; }
.empty-state p { margin: 7px 0 0; color: var(--muted); }

.details-band { padding: 76px 3.5vw; display: grid; grid-template-columns: minmax(300px, .9fr) minmax(520px, 1.1fr); gap: 7vw; background: var(--ink); color: var(--white); }
.details-band > div:first-child { max-width: 650px; }
.details-band h2 { max-width: 620px; font-size: 43px; }
.detail-list { display: grid; gap: 0; }
.detail-list > div { min-height: 86px; padding: 17px 0; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 14px; border-bottom: 1px solid rgba(255,255,255,.17); }
.detail-list svg { width: 25px; color: var(--cyan); }
.detail-list span { display: grid; color: #c7c7c3; font-size: 13px; }
.detail-list strong { margin-bottom: 3px; color: var(--white); font-size: 16px; }

footer { padding: 40px 3.5vw 26px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px 40px; background: #090909; color: #c9c9c5; }
.footer-brand { color: var(--white); }
.footer-brand small { color: var(--yellow); }
footer > p { grid-column: 1 / -1; margin: 0; }
.footer-links { display: flex; gap: 20px; }
.footer-links a, .footer-links button { padding: 0; border: 0; background: none; color: var(--white); font-weight: 750; text-decoration: none; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--cyan); }
footer > small { grid-column: 1 / -1; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.13); }

.backdrop { position: fixed; inset: 0; z-index: 90; background: rgba(3,3,3,.7); }
.request-drawer { position: fixed; z-index: 100; top: 0; right: 0; width: min(500px, 100%); height: 100%; padding: 24px; overflow-y: auto; background: var(--white); box-shadow: -20px 0 50px rgba(0,0,0,.25); transform: translateX(105%); transition: transform .22s ease; }
.request-drawer.open { transform: translateX(0); }
.drawer-header { padding-bottom: 18px; display: flex; align-items: start; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { font-size: 34px; }
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 5px; background: var(--white); cursor: pointer; }
.icon-button:hover { background: var(--paper); }
.icon-button svg { width: 20px; }
.request-items { margin-top: 8px; display: grid; gap: 0; }
.request-empty { padding: 40px 0; color: var(--muted); text-align: center; border-bottom: 1px solid var(--line); }
.request-line { padding: 14px 0; display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }
.request-line img { width: 58px; height: 58px; border-radius: 5px; object-fit: cover; }
.request-line-info { min-width: 0; display: grid; }
.request-line-info strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.request-line-info span { color: #6c6b66; font-size: 12px; }
.quantity { display: grid; grid-template-columns: 30px 28px 30px; align-items: center; }
.quantity button { width: 30px; height: 30px; border: 1px solid var(--line); background: var(--white); cursor: pointer; }
.quantity span { text-align: center; font-size: 13px; font-weight: 850; }
.request-form { margin-top: 22px; display: grid; gap: 14px; }
.request-form > label { display: grid; gap: 6px; }
.request-form label > span, .request-form legend { font-size: 13px; font-weight: 850; }
.request-form input[type="text"], .request-form textarea { width: 100%; padding: 11px 12px; border: 1px solid #bbb9b1; border-radius: 5px; color: var(--ink); outline: none; resize: vertical; }
.request-form input:focus, .request-form textarea:focus { border-color: var(--cyan-dark); box-shadow: 0 0 0 3px rgba(5,199,217,.16); }
.request-form fieldset { margin: 0; padding: 10px 12px 12px; display: flex; gap: 24px; border: 1px solid var(--line); border-radius: 5px; }
.request-form fieldset label { display: flex; align-items: center; gap: 7px; }
.request-total { padding: 14px 0; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.request-total strong { font-size: 22px; text-align: right; }
.fine-print { margin: 0; color: #6a6964; font-size: 12px; }
.toast { position: fixed; z-index: 140; left: 50%; bottom: 24px; max-width: calc(100% - 32px); padding: 11px 16px; border-radius: 5px; background: var(--ink); color: var(--white); font-size: 14px; font-weight: 750; opacity: 0; pointer-events: none; transform: translate(-50%, 12px); transition: opacity .2s ease, transform .2s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1320px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero h1 { font-size: 68px; }
}

@media (max-width: 1040px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-shade::after { width: 70%; }
  .details-band { grid-template-columns: 1fr 1fr; }
  .catalogue-tools { align-items: stretch; flex-direction: column; }
  .search-field { width: 100%; }
  .filters { width: 100%; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; padding: 8px 16px; }
  .site-header nav { display: none; }
  .request-button span { display: none; }
  .hero { min-height: 580px; height: calc(100vh - 96px); max-height: 700px; }
  .hero-media { object-position: 68% center; }
  .hero-shade { background: rgba(8,8,8,.44); }
  .hero-shade::after { width: 100%; background: rgba(8,8,8,.52); }
  .hero-content { width: 100%; padding: 62px 20px 142px; }
  .hero h1 { font-size: 56px; }
  .hero-lead { font-size: 23px; }
  .hero-copy { font-size: 15px; }
  .hero-proof { left: 20px; right: 20px; overflow-x: auto; }
  .hero-proof span { padding: 11px 18px; }
  .catalogue { padding: 54px 16px 68px; }
  .section-heading { align-items: start; }
  .section-heading h2, .details-band h2 { font-size: 34px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-body { min-height: 230px; padding: 12px; }
  .product-title-row { grid-template-columns: 1fr; gap: 4px; min-height: 67px; }
  .price { text-align: left; }
  .details-band { padding: 60px 20px; grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .brand strong { font-size: 16px; }
  .brand small { font-size: 9px; }
  .brand img { width: 40px; height: 40px; }
  .hero h1 { font-size: 52px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof span:nth-child(3) { display: none; }
  .section-heading { display: grid; gap: 13px; }
  .section-heading h2 { font-size: 32px; }
  .product-title-row h3 { font-size: 14px; }
  .price { font-size: 16px; }
  .product-body > p { min-height: 69px; font-size: 11.5px; }
  .colour-note { display: none; }
  .product-footer { justify-content: flex-end; }
  .add-button { width: 100%; }
  footer { padding: 36px 20px 24px; grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .request-drawer { padding: 18px; }
}

@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-title-row { grid-template-columns: minmax(0, 1fr) auto; min-height: 48px; }
  .price { text-align: right; }
  .product-body > p { min-height: 56px; }
}

@media (max-width: 480px) and (max-height: 720px) {
  .hero-content { padding-top: 38px; }
  .hero h1 { font-size: 47px; }
  .hero-lead { margin-top: 17px; font-size: 21px; }
  .hero-copy { margin-top: 10px; font-size: 14px; }
  .hero-actions { margin-top: 20px; }
  .hero-actions .button { min-height: 44px; }
  .hero-proof { min-height: 62px; bottom: 16px; }
  .hero-proof strong { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
