/* ==========================================================================
   LLT Group — public site
   Hand-written, no build step. Edit this file, push, done.

   Structure:  1 Tokens  2 Reset  3 Base  4 Layout  5 Header  6 Hero
               7 Sections  8 Cards  9 News  10 Jobs  11 Contact
               12 Footer  13 Utilities
   ========================================================================== */

/* 1 · Tokens ============================================================== */

:root {
  /* Brand. The legacy site's lime (#b6d549) fails contrast on white, so the
     working brand colour is a deepened version of it; the original lime is
     kept as an accent for use on dark backgrounds only. */
  --brand:        #4c6b1f;
  --brand-dark:   #3a5217;
  --brand-light:  #eaf1dc;
  --accent:       #b6d549;

  --ink:          #16211a;
  --body:         #414f47;
  --muted:        #6b7a72;
  --line:         #dde4dd;
  --surface:      #ffffff;
  --tint:         #f4f7f2;
  --dark:         #1b2a1f;

  --focus:        #1d4ed8;

  /* Fluid type scale */
  --step--1: clamp(0.83rem, 0.80rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1rem,    0.96rem + 0.20vw, 1.12rem);
  --step-1:  clamp(1.20rem, 1.12rem + 0.40vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.30rem + 0.75vw, 1.95rem);
  --step-3:  clamp(1.75rem, 1.50rem + 1.25vw, 2.60rem);
  --step-4:  clamp(2.10rem, 1.65rem + 2.20vw, 3.60rem);

  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: clamp(3rem, 6vw, 5.5rem);

  --wrap:    76rem;
  --narrow:  46rem;

  --radius:    12px;
  --radius-sm: 8px;

  --shadow:    0 1px 2px rgb(22 33 26 / 6%), 0 8px 24px -12px rgb(22 33 26 / 18%);
  --shadow-lg: 0 2px 4px rgb(22 33 26 / 8%), 0 18px 40px -16px rgb(22 33 26 / 26%);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

/* Self-hosted, no CDN call. Falls back to the system stack if absent. */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* 2 · Reset =============================================================== */

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

* { margin: 0; }

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

body {
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3 { line-height: 1.15; color: var(--ink); font-weight: 650; text-wrap: balance; }
p { text-wrap: pretty; }

ul, ol { padding: 0; list-style: none; }

a { color: var(--brand-dark); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--brand); }

button { font: inherit; color: inherit; }

/* One consistent, highly visible focus ring everywhere. */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 3 · Base ================================================================ */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* 4 · Layout ============================================================== */

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

.prose-narrow { max-width: var(--narrow); }

.section { padding-block: var(--space-xl); }
.section--tint { background: var(--tint); }
.section--tall { padding-block: clamp(4rem, 12vw, 8rem); }
.section--flush { padding-top: 0; }

.section__title { font-size: var(--step-2); margin-bottom: var(--space-sm); }
.section__lede  { font-size: var(--step-1); color: var(--muted); max-width: var(--narrow); margin-bottom: var(--space-lg); }

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.section__head .section__title { margin-bottom: 0; }

/* Rich text from the CMS ------------------------------------------------- */

.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: var(--step-2); margin-top: 2em; }
.prose h3 { font-size: var(--step-1); margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: 0.4em; }
.prose li::marker { color: var(--brand); }
.prose blockquote {
  border-left: 3px solid var(--brand);
  padding-left: var(--space-md);
  color: var(--muted);
  font-style: italic;
}

/*
  Inline images in migrated content (Corporate Responsibility especially).

  An explicit width, not just max-width: the legacy sources vary wildly
  (197×158, 182×137 and 1800×1350), and max-width alone never upscales — so the
  small ones would render at their intrinsic size while the large one filled the
  cap, giving three different widths on one page.

  Fixed width + 4:3 box + object-fit:cover makes them uniform. All three sources
  are already close to 4:3, so cropping is minimal. 16rem is a deliberate
  ceiling: the two small files are only ~190px wide, and pushing the box larger
  starts to visibly soften them.
*/
.prose img {
  width: 100%;
  max-width: 16rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-block: 0.5rem var(--space-md);
  background: var(--tint);
}

@media (min-width: 48rem) {
  .prose img {
    float: left;
    margin-right: var(--space-lg);
  }
  /* Each section starts below the previous one's image rather than wrapping
     around it. */
  .prose h2,
  .prose h3 { clear: both; }
}

/*
  Deliberately no larger size for full-width page bodies. Enlarging the box
  would upscale the ~190px sources past the point where they hold up.
*/

/* Contain the floats so a following section never rides up beside them. */
.prose::after { content: ""; display: block; clear: both; }

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 0.8em 1.6em;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }

