/* ============================================================
   DESIGN TOKENS
   All colours, spacing and typography live here — edit here to
   restyle the whole site at once.
============================================================ */
:root {
  /* Palette — understated corporate; green reserved for headings & accents */
  --paper:        #FFFFFF;
  --paper-warm:   #FBFAF6;  /* subtle alternating section wash */
  --paper-shade:  #F2F0E9;  /* card / soft-panel background */
  --ink:          #1C2621;  /* body text — near-black with green undertone */
  --ink-body:     #4A544E;  /* softened body */
  --ink-muted:   #7A827D;   /* captions, labels */
  --rule:         #E1E0D9;  /* dividers */
  --rule-strong:  #C4C1B7;

  /* Ethical green — reserved for headings, marks and small accents */
  --green:        #2E5A3D;
  --green-deep:   #1F3F2A;
  --green-soft:   #6B8977;
  --green-tint:   #E8EDE9;

  /* Small warm accent (for statistics ticks etc, used minimally) */
  --brass:        #A6874A;

  /* Type */
  --f-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --f-sans:  "Source Sans 3", -apple-system, system-ui, "Segoe UI", sans-serif;
  --f-mono:  "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Layout */
  --max:        1200px;
  --max-narrow: 880px;
  --gutter:     clamp(20px, 4vw, 56px);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--green); }

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.h-eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}
.h-eyebrow--muted { color: var(--ink-muted); }
.h-eyebrow--brass { color: var(--brass); }

h1, h2, h3, h4 { font-family: var(--f-serif); font-weight: 400; letter-spacing: -0.01em; color: var(--green); }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 300; color: var(--green-deep); }

.h-display {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.05;
  font-weight: 300;
}
.h-section {
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.15;
  font-weight: 400;
}
.h-sub {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.25;
  font-weight: 500;
}

.lede {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-body);
  font-weight: 400;
  max-width: 60ch;
}

.body-copy { color: var(--ink-body); font-size: 16.5px; line-height: 1.65; max-width: 62ch; }
.body-copy + .body-copy { margin-top: 18px; }

/* ============================================================
   LAYOUT
============================================================ */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap-narrow { max-width: var(--max-narrow); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
section { padding-top: clamp(72px, 9vw, 128px); padding-bottom: clamp(72px, 9vw, 128px); }
section.tight { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }
.section-warm { background: var(--paper-warm); }

/* Small green rule used above section headings — the sector cue */
.green-rule {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--green);
  margin-bottom: 20px;
  vertical-align: middle;
}

