/* ============================================================
   Home v2 — Staging homepage
   New design system
   ============================================================ */

:root {
  --teal:      #006778;
  --ink:       #0a0a0a;
  --bg:        #f9f8f7;
  --bg-alt:    #f4f2f0;
  --muted:     #807771;
  --muted-2:   #a8a09b;
  --hairline:  #e4dfdb;
  --body:      #2a2522;

  --maxw:      1160px;
  --gutter:    clamp(24px, 4vw, 56px);
  --section:   clamp(5rem, 9vw, 8rem);

  --line:      var(--hairline);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-top: 62px;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--bg); }

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

a {
  color: var(--ink);
  text-decoration: none;
  transition: color .15s ease, opacity .15s ease;
}
a:hover { opacity: .65; }

/* ---------- Container ---------- */

.t3-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.t3-section {
  padding-top: var(--section);
  padding-bottom: var(--section);
  position: relative;
}
.t3-section--band { background: var(--bg-alt); }

/* Section index strip */
.t3-sectionbar {
  max-width: var(--maxw);
  margin: 0 auto calc(var(--section) * 0.45) auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.005em;
}
.t3-sectionbar__idx { color: var(--ink); }
.t3-sectionbar__rule {
  flex: 1;
  height: 1px;
  background: var(--hairline);
  align-self: center;
}
.t3-section--band { padding-top: 0; }
.t3-section--band .t3-sectionbar {
  border-top: 0;
  padding-top: calc(var(--section) * 0.45);
}

/* Section head — title + intro paragraph */
.t3-section__head {
  max-width: 38ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.t3-section__head .t3-h2 {
  margin-bottom: 1.5rem;
}
.t3-section__head .t3-body {
  color: var(--muted);
  font-size: 1.075rem;
  line-height: 1.6;
}

.t3-section__sublabel {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.005em;
  border-top: 1px solid var(--hairline);
  padding-top: 1.5rem;
  margin: clamp(2rem, 4vw, 3rem) 0 1.5rem 0;
}

/* ---------- Typography ---------- */

.t3-display {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}

.t3-h2 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem 0;
  text-wrap: balance;
}

.t3-body {
  max-width: 62ch;
  text-wrap: pretty;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}
.t3-body--muted { color: var(--muted); }

.t3-kicker {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--muted);
  margin: 0 0 2rem 0;
  display: block;
}
.t3-kicker--teal { color: var(--teal); }

/* Quiet inline callout */
.t3-callout {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  border-left: 1px solid var(--teal);
  padding-left: 1.25rem;
  margin: clamp(2rem, 4vw, 3rem) 0 0 0;
  max-width: 50ch;
  text-wrap: balance;
}

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

.t3-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.05rem 1.6rem;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.t3-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--bg); opacity: 1; }
.t3-btn .arrow { display: inline-block; transition: transform .2s ease; }
.t3-btn:hover .arrow { transform: translateX(4px); }
.t3-btn--teal { background: var(--teal); border-color: var(--teal); }
.t3-btn--teal:hover { background: var(--ink); border-color: var(--ink); }

.t3-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.t3-link:hover { color: var(--teal); border-bottom-color: var(--teal); opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */

.t3-hero {
  padding-top: clamp(6rem, 12vw, 10rem);
  padding-bottom: clamp(6rem, 11vw, 9rem);
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.t3-hero .t3-wrap { width: 100%; }

.t3-hero__sub {
  margin: 2.25rem 0 3rem 0;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink);
  max-width: 44ch;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.t3-hero__cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Rotating word — quiet fade */
.rotating-word {
  display: inline-block;
  color: var(--teal);
  position: relative;
  white-space: nowrap;
  min-width: 7ch;
}
.rotating-word #rotating-word {
  display: inline-block;
  transition: opacity .25s ease, transform .25s ease;
}
.rotating-word #rotating-word.is-fading {
  opacity: 0;
  transform: translateY(-4px);
}

/* ============================================================
   SITUATION — signs grid
   ============================================================ */

.signs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.sign {
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background .2s ease;
}
.sign:nth-child(2n) { border-right: 0; padding-right: 0; padding-left: 2rem; }
.sign:nth-last-child(-n+2) { border-bottom: 0; }
.sign:hover { background: var(--bg-alt); }

.sign__num {
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.005em;
  display: block;
  margin-bottom: 1.5rem;
  transition: color .2s ease;
}
.sign__title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 0.75rem 0;
  text-wrap: balance;
  transition: color .2s ease;
}
.sign:hover .sign__title { color: var(--teal); }
.sign__body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 36ch;
}

