/* PACKFORM — warm industrial · corrugated craft + steel
   Signature: production-line station rail */

:root {
  --kraft: #e6dcc8;
  --kraft-deep: #c9b896;
  --board: #f3ebe0;
  --ink: #1a1d21;
  --steel: #2e343b;
  --steel-mid: #4a525c;
  --steel-line: #8a929c;
  --copper: #b4532a;
  --copper-hot: #d4652f;
  --tape: #d4a84b;
  --paper: #f7f2ea;
  --muted: #5c635c;
  --ok: #3d6b4f;
  --white: #fffdf9;
  --shadow: 0 18px 40px rgba(26, 29, 33, 0.12);
  --radius: 4px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --nav-h: 68px;
  --max: 1180px;
  --font-display: "Barlow Condensed", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(243, 235, 224, 0.9), rgba(247, 242, 234, 0.95)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 11px,
      rgba(201, 184, 150, 0.18) 11px,
      rgba(201, 184, 150, 0.18) 12px
    );
  background-color: var(--paper);
  line-height: 1.55;
  font-size: 16.5px;
}

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

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

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(247, 242, 234, 0.92);
  border-bottom: 1px solid rgba(46, 52, 59, 0.12);
  backdrop-filter: blur(10px);
}

.site-nav .inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--steel);
  color: var(--kraft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--steel);
  font-weight: 600;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--steel);
  color: var(--white) !important;
  border-bottom: none !important;
  padding: 0.55rem 0.95rem !important;
  border-radius: var(--radius);
  font-size: 0.88rem !important;
}

.nav-cta:hover {
  background: var(--copper) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(46, 52, 59, 0.2);
  background: var(--board);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--copper);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--copper-hot);
}

.btn-steel {
  background: var(--steel);
  color: var(--white);
}

.btn-steel:hover {
  background: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(46, 52, 59, 0.35);
  color: var(--steel);
}

.btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.btn-light {
  background: var(--white);
  color: var(--steel);
}

.btn .arrow {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  line-height: 1;
}

.btn-ghost .arrow {
  background: rgba(46, 52, 59, 0.08);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--nav-h));
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--steel);
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: inherit;
}

.hero-copy {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
  position: relative;
  z-index: 2;
  background:
    linear-gradient(135deg, #242a31 0%, #1a1d21 55%, #2a2018 100%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 75, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 75, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 95%);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tape);
  width: fit-content;
}

.kicker::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--copper);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  max-width: 12ch;
  position: relative;
}

.hero h1 em {
  font-style: normal;
  color: var(--kraft-deep);
}

.hero-lead {
  margin: 0;
  max-width: 36ch;
  color: rgba(247, 242, 234, 0.82);
  font-size: 1.05rem;
  position: relative;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
  margin-top: 0.35rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-top: 0.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(247, 242, 234, 0.12);
  position: relative;
}

.hero-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--kraft);
  line-height: 1;
}

.hero-meta div span {
  font-size: 0.78rem;
  color: rgba(247, 242, 234, 0.65);
}

.hero-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  min-height: 100%;
}

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(26, 29, 33, 0.88);
  color: var(--kraft);
  padding: 0.7rem 0.9rem;
  border-left: 3px solid var(--copper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  max-width: 16rem;
}

/* —— Line rail (signature) —— */
.line-rail-section {
  background: var(--board);
  border-block: 1px solid rgba(46, 52, 59, 0.1);
  padding: 2.5rem 0 2.75rem;
}

.line-rail-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.line-rail-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.line-rail-head p {
  margin: 0;
  color: var(--muted);
  max-width: 34ch;
  font-size: 0.95rem;
}

.line-rail {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0 0.75rem;
  -webkit-overflow-scrolling: touch;
}

.line-rail::-webkit-scrollbar {
  height: 6px;
}

.line-rail::-webkit-scrollbar-thumb {
  background: var(--kraft-deep);
  border-radius: 99px;
}

.line-rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2.15rem;
  height: 3px;
  background: linear-gradient(90deg, var(--steel) 0%, var(--copper) 55%, var(--tape) 100%);
  opacity: 0.85;
  pointer-events: none;
}

.station {
  scroll-snap-align: start;
  padding: 0 0.65rem;
  min-width: 150px;
  position: relative;
}

