/* ============================================================
   ACME GLOBAL — Industrial Export House
   Design system for acmegt.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@500;700;800;900&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Palette */
  --ink: #0F0F0E;
  --ink-soft: #1C1C1A;
  --steel: #3A3937;
  --rust: #B8451F;
  --rust-hot: #D9501F;
  --ochre: #D69F4C;
  --bone: #EEEAE0;
  --paper: #F6F3EC;
  --line: rgba(15, 15, 14, 0.14);
  --line-strong: rgba(15, 15, 14, 0.4);
  --on-dark-line: rgba(238, 234, 224, 0.18);

  /* Type */
  --display: 'Big Shoulders Display', 'Arial Black', sans-serif;
  --body: 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --gutter: clamp(20px, 4vw, 64px);
  --max: 1440px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Grain overlay for industrial feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   Utility / Atoms
   ============================================================ */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink);
}

.display {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--rust); border-color: var(--rust); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); box-shadow: 4px 4px 0 var(--rust); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  font-weight: 500;
}
.tag--dark { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.tag--rust { background: var(--rust); color: var(--bone); border-color: var(--rust); }

.section {
  padding-block: clamp(80px, 10vw, 140px);
  position: relative;
  border-top: 1px solid var(--line);
}
.section--dark {
  background: var(--ink);
  color: var(--bone);
}
.section--dark .eyebrow { color: rgba(238, 234, 224, 0.7); }
.section--dark .eyebrow::before { background: var(--bone); }

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(48px, 7vw, 96px);
}
.section-header p {
  font-size: 17px;
  line-height: 1.55;
  max-width: 50ch;
  color: var(--steel);
}
.section--dark .section-header p { color: rgba(238, 234, 224, 0.75); }

@media (max-width: 800px) {
  .section-header { grid-template-columns: 1fr; gap: 24px; }
}

/* Corner brackets for cards */
.bracket {
  position: relative;
}
.bracket::before,
.bracket::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  pointer-events: none;
}
.bracket::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.bracket::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* ============================================================
   Top Bar (Status Strip)
   ============================================================ */

.status-strip {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid var(--on-dark-line);
}
.status-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.status-strip .pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status-strip .pulse::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rust-hot);
  box-shadow: 0 0 0 0 var(--rust-hot);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 80, 31, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(217, 80, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 80, 31, 0); }
}
.status-strip .meta { opacity: 0.6; }

/* ============================================================
   Header / Nav
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--bone);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.04em;
}
.brand-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.2em;
  margin-top: 4px;
  color: var(--steel);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--rust);
  transition: width 0.25s ease;
}
.site-nav a:hover { color: var(--rust); }
.site-nav a:hover::after { width: 100%; }
.site-nav .cta-link {
  background: var(--ink);
  color: var(--bone);
  padding: 10px 18px;
  letter-spacing: 0.16em;
}
.site-nav .cta-link::after { display: none; }
.site-nav .cta-link:hover { background: var(--rust); color: var(--bone); }

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bone);
    flex-direction: column;
    gap: 0;
    padding: 20px var(--gutter) 30px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
  }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,14,0.35) 0%, rgba(15,15,14,0.15) 35%, rgba(15,15,14,0.85) 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(238,234,224,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238,234,224,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 120px 80px;
  width: 100%;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-meta span {
  padding: 6px 12px;
  border: 1px solid rgba(238, 234, 224, 0.3);
  color: rgba(238, 234, 224, 0.85);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 16ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--ochre);
  font-weight: 800;
}
.hero p.lede {
  max-width: 56ch;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: rgba(238, 234, 224, 0.88);
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-ctas .btn {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--ink);
}
.hero-ctas .btn:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--bone);
  box-shadow: 4px 4px 0 var(--bone);
}
.hero-ctas .btn--ghost {
  background: transparent;
  color: var(--bone);
}
.hero-ctas .btn--ghost:hover {
  background: var(--bone);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--rust);
}

.hero-stats {
  position: absolute;
  right: var(--gutter);
  top: 130px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238, 234, 224, 0.7);
}
.hero-stats .num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--bone);
  display: block;
  margin-bottom: 4px;
}
.hero-stats .num em { color: var(--ochre); font-style: normal; }

@media (max-width: 900px) {
  .hero-stats { display: none; }
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(238, 234, 224, 0.6);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 32px;
  background: rgba(238, 234, 224, 0.4);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   Ticker / Marquee
   ============================================================ */