@media (max-width: 760px) {
  .signs-grid { grid-template-columns: 1fr; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
  .sign { padding: 1.75rem 0; border-right: 0; }
  .sign:nth-child(2n) { padding-left: 0; }
  .sign:nth-last-child(-n+2) { border-bottom: 1px solid var(--hairline); }
  .sign:last-child { border-bottom: 0; }
}

/* ============================================================
   THESIS — ink anchor + numbered list
   ============================================================ */

.t3-thesis {
  background: var(--ink);
  color: var(--bg);
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(7rem, 12vw, 10rem);
}
.t3-thesis .t3-kicker--teal { color: var(--teal); }
.t3-thesis__quote {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 24ch;
  color: var(--bg);
  text-wrap: balance;
}
.t3-thesis__quote .accent { color: #4fb2c2; }
.t3-thesis__body {
  color: var(--muted-2);
  margin: 1.75rem 0 3rem 0;
  font-size: 1.075rem;
  line-height: 1.55;
  max-width: 44ch;
  letter-spacing: -0.005em;
}
.t3-thesis__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.t3-thesis__list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding-top: 1.25rem;
  border-top: 1px solid #2a2a2a;
}
.t3-thesis__list-num {
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.005em;
}
.t3-thesis__list-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin: 0 0 0.5rem 0;
}
.t3-thesis__list-body {
  color: var(--muted-2);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  max-width: 32ch;
}

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

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
  position: sticky;
  top: 6rem;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}
.about-portrait:hover img { transform: scale(1.02); }

.about-body .t3-h2 { margin-bottom: 1.75rem; }
.about-body .t3-body {
  margin-bottom: 1.25rem;
  color: var(--body);
}

.outcomes {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}
.outcome {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-top: 1px solid var(--hairline);
  transition: padding-left .2s ease;
}
.outcome:hover { padding-left: 0.5rem; }
.outcome:last-child { border-bottom: 1px solid var(--hairline); }
.outcome__num {
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.005em;
}
.outcome__title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem 0;
  color: var(--ink);
  transition: color .2s ease;
}
.outcome:hover .outcome__title { color: var(--teal); }
.outcome__body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

.about-link {
  margin: 1.5rem 0 0 0;
  font-size: 14px;
  color: var(--teal);
  letter-spacing: 0.005em;
}
.about-link a {
  color: var(--teal);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  transition: border-color .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.about-link a:hover { border-bottom-color: var(--teal); opacity: 1; }
.about-link .arrow { transition: transform .2s ease; }
.about-link a:hover .arrow { transform: translateX(4px); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-portrait { position: static; max-width: 320px; }
}

/* ============================================================
   ENGAGEMENTS — three cards
   ============================================================ */

.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.engage-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--hairline);
  padding: 1.75rem 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  min-height: 280px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.engage-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  opacity: 1;
}
.engage-card--featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.engage-card--featured:hover {
  border-color: var(--teal);
  background: #1a1a1a;
}

.engage-card__type {
  font-size: 12.5px;
  color: var(--teal);
  letter-spacing: 0.005em;
  display: block;
  margin-bottom: 1.5rem;
}
.engage-card--featured .engage-card__type { color: #4fb2c2; }

.engage-card__title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 0.85rem 0;
  text-wrap: balance;
  transition: color .2s ease;
}
.engage-card:not(.engage-card--featured):hover .engage-card__title { color: var(--teal); }
.engage-card--featured .engage-card__title { color: var(--bg); }

.engage-card__body {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 1.5rem 0;
  flex: 1;
}
.engage-card--featured .engage-card__body { color: var(--muted-2); }

.engage-card__action {
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.005em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}
.engage-card--featured .engage-card__action { color: #4fb2c2; }
.engage-card__action .arrow { transition: transform .2s ease; }
.engage-card:hover .engage-card__action .arrow { transform: translateX(4px); }

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

/* Inline CTA — Control Test pointer */

.inline-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--ink);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transition: background .2s ease, border-color .2s ease;
}
.inline-cta:hover { border-color: var(--teal); }

.inline-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1 1 280px;
}
.inline-cta__sub {
  font-size: 12px;
  letter-spacing: 0.005em;
  color: var(--teal);
}
.inline-cta__headline {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.35;
  text-wrap: balance;
}
.inline-cta__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0.85rem 1.35rem;
  background: var(--teal);
  border: 1px solid var(--teal);
  color: var(--bg);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
  border-radius: 0;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.inline-cta__link:hover {
  background: var(--ink);
  border-color: var(--ink);
  opacity: 1;
}
.inline-cta__link .arrow { transition: transform .2s ease; }
.inline-cta__link:hover .arrow { transform: translateX(4px); }

@media (max-width: 560px) {
  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
  }
  .inline-cta__text { flex: 0 0 auto; width: 100%; }
  .inline-cta__headline { font-size: 1.15rem; line-height: 1.3; }
  .inline-cta__link {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.2rem;
    font-size: 14.5px;
  }
}


