:root {
  --bg: #f6efe7;
  --bg-soft: #fbf7f1;
  --ink: #050505;
  --muted: #4d463f;
  --line: #151515;
  --red: #b31f13;
  --max: 1180px;
  --font: "Tw Cen MT Web", "Tw Cen MT", "Trebuchet MS", Arial, sans-serif;
}

@font-face {
  font-family: "Tw Cen MT Web";
  src: url("tw-cen-mt-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Tw Cen MT Web";
  src: url("tw-cen-mt-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Tw Cen MT Web";
  src: url("tw-cen-mt-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Tw Cen MT Web";
  src: url("tw-cen-mt-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #202020;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #202020;
  color: var(--ink);
  font-family: var(--font);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.is-ready {
  opacity: 1;
  transform: none;
}

body.is-leaving {
  opacity: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: .65rem .9rem;
}

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

.site-header {
  position: relative;
  z-index: 5;
  padding: clamp(1.2rem, 2.8vw, 2.4rem) clamp(1rem, 4vw, 3rem) .6rem;
}

.header-inner,
.container {
  width: min(var(--max), calc(100vw - clamp(2rem, 6vw, 6rem)));
  margin-inline: auto;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
}

.brand {
  grid-column: 2;
  display: inline-flex;
  justify-self: center;
}

.brand img {
  width: clamp(190px, 24vw, 330px);
}

.main-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.2rem);
  align-items: center;
  justify-content: flex-end;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-bottom: .25rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-link {
  display: none;
  width: 64px;
  height: 52px;
  justify-self: end;
  align-items: center;
  justify-content: center;
}

.menu-icon {
  display: grid;
  gap: 9px;
  width: 58px;
}

.menu-icon span {
  height: 4px;
  background: var(--ink);
}

.menu-icon span:last-child {
  width: 72%;
}

main {
  position: relative;
}

.site-header,
main {
  background: var(--bg);
}

.hero {
  padding: clamp(1rem, 3vw, 3rem) 0 clamp(3rem, 7vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--red);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 15.5em;
  margin: clamp(1rem, 2vw, 1.6rem) 0 0;
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  font-weight: 900;
  line-height: 1.43;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art img {
  width: min(100%, 520px);
}

.story {
  padding: 0 0 clamp(4rem, 8vw, 8rem);
}

.story-copy {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  max-width: 90ch;
  font-size: clamp(1.18rem, .8vw + 1rem, 1.55rem);
  font-weight: 500;
  line-height: 1.7;
}

.story-copy p {
  margin: 0;
}

.page-intro {
  padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3.5rem);
}

.hero-copy,
.page-intro > .container {
  border-left: 8px solid var(--line);
  padding-left: clamp(1rem, 2.6vw, 2.2rem);
}

.page-title {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.intro-text {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1.25rem, 1.2vw + 1rem, 1.85rem);
  font-weight: 700;
  line-height: 1.45;
}

.products {
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(270px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.4rem, 4vw, 4rem);
}

.product-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(270px, 430px);
}

.product-card:nth-child(even) .product-media {
  order: 2;
}

.product-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(.9rem, 1.8vw, 1.35rem);
}

.product-media img {
  width: min(100%, 390px);
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, .14));
}

.volume-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.volume-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.6em;
  padding: .42rem .72rem;
  border-radius: 999px;
  background: #f2c9aa;
  color: var(--ink);
  font-size: clamp(.98rem, .45vw + .9rem, 1.2rem);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
}

.product-copy {
  border-left: 8px solid var(--line);
  padding-left: clamp(1rem, 2.6vw, 2.2rem);
}

.product-copy h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.65rem, 1.6vw + 1rem, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
}

.product-copy p {
  margin: .65rem 0;
  font-size: clamp(1.08rem, .7vw + .95rem, 1.42rem);
  font-weight: 600;
  line-height: 1.45;
}

.product-copy strong {
  font-weight: 900;
}

.claims {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .9rem;
  margin-top: 1rem;
  font-size: clamp(1rem, .6vw + .9rem, 1.22rem);
  font-weight: 900;
}

.claims span + span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1.05em;
  margin: 0 .8rem 0 0;
  vertical-align: -.18em;
  background: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(1rem, 3vw, 3rem) 0 clamp(4rem, 8vw, 8rem);
}

.contact-card {
  border-left: 8px solid var(--line);
  padding-left: clamp(1rem, 3vw, 2.4rem);
}

.contact-card h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.contact-card p,
.contact-list {
  font-size: clamp(1.25rem, 1vw + 1rem, 1.7rem);
  font-weight: 700;
  line-height: 1.5;
}

.contact-list {
  display: grid;
  gap: .7rem;
  margin-top: 1.8rem;
}

.contact-list div {
  display: grid;
  gap: .15rem;
}

.contact-list dt {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-list dd {
  margin: 0;
}

.contact-methods {
  display: grid;
  gap: .7rem;
  margin: clamp(1.4rem, 3vw, 2rem) 0;
}

.contact-method {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  width: fit-content;
  font-size: clamp(1.6rem, 2.1vw, 2.45rem);
  font-weight: 900;
  line-height: 1.1;
}

.contact-method:hover {
  color: var(--red);
}

.contact-symbol {
  display: inline-grid;
  flex: 0 0 auto;
  width: clamp(2.2rem, 3.4vw, 3.2rem);
  aspect-ratio: 1;
  place-items: center;
  background: var(--ink);
  color: var(--bg);
  font-size: .72em;
}

.contact-note {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.2rem, 1vw + 1rem, 1.65rem);
  font-weight: 700;
  line-height: 1.45;
}

