:root {
  --blue: #6388A2;
  --blue-dark: #4F7189;
  --cream: #F3F0DF;
  --cream-soft: #FBF8E9;
  --black: #0A0A08;
  --ink: #25221F;
  --muted: #5E5A54;
  --orange: #F58A1F;
  --yellow: #F7CD21;
  --red: #EF4C32;
  --green: #0F6D3B;
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(10, 10, 8, .18);
  --shadow-soft: 0 14px 34px rgba(10, 10, 8, .12);
  --radius: 30px;
  --max: 1180px;
  --mono: "Courier New", Courier, monospace;
  --display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--mono);
  color: var(--ink);
  background: var(--blue);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: var(--black);
  color: var(--cream);
  padding: .8rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(99, 136, 162, .92);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(10, 10, 8, .22);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--black);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.08em;
}

.brand img {
  width: 98px;
  max-height: 62px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: .92rem;
  font-weight: 700;
  color: var(--black);
}

.nav a {
  position: relative;
  padding: .4rem .15rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--cream);
  transition: width .24s ease;
}

.nav a:hover::after {
  width: 100%;
}

.menu-button {
  display: none;
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
  border-radius: 999px;
  padding: .7rem 1rem;
  font-family: var(--mono);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border: 2px solid var(--black);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .95rem;
  font-weight: 900;
  background: var(--black);
  color: var(--cream);
  box-shadow: 7px 7px 0 rgba(10, 10, 8, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 rgba(10, 10, 8, .18);
}

.button--cream {
  background: var(--cream);
  color: var(--black);
}

.button--outline {
  background: transparent;
  color: var(--black);
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  scroll-margin-top: 96px;
}

.section-title {
  max-width: 920px;
  margin: 0 auto 3rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .45rem .8rem;
  border: 2px solid var(--black);
  background: var(--cream);
  color: var(--black);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 5px 5px 0 rgba(10, 10, 8, .15);
}

h1,
h2,
h3 {
  color: var(--black);
  font-weight: 900;
  letter-spacing: -.05em;
}

h1 {
  font-family: var(--display);
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: .72;
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: .95;
}

h3 {
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 1;
}

.lead {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .lead {
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-note {
  display: grid;
  gap: .6rem;
  max-width: 620px;
  font-weight: 900;
}

.hero-art {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: end center;
}

.image-slot {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
  border: 3px dashed rgba(10, 10, 8, .22);
  border-radius: var(--radius);
  background: rgba(243, 240, 223, .18);
  overflow: hidden;
}

.image-slot::before {
  content: attr(data-label);
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  padding: .6rem .8rem;
  border-radius: 999px;
  background: rgba(243, 240, 223, .86);
  color: var(--black);
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-art .image-slot {
  min-height: 610px;
  border: 0;
  background: transparent;
  overflow: visible;
}

.hero-art .image-slot::before {
  display: none;
}

.paper {
  background: var(--cream);
  border: 2px solid rgba(10, 10, 8, .08);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.origin-text {
  color: var(--ink);
  font-size: clamp(.98rem, 1.6vw, 1.12rem);
  font-weight: 700;
  white-space: pre-line;
}

.origin-art .image-slot {
  min-height: 600px;
  border: 0;
  background: transparent;
}

.products {
  background: var(--cream-soft);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .75fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 4rem;
  background: var(--cream);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 4vw, 3rem);
  box-shadow: 12px 12px 0 rgba(10, 10, 8, .12);
}

.product-card:nth-child(even) {
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1fr);
}

.product-card:nth-child(even) .product-copy {
  order: 2;
}

.product-card:nth-child(even) .product-media {
  order: 1;
}

.product-kicker {
  margin-bottom: .9rem;
  font-weight: 900;
  color: var(--blue-dark);
}

.product-copy h3 {
  margin-bottom: 1.2rem;
}

.product-copy dl {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0 0;
}

.product-copy div {
  display: grid;
  gap: .15rem;
}

.product-copy dt {
  font-weight: 900;
  color: var(--black);
}

.product-copy dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.price {
  display: inline-grid;
  gap: .25rem;
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
  color: var(--black);
  text-align: center;
  letter-spacing: .03em;
}

.product-media .image-slot {
  min-height: 320px;
  background: rgba(99, 136, 162, .16);
}

.methods {
  background: var(--blue);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.method-panel {
  background: var(--cream);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 2rem);
  box-shadow: 12px 12px 0 rgba(10, 10, 8, .14);
}

.method-panel h3 {
  margin-bottom: 1rem;
}

.method-panel .image-slot {
  min-height: 390px;
  background: transparent;
}

.note {
  max-width: 920px;
  margin: 2rem auto 0;
  font-weight: 900;
  color: var(--black);
  text-align: center;
}

.experience {
  background: var(--cream-soft);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.experience-copy {
  display: grid;
  gap: 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
}

.contact-card {
  background: var(--cream);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 12px 12px 0 rgba(10, 10, 8, .14);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.contact-list a {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.footer {
  background: var(--black);
  color: var(--cream);
  padding: 2rem 0;
  text-align: center;
  font-weight: 900;
}

.footer p + p {
  margin-top: .5rem;
  opacity: .8;
}

.mobile-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: var(--blue);
    border-bottom: 2px solid rgba(10, 10, 8, .22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .24s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(10, 10, 8, .16);
  }

  .hero-grid,
  .origin-grid,
  .product-card,
  .product-card:nth-child(even),
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .product-card:nth-child(even) .product-copy,
  .product-card:nth-child(even) .product-media {
    order: initial;
  }

  .hero-art {
    min-height: auto;
  }

  .hero-art .image-slot {
    min-height: 440px;
  }

  .origin-art .image-slot {
    min-height: 420px;
  }

  .methods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 78px;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .paper {
    padding: 1.25rem;
  }

  .product-card,
  .method-panel,
  .contact-card {
    border-width: 2px;
    box-shadow: 8px 8px 0 rgba(10, 10, 8, .14);
  }

  .mobile-cta {
    display: inline-flex;
    width: auto;
  }

  .header-inner > .button {
    display: none;
  }
}