:root {
  --ink: #050505;
  --soft-ink: #222222;
  --muted: #6f6f6f;
  --paper: #f7f7f4;
  --white: #ffffff;
  --line: #151515;
  --hairline: #d8d8d2;
  --pale: #eeeeea;
  --bronze: #a4773f;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 90px;
  padding: 12px 5vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-wordmark {
  display: block;
  width: 260px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

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

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--line);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-premium-leather-sharp.png");
  background-size: cover;
  background-position: center right;
  filter: contrast(1.06) saturate(0.9);
  opacity: 0.86;
  transform: scale(1.005);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58) 38%, rgba(0, 0, 0, 0.08) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 96px);
}

.hero-inner {
  position: relative;
  width: min(760px, 90vw);
  margin-left: 5vw;
  padding: 136px 0 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero .eyebrow,
.contact-section .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

h1,
h2,
h3,
p,
span {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: 82px;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-weight: 950;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button.primary:hover,
.button.primary:focus-visible {
  color: var(--white);
  background: transparent;
}

.button.secondary {
  color: var(--white);
  background: transparent;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.button.secondary.dark {
  color: var(--white);
}

.contact-section .button.primary {
  color: var(--ink);
  background: var(--white);
}

.contact-section .button.secondary.dark:hover,
.contact-section .button.secondary.dark:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.proof-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip div {
  min-height: 142px;
  padding: 30px 5vw;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.025), transparent 48%),
    var(--white);
}

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

.proof-strip strong {
  display: block;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.05;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 110px 5vw;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 38px;
}

.factory-section,
.location-section {
  background: var(--paper);
}

.product-section {
  background: var(--white);
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.factory-copy,
.photo-panel {
  min-height: 440px;
}

.factory-copy {
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 38px;
  border-right: 1px solid var(--line);
}

.factory-copy > p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 19px;
}

.factory-points {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.factory-points div {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--hairline);
}

.factory-points div:last-child {
  border-bottom: 0;
}

.factory-points strong {
  color: var(--ink);
  font-size: 17px;
}

.factory-points span {
  color: var(--muted);
}

.photo-panel {
  padding: 20px;
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(0, 0, 0, 0.04) 12px 13px),
    var(--pale);
}

.photo-placeholder {
  display: grid;
  height: 100%;
  min-height: 400px;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
  background: rgba(255, 255, 255, 0.68);
}

.photo-placeholder span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.photo-placeholder strong {
  font-size: 25px;
}

.photo-panel-image {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--ink);
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-carousel {
  display: flex;
  width: 300%;
  height: 100%;
  min-height: 440px;
  animation: factoryCarousel 14s infinite ease-in-out;
}

.photo-carousel img {
  display: block;
  width: calc(100% / 3);
  min-height: 440px;
  object-fit: cover;
}

.photo-panel-image:hover .photo-carousel {
  animation-play-state: paused;
}

@keyframes factoryCarousel {
  0%,
  26% {
    transform: translateX(0);
  }

  34%,
  60% {
    transform: translateX(-33.3333%);
  }

  68%,
  94% {
    transform: translateX(-66.6666%);
  }

  100% {
    transform: translateX(0);
  }
}

.photo-panel-image img {
  min-height: 440px;
}

.photo-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.photo-caption span {
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.photo-caption strong {
  font-size: 18px;
  line-height: 1.2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-right: 0;
  background: var(--white);
}

.product-card {
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.product-media {
  height: 250px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--pale);
}

.swatch {
  min-height: 188px;
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.swatch::before,
.swatch::after {
  content: "";
  position: absolute;
  inset: 0;
}

.swatch::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(0, 0, 0, 0.18) 18px 19px),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(0, 0, 0, 0.1) 18px 19px);
}

.swatch::after {
  border: 22px solid transparent;
  background:
    radial-gradient(circle at 28% 36%, var(--ink) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 62% 58%, var(--ink) 0 1px, transparent 1px 100%);
  opacity: 0.32;
}

.swatch-pu::before {
  background:
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(0, 0, 0, 0.3) 10px 11px),
    var(--white);
}

.swatch-pvc::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(0, 0, 0, 0.24) 14px 15px),
    repeating-linear-gradient(0deg, transparent 0 14px, rgba(0, 0, 0, 0.14) 14px 15px),
    var(--white);
}

.swatch-microfiber::before {
  background:
    repeating-radial-gradient(circle at 38% 40%, rgba(0, 0, 0, 0.32) 0 1px, transparent 1px 9px),
    var(--white);
}

.card-body {
  padding: 28px;
}

.card-body p {
  margin: 14px 0 0;
  color: var(--muted);
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.42fr);
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  background: var(--white);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.map-caption {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 32px;
  border-left: 1px solid var(--line);
  background: var(--white);
}

.map-caption strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.map-caption a {
  width: fit-content;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 950;
}

.contact-section {
  padding: 110px 5vw;
  color: var(--white);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 104px),
    var(--ink);
}

.contact-inner {
  max-width: 900px;
}

.contact-inner p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 5vw;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.site-footer strong {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .section-heading,
  .factory-layout,
  .map-panel {
    grid-template-columns: 1fr;
  }

  .factory-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .product-card {
    border-bottom: 1px solid var(--line);
  }

  .product-card:last-child {
    border-bottom: 0;
  }

  .map-caption {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .map-panel iframe {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 13px 5vw;
  }

  .brand {
    min-width: 0;
  }

  .brand-wordmark {
    width: min(240px, 72vw);
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .language-switch {
    min-height: 34px;
    padding: 7px 11px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.68)),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 62px);
  }

  .hero-inner {
    padding: 152px 0 72px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy,
  .contact-inner p,
  .factory-copy > p {
    font-size: 17px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
    padding: 22px 5vw;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section {
    padding: 74px 5vw;
  }

  .factory-copy,
  .card-body,
  .map-caption {
    padding: 24px;
  }

  .factory-points div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .photo-panel,
  .photo-placeholder {
    min-height: 280px;
  }

  .photo-panel-image img {
    min-height: 300px;
  }

  .photo-carousel {
    min-height: 300px;
  }

  .product-media {
    height: 230px;
  }

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