.partners-section {
  padding: 0 0 clamp(4rem, 8vw, 8rem);
}

.partners-section h2 {
  margin: 0 0 .8rem;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.partners-intro {
  max-width: 760px;
  margin: 0 0 clamp(1.6rem, 3vw, 2.4rem);
  font-size: clamp(1.2rem, 1vw + 1rem, 1.6rem);
  font-weight: 700;
  line-height: 1.45;
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem clamp(1.5rem, 4vw, 4rem);
  max-width: 900px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partners-list li {
  border-left: 6px solid var(--line);
  padding-left: .85rem;
  font-size: clamp(1.25rem, 1.1vw + 1rem, 1.85rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.company-contact {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--bg-soft);
  border-left: 8px solid var(--red);
}

.company-contact h2 {
  margin: 0 0 .9rem;
  color: var(--red);
  font-size: clamp(1.2rem, 1.2vw + 1rem, 1.75rem);
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.company-contact p {
  margin: .35rem 0;
  font-size: clamp(1.1rem, .8vw + 1rem, 1.45rem);
  font-weight: 700;
}

.site-footer {
  margin-top: auto;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: #202020;
  color: #fff;
}

.footer-inner {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  width: min(420px, 72vw);
  margin: 0 auto clamp(2.2rem, 4vw, 3rem);
}

.footer-line {
  width: 100%;
  height: 3px;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  background: #777;
}

.copyright {
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.5rem);
  letter-spacing: .03em;
}

.menu-page {
  background: #000;
  color: #fff;
}

.menu-page .site-header {
  background: var(--bg);
  color: var(--ink);
}

.menu-board {
  display: grid;
  min-height: calc(100vh - 170px);
  place-items: center;
  padding: clamp(3rem, 8vw, 7rem) 1.5rem;
  background: #000;
}

.menu-board nav {
  display: grid;
  gap: clamp(1.6rem, 5vw, 3rem);
  text-align: center;
}

.menu-board a {
  font-size: clamp(3.2rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.menu-board a:hover {
  color: var(--red);
}

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .main-nav {
    display: none;
  }

  .menu-link {
    display: inline-flex;
    grid-column: 3;
  }

  .brand img {
    width: clamp(180px, 42vw, 260px);
  }
}

@media (max-width: 720px) {
  .header-inner,
  .container {
    width: min(var(--max), calc(100vw - 2rem));
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(118px, 38vw);
    gap: .7rem;
  }

  .eyebrow {
    font-size: .88rem;
    line-height: 1.2;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 10.5vw, 4.2rem);
  }

  .hero-copy,
  .page-intro > .container {
    border-left-width: 7px;
    padding-left: clamp(.9rem, 3vw, 1.2rem);
  }

  .hero-lead {
    max-width: 12.5em;
    font-size: clamp(1.18rem, 5.2vw, 2rem);
    line-height: 1.45;
  }

  .hero-art img {
    width: min(100%, 250px);
  }

  .story-copy {
    font-size: clamp(1.08rem, 4.4vw, 1.35rem);
    line-height: 1.65;
  }

  .product-card,
  .product-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .product-card:nth-child(even) .product-media {
    order: 0;
  }

  .product-media img {
    width: min(78vw, 340px);
  }

  .volume-list {
    gap: .42rem;
  }

  .volume-list li {
    min-width: 4.2em;
    padding: .34rem .58rem;
    font-size: .96rem;
  }

  .product-copy {
    border-left-width: 7px;
  }

  .claims {
    display: grid;
    gap: .45rem;
  }

  .claims span + span::before {
    display: none;
  }

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

  .contact-grid .hero-art {
    order: -1;
  }

  .partners-list {
    grid-template-columns: 1fr;
  }

  .contact-method {
    font-size: clamp(1.2rem, 6vw, 1.7rem);
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-top: 1rem;
  }

  .brand img {
    width: 180px;
  }

  .menu-link {
    width: 54px;
  }

  .menu-icon {
    width: 48px;
    gap: 7px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(82px, 28vw);
    gap: .45rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.3vw, 2.65rem);
  }

  .hero-lead {
    font-size: clamp(1.05rem, 4.9vw, 1.45rem);
  }

  .hero-art img {
    max-width: 150px;
  }
}

@media (min-width: 560px) and (max-width: 900px) {
  .header-inner,
  .container {
    width: min(var(--max), calc(100vw - clamp(5rem, 16vw, 9rem)));
  }

  .site-header {
    padding-top: clamp(1rem, 2.4vw, 1.7rem);
  }

  .page-intro {
    padding-top: clamp(1.5rem, 4vw, 3rem);
  }

  .product-card,
  .product-card:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .product-card:nth-child(even) .product-media {
    order: 0;
  }

  .product-media img {
    width: min(70vw, 360px);
  }
}

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