.station-node {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--steel);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--steel);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--board);
}

.station:nth-child(2) .station-node,
.station:nth-child(3) .station-node,
.station:nth-child(4) .station-node {
  border-color: var(--copper);
  color: var(--copper);
}

.station:last-child .station-node {
  border-color: var(--ok);
  color: var(--ok);
}

.station h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.station p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 18ch;
}

.station .spec {
  display: inline-block;
  margin-top: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--steel);
  background: rgba(46, 52, 59, 0.06);
  padding: 0.2rem 0.45rem;
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-tight {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section-dark {
  background: var(--steel);
  color: var(--white);
}

.section-dark .muted {
  color: rgba(247, 242, 234, 0.68);
}

.section-kraft {
  background: linear-gradient(180deg, #ebe2d2, #e0d4bf);
}

.section-head {
  margin-bottom: 2rem;
  max-width: 42rem;
}

.section-head h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-dark .section-head p {
  color: rgba(247, 242, 234, 0.7);
}

.muted {
  color: var(--muted);
}

/* —— Machine family rows —— */
.family-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.family-row {
  display: grid;
  grid-template-columns: 140px 1.1fr 0.9fr auto;
  gap: 1.25rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(46, 52, 59, 0.1);
  padding: 0.85rem 1rem 0.85rem 0.85rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.family-row:hover {
  transform: translateY(-2px);
  border-color: rgba(180, 83, 42, 0.35);
}

.family-media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--kraft);
  border: 1px solid rgba(46, 52, 59, 0.08);
}

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

.family-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.family-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.family-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.85rem;
}

.family-specs div {
  border-left: 2px solid var(--kraft-deep);
  padding-left: 0.55rem;
}

.family-specs strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.family-specs span {
  font-size: 0.72rem;
  color: var(--muted);
}

.family-cta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: stretch;
  min-width: 8.5rem;
}

/* —— Split / media blocks —— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-copy {
  order: 2;
}

.split-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  aspect-ratio: 16 / 11;
  background: var(--steel);
  box-shadow: var(--shadow);
}

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

.split-media .cap {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.7rem;
}

.split-copy h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.split-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 48ch;
}

.check-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.check-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
  background: var(--copper);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%, 0 65%);
}

/* —— Stats strip —— */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(46, 52, 59, 0.15);
  border: 1px solid rgba(46, 52, 59, 0.12);
}

.stat-strip article {
  background: var(--white);
  padding: 1.35rem 1.1rem;
}

.stat-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--copper);
  line-height: 1;
}

.stat-strip span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* —— Solution path —— */
.solution-path {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(46, 52, 59, 0.12);
  background: var(--white);
}

.path-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid rgba(46, 52, 59, 0.1);
  align-items: start;
}

.path-step:last-child {
  border-bottom: none;
}

.path-step .n {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--kraft-deep);
  line-height: 1;
}

.path-step h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.path-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 60ch;
}

/* —— Pricing —— */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(46, 52, 59, 0.1);
  vertical-align: top;
}

.price-table th {
  background: var(--steel);
  color: var(--kraft);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  background: rgba(180, 83, 42, 0.1);
  color: var(--copper);
  padding: 0.15rem 0.4rem;
  margin-bottom: 0.25rem;
}

.price-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  background: var(--white);
  border: 1px solid rgba(46, 52, 59, 0.12);
  padding: 1.35rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--copper);
  background: linear-gradient(180deg, #fffdf9, #f6ebe3);
}

.price-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.price-card .range {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--copper);
  letter-spacing: 0.02em;
  line-height: 1;
}

.price-card ul {
  margin: 0;
  padding: 0 0 0 1rem;
  color: var(--muted);
  flex: 1;
}

.price-card li + li {
  margin-top: 0.35rem;
}

/* —— About —— */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.about-panel {
  background: var(--white);
  border: 1px solid rgba(46, 52, 59, 0.1);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.about-panel h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.timeline-v {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.timeline-v li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(46, 52, 59, 0.15);
}

.timeline-v li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline-v time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--copper);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  min-height: 360px;
}

.mosaic figure {
  margin: 0;
  overflow: hidden;
  background: var(--kraft);
  position: relative;
}