.btn--ghost {
  border: 1.5px solid currentcolor;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 600;
  font-size: var(--step--1);
  text-decoration: none;
}
.link-arrow::after { content: "→"; transition: transform 0.18s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* 5 · Header ============================================================== */

/* Brand green, matching the logo JPEG's background exactly (#b6d549 sampled
   from the original artwork) so the image sits seamlessly in the bar with no
   visible rectangle. Opaque, so no backdrop blur is needed. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--accent);
  border-bottom: 1px solid rgb(22 33 26 / 14%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 4.5rem;
}

.site-header__brand { display: flex; align-items: center; }
/* Held at 2.4rem (~38px) rather than larger: the source artwork is only 55px
   tall, so this keeps it a downscale on standard displays and only a mild
   upscale on retina. Going bigger visibly softens it. */
.site-header__brand img { width: auto; height: 2.4rem; border-radius: 2px; }

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.6rem);
}

/* Dark ink on the green bar measures ~10:1 contrast — comfortably above the
   4.5:1 AA threshold, and far better than white would manage on this light green. */
.site-nav__link {
  display: inline-block;
  padding-block: 0.4rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: #1d2b16;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.site-nav__link:hover { color: #000; border-bottom-color: rgb(22 33 26 / 35%); }
.site-nav__link.is-active { color: #14200e; border-bottom-color: #2f4a14; }

.nav-toggle {
  display: none;
  position: relative;
  width: 2.75rem; height: 2.75rem;
  background: none;
  border: 1px solid rgb(22 33 26 / 30%);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  position: absolute;
  left: 50%;
  width: 1.15rem; height: 2px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle__bar { top: 50%; margin-top: -1px; }
.nav-toggle__bar::before { content: ""; top: -6px; }
.nav-toggle__bar::after  { content: ""; top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after  { top: 0; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 60rem) {
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    background: var(--accent);
    border-bottom: 1px solid rgb(22 33 26 / 14%);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: block; }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-xs) 1.25rem var(--space-md);
  }
  .site-nav__link {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgb(22 33 26 / 18%);
  }
  .site-nav__link.is-active { border-bottom-color: #2f4a14; }
}

/* 6 · Hero ================================================================ */

/*
  Built from type, brand colour and vector artwork rather than a photograph:
  the largest image the company has is 998×330, which a full-bleed hero would
  upscale ~2× and visibly soften. Everything here stays sharp at any size.
*/
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(30rem, 82vh, 46rem);
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 100% at 80% 0%, #4c6b1f 0%, transparent 55%),
    linear-gradient(155deg, #1b2a1f 0%, #24361c 45%, #2f4a14 100%);
}

/*
  The forest photo, heavily blurred and dimmed. At this blur its resolution is
  irrelevant, but its colour and organic texture still come through — which a
  flat gradient alone cannot give.
*/
.hero__wash { position: absolute; inset: -5%; z-index: -2; }
.hero__wash img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(46px) saturate(1.25);
  opacity: 0.42;
  transform: scale(1.15);
}

.hero__contours {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%; height: 100%;
  color: var(--accent);
  opacity: 0.16;
}

.hero__inner { padding-block: clamp(3.5rem, 9vw, 6rem); }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}
.hero__dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgb(182 213 73 / 70%);
  animation: hero-pulse 2.6s ease-out infinite;
}
@keyframes hero-pulse {
  70%  { box-shadow: 0 0 0 0.7rem rgb(182 213 73 / 0%); }
  100% { box-shadow: 0 0 0 0 rgb(182 213 73 / 0%); }
}

.hero__title {
  font-size: var(--step-4);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 20ch;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  /* Hand-drawn underline rather than a border: it sits under the descenders
     instead of clipping them. */
  background: linear-gradient(var(--accent), var(--accent)) 0 88% / 100% 3px no-repeat;
  padding-bottom: 0.08em;
}

.hero__lede {
  margin-top: var(--space-md);
  max-width: 54ch;
  font-size: var(--step-1);
  color: rgb(255 255 255 / 86%);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-lg); }
