/* ==========================================================================
   Revora FMCG Advisory
   Palette: deep navy + warm neutrals + a single restrained "shelf green"
   Type: Spectral (display) / Public Sans (body & utility)
   ========================================================================== */

:root {
  --navy-950: #091220;
  --navy-900: #0C1B2E;
  --navy-800: #12263C;
  --navy-700: #1B3552;
  --paper: #F6F5F1;
  --paper-2: #EDEBE4;
  --line: #DAD7CD;
  --line-dark: rgba(255, 255, 255, 0.14);
  --ink: #101820;
  --slate: #48545F;
  --slate-soft: #6B7680;
  --green: #2F7A5E;
  --green-deep: #266349;
  --green-soft: #E2ECE6;
  --green-bright: #4FA57F;

  --font-display: "Spectral", Georgia, serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1120px;
  --radius: 3px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-900); color: #fff; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; line-height: 1.3; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 18px;
}

.on-dark .eyebrow,
.eyebrow--dark { color: var(--green-bright); }

.lede {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--slate);
  max-width: 42em;
}

.em-word { font-style: italic; }

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.btn--navy {
  background: var(--navy-900);
  color: #fff;
}
.btn--navy:hover { background: var(--navy-700); color: #fff; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: var(--line-dark);
}
.btn--ghost:hover { border-color: #fff; color: #fff; }

.btn--ghost-navy {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn--ghost-navy:hover { background: var(--navy-900); color: #fff; }

.btn--small { padding: 10px 20px; font-size: 0.875rem; }

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

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 100;
}

.site-header--dark {
  background: var(--navy-900);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark { width: 30px; height: 23px; }
.brand-mark rect { fill: var(--navy-900); }
.brand-mark .brand-mark-mid { fill: var(--slate-soft); }
.brand-mark .brand-mark-accent { fill: var(--green); }

.site-header--dark .brand-mark rect { fill: #fff; }
.site-header--dark .brand-mark .brand-mark-mid { fill: rgba(255,255,255,0.5); }
.site-header--dark .brand-mark .brand-mark-accent { fill: var(--green-bright); }

.brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--navy-900);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-sub {
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-soft);
}

.site-header--dark .brand-name { color: #fff; }
.site-header--dark .brand-sub { color: rgba(255,255,255,0.55); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.nav-menu a:hover { color: var(--green-deep); }
.nav-menu a[aria-current="page"] {
  color: var(--green-deep);
  border-bottom: 2px solid var(--green);
  padding-bottom: 3px;
}

.site-header--dark .nav-menu a { color: rgba(255,255,255,0.85); }
.site-header--dark .nav-menu a:hover { color: #fff; }
.site-header--dark .nav-menu a[aria-current="page"] { color: #fff; }

.nav-cta a.btn { color: #fff; border-bottom: none; padding-bottom: 10px; }
.nav-cta .btn { background: var(--green); }
.nav-cta .btn:hover { background: var(--green-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header--dark .nav-toggle-bar,
.site-header--dark .nav-toggle-bar::before,
.site-header--dark .nav-toggle-bar::after { background: #fff; }

.nav-toggle-bar { top: 21px; }
.nav-toggle-bar::before { top: -7px; left: 0; }
.nav-toggle-bar::after { top: 7px; left: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: translateY(-7px) rotate(-45deg); }

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

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
  }

  .site-header--dark .nav-menu { background: var(--navy-900); border-color: var(--line-dark); }

  .nav-menu.is-open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 12px 0; font-size: 1.05rem; }
  .nav-menu a[aria-current="page"] { border-bottom: none; }
  .nav-cta { margin-top: 8px; }
  .nav-cta a.btn { display: inline-block; padding: 12px 24px; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  background: linear-gradient(175deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 60px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero h1 { color: #fff; }
.hero h1 .em-word { color: var(--green-bright); }

.hero .lede { color: rgba(255,255,255,0.78); margin: 26px 0 36px; }

.hero-note {
  margin-top: 30px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.bridge-figure { width: 100%; }
.bridge-figure svg { width: 100%; height: auto; display: block; }

.bridge-caption {
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 64px; padding-bottom: 64px; }
  .bridge-figure { max-width: 480px; }
}

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

.stat-strip {
  background: var(--navy-950);
  border-top: 1px solid var(--line-dark);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 34px;
  padding-bottom: 34px;
  gap: 24px;
}

.stat .stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
}

.stat .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

@media (max-width: 680px) {
  .stat-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--paper2 { background: var(--paper-2); }
.section--dark { background: var(--navy-900); color: rgba(255,255,255,0.82); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head .lede { margin-top: 18px; }

.section-head--split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.shelf-rule {
  border: none;
  border-top: 1px solid var(--line);
  position: relative;
  margin: 0;
}
.shelf-rule::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 64px;
  border-top: 3px solid var(--green);
}

/* --------------------------------------------------------------------------
   Intro statement (home)
   -------------------------------------------------------------------------- */

.statement {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 64px;
}

.statement h2 { max-width: 15em; }

.statement-side p + p { margin-top: 1em; }
.statement-side { color: var(--slate); }

@media (max-width: 860px) {
  .statement { grid-template-columns: 1fr; gap: 32px; }
}

/* --------------------------------------------------------------------------
   Service cards
   -------------------------------------------------------------------------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy-900);
  border-radius: var(--radius);
  padding: 36px 34px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 160ms ease, transform 160ms ease;
}

.service-card:hover { border-top-color: var(--green); }

.service-card h3 { margin-bottom: 14px; }
.service-card p { color: var(--slate); flex-grow: 1; }

.service-card .card-link {
  margin-top: 22px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.service-card .card-link::after { content: " \2192"; }

.service-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-bottom: 12px;
}

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

/* --------------------------------------------------------------------------
   How we work
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
}

.step { position: relative; padding-top: 22px; }

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  border-top: 3px solid var(--green-bright);
}

.step h3 { margin-bottom: 10px; }
.section--dark .step p { color: rgba(255,255,255,0.7); }

.step-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 10px;
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
}

/* --------------------------------------------------------------------------
   Image + text split
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.split-media img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.4;
}

.split-copy p { color: var(--slate); }
.split-copy p + p { margin-top: 1em; }
.split-copy h2 { margin-bottom: 20px; }
.split-copy .btn-row { margin-top: 30px; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-media img { aspect-ratio: 16 / 10; }
}

/* --------------------------------------------------------------------------
   Insights cards
   -------------------------------------------------------------------------- */

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insight-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(12, 27, 46, 0.10);
}

.insight-media {
  aspect-ratio: 16 / 9;
  background: var(--navy-800);
  overflow: hidden;
}

.insight-media img { width: 100%; height: 100%; object-fit: cover; }

.pattern-fill {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pattern-fill svg { width: 52%; height: auto; }

.insight-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex-grow: 1; }

.insight-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.insight-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.insight-body h3 a { color: var(--navy-900); text-decoration: none; }
.insight-body h3 a:hover { color: var(--green-deep); }

.insight-body p { color: var(--slate); font-size: 0.97rem; flex-grow: 1; }

.insight-date {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--slate-soft);
}

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

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

.cta-band {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/aisle-blur.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}

.cta-inner {
  position: relative;
  padding: 96px 0;
  max-width: 680px;
}

.cta-inner h2 { color: #fff; margin-bottom: 18px; }
.cta-inner p { color: rgba(255,255,255,0.78); margin-bottom: 34px; font-size: 1.15rem; }

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  background: linear-gradient(175deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
  padding: 80px 0 72px;
}

.page-hero h1 { color: #fff; max-width: 14em; }
.page-hero .lede { color: rgba(255,255,255,0.75); margin-top: 22px; }

/* --------------------------------------------------------------------------
   Services page
   -------------------------------------------------------------------------- */

.practice {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  padding: 72px 0;
}

.practice + .practice { border-top: 1px solid var(--line); }

.practice-head h2 { margin: 14px 0 18px; }
.practice-head p { color: var(--slate); }

.practice-detail h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-soft);
  margin-bottom: 14px;
}

.practice-detail ul {
  list-style: none;
  margin-bottom: 34px;
}

.practice-detail li {
  padding: 10px 0 10px 26px;
  position: relative;
  color: var(--slate);
  border-bottom: 1px solid var(--paper-2);
}

.practice-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 12px;
  border-top: 2px solid var(--green);
}

.practice-detail .outcome {
  background: #fff;
  border-left: 3px solid var(--green);
  padding: 22px 26px;
  color: var(--slate);
  font-size: 0.98rem;
}

.practice-detail .outcome strong { color: var(--navy-900); }

@media (max-width: 860px) {
  .practice { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  row-gap: 1px;
  column-gap: 1px;
}

.principle {
  background: #fff;
  padding: 40px 38px;
}

.principle h3 { margin-bottom: 12px; }
.principle p { color: var(--slate); font-size: 0.99rem; }

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

/* --------------------------------------------------------------------------
   Insights index & post
   -------------------------------------------------------------------------- */

.post-list { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .post-list { grid-template-columns: 1fr; } }

.post {
  background: #fff;
}

.post-header {
  background: linear-gradient(175deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
  padding: 72px 0 64px;
}

.post-header h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); max-width: 18em; }

.post-meta {
  margin-top: 22px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.post-meta .insight-tag { margin-bottom: 0; background: rgba(79,165,127,0.18); color: var(--green-bright); }

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.post-body p { margin-bottom: 1.35em; color: #2A333C; }

.post-body h2 {
  font-size: 1.6rem;
  margin: 1.8em 0 0.7em;
}

.post-body h3 { margin: 1.6em 0 0.6em; }

.post-body ul, .post-body ol { margin: 0 0 1.35em 1.4em; color: #2A333C; }
.post-body li { margin-bottom: 0.45em; }

.post-body blockquote {
  border-left: 3px solid var(--green);
  padding: 6px 0 6px 24px;
  margin: 1.8em 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-800);
}

.post-body img { border-radius: var(--radius); margin: 1.8em 0; }

.post-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.post-cta {
  background: var(--navy-900);
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  padding: 40px 42px;
}

.post-cta h3 { color: #fff; margin-bottom: 10px; }
.post-cta p { margin-bottom: 24px; }

.back-link {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}
.back-link::before { content: "\2190  "; }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 72px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { color: var(--slate); margin-bottom: 34px; }

.next-steps { list-style: none; margin-bottom: 40px; }

.next-steps li {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  font-size: 0.98rem;
}

.next-steps .n {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-deep);
  min-width: 24px;
}

.contact-direct p { margin-bottom: 6px; color: var(--slate); font-size: 0.98rem; }
.contact-direct a { font-weight: 600; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 42px;
}

.form-field { margin-bottom: 22px; }

.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy-900);
}

.form-field .optional { font-weight: 400; color: var(--slate-soft); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 0;
  border-color: var(--green);
}

.form-field textarea { min-height: 140px; resize: vertical; }

.form-note { font-size: 0.85rem; color: var(--slate-soft); margin-top: 16px; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 32px 26px; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.brand-mark--footer { width: 34px; height: 26px; margin-bottom: 18px; }
.brand-mark--footer rect { fill: #fff; }
.brand-mark--footer .brand-mark-mid { fill: rgba(255,255,255,0.5); }
.brand-mark--footer .brand-mark-accent { fill: var(--green-bright); }

.footer-line { font-size: 0.95rem; max-width: 24em; }

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.95rem; }
.footer-col a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-col a:hover { color: #fff; }

.footer-base {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

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

/* --------------------------------------------------------------------------
   Reveal on scroll (respects reduced motion via JS guard)
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
