/* =========================================================
   KER TAR AGRO — Sitewide stylesheet
   Warm agricultural palette · readable for all ages
   ========================================================= */

:root {
  /* Palette */
  --bg: #faf6ee;
  --bg-sand: #f3ecd9;
  --bg-deep: #ece2c5;
  --ink: #2a1f15;
  --ink-soft: #5b4a38;
  --line: #d9cdb0;
  --line-soft: #e8dec5;

  --green: #1f3a2e;
  --green-deep: #142620;
  --green-soft: #355a48;

  --amber: #c9962a;
  --amber-deep: #a07515;
  --amber-soft: #e6c773;

  --brown: #3d2c1e;

  /* Type */
  --serif: "Verdana", Geneva, sans-serif;
  --sans: "Verdana", Geneva, sans-serif;
  --mono: "Verdana", Geneva, sans-serif;

  /* Scale */
  --container: 1200px;
  --container-narrow: 880px;
  --radius: 4px;
  --radius-lg: 8px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--green);
  text-decoration-color: var(--amber-soft);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover { color: var(--amber-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--green-deep);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 4.8vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; }

p { margin: 0 0 1.1em; text-wrap: pretty; }

ul, ol { padding-left: 1.4em; margin: 0 0 1.2em; }
li { margin-bottom: 0.4em; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin: 0 0 1.2em;
  display: inline-block;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }

section { padding: 96px 0; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}
.brand-mark {
  width: 32px; height: 32px;
  background: var(--amber);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  background: var(--green-deep);
  border-radius: 50%;
}
.brand-name { letter-spacing: 0; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-self: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  position: relative;
  transition: color .15s, background .15s;
}
.nav-links a:hover {
  color: var(--green-deep);
  background: var(--bg-sand);
}
.nav-links a.is-active {
  color: var(--green-deep);
}
.nav-links a.is-active::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--green-deep);
  color: var(--bg-sand);
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .15s;
}
.nav-cta:hover { background: var(--amber); color: var(--green-deep); }
.nav-cta::after {
  content: "→";
  font-size: 0.95rem;
  letter-spacing: 0;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--green-deep);
  color: var(--green-deep);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  justify-self: end;
  align-items: center;
  gap: 8px;
}
.menu-toggle:hover { background: var(--green-deep); color: var(--bg); }
.menu-toggle::before {
  content: "☰";
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.menu-toggle[aria-expanded="true"]::before { content: "✕"; }

@media (max-width: 1080px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    display: none;
    box-shadow: 0 12px 24px -16px rgba(20,38,32,.25);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 16px 32px;
    border-radius: 0;
    border-bottom: 1px solid var(--line-soft);
    text-align: left;
    font-size: 0.9rem;
  }
  .nav-links a.is-active::before { display: none; }
  .nav-links a.is-active { color: var(--amber-deep); }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  padding: 16px 28px;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  line-height: 1.2;
}
.btn-primary {
  background: var(--amber);
  color: var(--green-deep);
  border-color: var(--amber);
}
.btn-primary:hover { background: var(--amber-deep); border-color: var(--amber-deep); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg-sand);
}
.btn-secondary:hover { background: var(--bg-sand); color: var(--green-deep); }
.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn-outline:hover { background: var(--green-deep); color: var(--bg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--green-deep);
  color: var(--bg-sand);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.95);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,38,32,0.55) 0%, rgba(20,38,32,0.85) 100%);
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 32px 130px;
  position: relative;
  z-index: 1;
}
.hero h1 { color: #fff8e6; max-width: 18ch; }
.hero p.lead {
  font-size: 1.3rem;
  max-width: 56ch;
  color: var(--bg-sand);
  opacity: 0.92;
  line-height: 1.5;
}
.hero .eyebrow { color: var(--amber-soft); }
.hero .actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Compact hero for interior pages */
.hero--compact .hero-inner { padding: 90px 32px 80px; }
.hero--compact h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); max-width: 22ch; }

.breadcrumb {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--amber-soft); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { margin: 0 10px; opacity: 0.5; }