/* ============================================================
   ─── Production Site Header (mirrors WordPress nav) ─────────
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 99999;
  background: var(--bg);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  font-family: var(--font-sans);
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(249, 248, 247, 0.98);
}
.site-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.15rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.site-logo {
  font-size: 0.9rem; font-weight: 900;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; white-space: nowrap;
  border-bottom: 0;
}
.site-nav { display: flex; align-items: center; gap: 3rem; }
.nav-item {
  font-size: 0.7rem; font-weight: 900;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 0;
  position: relative; padding-bottom: 4px;
}
.nav-item::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--teal);
  transition: width 0.25s ease;
}
.nav-item:hover { opacity: 1; }
.nav-item:hover::after { width: 100%; }
.nav-cta { color: var(--teal); }
.nav-toggle {
  display: none; border: 2px solid var(--ink);
  background: transparent; color: var(--ink);
  padding: 0.65rem 0.9rem; cursor: pointer;
  align-items: center; gap: 0.75rem; font-family: inherit;
}
.nav-toggle-text {
  font-size: 0.65rem; font-weight: 900;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.nav-toggle-icon { width: 18px; height: 12px; position: relative; display: inline-block; }
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: ''; position: absolute; left: 0; width: 100%;
  height: 2px; background: var(--ink);
  transition: transform 0.2s ease, top 0.2s ease;
}
.nav-toggle-icon::before { top: 2px; }
.nav-toggle-icon::after  { top: 8px; }

@media (max-width: 1024px) {
  .site-header-inner { padding: 1.1rem 2rem; }
  .site-nav { gap: 1.5rem; }
}
@media (max-width: 768px) {
  .site-header-inner { padding: 0.9rem 1.25rem; gap: 1rem; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; left: 0; top: 100%; width: 100%;
    background: rgba(249, 248, 247, 0.98);
    border-bottom: 1px solid var(--hairline);
    display: grid; gap: 0; padding: 0.75rem 1.25rem 1.25rem;
    transform-origin: top; transform: scaleY(0);
    opacity: 0; pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }
  .site-header.is-open .site-nav {
    transform: scaleY(1); opacity: 1; pointer-events: auto;
  }
  .site-nav .nav-item {
    padding: 1rem 0;
    border-top: 1px solid rgba(228,223,219,0.7);
  }
  .site-nav .nav-item::after { display: none; }
  .site-header.is-open .nav-toggle-icon::before { top: 5px; transform: rotate(45deg); }
  .site-header.is-open .nav-toggle-icon::after  { top: 5px; transform: rotate(-45deg); }
}

/* ============================================================
   ─── Production Site Footer ─────────────────────────────────
   ============================================================ */

.site-footer {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 4rem 0 2.25rem;
  border-top: 1px solid #1f2937;
  font-family: var(--font-sans);
}
.site-footer h1, .site-footer h2, .site-footer h3,
.site-footer h4, .site-footer p { margin-top: 0; }
.site-footer ul { margin: 0; }
.rp-footer-container { max-width: 1360px; margin: 0 auto; padding: 0 1rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.25rem; margin-bottom: 2.5rem; align-items: start;
}
.footer-logo { max-width: 420px; height: auto; margin-bottom: 0.75rem; display: block; }
.footer-role {
  display: block; font-size: 11px; letter-spacing: 0.28em;
  color: #9ca3af; margin-bottom: 1.4rem; font-weight: 800;
  text-transform: uppercase;
}
.footer-tagline {
  color: #d1d5db; font-size: 1rem; line-height: 1.6;
  max-width: 520px; margin-bottom: 1.35rem;
}
.footer-badge {
  display: inline-block; font-size: 10px; letter-spacing: 0.32em;
  padding: 0.7rem 0.95rem; border: 1px solid #374151;
  color: #5bbdd4; background: rgba(0,103,120,0.12);
  font-weight: 900; text-transform: uppercase;
}
.footer-label {
  font-size: 10px; color: #5bbdd4; letter-spacing: 0.35em;
  margin-bottom: 1.25rem; display: block; font-weight: 900;
  text-transform: uppercase;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.85rem; }
.footer-links a {
  color: #ffffff; text-decoration: none;
  font-size: 0.98rem; font-weight: 650;
  display: inline-block; opacity: 0.92; border-bottom: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover { color: #5bbdd4; transform: translateX(6px); opacity: 1; }
.footer-email {
  display: inline-block; color: #ffffff; text-decoration: none;
  font-size: 1.1rem; font-weight: 900; margin-bottom: 1.1rem;
  opacity: 0.95; border-bottom: 0; transition: color 0.2s ease;
}
.footer-email:hover { color: #5bbdd4; opacity: 1; }
.footer-social { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.2rem; }
.footer-social a {
  color: #9ca3af; text-decoration: none;
  font-size: 0.95rem; font-weight: 700; display: inline-block;
  border-bottom: 0; transition: color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { color: #ffffff; transform: translateX(6px); }
.footer-note { color: #6b7280; font-size: 0.9rem; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid #111827; padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  align-items: center; gap: 2rem; flex-wrap: wrap;
}
.footer-bottom-left, .footer-bottom-right {
  font-size: 10px; letter-spacing: 0.35em;
  color: #6b7280; font-weight: 900; text-transform: uppercase;
}

@media (max-width: 1024px) {
  .rp-footer-container { padding: 0 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-logo { max-width: 380px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
