:root {
  --ink: #161513;
  --muted: #69635a;
  --paper: #f6f2ea;
  --white: #fffdf8;
  --kraft: #b6864f;
  --graphite: #232526;
  --green: #315f4c;
  --blue: #5f7880;
  --line: rgba(22, 21, 19, 0.14);
  --shadow: 0 24px 80px rgba(22, 21, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 20, 17, 0.86), rgba(20, 20, 17, 0.52) 38%, rgba(20, 20, 17, 0.08) 72%),
    linear-gradient(0deg, rgba(20, 20, 17, 0.52), rgba(20, 20, 17, 0.04) 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 48px));
  padding: 178px 0 140px 8vw;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-kicker.light {
  color: #d8c9a9;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--white);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.7);
}

.form-button {
  width: fit-content;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.hero-notes {
  position: absolute;
  z-index: 3;
  left: 8vw;
  right: 8vw;
  bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 253, 248, 0.86);
}

.hero-notes span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 253, 248, 0.32);
  border-radius: 999px;
  background: rgba(22, 21, 19, 0.2);
}

.section-pad {
  padding: 112px 8vw;
}

.intro {
  background: var(--paper);
}

.intro-grid,
.section-heading,
.quality-inner,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 72px;
  align-items: start;
}

.intro-grid p,
.section-heading p,
.map-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-row div {
  min-height: 142px;
  padding: 28px;
  background: var(--white);
}

.proof-row strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
}

.proof-row span {
  color: var(--muted);
}

.products {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.product-card {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f1;
}

.product-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}

.product-card:nth-child(1) img {
  object-position: center;
}

.product-card:nth-child(2) img {
  object-position: center 36%;
}

.product-card:nth-child(3) img {
  object-position: center 80%;
}

.product-card div,
.product-card.text-card {
  padding: 24px;
}

.product-card p,
.spec-item p,
.quality-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.text-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
}

.text-card:nth-child(4) {
  background: #f4efe5;
}

.text-card:nth-child(5) {
  background: #edf1ed;
}

.text-card:nth-child(6) {
  background: #eef2f3;
}

.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--graphite);
  color: var(--white);
}

.map-media {
  min-height: 520px;
}

.map-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 8vw 96px 72px;
}

.map-copy p,
.quality-list p {
  color: rgba(255, 253, 248, 0.72);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  color: rgba(255, 253, 248, 0.86);
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "+";
  color: #d8c9a9;
  font-weight: 800;
}

.custom {
  background: var(--paper);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.spec-item {
  min-height: 300px;
  padding: 28px;
  background: var(--white);
}

.spec-item span {
  display: inline-block;
  margin-bottom: 66px;
  color: var(--green);
  font-weight: 800;
}

.quality {
  padding: 96px 8vw;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(35, 37, 38, 0.96), rgba(35, 37, 38, 0.88)),
    url("assets/hero-paper-packaging.png") center / cover;
}

.quality-list {
  display: grid;
  gap: 22px;
}

.quality-list strong {
  color: var(--white);
}

.contact {
  background: var(--white);
}

.direct-mail {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 21, 19, 0.18);
  border-radius: 6px;
  padding: 14px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(49, 95, 76, 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 8vw;
  color: rgba(255, 253, 248, 0.72);
  background: var(--ink);
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .intro-grid,
  .section-heading,
  .quality-inner,
  .contact,
  .map-section {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-copy {
    padding: 72px 8vw;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    border-radius: 6px;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 126px 0 160px 18px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20, 20, 17, 0.86), rgba(20, 20, 17, 0.56)),
      linear-gradient(0deg, rgba(20, 20, 17, 0.62), rgba(20, 20, 17, 0.05) 45%);
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy,
  .intro-grid p,
  .section-heading p,
  .map-copy p,
  .contact-copy p {
    font-size: 16px;
  }

  .section-pad {
    padding: 76px 18px;
  }

  .hero-notes {
    left: 18px;
    right: 18px;
  }

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

  .product-card {
    min-height: auto;
  }

  .map-section {
    min-height: 0;
  }

  .map-media {
    min-height: 430px;
  }

  .quality {
    padding: 76px 18px;
  }

  .site-footer {
    flex-direction: column;
    padding: 30px 18px;
  }
}