.mosaic figure:first-child {
  grid-row: 1 / -1;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  min-height: 140px;
}

/* —— Contact —— */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  background: var(--steel);
  color: var(--white);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}

.contact-card p {
  margin: 0 0 1.25rem;
  color: rgba(247, 242, 234, 0.75);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.contact-list li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(247, 242, 234, 0.12);
}

.contact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-list span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tape);
}

.contact-list a,
.contact-list strong {
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--kraft);
}

.form-panel {
  background: var(--white);
  border: 1px solid rgba(46, 52, 59, 0.1);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-panel h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(46, 52, 59, 0.22);
  background: var(--paper);
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(180, 83, 42, 0.15);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.form-success {
  display: none;
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  background: rgba(61, 107, 79, 0.1);
  border-left: 3px solid var(--ok);
  color: var(--ok);
  font-weight: 600;
}

.form-success.show {
  display: block;
}

/* —— Page hero (inner) —— */
.page-hero {
  background: linear-gradient(120deg, #242a31 0%, #1a1d21 50%, #2e241c 100%);
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 75, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 75, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.7;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  max-width: 16ch;
}

.page-hero p {
  margin: 0;
  max-width: 46ch;
  color: rgba(247, 242, 234, 0.78);
  font-size: 1.05rem;
}

.crumbs {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tape);
  margin-bottom: 0.85rem;
}

.crumbs a:hover {
  color: var(--kraft);
}

/* —— Spec matrix —— */
.spec-matrix {
  display: grid;
  gap: 1rem;
}

.spec-block {
  background: var(--white);
  border: 1px solid rgba(46, 52, 59, 0.1);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.spec-block-head {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(46, 52, 59, 0.08);
  background: linear-gradient(90deg, #efe6d6, #f7f2ea);
}

.spec-block-head img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 25%;
  background: var(--kraft);
}

.spec-block-head h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.spec-block-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.spec-table th,
.spec-table td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(46, 52, 59, 0.08);
}

.spec-table th {
  width: 28%;
  color: var(--muted);
  font-weight: 600;
  background: rgba(230, 220, 200, 0.25);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}

/* —— CTA band —— */
.cta-band {
  background:
    linear-gradient(105deg, rgba(26, 29, 33, 0.92), rgba(46, 32, 24, 0.88)),
    url("../../_media/plant-1.jpg") center / cover;
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.cta-band .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.cta-band p {
  margin: 0;
  color: rgba(247, 242, 234, 0.78);
  max-width: 40ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* —— Footer —— */
.site-footer {
  background: #14171b;
  color: rgba(247, 242, 234, 0.78);
  padding: 2.75rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--kraft);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

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

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(247, 242, 234, 0.1);
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.5);
}

/* —— Reveal (visible by default; hide only with js-ready) —— */
.reveal {
  opacity: 1;
  transform: none;
}

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

html.js-ready .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* —— Utilities —— */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(180, 83, 42, 0.1);
  color: var(--copper);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
}

.chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.55rem;
  background: rgba(46, 52, 59, 0.08);
  color: var(--steel);
  border: 1px solid rgba(46, 52, 59, 0.1);
}

.section-dark .chip {
  background: rgba(247, 242, 234, 0.08);
  color: var(--kraft);
  border-color: rgba(247, 242, 234, 0.12);
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
    max-height: 42vh;
  }

  .family-row {
    grid-template-columns: 120px 1fr;
  }

  .family-specs,
  .family-cta {
    grid-column: 1 / -1;
  }

  .family-cta {
    flex-direction: row;
    min-width: 0;
  }

  .split,
  .split.reverse,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: 0;
  }

  .stat-strip,
  .price-cards,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spec-block-head {
    grid-template-columns: 120px 1fr;
  }

  .spec-block-head .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

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

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: rgba(247, 242, 234, 0.98);
    border-bottom: 1px solid rgba(46, 52, 59, 0.12);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.1rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(46, 52, 59, 0.08);
  }

  .nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .stat-strip,
  .price-cards,
  .footer-grid,
  .two-col,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .family-media {
    max-width: 220px;
  }

  .price-table {
    display: block;
    overflow-x: auto;
  }

  .mosaic {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
  }

  .mosaic figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
