/* =========================================================
   KWMS SAFETY CONSULTANT, LLC — Design Tokens & Base Styles
   ========================================================= */

:root {
  /* Color */
  --ink:        #14110E;   /* deepest bg / footer */
  --charcoal:   #201C19;   /* dark section bg */
  --charcoal-2: #2C2723;   /* dark section bg, lighter step */
  --steel:      #5B6168;   /* secondary text on light */
  --steel-line: #DAD5CC;   /* hairline on light */
  --paper:      #F6F3EC;   /* warm off-white bg */
  --paper-2:    #EDE8DC;   /* slightly deeper warm panel */
  --white:      #FFFFFF;
  --orange:     #E15A17;   /* primary safety orange */
  --orange-dark:#B8460F;
  --amber:      #F2A31D;   /* gold accent */
  --text-dark:  #1A1613;

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Scale */
  --radius: 3px;
  --container: 1180px;
  --gutter: 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }
section[id] { scroll-margin-top: 92px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--text-dark);
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--dark { background: var(--charcoal); color: var(--paper); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--paper2 { background: var(--paper-2); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head p { color: var(--steel); font-size: 1.05rem; }
.section--dark .section-head p { color: #C9C2B6; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Hazard-stripe rule — the site's signature device */
.hazard-rule {
  height: 8px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--ink) 0, var(--ink) 14px,
    var(--amber) 14px, var(--amber) 28px
  );
}
.hazard-rule--thin { height: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.section:not(.section--dark) .btn-outline:hover { background: rgba(20,17,14,0.06); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 11px 20px; font-size: 0.82rem; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20,17,14,0.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.02rem;
}
.brand img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: var(--white);
  padding: 2px;
}
.brand small {
  display: block;
  font-family: var(--font-mono);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.68rem;
  color: var(--amber);
  margin-top: 2px;
}

.nav-primary { display: flex; align-items: center; gap: 4px; }
.nav-primary a {
  color: #E9E4D9;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-primary a:hover,
.nav-primary a[aria-current="page"] { color: var(--white); border-color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 9px 11px;
  border-radius: var(--radius);
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
}

@media (max-width: 960px) {
  .nav-primary {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    align-self: auto;
    padding: 18px var(--gutter) 30px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
    z-index: 150;
  }
  .nav-primary.is-open { transform: translateX(0); }
  .nav-primary a {
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem;
  }
  .nav-cta .btn-outline.call-link { display: none; }
  .nav-toggle { display: block; }
}

/* Very small phones: the full-text CTA button in the top bar collides
   with the brand lockup. Drop it from the bar itself — it's still the
   first thing in the mobile menu and repeated throughout every page —
   so the header never has to squeeze three things into one row. */
@media (max-width: 560px) {
  .brand span { font-size: 0.9rem; }
  .brand small { font-size: 0.62rem; }
  .nav-cta .btn-primary { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(155deg, var(--ink) 0%, var(--charcoal) 58%, var(--charcoal-2) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
}
.hero::before {
  /* large diagonal hazard-stripe band, the site's signature device */
  content: '';
  position: absolute;
  top: -20%;
  left: -6%;
  width: 44%;
  height: 150%;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 26px,
    rgba(242,163,29,0.10) 26px, rgba(242,163,29,0.10) 52px
  );
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
}
.hero h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.3rem);
  color: var(--white);
  margin-bottom: 0.3em;
}
.hero p.lede {
  font-size: 1.08rem;
  color: #E9E4D9;
  max-width: 500px;
  margin-bottom: 24px;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-photo::before {
  /* blends the photo's left edge into the dark panel behind the text */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    var(--charcoal) 0%,
    rgba(44,39,35,0.85) 10%,
    rgba(44,39,35,0.35) 26%,
    rgba(44,39,35,0.04) 46%,
    transparent 62%
  );
}
.hero-photo::after {
  /* slight overall overlay for mood + a faint brand stripe texture */
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent 0 26px, rgba(242,163,29,0.07) 26px 52px
  );
  background-color: rgba(20,17,14,0.16);
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 108px var(--gutter) 40px; max-width: none; }
  .hero-photo { min-height: 300px; }
  .hero-photo::before {
    background: linear-gradient(180deg,
      var(--charcoal) 0%, rgba(44,39,35,0.55) 16%, transparent 34%
    );
  }
}
.page-hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(155deg, var(--ink) 0%, var(--charcoal) 65%, var(--charcoal-2) 100%);
  overflow: hidden;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  min-height: 320px;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 92px var(--gutter) 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 0.3em; }
