:root {
  --black: #000000;
  --ink: #10100d;
  --charcoal: #171611;
  --olive: #454834;
  --gold: #c9a227;
  --gold-pop: #d4a017;
  --white: #ffffff;
  --paper: #f6f1e5;
  --muted: #b9ad91;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(0, 0, 0, 0.13);
  --max: 1160px;
  --header: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--black);
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.shipping-banner {
  min-height: 34px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  font-size: clamp(11px, 2.8vw, 13px);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 16px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.shipping-banner span {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 54px);
  background: rgba(246, 241, 229, 0.94);
  border-bottom: 1px solid var(--dark-line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.05;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: #6f664e;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark-line);
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
}

.menu-toggle svg,
.nav-dropdown svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav > a,
.nav-dropdown > button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}

.site-nav > a:hover,
.nav-dropdown > button:hover,
.site-nav > a.is-active {
  background: var(--black);
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 238px;
  padding: 8px;
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 6px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 4px;
  color: var(--white);
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(201, 162, 39, 0.16);
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header) - 34px - 48px);
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(26px, 4vw, 54px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.38) 52%, rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at 18% 25%, rgba(201, 162, 39, 0.34), transparent 28%),
    var(--black);
  color: var(--white);
  padding: clamp(30px, 4vw, 52px) clamp(18px, 5vw, 54px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 700ms ease forwards;
}

.section-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6.5vw, 82px);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-copy > p:not(.section-label) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.7vw, 20px);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--gold);
  color: var(--black);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.hero-media {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(16px, 3vw, 28px);
  max-width: 100%;
  margin: 0;
  align-items: stretch;
}

.glove-panel,
.demo-panel {
  min-height: clamp(280px, 34vw, 430px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #0e0d0a;
}

.glove-panel {
  margin: 0;
  position: relative;
}

.glove-panel img,
.demo-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glove-panel figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.demo-panel {
  position: relative;
}

.demo-panel video {
  opacity: 0.84;
}

.demo-overlay {
  position: absolute;
  inset: auto 18px 18px;
  display: grid;
  gap: 4px;
}

.demo-overlay span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.demo-overlay strong {
  max-width: 340px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 39px);
  line-height: 1.02;
}

section:not(.hero) {
  padding: clamp(68px, 8vw, 116px) clamp(18px, 5vw, 54px);
}

.shop-section,
.lee-section {
  background: var(--paper);
}

.section-heading {
  max-width: 750px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.section-heading.compact {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 6vw, 74px);
  line-height: 0.96;
}

.section-heading p:not(.section-label) {
  margin: 16px 0 0;
  color: #5e5642;
  font-size: 17px;
}

.product-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #fbf7ed;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.product-image {
  display: block;
  background: var(--black);
}

.product-image img {
  width: 100%;
  aspect-ratio: 701 / 561;
  object-fit: contain;
}

.product-copy {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(18px, 2.6vw, 26px);
}

.product-copy span {
  color: var(--gold-pop);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.product-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 31px);
  line-height: 1.05;
}

.product-copy p {
  margin: 8px 0 0;
  color: #5f5847;
  font-size: 16px;
}

.about-section {
  background: var(--charcoal);
  color: var(--white);
}

.about-grid,
.partnership-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.about-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 18px;
}

.mission-strip {
  max-width: var(--max);
  margin: clamp(36px, 6vw, 76px) auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
}

.mission-strip strong {
  color: var(--gold);
  text-transform: uppercase;
}

.mission-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.25;
}

.still-strip {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.still-strip img {
  width: 100%;
  aspect-ratio: 13 / 6;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--dark-line);
  filter: contrast(1.06);
}

.partnership-section {
  background: #e8dec9;
}

.partnership-copy {
  display: grid;
  gap: 18px;
  color: #4f493a;
  font-size: 17px;
}

.partnership-copy p,
.partnership-copy ul {
  margin: 0;
}

.partnership-copy ul {
  padding-left: 20px;
}

.partnership-copy li + li {
  margin-top: 8px;
}

.disclaimer {
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  font-weight: 800;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  background: var(--black);
  color: var(--white);
}

.contact-section > div {
  max-width: 720px;
}

.contact-actions {
  display: grid;
  gap: 10px;
  text-align: right;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
}

.contact-actions a {
  color: var(--gold);
  text-decoration: none;
}

.contact-actions a:hover {
  color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 54px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
    margin-top: 6px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 16px;
    background: var(--paper);
    border-bottom: 1px solid var(--dark-line);
  }

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

  .site-nav > a,
  .nav-dropdown > button {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin: 0 0 8px;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-media,
  .about-grid,
  .partnership-inner,
  .mission-strip,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .still-strip {
    grid-template-columns: 1fr;
  }

  .contact-section {
    display: grid;
    align-items: start;
  }

  .contact-actions {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .shipping-banner {
    min-height: auto;
    padding: 6px 28px;
    font-size: 10px;
  }

  .shipping-banner span {
    max-width: 34ch;
  }

  .menu-toggle {
    flex: 0 0 auto;
    background: var(--black);
    border-color: var(--black);
    color: var(--gold);
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .hero h1 {
    font-size: clamp(42px, 16vw, 62px);
  }

  .hero-copy > p:not(.section-label) {
    max-width: 34ch;
  }

  .glove-panel,
  .demo-panel {
    min-height: 230px;
  }

  .hero-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .glove-panel figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 11px;
    line-height: 1.25;
  }

  .demo-overlay {
    inset: auto 10px 10px;
  }

  .demo-overlay span {
    font-size: 10px;
  }

  .demo-overlay strong {
    font-size: 18px;
    line-height: 1;
  }

  .product-grid,
  .product-copy {
    grid-template-columns: 1fr;
  }

  .product-copy span {
    font-size: 30px;
  }

  .site-footer {
    flex-direction: column;
  }
}