.ticker {
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--on-dark-line);
  border-bottom: 1px solid var(--on-dark-line);
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.ticker-track span::after {
  content: '✦';
  color: var(--rust);
  font-size: 14px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   About
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text h2 {
  font-size: clamp(40px, 6vw, 84px);
  margin-bottom: 32px;
}
.about-text h2 em {
  font-style: normal;
  color: var(--rust);
}
.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--steel);
  margin-bottom: 20px;
  max-width: 56ch;
}

.metric-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}
.metric {
  padding: 28px 24px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
}
.metric:nth-child(odd) { background: var(--bone); }
.metric .num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.metric .num em { font-style: normal; color: var(--rust); }
.metric .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 12px;
  color: var(--steel);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   Product Grid
   ============================================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}
.product-card {
  position: relative;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.3s ease;
}
.product-card:hover { background: var(--bone); }
.product-card:nth-child(even) { background: var(--bone); }
.product-card:nth-child(even):hover { background: var(--paper); }

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--steel);
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.product-card:hover .product-card-media img { transform: scale(1.06); }
.product-card-media .ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--bone);
  color: var(--ink);
  border: 1px solid var(--ink);
  font-weight: 500;
}
.product-card-media .code {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--bone);
  background: rgba(15, 15, 14, 0.7);
  padding: 5px 10px;
  border: 1px solid rgba(238, 234, 224, 0.2);
}

.product-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card-body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.product-card-body .varieties {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 22px;
  flex-grow: 1;
}
.product-card-body .varieties span {
  display: inline-block;
  margin-right: 4px;
}
.product-card-body .varieties span::after {
  content: ' /';
  color: var(--line-strong);
}
.product-card-body .varieties span:last-child::after { content: ''; }

.product-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1.5px solid var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.product-card-link:hover { color: var(--rust); }
.product-card-link .arrow {
  transition: transform 0.25s ease;
  font-size: 16px;
}
.product-card:hover .product-card-link .arrow { transform: translateX(6px); }

@media (max-width: 1000px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
}

.catalog-cta {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

/* ============================================================
   Process
   ============================================================ */

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--on-dark-line);
  border-left: 1.5px solid var(--on-dark-line);
}
.process-step {
  padding: 36px 28px 40px;
  border-right: 1.5px solid var(--on-dark-line);
  border-bottom: 1.5px solid var(--on-dark-line);
  position: relative;
}
.process-step .step-no {
  font-family: var(--display);
  font-weight: 900;
  font-size: 96px;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: var(--rust);
  margin-bottom: 20px;
  display: block;
}
.process-step h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  line-height: 1.05;
}
.process-step p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(238, 234, 224, 0.72);
}

@media (max-width: 1000px) {
  .process-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   Why Us
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}
.why-card {
  padding: 40px 32px 44px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--bone);
  position: relative;
  transition: background 0.25s;
}
.why-card:hover { background: var(--paper); }
.why-card .why-no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--steel);
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.why-card .why-no .dot {
  width: 8px;
  height: 8px;
  background: var(--rust);
  display: inline-block;
}
.why-card h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
}
.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--steel);
}

@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Contact
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}
.contact-form {
  display: grid;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.field input,
.field textarea {
  font-family: var(--body);
  font-size: 16px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rust);
  background: var(--bone);
}
.field textarea { min-height: 140px; }