.page-hero p { color: #E9E4D9; max-width: 560px; font-size: 1.05rem; margin: 0; }

.page-hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.page-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.page-hero-photo::before {
  /* blends the photo's left edge into the dark panel behind the text */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    var(--charcoal) 0%,
    rgba(44,39,35,0.82) 10%,
    rgba(44,39,35,0.32) 26%,
    rgba(44,39,35,0.04) 46%,
    transparent 62%
  );
}
.page-hero-photo::after {
  /* slight overall overlay for mood + a faint brand stripe texture */
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent 0 26px, rgba(242,163,29,0.08) 26px 52px
  );
  background-color: rgba(20,17,14,0.14);
}
@media (max-width: 860px) {
  .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-content { padding: 76px var(--gutter) 32px; max-width: none; }
  .page-hero-photo { min-height: 220px; }
  .page-hero-photo::before {
    background: linear-gradient(180deg,
      var(--charcoal) 0%, rgba(44,39,35,0.5) 18%, transparent 36%
    );
  }
}

/* Logo badge used in place of photography wherever a strong visual anchor is needed */
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--white);
  padding: 6px;
  margin-bottom: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.hero-badge img { width: 100%; height: 100%; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
  display: block;
}

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.tile {
  background: var(--white);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.tile::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
}
.tile h3 { font-size: 1.15rem; margin-bottom: 10px; }
.tile p { color: var(--steel); font-size: 0.97rem; margin-bottom: 0; }
.tile .tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.tile-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-family: var(--font-display);
  text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--orange-dark);
}
.tile-link:hover { text-decoration: underline; }

/* Service list rows (directory-board style) */
.service-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--steel-line);
}
.service-row:last-child { border-bottom: 1px solid var(--steel-line); }
.service-row .tag-no {
  font-family: var(--font-mono);
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.service-row h3 { font-size: 1.35rem; margin-bottom: 8px; }
.service-row .desc { color: var(--steel); max-width: 640px; margin-bottom: 14px; }
.service-row .meta {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  font-size: 0.9rem; color: var(--text-dark);
  margin-bottom: 14px;
}
.service-row .meta strong {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  display: block;
  margin-bottom: 3px;
}
@media (max-width: 640px) {
  .service-row { grid-template-columns: 1fr; gap: 8px; }
}

/* Industry list */
.industry-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--steel-line);
}
.industry-row:last-child { border-bottom: 1px solid var(--steel-line); }
.industry-row h3 { font-size: 1.2rem; margin-bottom: 0; }
.industry-row p { color: var(--steel); margin-bottom: 0; }
@media (max-width: 720px) {
  .industry-row { grid-template-columns: 1fr; gap: 10px; }
}

/* Checklist */
.check-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  align-items: flex-start;
}
.check-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.section:not(.section--dark) .check-list li { border-color: var(--steel-line); }
.check-list .mark {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  margin-top: 2px;
}
.check-list h4 { margin: 0 0 4px; font-size: 1.02rem; text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 700; }
.check-list p { margin: 0; color: #C9C2B6; font-size: 0.94rem; }
.section:not(.section--dark) .check-list p { color: var(--steel); }

/* Prominent feature photo — used sparingly, for a real supporting photo
   of an actual job site (not the graphic-panel photo substitute). */
.feature-photo { margin: 0 0 8px; }
.feature-photo .frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 8;
}
.feature-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.feature-photo figcaption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--steel);
  letter-spacing: 0.01em;
}
@media (max-width: 640px) {
  .feature-photo .frame { aspect-ratio: 4 / 5; }
}
.feature-photo--tall .frame { aspect-ratio: 3 / 2; }
@media (max-width: 640px) {
  .feature-photo--tall .frame { aspect-ratio: 4 / 5; }
}