/* ============================================================
   TOP BAR
   ------------------------------------------------------------
   LOGO SLOT: replace the <div class="logo-slot">…</div> with an
   <img src="your-logo.png" alt="W.I.T. Commodities"> when your
   corporate logo is ready. Height is capped at 40px.
============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.logo-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.logo-slot__image {
  position: relative;
  display: block;
  height: 64px;
  aspect-ratio: 1600 / 507;
}
.logo-slot__img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  display: block;
}
.logo-slot__image--enhanced::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 34%;
  right: 0;
  top: 72%;
  bottom: 0;
  background: #FFFFFF;
}
.logo-slot__commodities-crop {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  clip-path: inset(74% 0 0 34%);
  transform: scale(1.2);
  transform-origin: 67% 87%;
  pointer-events: none;
}
.logo-slot__tagline {
  display: block;
  margin-top: 6px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #707773;
}
@media (max-width: 520px) {
  .logo-slot__image { height: 52px; }
  .logo-slot__tagline {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 0.07em;
  }
}
.topnav { display: flex; gap: 32px; }
.topnav a {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-body);
  letter-spacing: 0.01em;
}
.topnav a:hover { color: var(--green); }
.topbar__cta {
  padding: 10px 18px;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all .18s ease;
}
.topbar__cta:hover { background: var(--green); color: var(--paper); }
@media (max-width: 820px) {
  .topnav { display: none; }
  .topbar__cta { display: none; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  padding: clamp(72px, 10vw, 128px) 0 clamp(56px, 8vw, 96px);
  background:
    linear-gradient(180deg, rgba(46,90,61,0.04) 0%, rgba(255,255,255,0) 60%),
    var(--paper);
  position: relative;
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.hero h1 { margin-top: 20px; max-width: 14ch; }
.hero__lede { margin-top: 32px; }
.hero__actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--f-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
}
.btn--primary { background: var(--green); color: var(--paper); border-color: var(--green); }
.btn--primary:hover { background: var(--green-deep); border-color: var(--green-deep); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--green); border-color: var(--green); }
.btn--ghost:hover { background: var(--green); color: var(--paper); }
.btn__arrow { transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Hero visual — realistic product and international-trade photography. */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
  background: var(--green-tint);
  border: 1px solid var(--rule);
  box-shadow: 0 20px 50px -30px rgba(28,38,33,0.15);
}
.hero__photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__visual > svg { display: none; }
.hero__visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(20,40,27,0.58) 100%);
  pointer-events: none;
}
.hero__stamp {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  right: 24px;
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(20,40,27,0.55);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.hero__stamp .divider { flex: 1; height: 1px; background: rgba(255,255,255,0.55); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   STAT STRIP
============================================================ */
.stat-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-warm);
}
.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
}
.stat {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: none; }
.stat__value {
  font-family: var(--f-serif);
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
}
.stat__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (max-width: 780px) {
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

/* ============================================================
   PURPOSE / ABOUT
============================================================ */
.purpose__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 820px) {
  .purpose__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   PRODUCTS
============================================================ */
.products__head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 6vw, 96px);
  margin-bottom: clamp(48px, 6vw, 80px);
  align-items: end;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.6vw, 36px);
}
.product-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.product-card:hover {
  border-color: var(--green-soft);
  box-shadow: 0 20px 50px -30px rgba(28,38,33,0.2);
  transform: translateY(-2px);
}
.product-card__image {
  /* Slot for product photography. To swap or add a new image later,
     drop an <img src="assets/YOUR-IMAGE.png" alt="…"> inside this div. */
  aspect-ratio: 4 / 3;
  background: var(--green-tint);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.product-card__image svg,
.product-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-card__body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.product-card__label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.product-card h3 {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.product-card p {
  color: var(--ink-body);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.product-card__specs {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card__spec {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  font-size: 13.5px;
  align-items: baseline;
}
.product-card__spec .k {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 1px;
}
.product-card__spec .v { color: var(--ink); }

@media (max-width: 980px) { .products__grid { grid-template-columns: 1fr; } }
@media (max-width: 820px) {
  .products__head { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================================
   SUSTAINABILITY
============================================================ */
.sustain {
  background: var(--paper-warm);
}
.sustain__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.sustain__points { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.sustain__point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.sustain__point:last-child { border-bottom: 1px solid var(--rule); }
.sustain__point .num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--green);
  letter-spacing: 0.14em;
  padding-top: 3px;
}
.sustain__point h4 {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.sustain__point p {
  color: var(--ink-body);
  font-size: 15.5px;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .sustain__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CSR & SUSTAINABILITY POLICY
============================================================ */
.csr { background: var(--paper-warm); border-top: 1px solid var(--rule); }
.csr__head { max-width: 780px; margin-bottom: clamp(48px, 6vw, 72px); }

.policy { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 64px); }
.policy__article {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--rule);
}
.policy__article:first-child { padding-top: 0; border-top: none; }
.policy__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  padding-top: 8px;
}
.policy__h3 {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--green);
  letter-spacing: -0.005em;
  margin-bottom: 18px;
}
.policy__body p {
  color: var(--ink-body);
  font-size: 16px;
  line-height: 1.65;
  max-width: 64ch;
}
.policy__body p + p { margin-top: 14px; }
.policy__body strong { color: var(--ink); font-weight: 600; }

/* Seven principles list */
.principles-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.principle {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--green);
  border-radius: 2px;
}
.principle__mark {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.principle h4 {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.principle p {
  color: var(--ink-body);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Policy footer meta */
.policy__meta {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.policy__meta strong { color: var(--ink); font-weight: 500; display: block; margin-top: 4px; letter-spacing: 0.06em; }

@media (max-width: 820px) {
  .policy__article { grid-template-columns: 1fr; gap: 12px; }
  .policy__num { padding-top: 0; }
  .principles-list { grid-template-columns: 1fr; }
  .policy__meta { grid-template-columns: 1fr; }
}

/* ============================================================
   BRAND MARK BAND — a prominent second placement of the corporate
   logo between Leadership and Contact.  Uses the warm off-white
   wash so the green logo reads clearly.
============================================================ */
.brand-mark {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(56px, 7vw, 96px) var(--gutter);
  text-align: center;
}
.brand-mark__img {
  max-width: 520px;
  width: 98%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ============================================================
   LEADERSHIP
============================================================ */
.leaders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
  max-width: 720px;
  margin-top: 48px;
}
.leader {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--green);
  border-radius: 2px;
}
.leader__role {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.leader__name {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
@media (max-width: 640px) { .leaders { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: var(--green-deep);
  color: var(--paper);
}
.contact h2 { color: var(--paper); }
.contact h2 em { color: #B7D1BB; }
.contact .h-eyebrow { color: #B7D1BB; }
.contact .lede { color: rgba(255,255,255,0.85); max-width: 52ch; }
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact__details {
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
  padding-top: 28px;
}
.contact__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact__row:last-child { border-bottom: none; }
.contact__row .k {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: #B7D1BB;
  text-transform: uppercase;
}
.contact__row .v {
  font-size: 15.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.contact__row a { color: rgba(255,255,255,0.92); }
.contact__row a:hover { color: #B7D1BB; }

.contact__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px;
  border-radius: 3px;
}
.contact__card h3 {
  color: var(--paper);
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}
.contact__card p {
  color: rgba(255,255,255,0.85);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.contact__card .btn--primary { background: var(--paper); color: var(--green-deep); border-color: var(--paper); }
.contact__card .btn--primary:hover { background: transparent; color: var(--paper); border-color: var(--paper); }

.buyer-form {
  display: grid;
  gap: 24px;
}
.buyer-form__section {
  display: grid;
  gap: 16px;
}
.buyer-form__section + .buyer-form__section {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.buyer-form__heading {
  margin: 0;
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.buyer-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.buyer-form__field {
  display: grid;
  gap: 7px;
}
.buyer-form__field--wide { grid-column: 1 / -1; }
.buyer-form label {
  color: rgba(255,255,255,0.82);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.buyer-form input,
.buyer-form select,
.buyer-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 2px;
  background: rgba(255,255,255,0.07);
  color: var(--paper);
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  padding: 12px 13px;
  outline: none;
  transition: border-color .18s ease, background .18s ease;
}
.buyer-form input::placeholder,
.buyer-form textarea::placeholder { color: rgba(255,255,255,0.46); }
.buyer-form input:focus,
.buyer-form select:focus,
.buyer-form textarea:focus {
  border-color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.11);
}
.buyer-form select option { color: #14281B; }
.buyer-form textarea {
  min-height: 150px;
  resize: vertical;
}
.buyer-form .btn {
  justify-self: start;
  cursor: pointer;
}
.buyer-form__note {
  margin: -8px 0 0 !important;
  color: rgba(255,255,255,0.62) !important;
  font-family: var(--f-mono);
  font-size: 10px !important;
  letter-spacing: 0.05em;
  line-height: 1.55 !important;
}
.buyer-form__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.buyer-form__status {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.28);
  border-left: 3px solid #B7D1BB;
  color: var(--paper);
  background: rgba(255,255,255,0.08);
  font-size: 14px;
}
.buyer-form__status--error { border-left-color: #E1A08E; }
.buyer-form .btn:disabled { opacity: .68; cursor: wait; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .contact__card { padding: 28px 22px; }
  .buyer-form__grid { grid-template-columns: 1fr; }
  .buyer-form__field--wide { grid-column: auto; }
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: #14281B;
  color: rgba(255,255,255,0.7);
  padding: 40px var(--gutter);
  font-size: 13px;
}
footer .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