.hero .btn--primary { background: var(--accent); color: #17240f; }
.hero .btn--primary:hover { background: #c8e35f; color: #17240f; }
.hero .btn--ghost { color: #fff; }
.hero .btn--ghost:hover { background: #fff; color: var(--ink); }

/* Stat strip ------------------------------------------------------------- */

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: var(--space-lg);
  border-top: 1px solid rgb(255 255 255 / 18%);
}
.hero__stat dt {
  font-size: var(--step--1);
  color: rgb(255 255 255 / 62%);
  margin-bottom: 0.15rem;
}
.hero__stat dd {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.hero__stat strong {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero__stat span { font-size: var(--step--1); color: var(--accent); }

/* Interior page headers --------------------------------------------------- */

.page-head { padding-block: clamp(2.5rem, 6vw, 4.5rem) 0; }
.page-head__title { font-size: var(--step-3); }
.page-head__lede {
  margin-top: var(--space-md);
  max-width: 60ch;
  font-size: var(--step-1);
  color: var(--muted);
}

.page-hero { margin-top: var(--space-lg); }
.page-hero__img { width: 100%; border-radius: var(--radius); }

.breadcrumb { padding-top: var(--space-md); }
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--step--1);
  color: var(--muted);
}
.breadcrumb__list li + li::before { content: "/"; margin-right: 0.5rem; color: var(--line); }
.breadcrumb__list a { color: var(--muted); text-decoration: none; }
.breadcrumb__list a:hover { color: var(--brand-dark); text-decoration: underline; }

/* 6b · Slideshow ========================================================== */

/*
  Capped near the images' native 998px width. Letting it stretch to the full
  76rem container would upscale them ~1.25× for no benefit — they are banner
  strips, not full-bleed photography.
*/
.slideshow {
  position: relative;
  max-width: 64rem;
  margin-inline: auto;
}

.slideshow__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow-lg);
}

.slideshow__track {
  display: flex;
  margin: 0;
  padding: 0;
  transition: transform 0.55s cubic-bezier(0.4, 0.1, 0.2, 1);
}

.slideshow__slide {
  flex: 0 0 100%;
  min-width: 0;
}
.slideshow__slide img {
  width: 100%;
  height: auto;
  /* The source banners are 3:1. Cropping slightly taller on small screens
     keeps them from becoming a thin sliver. */
  aspect-ratio: 998 / 330;
  object-fit: cover;
}
@media (max-width: 40rem) {
  .slideshow__slide img { aspect-ratio: 16 / 10; }
}
.slideshow__link { display: block; }

.slideshow__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 2.75rem; height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 88%);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.slideshow__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.slideshow__nav--prev { left: 0.75rem; }
.slideshow__nav--next { right: 0.75rem; }

.slideshow__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.slideshow__dots { display: flex; gap: 0.5rem; }
.slideshow__dot {
  width: 0.7rem; height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(22 33 26 / 22%);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.slideshow__dot:hover { background: rgb(22 33 26 / 40%); }
.slideshow__dot.is-current { background: var(--brand); transform: scale(1.3); }

.slideshow__playpause {
  display: grid;
  place-items: center;
  width: 1.9rem; height: 1.9rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--body);
  font-size: 0.6rem;
  line-height: 1;
  cursor: pointer;
}
.slideshow__playpause:hover { border-color: var(--brand); color: var(--brand-dark); }

/* 7 · Cards =============================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
  gap: var(--space-md);
}
.card-grid--wide { grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }

.card__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }

.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--brand-light); }
.card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__img { transform: scale(1.04); }
.card__media-placeholder {
  display: block; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--brand-light), var(--tint));
}

.card__body { display: flex; flex-direction: column; gap: var(--space-xs); padding: var(--space-md); flex: 1; }
.card__title { font-size: var(--step-1); }
.card__text { color: var(--muted); font-size: var(--step--1); }
.card__cue {
  margin-top: auto;
  padding-top: var(--space-xs);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--brand-dark);
}
.card__cue::after { content: " →"; }

/* Gallery ---------------------------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
  gap: var(--space-sm);
}
.gallery__item { border-radius: var(--radius-sm); overflow: hidden; background: var(--tint); }
.gallery__img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.pill-list { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-bottom: var(--space-md); }
.pill {
  display: inline-block;
  padding: 0.5em 1em;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--step--1);
  text-decoration: none;
  color: var(--body);
}
.pill:hover { border-color: var(--brand); color: var(--brand-dark); }

/* 8 · News ================================================================ */

.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
  gap: var(--space-md);
}
.news-list--stacked { grid-template-columns: 1fr; gap: 0; }

.news-item { border-bottom: 1px solid var(--line); }
.news-list:not(.news-list--stacked) .news-item { border-bottom: 0; }

.news-item__link {
  display: grid;
  gap: var(--space-md);
  padding-block: var(--space-md);
  text-decoration: none;
  color: inherit;
}
.news-list--stacked .news-item__link { grid-template-columns: minmax(0, 15rem) 1fr; align-items: start; }

@media (max-width: 44rem) {
  .news-list--stacked .news-item__link { grid-template-columns: 1fr; }
}