/* =========================================================
   SECTIONS / LAYOUT HELPERS
   ========================================================= */
.section-tag {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .mosaic { grid-template-rows: repeat(2, 220px); }
  .mosaic .tall { grid-row: span 1; }
}

.bg-sand { background: var(--bg-sand); }
.bg-deep { background: var(--green-deep); color: var(--bg-sand); }
.bg-deep h2, .bg-deep h3 { color: #fff8e6; }

/* Real photo class */
.photo-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-sand);
}
.photo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =========================================================
   PHOTO PLACEHOLDER (subtle striped)
   ========================================================= */
.photo {
  position: relative;
  background:
    repeating-linear-gradient(
      45deg,
      var(--bg-deep) 0 12px,
      var(--bg-sand) 12px 24px
    );
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo::before {
  content: attr(data-label);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-align: center;
  max-width: 80%;
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats {
  background: var(--green-deep);
  color: var(--bg-sand);
  border-top: 4px solid var(--amber);
  border-bottom: 4px solid var(--amber);
}
.stats-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--amber-soft);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 1.1rem;
  color: var(--bg-sand);
}
.stat-tag {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-soft);
  opacity: 0.7;
  margin-top: 6px;
  display: block;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px; }
}

/* =========================================================
   TABS
   ========================================================= */