/* Photo blocks (graphic panels — no photography site-wide) */
.photo-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.photo-feature img { border-radius: var(--radius); }
.photo-feature.reverse { grid-template-columns: 0.9fr 1.1fr; }
.photo-feature.reverse .photo-feature-media { order: 2; }
@media (max-width: 860px) {
  .photo-feature, .photo-feature.reverse { grid-template-columns: 1fr; }
  .photo-feature.reverse .photo-feature-media { order: 0; }
}

/* Graphic panel — replaces a photo wherever the layout calls for a strong
   visual anchor. Dark card, diagonal hazard-stripe corner, badge + a short
   stat/quote-style statement. No stock imagery, no photography. */
.graphic-panel {
  position: relative;
  background: var(--charcoal);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 44px 34px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
.graphic-panel::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 75%;
  height: 160%;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 20px,
    rgba(242,163,29,0.16) 20px, rgba(242,163,29,0.16) 40px
  );
  pointer-events: none;
}
.graphic-panel .panel-badge {
  position: relative;
  z-index: 2;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--white);
  padding: 5px;
  margin-bottom: 22px;
}
.graphic-panel .panel-badge img { width: 100%; height: 100%; }
.graphic-panel blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--white);
}
.graphic-panel .panel-note {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--amber);
}
.graphic-panel--paper {
  background: var(--paper-2);
  color: var(--text-dark);
  border: 1px solid var(--steel-line);
}
.graphic-panel--paper blockquote { color: var(--text-dark); }
.graphic-panel--paper::before { opacity: 0.5; }

/* Stats / numbers strip (no fabricated data — used for confirmed facts only) */
.fact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.fact-strip div { flex: 1 1 200px; }
.fact-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fact-strip span { color: #C9C2B6; font-size: 0.9rem; }

/* CTA banner */
.cta-banner {
  background: var(--orange);
  color: var(--white);
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 52px var(--gutter);
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin: 0; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.7); }
.cta-banner .btn-primary { background: var(--ink); }
.cta-banner .btn-primary:hover { background: #000; }

/* Team */
.person-card {
  background: var(--white);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  padding: 30px;
}
.person-card .role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}
.person-card h3 { margin-bottom: 12px; }
.person-card p { color: var(--steel); }

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 14px;
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dark);
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid var(--amber);
  outline-offset: 1px;
  border-color: var(--orange);
}
textarea { resize: vertical; min-height: 130px; }

/* Contact info block */
.info-card {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.info-card + .info-card { margin-top: 16px; }
.info-card .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 8px;
}
.info-card a { font-family: var(--font-display); font-size: 1.2rem; text-transform: uppercase; overflow-wrap: anywhere; word-break: break-word; }
.info-card a:hover { color: var(--amber); }

/* Footer */
.site-footer { background: var(--ink); color: #B9B2A4; padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-grid a { display: block; padding: 6px 0; font-size: 0.92rem; overflow-wrap: anywhere; word-break: break-word; }
.footer-grid a:hover { color: var(--white); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 46px; width: 46px; border-radius: 50%; background: var(--white); padding: 2px; }
.footer-brand span { font-family: var(--font-display); text-transform: uppercase; color: var(--white); font-size: 1.05rem; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 22px; font-size: 0.82rem;
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--orange); color: var(--white);
  padding: 12px 18px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Reveal-on-scroll (restrained) */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