.news-item__media { border-radius: var(--radius-sm); overflow: hidden; background: var(--tint); }
.news-item__img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.4s ease; }
.news-item__link:hover .news-item__img { transform: scale(1.04); }

.news-item__body { display: flex; flex-direction: column; gap: var(--space-xs); }
.news-item__meta,
.news-item__date {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  font-size: var(--step--1);
  color: var(--muted);
}
.news-item__source::before { content: "· "; }
.news-item__title { font-size: var(--step-1); }
.news-item__link:hover .news-item__title { color: var(--brand-dark); }
.news-item__text { color: var(--muted); font-size: var(--step--1); }

.article__meta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  font-size: var(--step--1);
  color: var(--muted);
  margin-bottom: var(--space-sm);
}
.article__figure { margin-top: var(--space-lg); }
.article__img { width: 100%; border-radius: var(--radius); }
.article__caption {
  margin-top: var(--space-sm);
  font-size: var(--step--1);
  color: var(--muted);
  max-width: var(--narrow);
}

/* 9 · Jobs ================================================================ */

.job-list { border-top: 1px solid var(--line); }
.job-item { border-bottom: 1px solid var(--line); }

.job-item__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  /* Horizontal padding pulled back out with a negative margin: the hover tint
     gets breathing room around the text, while the row's border lines stay
     aligned with the rest of the page content. */
  padding: var(--space-md) 1rem;
  margin-inline: -1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
}
.job-item__link:hover { background: var(--tint); }
.job-item__title { font-size: var(--step-1); }
.job-item__link:hover .job-item__title { color: var(--brand-dark); }
.job-item__meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 0.25rem;
  font-size: var(--step--1);
  color: var(--muted);
}
.job-item__cue { font-size: var(--step--1); font-weight: 600; color: var(--brand-dark); }
.job-item__cue::after { content: " →"; }

.job-detail__meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: var(--space-md);
  font-size: var(--step--1);
  color: var(--muted);
}
.job-detail__heading {
  font-size: var(--step-1);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
}

.apply-panel {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--brand-light);
  border-radius: var(--radius);
}
.apply-panel__title { font-size: var(--step-1); margin-bottom: var(--space-sm); }
.apply-panel p + p { margin-top: var(--space-md); }
.apply-panel__address { margin-top: var(--space-md); font-style: normal; font-size: var(--step--1); color: var(--body); }

/* 10 · Contact ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: var(--space-md);
}

.contact-card {
  padding: var(--space-lg);
  background: var(--tint);
  border-radius: var(--radius);
}
.contact-card__title { font-size: var(--step-1); margin-bottom: var(--space-md); }
.contact-card__address { font-style: normal; line-height: 1.9; }

.contact-card__list { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem var(--space-md); }
.contact-card__list dt { color: var(--muted); font-size: var(--step--1); }
.contact-card__list dd { margin: 0; font-weight: 550; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; border: 0; }

/* CTA --------------------------------------------------------------------- */

.cta { background: var(--dark); color: #fff; padding-block: var(--space-xl); }
.cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.cta__title { font-size: var(--step-2); color: #fff; }
.cta__text { color: rgb(255 255 255 / 78%); margin-top: var(--space-xs); }
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.cta .btn--ghost { color: #fff; }
.cta .btn--ghost:hover { background: #fff; color: var(--ink); }

/* 11 · Footer ============================================================= */

.site-footer { background: var(--tint); border-top: 1px solid var(--line); padding-top: var(--space-xl); }

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.site-footer__heading {
  font-size: var(--step--1);
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}
.site-footer__address { font-style: normal; font-size: var(--step--1); line-height: 1.9; color: var(--muted); }
.site-footer__contact,
.site-footer__links { display: grid; gap: 0.4rem; font-size: var(--step--1); color: var(--muted); }
.site-footer__contact a,
.site-footer__links a { color: var(--body); text-decoration: none; }
.site-footer__contact a:hover,
.site-footer__links a:hover { color: var(--brand-dark); text-decoration: underline; }

.site-footer__legal {
  padding-block: var(--space-md);
  border-top: 1px solid var(--line);
  font-size: var(--step--1);
  color: var(--muted);
}

/* 12 · Utilities ========================================================== */

.center { text-align: center; margin-inline: auto; }

.empty { color: var(--muted); font-size: var(--step-1); }

.empty-panel {
  padding: var(--space-lg);
  background: var(--tint);
  border-radius: var(--radius);
  max-width: var(--narrow);
}
.empty-panel__title { font-size: var(--step-1); margin-bottom: var(--space-sm); }

.error-code {
  font-size: var(--step-4);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
