
:root {
  --bg: #ffffff;
  --bg-muted: #f6f4f2;
  --text: #181818;
  --muted: #666666;
  --line: #e6dfd8;
  --accent: #111111;
  --accent-contrast: #ffffff;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.section { padding: 56px 0; }
.section--muted { background: var(--bg-muted); }
h1, h2, h3 { line-height: 1.2; margin: 0 0 18px; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.55rem, 3vw, 1.8rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 14px; }
ul { margin: 0; padding-left: 20px; }
.small { font-size: .9rem; }
.mt-24 { margin-top: 24px; }
.muted { color: var(--muted); }

.hero {
  position: relative;
  min-height: 78svh;
  background: #111;
  overflow: hidden;
}

.hero__marquee {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero__marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  padding: 24px 18px;
  --marquee-duration: 40s;
  animation: hero-marquee-scroll var(--marquee-duration) linear infinite;
  will-change: transform;
}

.hero__marquee-track img {
  flex: 0 0 auto;
  height: min(72svh, 680px);
  width: auto;
  max-width: none;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.3)),
    linear-gradient(to right, rgba(0,0,0,.14), rgba(0,0,0,.14));
  pointer-events: none;
}

@keyframes hero-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}
.hero__content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  color: #fff; text-align: center;
}
.brand { letter-spacing: .35em; text-transform: uppercase; font-size: 1.95rem; margin-bottom: 12px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border-radius: 999px; border: 0;
  background: var(--accent); color: var(--accent-contrast); text-decoration: none; cursor: pointer;
}
.button--light { background: rgba(255,255,255,.95); color: #111; }
.product-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: start; }
.gallery-card, .text-card, .form-card, .info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.text-card, .form-card, .info-card { padding: 24px; }
.gallery-main img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 14px; }
.thumb { border: 2px solid transparent; border-radius: 14px; padding: 0; background: transparent; cursor: pointer; overflow: hidden; }
.thumb.is-active { border-color: #111; }
.thumb img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field--wide { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; font-weight: 700; }
.field input, .field select {
  width: 100%; min-height: 50px; border-radius: 14px; border: 1px solid #cfc6be; background: #fff;
  padding: 0 14px;
}
.form-actions { margin-top: 18px; }
.turnstile-row { margin-top: 8px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-message { min-height: 24px; margin-top: 12px; }
.form-message.is-error { color: #aa1c1c; }
.form-message.is-success { color: #136c2e; }
.spinner {
  width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.two-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.table-wrap {
  overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
table { width: 100%; min-width: 860px; border-collapse: collapse; }
th, td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: center; }
th:first-child, td:first-child { text-align: left; position: sticky; left: 0; background: #fff; }
thead th { background: #fbfaf9; font-weight: 700; }
.notice {
  margin-top: 20px; padding: 18px 20px; border-radius: 16px; background: #f6f2ee; border: 1px solid var(--line);
}
.size-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: start; }
.size-image img { border-radius: var(--radius); box-shadow: var(--shadow); }
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  background: #111; color: #fff; padding: 14px 18px; border-radius: 14px; box-shadow: var(--shadow); z-index: 20;
}
.footer { padding: 28px 0 40px; border-top: 1px solid var(--line); }
.footer__inner { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.footer__link { text-decoration: none; }
@media (max-width: 980px) {
  .product-grid, .size-grid { grid-template-columns: 1fr; }
  .two-columns { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 42px 0; }
  .form-grid, .two-columns { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .hero,
  .hero__marquee {
    min-height: 62svh;
  }

.hero__marquee-track {
  gap: 12px;
  padding: 16px 12px;
}

  .hero__marquee-track img {
    height: min(56svh, 420px);
    border-radius: 14px;
  }  
}