:root {
  --ink: #202522;
  --muted: #64706a;
  --soft: #f6f1e8;
  --paper: #fffaf2;
  --line: #ded5c6;
  --red: #b42620;
  --red-dark: #84211d;
  --green: #315f4c;
  --gold: #a5762f;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(32, 37, 34, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(222, 213, 198, 0.8);
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex-wrap: wrap;
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 6px;
  color: #37413c;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(180, 38, 32, 0.08);
  color: var(--red-dark);
}

.nav-cta {
  margin-left: 6px;
  background: var(--red) !important;
  color: var(--white) !important;
}

.hero {
  position: relative;
  min-height: min(760px, 86vh);
  display: grid;
  align-items: center;
  color: var(--white);
  background: url("/assets/export-packaging.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 27, 25, 0.61);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 17px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--red-dark);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn.light {
  background: var(--white);
  color: var(--red-dark);
  border-color: var(--line);
}

.btn.light:hover {
  background: #f8eadc;
}

.hero-facts {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.fact {
  min-height: 108px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  color: var(--red-dark);
  font-size: 28px;
  line-height: 1.1;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

.section.compact {
  padding: 56px 0;
}

.section.tint {
  background: var(--soft);
}

.section.deep {
  background: var(--ink);
  color: var(--white);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.page-hero h1 {
  margin: 0;
  color: inherit;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p,
.page-hero p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.deep .section-head p,
.deep .muted {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 22px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card,
.info-card,
.spec-panel,
.partner-card,
.process-step,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
  background: #f4efe5;
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card h3,
.info-card h3,
.spec-panel h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.product-card p,
.info-card p,
.spec-panel p,
.process-step p {
  color: var(--muted);
}

.product-card p {
  margin: 10px 0 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(49, 95, 76, 0.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.text-link {
  color: var(--red-dark);
  font-weight: 850;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.partner-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff6e8;
}

.partner-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.partner-copy {
  position: sticky;
  top: 104px;
}

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

.partner-card {
  min-height: 170px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-card strong {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #f3c16b;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.partner-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.16;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
}

.partner-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.partner-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
}

.selected-partners {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.selected-partners h3 {
  margin: 0 0 12px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
}

.partner-name-list {
  display: grid;
  gap: 10px;
}

.partner-name {
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  background: #fff9ef;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.3;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

th,
td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #f0e6d7;
  color: #393630;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

td {
  color: #3f4742;
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  position: relative;
  padding: 18px;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 850;
}

.process-step h3 {
  margin: 0;
  font-size: 17px;
}

.process-step p {
  margin: 8px 0 0;
  font-size: 14px;
}

.page-hero {
  padding: 76px 0 60px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero.not-found {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 44px;
  align-items: center;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: #fff3df;
  color: #5c4a2f;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.spec-panel {
  padding: 22px;
}

.spec-panel.featured {
  background: var(--ink);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.spec-panel.featured p,
.spec-panel.featured li {
  color: rgba(255, 255, 255, 0.72);
}

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

.metric-strip {
  padding: 24px;
  border-radius: var(--radius);
}

.metric {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.metric strong {
  display: block;
  color: #f3c16b;
  font-size: 34px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.rfq-form {
  display: grid;
  gap: 16px;
}

.required {
  color: var(--red-dark);
}

.submit-status {
  display: none;
  margin-top: 12px;
  padding: 14px;
  border-radius: 6px;
  background: #edf6f0;
  color: #254d3a;
  font-size: 14px;
}

.submit-status.visible {
  display: block;
}

.submit-status.error {
  background: #fff0e8;
  color: #7b2b1d;
}

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

label {
  display: grid;
  gap: 6px;
  color: #38413b;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 12px;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(180, 38, 32, 0.25);
  outline-offset: 2px;
}

.form-output {
  display: none;
  margin-top: 12px;
  padding: 14px;
  border-radius: 6px;
  background: #f6f1e8;
  color: #35413b;
  white-space: pre-wrap;
  font-size: 14px;
}

.form-output.visible {
  display: block;
}

.contact-panel {
  padding: 24px;
}

.footer {
  padding: 44px 0 34px;
  background: #171b18;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 26px;
}

.footer h2,
.footer h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.footer p {
  margin: 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer a:hover {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.subfooter {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    padding: 18px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-nav a {
    justify-content: space-between;
  }

  .hero-facts,
  .grid.four,
  .grid.three,
  .partner-layout,
  .process,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-copy {
    position: static;
  }

  .split,
  .page-hero .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav-wrap,
  .hero-inner,
  .hero-facts,
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 78vh;
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 62px);
  }

  .hero-facts,
  .grid.two,
  .grid.three,
  .grid.four,
  .partner-layout,
  .partner-grid,
  .process,
  .metrics,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero {
    padding: 52px 0 44px;
  }
}
