:root {
  --ink: #171412;
  --muted: #6c625c;
  --paper: #f7f5f0;
  --surface: #ffffff;
  --line: #ded8cf;
  --wine: #7a2638;
  --forest: #2f5b4a;
  --brass: #b8893d;
  --charcoal: #262220;
  --shadow: 0 18px 55px rgba(27, 22, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(247, 245, 240, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  line-height: 1;
}

.brand-name,
.brand-line {
  display: block;
  line-height: 1.05;
}

.brand-name {
  font-size: 15px;
  font-weight: 800;
}

.brand-line {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--wine);
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: 118px clamp(22px, 5vw, 72px) 68px;
  background:
    linear-gradient(112deg, rgba(247, 245, 240, 0.96) 0%, rgba(247, 245, 240, 0.82) 48%, rgba(47, 91, 74, 0.18) 100%),
    var(--paper);
  overflow: hidden;
}

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

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

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.hero-text {
  max-width: 620px;
  color: var(--charcoal);
  font-size: clamp(17px, 1.6vw, 21px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 6px;
  border: 1px solid var(--ink);
  font-weight: 800;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.48);
}

.hero-media {
  position: relative;
  min-height: min(68vw, 720px);
  align-self: stretch;
}

.hero-bag {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 24px 35px rgba(28, 23, 20, 0.16));
}

.hero-bag-main {
  right: -7vw;
  bottom: -10px;
  width: min(62vw, 780px);
  max-height: 82vh;
}

.hero-bag-side {
  left: -4vw;
  bottom: 0;
  width: min(38vw, 430px);
  opacity: 0.9;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(22px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.copy-block {
  color: var(--charcoal);
  font-size: 18px;
}

.legal-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--wine);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

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

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.metrics article,
.feature,
.quality-list article,
.contact-panel,
.product-gallery figure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(27, 22, 18, 0.07);
}

.metrics article {
  min-height: 150px;
  padding: 24px;
}

.metrics span {
  display: block;
  margin-bottom: 12px;
  color: var(--forest);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 850;
  line-height: 0.95;
}

.metrics p,
.feature p,
.quality-list p,
.contact-intro {
  color: var(--muted);
}

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

.feature {
  min-height: 214px;
  padding: 24px;
}

.products-band {
  background: var(--charcoal);
  color: var(--paper);
}

.products-band .eyebrow {
  color: #e3bd72;
}

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

.product-gallery figure {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #f3f0eb;
  color: var(--ink);
}

.product-gallery img {
  width: 100%;
  height: 292px;
  padding: 22px;
  object-fit: contain;
  object-position: center bottom;
}

.product-gallery figcaption {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 750;
}

.quality-list {
  display: grid;
  gap: 16px;
}

.quality-list article {
  padding: 24px;
}

.contact-band {
  background: var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.95fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 6px;
  padding: 28px;
  font-style: normal;
}

.contact-label {
  margin-top: 14px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-label:first-child {
  margin-top: 0;
}

.contact-panel a {
  color: var(--forest);
  font-weight: 800;
  word-break: break-word;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(22px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
}

.site-footer a {
  color: #e3bd72;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    min-height: 510px;
  }

  .hero-bag-main {
    right: -8vw;
    width: min(86vw, 660px);
  }

  .hero-bag-side {
    left: -6vw;
    width: min(48vw, 340px);
  }

  .metrics,
  .capability-grid,
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 58px);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-bag-main {
    right: -32vw;
    width: 118vw;
  }

  .hero-bag-side {
    left: -20vw;
    width: 58vw;
  }

  .two-column,
  .contact-layout,
  .metrics,
  .capability-grid,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .metrics article {
    min-height: 0;
  }

  .product-gallery figure {
    min-height: 310px;
  }

  .product-gallery img {
    height: 246px;
  }
}

@media (max-width: 430px) {
  .nav-links {
    gap: 4px 14px;
    font-size: 13px;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 330px;
  }
}
