/* ============================================================
   30-Day Pipeline Reset — Landing Page
   New design system (matches /team3/, /team3-read/, /five-minute-control-test/)
   ============================================================ */

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

  --maxw:      920px;       /* tighter than the white-paper landing — document/brief feel */
  --gutter:    clamp(24px, 4vw, 56px);
  --section:   clamp(4.5rem, 8vw, 7.5rem);  /* denser vertical rhythm than the landing */

  --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.55) auto;
  padding: 1.1rem var(--gutter) 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.55);
}

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

.t3-display {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 6rem);   /* matches the white-paper landing's font experience */
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}

.t3-h2 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);  /* smaller than the landing */
  line-height: 1.05;
  letter-spacing: -0.025em;
  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 2.25rem 0;
  display: block;
}
.t3-kicker--teal { color: var(--teal); }

/* ---------- 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(3rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  min-height: auto;
  display: block;
}

/* Document strip: classified-style identifier above the hero */
.t3-doc__strip {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--ink);
  flex-wrap: wrap;
}
.t3-doc__id {
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.t3-doc__status {
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: var(--teal);
}
.t3-doc__status::before {
  content: "● ";
  color: var(--teal);
  font-size: 0.85em;
  vertical-align: 1px;
}

/* Document title — small, set above the hero headline */
.t3-doc__title {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.t3-hero__inner { max-width: none; }

.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: 50ch;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

.t3-hero__cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Fact strip: tabular fields below the hero CTAs */
.t3-doc__facts {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}
.t3-doc__fact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.t3-doc__fact-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.005em;
}
.t3-doc__fact-value {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

@media (max-width: 760px) {
  .t3-doc__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
  }
}

/* Mobile: stack the doc strip + render the fact strip as a true two-column
   fact-sheet (label left, value right) with hairline rows. */
@media (max-width: 560px) {
  .t3-doc__strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .t3-doc__title {
    margin-bottom: 1.5rem;
  }
  .t3-doc__facts {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 1rem;
  }
  .t3-doc__fact {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--hairline);
  }
  .t3-doc__fact:last-child {
    border-bottom: 0;
  }
}

/* ============================================================
   PROBLEM (situation) — vertical narrative
   ============================================================ */

.t3-problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}
.t3-pains {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}
.t3-pain__kind {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: .85rem;
  transition: color .2s ease;
}
.t3-pain:hover .t3-pain__kind { color: var(--teal); }
.t3-pain__title {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 .6rem 0;
  color: var(--ink);
  max-width: 32ch;
  text-wrap: balance;
}
.t3-pain__body {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}

/* ============================================================
   THESIS — ink anchor
   ============================================================ */

.t3-thesis {
  background: var(--ink);
  color: var(--bg);
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(7rem, 12vw, 10rem);
}
.t3-thesis .t3-kicker { color: var(--teal); }
.t3-thesis__quote {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 4rem);   /* slightly bigger than the landing per request */
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 22ch;
  color: var(--bg);
  text-wrap: balance;
}
.t3-thesis__quote .accent { color: #4fb2c2; }
.t3-thesis__attr {
  margin-top: 3rem;
  color: var(--muted-2);
  font-size: 13px;
  letter-spacing: 0.005em;
}

/* ============================================================
   FRAMEWORK / BLUEPRINT — three+ pillars
   ============================================================ */

.t3-framework__intro {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  margin-bottom: clamp(4rem, 8vw, 6rem);
  align-items: start;
}

.t3-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}
.t3-pillar {
  transition: transform .2s ease;
}
.t3-pillar:hover { transform: translateY(-2px); }
.t3-pillar__idx,
.t3-pillar__title { transition: color .2s ease; }
.t3-pillar:hover .t3-pillar__idx,
.t3-pillar:hover .t3-pillar__title { color: var(--teal); }
.t3-pillar__idx {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-bottom: 1.75rem;
}
.t3-pillar__title {
  font-weight: 400;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1rem 0;
  text-wrap: balance;
}
.t3-pillar__body {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SCOPE LOCK — this is / this isn't
   ============================================================ */

.t3-scope__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 60ch; }

.t3-scope__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.t3-scope__col {
  border-top: 1px solid var(--ink);
  padding-top: 1.5rem;
}
.t3-scope__label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.005em;
  display: block;
  margin-bottom: 1.5rem;
}
.t3-scope__label--in  { color: var(--teal); }
.t3-scope__label--out { color: var(--muted); }

.t3-scope__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.t3-scope__list li {
  padding: 0.95rem 0 0.95rem 1.5rem;
  font-size: 1.025rem;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.t3-scope__list--in li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0.95rem;
  color: var(--teal);
  font-weight: 400;
  line-height: 1.5;
}
.t3-scope__list--out li::before {
  content: '×';
  position: absolute;
  left: 0;
  top: 0.95rem;
  color: var(--muted-2);
  font-weight: 400;
  line-height: 1.5;
}
.t3-scope__list--out li { color: var(--muted); }

