:root {
  --canvas: #ffffff;
  --ink: #1f2429;
  --body: #3f464d;
  --muted: #6f7780;
  --hairline: #dfe4e8;
  --surface: #f5f7f8;
  --surface-strong: #e8edf1;
  --dark: #0b0e11;
  --dark-elevated: #171d23;
  --steel: #2a333b;
  --action: #1769e0;
  --action-active: #0f53b8;
  --gold: #c89432;
  --success: #1f8f5f;
  --error: #c93434;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--body);
  font-family: Inter, Arial, Helvetica, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--hairline);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--gold);
  font-size: 14px;
}

.brand-text {
  font-size: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  font-size: 14px;
}

.main-nav a {
  padding: 22px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--action);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 72px max(32px, calc((100vw - var(--max)) / 2));
  background: var(--dark);
  color: var(--canvas);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.company-profile h2,
.showcase-copy h2,
.contact-copy h2 {
  margin: 0;
  color: inherit;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 580px;
  color: #d7dde2;
  font-size: 18px;
  font-weight: 300;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  background: var(--action);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--action-active);
}

.button-secondary {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--hairline);
}

.button-on-dark {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(255, 255, 255, 0.58);
}

.button-on-dark:hover,
.button-on-dark:focus-visible {
  border-color: var(--canvas);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 44px 0 0;
}

.hero-metrics div {
  padding: 18px 16px;
  background: var(--dark-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metrics dt {
  color: var(--canvas);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: #aeb7bf;
  font-size: 13px;
}

.hero-visual {
  min-height: 520px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-product-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  min-height: 520px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-product-wall a {
  display: block;
  min-height: 250px;
  background: #f4f5f6;
  overflow: hidden;
}

.hero-product-wall img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: contain;
  padding: 18px;
  border: 0;
  transition: transform 180ms ease;
}

.hero-product-wall a:hover img,
.hero-product-wall a:focus-visible img {
  transform: scale(1.04);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--hairline);
}

.signal-strip div {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 28px;
  border-right: 1px solid var(--hairline);
  color: var(--ink);
  font-weight: 700;
}

.signal-strip div:last-child {
  border-right: 0;
}

.section {
  padding: 72px max(32px, calc((100vw - var(--max)) / 2));
}

.section-light {
  background: var(--canvas);
}

.section-dark {
  background: var(--dark);
  color: var(--canvas);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading h2,
.company-profile h2,
.showcase-copy h2,
.contact-copy h2 {
  font-size: 44px;
  line-height: 1.12;
}

.section-heading p:last-child,
.company-profile p:last-child,
.showcase-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

.section-heading-dark p:last-child {
  color: #bac3cb;
}

.section-company {
  background: var(--surface);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.9fr);
  gap: 48px;
  align-items: start;
}

.company-profile p:last-child {
  margin-top: 24px;
}

.company-facts {
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.company-facts article {
  padding: 24px;
  background: var(--canvas);
}

.company-facts span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.company-facts strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.company-facts p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 300;
}

.company-facts a {
  color: var(--action);
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 44px;
  padding: 10px 16px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 0;
  color: var(--ink);
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.style-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
}

.style-card.is-hidden {
  display: none;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
}

.product-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 180ms ease;
}

.product-card:hover .product-thumb img,
.product-card:focus-within .product-thumb img {
  transform: scale(1.045);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-card-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.product-card-body h3 a:hover,
.product-card-body h3 a:focus-visible {
  color: var(--action);
}

.product-card-body p:not(.style-code) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
}

.text-arrow {
  margin-top: auto;
  padding-top: 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.text-arrow::after {
  content: " ->";
  color: var(--action);
}

.source-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.source-note a,
.contact-copy a,
.site-footer a[href^="mailto:"] {
  color: var(--action);
  font-weight: 700;
}

.style-visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.86;
  background: var(--surface);
  overflow: hidden;
}

.style-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--surface-strong);
}

.bag-shape {
  position: relative;
  display: block;
  width: 46%;
  height: 52%;
  background: var(--steel);
  border: 3px solid #0e1114;
}