.tabs {
  background: var(--bg-sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.tab-button {
  background: transparent;
  border: none;
  border-right: 1px solid var(--line);
  padding: 22px 24px;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 500;
  line-height: 1.3;
  transition: background .15s, color .15s;
}
.tab-button:last-child { border-right: none; }
.tab-button:hover { background: var(--bg-deep); color: var(--green-deep); }
.tab-button.is-active {
  background: var(--bg);
  color: var(--green-deep);
  box-shadow: inset 0 -3px 0 var(--amber);
}
.tab-panels { padding: 40px 44px; background: var(--bg); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.tab-panel p { font-size: 1.1rem; color: var(--ink); margin-bottom: 0.8em; }
@media (max-width: 760px) {
  .tab-buttons { grid-template-columns: 1fr; }
  .tab-button { border-right: none; border-bottom: 1px solid var(--line); }
  .tab-panels { padding: 28px; }
}

/* =========================================================
   PHOTO MOSAIC (Home About)
   ========================================================= */
.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
  min-width: 0;
}
.mosaic > * { min-width: 0; min-height: 0; }
.mosaic .tall { grid-row: span 2; }
@media (max-width: 700px) {
  .mosaic { grid-template-rows: repeat(2, 180px); }
}

/* =========================================================
   BLOG CARDS
   ========================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1080px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card .photo { aspect-ratio: 13 / 7; border-radius: 0; border: none; border-bottom: 1px solid var(--line); }
.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--green-deep);
  line-height: 1.25;
  margin: 0 0 12px;
  font-weight: 500;
}
.card-excerpt { font-size: 0.98rem; color: var(--ink-soft); flex: 1; margin-bottom: 18px; }
.card-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--amber-deep);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--amber);
  align-self: flex-start;
  padding-bottom: 2px;
}
.card-link:hover { color: var(--green-deep); border-color: var(--green-deep); }

/* =========================================================
   PROSE (interior text pages)
   ========================================================= */
.prose { font-size: 1.1rem; color: var(--ink); }
.prose p { margin-bottom: 1.2em; }
.prose h2 { margin-top: 1.8em; }
.prose h3 {
  margin-top: 1.6em;
  font-size: 1.4rem;
  color: var(--green-deep);
}
.prose h3.section-heading {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: var(--amber-deep);
  margin: 0 0 1em;
}
.prose ul li { padding-left: 4px; }
.prose ul li::marker { color: var(--amber); }

/* Lead paragraph */
.lead-para {
  font-size: 1.3rem;
  font-family: var(--serif);
  color: var(--green-deep);
  line-height: 1.4;
  border-left: 3px solid var(--amber);
  padding-left: 24px;
  margin: 0 0 2em;
  font-style: italic;
}

/* Pull quote / divider section */
.callout {
  background: var(--bg-sand);
  border-left: 4px solid var(--amber);
  padding: 28px 32px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 2em 0;
  font-size: 1.1rem;
}
.callout p:last-child { margin-bottom: 0; }

/* Milestone table */
.milestones {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 1.02rem;
}
.milestones th, .milestones td {
  text-align: left;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.milestones th {
  background: var(--green-deep);
  color: var(--bg-sand);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.milestones tbody tr:nth-child(even) { background: var(--bg-sand); }
.milestones td:first-child {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--amber-deep);
  font-weight: 500;
  width: 160px;
  white-space: nowrap;
}

/* Product blocks (Poul'Or) */
.product {
  border-top: 1px solid var(--line);
  padding: 56px 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
.product:last-child { border-bottom: 1px solid var(--line); }
.product-num {
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--amber);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
}
.product-tag {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-top: 8px;
}
.product h2 { font-size: 2rem; margin-bottom: 6px; }
.product .sub {
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.format-row {
  display: flex;
  gap: 18px;
  margin: 24px 0;
  flex-wrap: wrap;
}
.format-chip {
  background: var(--green-deep);
  color: var(--amber-soft);
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
}
@media (max-width: 760px) {
  .product { grid-template-columns: 1fr; gap: 24px; }
  .product-num { font-size: 3rem; }
}

/* Two-up feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.feature h3 {
  font-family: var(--serif);
  color: var(--green-deep);
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.feature .num {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--amber-deep);
  margin-bottom: 14px;
  display: block;
}

/* Contact info */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-block {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-bottom: 28px;
}
.contact-block h3 {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin: 0 0 14px;
}
.contact-block p { margin: 0 0 6px; font-size: 1.1rem; }
.contact-block a { color: var(--green-deep); text-decoration: none; border-bottom: 1px solid var(--amber-soft); }
.contact-block a:hover { color: var(--amber-deep); border-color: var(--amber-deep); }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--green-deep);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  margin-bottom: 18px;
  transition: border-color .15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* Job categories list */
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 760px) { .job-grid { grid-template-columns: 1fr; } }
.job-grid li {
  list-style: none;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.job-grid li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--green-deep);
  color: var(--bg-sand);
  padding: 80px 0 32px;
  border-top: 4px solid var(--amber);
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer h4 {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #fff8e6;
  margin: 0 0 14px;
}
.footer p { color: var(--bg-sand); opacity: 0.85; font-size: 0.98rem; line-height: 1.55; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer a {
  color: var(--bg-sand);
  text-decoration: none;
  opacity: 0.85;
  font-size: 0.98rem;
}
.footer a:hover { color: var(--amber-soft); opacity: 1; }

.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--amber-soft);
  opacity: 1;
  transition: background .15s, color .15s, border-color .15s;
}
.socials a:hover {
  background: var(--amber);
  color: var(--green-deep);
  border-color: var(--amber);
}
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  max-width: var(--container);
  margin: 56px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--bg-sand);
  opacity: 0.7;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: var(--amber);
  color: var(--green-deep);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--green-deep); margin-bottom: 12px; }
.cta-band p { font-size: 1.15rem; max-width: 56ch; margin: 0 auto 28px; }
.cta-band .btn-primary {
  background: var(--green-deep);
  color: var(--amber-soft);
  border-color: var(--green-deep);
}
.cta-band .btn-primary:hover { background: #000; border-color: #000; color: var(--amber); }

/* =========================================================
   UTILITIES
   ========================================================= */
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-lg { margin-bottom: 48px; }
.mb-md { margin-bottom: 32px; }
.divider { height: 1px; background: var(--line); border: 0; margin: 56px 0; }

/* Section header pattern */
.section-head {
  margin-bottom: 56px;
  max-width: 760px;
}
.section-head .section-tag { display: block; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { font-size: 1.15rem; color: var(--ink-soft); }
