:root {
  --ink: #17232a;
  --cream: #f4ead1;
  --paper: #efe0bd;
  --red: #a83a2d;
  --red-dark: #72281f;
  --mustard: #c49133;
  --green: #2f554c;
  --blue: #203f56;
  --white: #fff9ea;
  --shadow: rgba(23, 35, 42, 0.22);
  --display: "Arial Narrow", "Franklin Gothic Condensed", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(196, 145, 51, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(23, 35, 42, 0.05) 25%, transparent 25%) 0 0 / 18px 18px,
    var(--paper);
  font-family: var(--serif);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(23, 35, 42, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 42, 0.05) 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.9rem clamp(1rem, 3vw, 2.5rem);
  border-bottom: 3px solid var(--ink);
  background: rgba(244, 234, 209, 0.92);
  backdrop-filter: blur(10px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-name,
.brand-sub,
.nav-links,
.eyebrow,
.button,
.label-title,
.label-product,
.label-small,
.label-meta,
.product-copy h3,
.patch,
.site-footer {
  font-family: var(--display);
  text-transform: uppercase;
}

.brand-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
}

.brand-sub {
  display: block;
  margin-top: 0.1rem;
  color: var(--red-dark);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: flex-end;
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a {
  padding: 0.45rem 0.65rem;
  border-bottom: 2px solid transparent;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(2rem, 6vw, 6rem) clamp(1rem, 5vw, 5.5rem) clamp(1.25rem, 3vw, 3rem);
  border-bottom: 3px solid var(--ink);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--red-dark);
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 0.7rem;
  font-family: var(--display);
  font-size: clamp(4.1rem, 11vw, 10rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0.045em 0.045em 0 var(--mustard);
}

.tagline {
  display: inline-block;
  margin-bottom: 1.15rem;
  padding: 0.35rem 0.65rem;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.intro {
  max-width: 650px;
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.button.primary {
  color: var(--cream);
  background: var(--red);
}

.button.secondary {
  background: var(--cream);
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.hero-label {
  display: grid;
  place-items: center;
  min-width: 0;
}

.hero-logo {
  display: block;
  width: min(100%, 620px);
  height: auto;
}

.label-card {
  width: min(100%, 520px);
  padding: clamp(0.65rem, 2vw, 1rem);
  transform: rotate(1.5deg);
  border: 3px solid var(--ink);
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 249, 234, 0.28) 18% 19%, transparent 19% 35%),
    var(--cream);
  box-shadow: 12px 12px 0 var(--shadow);
}

.label-rim {
  position: relative;
  min-height: 590px;
  padding: clamp(1rem, 4vw, 2rem);
  overflow: hidden;
  border: 3px double var(--ink);
  background:
    linear-gradient(0deg, rgba(168, 58, 45, 0.12), rgba(168, 58, 45, 0.12)),
    radial-gradient(circle at 50% 48%, var(--white) 0 34%, transparent 34.5%),
    var(--cream);
}

.label-rim::before,
.label-rim::after {
  position: absolute;
  right: 1rem;
  left: 1rem;
  height: 16px;
  content: "";
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 28px,
    var(--mustard) 28px 42px,
    var(--blue) 42px 70px
  );
}

.label-rim::before {
  top: 1rem;
}

.label-rim::after {
  bottom: 1rem;
}

.label-small,
.label-title,
.label-product,
.label-meta {
  position: relative;
  z-index: 2;
  text-align: center;
}

.label-small {
  margin: 2.25rem 0 0;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.label-title {
  margin: 0;
  color: var(--red);
  font-size: clamp(4.2rem, 10vw, 6.8rem);
  font-weight: 700;
  line-height: 0.92;
  text-shadow: 0.045em 0.045em 0 var(--ink);
}

.fox-emblem {
  position: relative;
  z-index: 2;
  width: min(100%, 370px);
  height: 190px;
  margin: 1.4rem auto 1.2rem;
}

.fox-body {
  position: absolute;
  top: 74px;
  left: 96px;
  width: 158px;
  height: 58px;
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 56% 44% 46% 54% / 56% 52% 48% 44%;
}

.fox-tail {
  position: absolute;
  top: 45px;
  left: 15px;
  width: 130px;
  height: 72px;
  transform: rotate(-15deg);
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 90% 14% 70% 20%;
}

.fox-tail::after {
  position: absolute;
  top: 12px;
  left: 10px;
  width: 42px;
  height: 46px;
  content: "";
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 80% 18% 64% 28%;
}

.fox-head {
  position: absolute;
  top: 49px;
  right: 52px;
  width: 88px;
  height: 66px;
  transform: rotate(9deg);
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 58% 22% 48% 38%;
}

.fox-head::after {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--ink);
  border-radius: 50%;
}

.fox-ear {
  position: absolute;
  top: 29px;
  right: 102px;
  width: 32px;
  height: 42px;
  transform: rotate(-19deg);
  background: var(--red);
  border: 3px solid var(--ink);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.fox-snout {
  position: absolute;
  top: 71px;
  right: 18px;
  width: 56px;
  height: 32px;
  transform: rotate(8deg);
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 15% 70% 68% 20%;
}

.fox-snout::after {
  position: absolute;
  top: 8px;
  right: -5px;
  width: 11px;
  height: 11px;
  content: "";
  background: var(--ink);
  border-radius: 50%;
}

.fox-leg {
  position: absolute;
  top: 119px;
  width: 21px;
  height: 49px;
  background: var(--red-dark);
  border: 3px solid var(--ink);
  border-radius: 0 0 14px 14px;
}

.fox-leg.front {
  right: 113px;
}

.fox-leg.rear {
  left: 137px;
}

.can {
  position: absolute;
  top: 92px;
  right: 1px;
  display: grid;
  width: 74px;
  height: 54px;
  place-items: center;
  transform: rotate(9deg);
  border: 3px solid var(--ink);
  background: var(--mustard);
  box-shadow: inset 0 8px 0 rgba(255, 249, 234, 0.34);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 0.8;
}

.can span {
  display: block;
}

.label-product {
  margin: 0 auto 0.7rem;
  color: var(--ink);
  font-size: clamp(2.15rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
}

.label-meta {
  max-width: 320px;
  margin: 0 auto 1.8rem;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.marquee {
  display: flex;
  gap: 1rem;
  align-items: center;
  overflow: hidden;
  padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
  color: var(--cream);
  background: var(--ink);
  border-bottom: 3px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
}

.marquee span {
  white-space: nowrap;
}

.marquee span::after {
  margin-left: 1rem;
  color: var(--mustard);
  content: "/";
}

.section {
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 5vw, 5.5rem);
  border-bottom: 3px solid var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--shadow);
}

.product-visual {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  padding: 0;
  background: var(--paper);
}

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

.shirt-card .product-visual {
  background: linear-gradient(135deg, var(--green), #233d38);
}

.cap-card .product-visual {
  background: linear-gradient(135deg, var(--mustard), #986b24);
}

.patch-card .product-visual {
  background: linear-gradient(135deg, var(--blue), #172d40);
}

.shirt-shape {
  position: relative;
  width: 220px;
  height: 245px;
  background: var(--cream);
  border: 3px solid var(--ink);
  clip-path: polygon(21% 0, 38% 0, 44% 12%, 56% 12%, 62% 0, 79% 0, 100% 26%, 83% 43%, 76% 33%, 76% 100%, 24% 100%, 24% 33%, 17% 43%, 0 26%);
}

.shirt-print {
  position: absolute;
  top: 80px;
  left: 50%;
  display: grid;
  width: 112px;
  height: 92px;
  place-items: center;
  transform: translateX(-50%);
  border: 3px double var(--red);
  color: var(--red);
  font-family: var(--display);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.shirt-print span {
  font-size: 1.5rem;
  line-height: 1;
}

.shirt-print small {
  font-size: 0.72rem;
}

.cap-shape {
  position: relative;
  width: 255px;
  height: 160px;
}

.cap-crown {
  position: absolute;
  top: 18px;
  left: 32px;
  display: grid;
  width: 168px;
  height: 98px;
  place-items: center;
  color: var(--cream);
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 86px 86px 24px 24px;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 700;
}

.cap-bill {
  position: absolute;
  right: 10px;
  bottom: 14px;
  width: 170px;
  height: 55px;
  transform: skewX(-26deg);
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 0 0 60px 8px;
}

.patch {
  display: grid;
  width: min(100%, 250px);
  min-height: 170px;
  place-items: center;
  padding: 1rem;
  color: var(--cream);
  background: var(--red);
  border: 4px solid var(--cream);
  outline: 3px solid var(--ink);
  border-radius: 50%;
  text-align: center;
}

.patch-top {
  font-size: 1.6rem;
  font-weight: 700;
}

.patch-mid {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--ink);
  background: var(--mustard);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
}

.patch-bottom {
  max-width: 160px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.product-copy {
  padding: 1.2rem;
  border-top: 3px solid var(--ink);
}

.product-copy h3 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.product-copy p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

.product-link {
  margin-top: 1rem;
}

.goods-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 3px solid var(--ink);
}

.goods-more h3 {
  margin-bottom: 0.45rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.goods-more p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  line-height: 1.6;
}

.goods-more .button {
  flex: 0 0 auto;
}

.archive-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  background: var(--red);
  color: var(--cream);
}

.archive-section .eyebrow {
  color: var(--mustard);
}

.archive-copy p:not(.eyebrow) {
  margin-top: 1.3rem;
  font-size: 1.04rem;
  line-height: 1.75;
}

.label-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.label-grid article {
  min-height: 210px;
  padding: 1.25rem;
  border: 3px solid var(--cream);
  background: rgba(23, 35, 42, 0.18);
}

.label-grid img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1.2rem;
}

.label-grid h3 {
  margin-bottom: 0.65rem;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.label-grid p {
  margin-bottom: 0;
  line-height: 1.6;
}

.story-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.story-panel p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.03rem;
  line-height: 1.85;
}

.history-block {
  margin-top: 2.5rem;
}

.history-block > h3 {
  margin: 0 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.history-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 3px solid var(--ink);
}

.history-timeline li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 2px solid var(--ink);
}

.history-timeline time {
  color: var(--red-dark);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
}

.history-timeline h4 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.history-timeline p {
  margin: 0;
}

.spec-sheet {
  border: 3px solid var(--ink);
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--shadow);
}

.spec-sheet dl {
  margin: 0;
}

.spec-sheet div {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 2px solid var(--ink);
}

.spec-sheet div:last-child {
  border-bottom: 0;
}

.spec-sheet dt,
.spec-sheet dd {
  margin: 0;
}

.spec-sheet dt {
  color: var(--red-dark);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}

.spec-sheet dd {
  line-height: 1.5;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  padding: 1.2rem clamp(1rem, 3vw, 2.5rem);
  color: var(--cream);
  background: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.site-footer p {
  margin: 0;
}

.is-visible {
  animation: pressIn 540ms ease both;
}

@keyframes pressIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .archive-section,
  .story-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

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

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

  .product-card {
    grid-template-columns: minmax(240px, 0.82fr) 1fr;
    grid-template-rows: auto;
  }

  .product-copy {
    display: grid;
    align-content: center;
    border-top: 0;
    border-left: 3px solid var(--ink);
  }
}

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

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

  h1 {
    font-size: clamp(3.6rem, 20vw, 5.6rem);
  }

  .hero {
    padding-top: 2.2rem;
  }

  .label-rim {
    min-height: 500px;
  }

  .fox-emblem {
    transform: scale(0.84);
    transform-origin: center;
    margin: 0.5rem auto;
  }

  .label-title {
    font-size: clamp(3.3rem, 16vw, 4.5rem);
  }

  .label-product {
    font-size: clamp(1.85rem, 10vw, 2.8rem);
  }

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

  .product-card {
    grid-template-rows: auto auto;
  }

  .product-copy {
    border-top: 3px solid var(--ink);
    border-left: 0;
  }

  .goods-more {
    align-items: stretch;
    flex-direction: column;
  }

  .spec-sheet div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 430px) {
  .brand-lockup {
    align-items: flex-start;
  }

  .brand-sub {
    max-width: 210px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .label-card {
    transform: none;
  }

  .label-rim {
    padding-right: 0.65rem;
    padding-left: 0.65rem;
  }
}

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

  .is-visible {
    animation: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