.style-visual-tote .bag-shape {
  width: 54%;
  height: 48%;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.style-visual-tote .bag-shape::before {
  content: "";
  position: absolute;
  left: 24%;
  top: -32%;
  width: 52%;
  height: 44%;
  border: 8px solid #0e1114;
  border-bottom: 0;
}

.style-visual-duffle .bag-shape {
  width: 62%;
  height: 40%;
  border-radius: 6px 6px 0 0;
  background: #343f49;
}

.style-visual-duffle .bag-shape::before {
  content: "";
  position: absolute;
  left: 22%;
  top: -28%;
  width: 56%;
  height: 42%;
  border: 7px solid #0e1114;
  border-bottom: 0;
}

.style-visual-crossbody .bag-shape {
  width: 48%;
  height: 44%;
  transform: skew(-6deg);
  background: #d9d1c4;
}

.style-visual-crossbody .bag-shape::before {
  content: "";
  position: absolute;
  left: -34%;
  top: -22%;
  width: 160%;
  height: 120%;
  border-top: 5px solid #0e1114;
  transform: rotate(-18deg);
}

.style-visual-backpack .bag-shape {
  width: 46%;
  height: 58%;
  border-radius: 8px 8px 0 0;
  background: #1f8f5f;
}

.style-visual-backpack .bag-shape::before,
.style-visual-backpack .bag-shape::after {
  content: "";
  position: absolute;
  top: 24%;
  width: 20%;
  height: 62%;
  border: 4px solid #0e1114;
}

.style-visual-backpack .bag-shape::before {
  left: -18%;
  border-right: 0;
}

.style-visual-backpack .bag-shape::after {
  right: -18%;
  border-left: 0;
}

.style-body {
  padding: 20px;
}

.style-code {
  margin: 0 0 12px;
  color: var(--action);
  font-size: 13px;
  font-weight: 700;
}

.style-body h3,
.capability-list h3,
.process-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.style-body p:last-child,
.capability-list p,
.process-step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 300;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.capability-layout img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.capability-list article {
  min-height: 250px;
  padding: 28px;
  background: var(--dark-elevated);
}

.capability-list h3 {
  color: var(--canvas);
}

.capability-list p {
  color: #bac3cb;
}

.section-process {
  background: var(--surface);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline);
}

.process-step {
  min-height: 270px;
  padding: 28px;
  background: var(--canvas);
}

.process-step span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 700;
}

.section-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 48px;
  align-items: center;
  background: var(--steel);
  color: var(--canvas);
}

.showcase-copy p {
  color: #d7dde2;
}

.showcase-panel {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.brief-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--hairline);
}

.brief-row:last-child {
  border-bottom: 0;
}

.brief-row span {
  color: var(--muted);
}

.section-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 0.9fr);
  gap: 56px;
  background: var(--canvas);
}

.inquiry-form {
  display: grid;
  gap: 16px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--hairline);
  border-radius: 0;
  background: var(--canvas);
  color: var(--ink);
  font-weight: 400;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 2px solid var(--action);
  outline-offset: 0;
}

.form-note {
  min-height: 48px;
  margin: 0;
  color: var(--success);
  font-weight: 700;
}

.product-page {
  background: var(--canvas);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px max(32px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--action);
}

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

.product-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
  padding: 72px max(32px, calc((100vw - var(--max)) / 2));
}

.product-image-panel {
  display: grid;
  place-items: center;
  min-height: 560px;
  background: var(--surface);
  border: 1px solid var(--hairline);
}

.product-image-panel img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  padding: 28px;
}

.product-summary h1 {
  margin: 0;
  color: var(--ink);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
}

.product-summary p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--body);
  font-size: 18px;
  font-weight: 300;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2)) 72px;
  background: var(--canvas);
}

.product-detail-grid article {
  min-height: 160px;
  padding: 24px;
  background: var(--surface);
}

.product-detail-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.product-detail-grid strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.product-production {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 48px;
  padding: 72px max(32px, calc((100vw - var(--max)) / 2));
}

.product-production h2 {
  margin: 0;
  color: var(--canvas);
  font-size: 44px;
  line-height: 1.12;
}

.production-notes p,
.production-notes li {
  color: #c7d0d8;
  font-weight: 300;
}

.production-notes ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.related-section {
  padding: 72px max(32px, calc((100vw - var(--max)) / 2));
}

.compact-heading {
  display: block;
}

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

.related-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--hairline);
}

.related-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--canvas);
}

.related-card span {
  color: var(--action);
  font-size: 13px;
  font-weight: 700;
}

.related-card strong {
  color: var(--ink);
  line-height: 1.3;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  padding: 44px max(32px, calc((100vw - var(--max)) / 2));
  background: var(--surface);
  color: var(--body);
  border-top: 1px solid var(--hairline);
}

.site-footer > div:first-child {
  max-width: 680px;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 1040px) {
  .hero-section,
  .company-layout,
  .capability-layout,
  .section-showcase,
  .section-contact,
  .product-hero,
  .product-production {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog-grid,
  .process-grid,
  .product-detail-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 0 18px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--hairline);
  }

  .hero-section,
  .section {
    padding: 40px 18px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .section-heading h2,
  .company-profile h2,
  .showcase-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .hero-metrics,
  .catalog-grid,
  .process-grid,
  .capability-list,
  .signal-strip,
  .product-detail-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img,
  .capability-layout img {
    min-height: 360px;
  }

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

  .hero-product-wall a,
  .hero-product-wall img {
    min-height: 180px;
  }

  .style-card,
  .product-card,
  .process-step,
  .capability-list article {
    min-height: auto;
  }

  .breadcrumb,
  .product-hero,
  .product-production,
  .related-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-summary h1 {
    font-size: 36px;
  }

  .product-image-panel {
    min-height: 360px;
  }

  .product-detail-grid {
    padding: 0 18px 40px;
  }

  .brief-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    flex-direction: column;
    padding: 36px 18px;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 36px;
  }

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

  .hero-lead {
    font-size: 16px;
  }
}