/* ============================================================
   INSIDE — quiet ordered list (engagement, qualification)
   ============================================================ */

.t3-inside__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.t3-inside__list { margin: 0; padding: 0; list-style: none; }
.t3-inside__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.75rem;
  padding: 1.5rem 0;
  align-items: baseline;
  transition: padding-left .2s ease;
}
.t3-inside__item + .t3-inside__item { border-top: 1px solid var(--hairline); }
.t3-inside__num {
  font-size: 13px;
  color: var(--muted);
  padding-top: 4px;
  transition: color .2s ease;
}
.t3-inside__text {
  font-weight: 400;
  font-size: clamp(1.075rem, 1.5vw, 1.2rem);
  line-height: 1.4;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 50ch;
  text-wrap: pretty;
  transition: color .2s ease;
}
.t3-inside__item:hover .t3-inside__num,
.t3-inside__item:hover .t3-inside__text { color: var(--teal); }

/* ============================================================
   AFTER 30 DAYS
   ============================================================ */

.t3-after__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 4rem);
}
.t3-after__col {
  border-top: 1px solid var(--ink);
  padding-top: 1.5rem;
}
.t3-after__label {
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.005em;
  display: block;
  margin-bottom: 1.5rem;
}
.t3-after__list { list-style: none; margin: 0; padding: 0; }
.t3-after__list li {
  padding: 0.95rem 0 0.95rem 1.5rem;
  font-size: 1.025rem;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: padding-left .25s ease;
}
.t3-after__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .25s ease;
}
.t3-after__list li:hover { padding-left: 2.5rem; }
.t3-after__list li:hover::before { width: 1rem; }

/* ============================================================
   FINAL CTA + FORM
   ============================================================ */

.t3-final {
  background: var(--bg-alt);
  padding-top: 0;
}
.t3-final .t3-sectionbar {
  border-top: 0;
  padding-top: calc(var(--section) * 0.55);
}

.t3-final__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

/* Investment block */
.t3-investment {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}
.t3-investment__label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.005em;
  margin-bottom: 0.5rem;
  display: block;
}
.t3-investment__amount {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 1.25rem 0;
}
.t3-investment__note {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 42ch;
}

/* Form */
.t3-form {
  background: transparent;
  border: 0;
  padding: 0;
}

.t3-field {
  display: block;
  margin-bottom: 1.5rem;
}
.t3-field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.t3-field__row .t3-field { margin-bottom: 1.5rem; }

.t3-field label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: .55rem;
  font-weight: 400;
}

.t3-field input:not([type="checkbox"]):not([type="radio"]),
.t3-field select,
.t3-field textarea {
  width: 100%;
  padding: .7rem 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color .15s ease;
  letter-spacing: -0.005em;
  -webkit-appearance: none;
  appearance: none;
}
.t3-field select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%3E%3Cpath%20d%3D%22M0%200l5%206%205-6z%22%20fill%3D%22%23807771%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}
.t3-field textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 0.5rem;
  border: 1px solid var(--hairline);
  padding: 0.85rem 0.95rem;
  background: var(--bg);
}
.t3-field input:focus,
.t3-field select:focus,
.t3-field textarea:focus {
  border-color: var(--teal);
  border-bottom-color: var(--teal);
}
.t3-field input::placeholder,
.t3-field textarea::placeholder { color: var(--muted-2); font-weight: 400; }

.t3-field__hint {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 0.4rem;
}

.t3-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.5rem 0;
}
.t3-check {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  cursor: pointer;
  user-select: none;
}
.t3-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.t3-form__error {
  display: none;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #b42318;
}

.t3-form__submit {
  width: 100%;
  margin-top: 1.5rem;
  justify-content: center;
}

.t3-form__alt {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.005em;
}

.t3-form__status {
  margin-top: 1.25rem;
  font-size: 13px;
  color: var(--muted);
  min-height: 1em;
  text-align: center;
}
.t3-form__status.is-error   { color: #b42318; }
.t3-form__status.is-success { color: var(--teal); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 960px) {
  .t3-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; }
}

@media (max-width: 860px) {
  .t3-problem__grid,
  .t3-framework__intro,
  .t3-inside__grid,
  .t3-final__grid {
    grid-template-columns: 1fr;
  }
  .t3-pillars      { grid-template-columns: 1fr; gap: 2.5rem; }
  .t3-scope__grid  { grid-template-columns: 1fr; gap: 1.5rem; }
  .t3-after__grid  { grid-template-columns: 1fr; gap: 2rem; }
  .t3-hero { min-height: auto; }
  .t3-field__row { grid-template-columns: 1fr; gap: 0; }
}


/* ============================================================
   ─── 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 (mirrors WordPress 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; }
}
