:root {
  --paper: #ffffff;
  --ink: #0b0b0b;
  --line: rgba(0, 0, 0, .12);
  --muted: rgba(0, 0, 0, .68);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body { overflow-x: hidden; }
a { color: inherit; }

.site-shell {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.hero {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 100svh;
  max-width: 1500px;
  margin: 0 auto;
  padding: 42px 5vw 54px;
}

.copy-block {
  position: relative;
  z-index: 3;
  max-width: 540px;
}

.title-mark {
  width: min(21vw, 180px);
  margin: 0 0 20px;
  pointer-events: none;
}

.title-mark-image {
  display: block;
  width: 100%;
  height: auto;
}

h1 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(58px, 7vw, 112px);
  line-height: .84;
  letter-spacing: -.07em;
  text-transform: uppercase;
  transform: scaleX(.9);
  transform-origin: left center;
}

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

.brand--small {
  display: block;
  width: min(22vw, 110px);
  margin-bottom: 28px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.product-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: min(42vw, 640px);
  min-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.shirt-image {
  display: block;
  width: min(100%, 620px);
  max-height: 68svh;
  object-fit: contain;
  user-select: none;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,.08));
}

.order-block {
  margin-top: 8px;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.order-note {
  margin: 0;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--muted);
}

.button {
  display: inline-block;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), opacity .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.site-footer {
  padding: 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: .04em;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover { color: var(--ink); text-decoration: underline; }

.legal {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 20px 60px;
  line-height: 1.6;
}

.legal h1 {
  margin: 0 0 24px;
  font-size: 32px;
  letter-spacing: -.02em;
}

.legal h2 {
  margin: 28px 0 8px;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.legal p {
  margin: 0;
  font-size: 15px;
}

.legal-back {
  margin-top: 40px !important;
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
    padding: 34px 20px 40px;
  }

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

  .title-mark {
    width: min(34vw, 160px);
    margin-bottom: 14px;
  }

  h1 { font-size: clamp(52px, 13vw, 92px); }

  .product-stage {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(92vw, 580px);
    min-width: 0;
    margin: 22px auto 0;
  }

  .shirt-image {
    width: min(92vw, 540px);
    max-height: 72svh;
  }
}

@media (max-width: 580px) {
  .hero { padding-inline: 14px; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  .hero-note { font-size: 14px; }
  .title-mark {
    width: min(46vw, 132px);
    margin-bottom: 12px;
  }
  .order-note { font-size: 14px; }
  .button { padding: 13px 22px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .button { transition: none; }
}
