:root {
  --bg: #fbf8f2;
  --surface: #ffffff;
  --surface-alt: #f2ede2;
  --ink: #2b2620;
  --muted: #726b5c;
  --accent: #a23b2e;
  --accent-soft: #efdcd3;
  --accent-2: #51603c;
  --accent-2-soft: #e1e6d4;
  --border: rgba(43, 38, 32, 0.1);
  --radius-lg: 22px;
  --radius-sm: 12px;
  --shadow-soft: 0 24px 48px rgba(43, 38, 32, 0.08);
  --shadow-card: 0 12px 28px rgba(43, 38, 32, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

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

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

p,
ul,
dl,
h1,
h2,
h3 {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
}

.site-header,
.section,
.site-footer {
  padding-inline: clamp(1.5rem, 4vw, 3.5rem);
}

.site-header {
  background: linear-gradient(180deg, #a23b2e 0%, #d77d72 42%, #fbf8f2 100%);
  padding-block: 1.4rem;
}

.site-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.wordmark {
  display: inline-flex;
  align-items: center;
}

.wordmark img {
  display: block;
  width: auto;
  height: 4.5rem;
  max-width: min(100%, 15rem);
}

.tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.96);
  text-align: center;
  flex: 1 1 16rem;
}

.site-header .button-dark {
  background: #008001;
}

.section {
  padding-block: clamp(4.25rem, 7vw, 5.25rem);
}

.section-alt {
  background: var(--surface-alt);
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-narrow {
  max-width: 760px;
}

.section-why {
  max-width: 820px;
}

.hero,
.split {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}

.hero {
  justify-content: center;
}

.split-reverse {
  flex-wrap: wrap-reverse;
}

.hero-copy,
.split-copy {
  flex: 1 1 26rem;
}

.hero-copy {
  flex-basis: 100%;
  max-width: 900px;
  text-align: center;
}

.hero-media,
.split-media,
.machine-panel {
  flex: 1 1 23.75rem;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-green {
  color: var(--accent-2);
}

h1 {
  max-width: none;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h2,
.cta-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.lead,
.split-copy p:not(.eyebrow),
.center-copy,
.cta-copy {
  font-size: 1rem;
  line-height: 1.62;
  color: var(--muted);
}

.lead {
  max-width: 52rem;
  margin-top: 1.5rem;
  margin-inline: auto;
}

.hero .button-row {
  justify-content: center;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.875rem 1.625rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: background-color 150ms ease, border-color 150ms ease, opacity 150ms ease;
}

.button:hover {
  opacity: 0.9;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-ghost {
  border-color: var(--border);
  color: var(--ink);
  background: transparent;
}

.button-inverse {
  background: #fff;
  color: var(--ink);
}

.media-card img,
.split-media img {
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.machine-panel {
  display: flex;
  justify-content: center;
  padding: 2rem;
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
}

.machine-panel img {
  width: min(100%, 340px);
  height: 320px;
  object-fit: contain;
}

.bullet-list,
.spec-list,
.why-list {
  list-style: none;
  padding: 0;
}

.bullet-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.8rem;
}

.bullet-list li,
.spec-list li,
.why-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.58;
}

.bullet-list li::before,
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.bullet-list-green li::before {
  background: var(--accent-2);
}

.bullet-list-tight {
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.section-title-centered {
  text-align: center;
}

.spec-grid,
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.spec-card,
.product-card {
  flex: 1 1 20rem;
  padding: 1.75rem;
}

.spec-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  margin: -0.25rem 0 1.25rem;
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f8f5ee);
}

.spec-image-wrap img {
  width: auto;
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pill-red {
  background: var(--accent-soft);
  color: var(--accent);
}

.tag {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
}

.spec-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.sub-card {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--border);
}

.sub-card-title,
.machine-group-title {
  font-size: 1rem;
  font-weight: 600;
}

.machine-group + .machine-group {
  margin-top: 1.35rem;
}

.center-copy {
  max-width: 42rem;
  margin: 1rem auto 0;
  text-align: center;
}

.color-frame {
  margin-top: 2.25rem;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

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

.color-tile {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f8f5ee);
}

.color-tile img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

.color-tile figcaption {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

.product-image-band {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  margin: -1.75rem -1.75rem 1.4rem;
  padding: 1.25rem;
  background: var(--accent-2-soft);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-image-band img {
  max-width: 11rem;
  max-height: 8.5rem;
  object-fit: contain;
}

.product-number {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.spec-table {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(0, 7rem) minmax(0, 1fr);
  gap: 0.75rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

.spec-table dt,
.spec-table dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.spec-table dt {
  color: var(--ink);
  font-weight: 600;
}

.spec-table dd {
  color: var(--muted);
}

.why-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.cta-band {
  padding: clamp(4rem, 7vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.cta-copy {
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.74);
}

.cta-band .button-inverse {
  margin-top: 1.75rem;
}

.site-footer {
  padding-block: 1.75rem 2.5rem;
  text-align: center;
}

.site-footer p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.site-footer p + p {
  margin-top: 0.35rem;
  opacity: 0.78;
}

@media (max-width: 40rem) {
  .site-header-inner {
    justify-content: center;
  }

  .tagline {
    order: 3;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

@media (max-width: 64rem) {
  .color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