.contact-info {
  border: 1.5px solid var(--ink);
  padding: 36px 32px;
  background: var(--paper);
}
.contact-info .eyebrow { margin-bottom: 28px; }
.contact-info dl { display: grid; gap: 24px; }
.contact-info dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 4px;
}
.contact-info dd {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
}
.contact-info dd a:hover { color: var(--rust); }
.contact-info .ports {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.9;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding-block: 64px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--on-dark-line);
}
.footer-top h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238, 234, 224, 0.5);
  margin-bottom: 18px;
}
.footer-top ul { list-style: none; display: grid; gap: 10px; }
.footer-top a {
  font-size: 14px;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.footer-top a:hover { opacity: 1; color: var(--ochre); }
.footer-brand .brand-mark { background: var(--bone); color: var(--ink); }
.footer-brand .brand-name { color: var(--bone); }
.footer-brand p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(238, 234, 224, 0.75);
  max-width: 38ch;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(238, 234, 224, 0.55);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   Animations on scroll
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }

/* ============================================================
   Subpage-specific
   ============================================================ */

.subhero {
  background: var(--ink);
  color: var(--bone);
  padding-block: 90px 80px;
  position: relative;
  overflow: hidden;
}
.subhero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
}
.subhero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 11vw, 144px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.subhero h1 em { font-style: normal; color: var(--ochre); }
.subhero .lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(238, 234, 224, 0.85);
  margin-bottom: 36px;
  max-width: 50ch;
}
.subhero-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  border-top: 1px solid var(--on-dark-line);
  border-left: 1px solid var(--on-dark-line);
  max-width: 600px;
}
.subhero-meta div {
  padding: 18px 22px;
  border-right: 1px solid var(--on-dark-line);
  border-bottom: 1px solid var(--on-dark-line);
}
.subhero-meta dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238, 234, 224, 0.55);
  margin-bottom: 4px;
}
.subhero-meta dd {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: var(--bone);
}

.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238, 234, 224, 0.6);
  margin-bottom: 36px;
}
.breadcrumb a:hover { color: var(--ochre); }
.breadcrumb .sep { margin: 0 10px; opacity: 0.5; }

@media (max-width: 900px) {
  .subhero-grid { grid-template-columns: 1fr; }
}

/* Variety table on subpages */
.variety-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}
.variety {
  padding: 36px 32px 40px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}
.variety:nth-child(even) { background: var(--bone); }
.variety-image {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1.5px solid var(--ink);
}
.variety-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.variety:hover .variety-image img { transform: scale(1.04); }
.variety-info .v-code {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--steel);
  margin-bottom: 8px;
}
.variety-info h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.variety-info p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--steel);
  margin-bottom: 18px;
}
.variety-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.variety-info dt { color: var(--steel); text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; }
.variety-info dd { font-weight: 500; }

@media (max-width: 800px) {
  .variety-list { grid-template-columns: 1fr; }
  .variety { grid-template-columns: 1fr; gap: 24px; }
}

/* Specs strip */
.specs-strip {
  background: var(--paper);
  padding: 36px var(--gutter);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.spec-item .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
.spec-item .value {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .specs-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Other categories nav strip (subpages) */
.other-cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}
.other-cat-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px 24px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--bone);
  min-height: 180px;
  transition: background 0.25s, color 0.25s;
  position: relative;
}
.other-cat-link:hover { background: var(--ink); color: var(--bone); }
.other-cat-no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  transition: color 0.25s;
}
.other-cat-link:hover .other-cat-no { color: rgba(238,234,224,0.7); }
.other-cat-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-top: 32px;
}
.other-cat-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-family: var(--mono);
  font-size: 18px;
  transition: transform 0.25s;
}
.other-cat-link:hover .other-cat-arrow { transform: translateX(4px); }

@media (max-width: 1000px) { .other-cats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .other-cats { grid-template-columns: repeat(2, 1fr); } }

/* Make contact CTA section stack on mobile (subpage bottom) */
@media (max-width: 800px) {
  .section--dark > .container[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

/* Brand logo image (overrides the lettered brand mark) */
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .brand-logo { height: 36px; }
}
