/*
Theme Name: JurisTrace v0.4.1
Theme URI: https://juristrace.ca/
Author: JurisTrace
Author URI: https://juristrace.ca/
Description: Controlled JurisTrace project-file review and follow-through website with a private, browser-only service Navigator.
Version: 0.4.1
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 8.1
Text Domain: juristrace
*/

:root {
  --nephrite: #1f3e34;
  --seton: #24556a;
  --sage: #858b72;
  --sand: #b79a6b;
  --silver: #70777e;
  --ink: #161616;
  --white: #ffffff;
  --line: #d9dddc;
  --soft: #f4f6f5;
  --sage-wash: #f1f3ee;
  --sand-wash: #f7f3ec;
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --serif: "Charis SIL", Charter, "Iowan Old Style", Georgia, serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 1rem;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid #b6d5e1;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: white;
  color: var(--ink);
  padding: 0.8rem 1rem;
  border: 2px solid var(--seton);
}
.skip-link:focus {
  top: 1rem;
}

.site-header {
  height: 88px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(31, 62, 52, 0.16);
  background: rgba(255, 255, 255, 0.97);
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex: 0 0 auto;
}
.brand img {
  display: block;
  width: clamp(180px, 16vw, 238px);
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 2.25rem);
  font-size: 0.82rem;
  font-weight: 650;
}
.desktop-nav a:not(.nav-action) {
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}
.desktop-nav a[aria-current="page"]:not(.nav-action),
.desktop-nav a:hover:not(.nav-action) {
  color: var(--seton);
  border-color: var(--seton);
}
.nav-action {
  padding: 0.85rem 1.15rem;
  background: var(--nephrite);
  color: white;
  border: 1px solid var(--nephrite);
}
.nav-action:hover {
  background: var(--seton);
  border-color: var(--seton);
}
.mobile-nav {
  display: none;
  position: relative;
}
.mobile-nav summary {
  list-style: none;
  cursor: pointer;
  border: 1px solid var(--nephrite);
  padding: 0.7rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mobile-nav summary::-webkit-details-marker {
  display: none;
}
.mobile-nav nav {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: min(80vw, 290px);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(15, 35, 28, 0.16);
  padding: 0.5rem;
  display: grid;
}
.mobile-nav nav a {
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.page-hero {
  min-height: 660px;
  background: var(--nephrite);
  color: white;
  padding: clamp(4rem, 8vw, 8.25rem) clamp(1.25rem, 7vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: end;
  position: relative;
  overflow: hidden;
}
.hero-copy,
.hero-aside {
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-size: 0.69rem;
  line-height: 1.45;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 750;
  margin-bottom: 1.3rem;
}
.hero-copy h1 {
  margin: 0;
  max-width: 880px;
  font-family: var(--serif);
  font-size: clamp(3.65rem, 6.5vw, 7.5rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
  font-weight: 500;
  text-wrap: balance;
}
.hero-lead {
  max-width: 780px;
  margin-top: 2rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.4;
}
.hero-support {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.96rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
  margin-top: 1.5rem;
}
.hero-actions .button {
  margin-top: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  min-width: 230px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  border: 1px solid currentColor;
  transition: 0.18s ease;
}
.button span {
  font-size: 1rem;
}
.button-light {
  color: var(--nephrite);
  background: white;
  border-color: white;
}
.button-light:hover {
  color: white;
  background: transparent;
}
.button-quiet {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.66);
}
.button-quiet:hover {
  color: var(--nephrite);
  background: white;
  border-color: white;
}
.question-rail {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.question-rail > div {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  align-items: baseline;
}
.question-rail span,
.hero-statement span {
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  opacity: 0.55;
}
.question-rail strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
}
.hero-statement {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-statement span {
  padding: 0.9rem 0;
}
.hero-statement strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.section {
  --section-accent: var(--seton);
  --section-muted: var(--silver);
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 8rem);
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 8vw, 8rem);
  border-bottom: 1px solid var(--line);
}
.section-head {
  position: sticky;
  top: 2rem;
  align-self: start;
}
.section-head h2 {
  margin: 0;
  max-width: 590px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 3.55vw, 4.15rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.042em;
  text-wrap: balance;
}
.cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.2vw, 4.85rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.section-head .eyebrow {
  display: grid;
  grid-template-columns: max-content minmax(2rem, 1fr);
  gap: 0.9rem;
  align-items: center;
  margin: 0 0 1.35rem;
  color: var(--seton);
  font-size: clamp(0.76rem, 0.78vw, 0.84rem);
  line-height: 1.2;
  letter-spacing: 0.13em;
  font-weight: 800;
}
.section-head .eyebrow::after {
  content: "";
  height: 4px;
  background: var(--section-accent);
}
.section-body {
  align-self: start;
  min-width: 0;
}
.section-accent-nephrite {
  --section-accent: var(--nephrite);
}
.section-accent-sage {
  --section-accent: var(--sage);
}
.section-accent-sand {
  --section-accent: var(--sand);
}
.section-light.section-accent-sage {
  --section-muted: rgba(22, 22, 22, 0.72);
  background: var(--sage-wash);
}
.section-light.section-accent-sage .section-head .eyebrow {
  color: var(--nephrite);
}
.section-light.section-accent-sand {
  --section-muted: rgba(22, 22, 22, 0.72);
  background: var(--sand-wash);
}
.section-light.section-accent-sand .section-head .eyebrow {
  color: var(--ink);
}
.section-blue {
  background: var(--seton);
  color: white;
  border-color: rgba(255, 255, 255, 0.15);
}
.section-blue .section-head .eyebrow,
.section-green .section-head .eyebrow,
.section-ink .section-head .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
.section-blue .section-head .eyebrow::after,
.section-green .section-head .eyebrow::after,
.section-ink .section-head .eyebrow::after {
  background: rgba(255, 255, 255, 0.62);
}
.section-green {
  background: var(--nephrite);
  color: white;
  border-color: rgba(255, 255, 255, 0.15);
}
.section-ink {
  background: var(--ink);
  color: white;
  border-color: rgba(255, 255, 255, 0.15);
}
.lead-copy {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.42;
  letter-spacing: -0.018em;
}
.narrow {
  max-width: 900px;
}
.two-column-copy {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.two-column-copy > div p,
.two-column-copy > p:not(.lead-copy) {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #4f5759;
}
.section-blue .two-column-copy p,
.section-green .two-column-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.outcome-grid article {
  min-height: 230px;
  padding: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
}
.outcome-grid span,
.offer-grid span,
.principle-grid span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  opacity: 0.65;
}
.outcome-grid h3 {
  margin: auto 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}
.outcome-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-size: 0.9rem;
}
.source-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3rem 0 1.4rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.source-strip div {
  min-height: 110px;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.source-strip span {
  font-family: var(--sans);
  color: var(--section-muted);
  font-size: 0.62rem;
}
.small-note {
  color: var(--section-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}
.moment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.moment-grid article {
  min-height: 220px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.moment-grid span {
  color: var(--section-muted);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}
.moment-grid h3 {
  margin: auto 0 0.65rem;
  max-width: 420px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.12;
}
.moment-grid p {
  margin: 0;
  max-width: 460px;
  color: #535b5c;
  font-size: 0.9rem;
  line-height: 1.6;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}
.audience-grid article {
  min-height: 360px;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  flex-direction: column;
}
.card-label {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  opacity: 0.7;
}
.audience-grid h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.1;
  font-weight: 500;
  max-width: 420px;
}
.audience-grid article > p:not(.card-label) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}
.audience-grid a {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 750;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.offer-grid article {
  grid-column: span 2;
  min-height: 245px;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.offer-grid article:nth-child(4),
.offer-grid article:nth-child(5) {
  grid-column: span 3;
}
.offer-grid h3 {
  margin: auto 0 0.55rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}
.offer-grid p {
  margin: 0;
  color: var(--section-muted);
  font-size: 0.87rem;
  line-height: 1.6;
}
.text-link {
  display: inline-flex;
  gap: 3rem;
  margin-top: 1.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--seton);
  color: var(--seton);
  font-size: 0.8rem;
  font-weight: 750;
}
.on-dark {
  color: white;
  border-color: white;
}
.pathway-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}

.number-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.number-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.number-list .number {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  opacity: 0.55;
  padding-top: 0.35rem;
}
.number-list h3 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
}
.number-list p {
  margin: 0;
  opacity: 0.72;
  line-height: 1.6;
  font-size: 0.9rem;
}
.section-blue .number-list li {
  border-color: rgba(255, 255, 255, 0.25);
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}
.check-list li {
  min-height: 120px;
  padding: 1.2rem 1.2rem 1.2rem 3.1rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  position: relative;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.45;
}
.check-list li::before {
  content: "+";
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  font-family: var(--sans);
  color: currentColor;
  opacity: 0.65;
}
.section-blue .check-list {
  border-color: rgba(255, 255, 255, 0.35);
}
.section-blue .check-list li {
  border-color: rgba(255, 255, 255, 0.35);
}
.boundary {
  border-top: 5px solid var(--nephrite);
}
.cta {
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1.25rem, 7vw, 8rem);
  background: var(--seton);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}
.cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  max-width: 620px;
}

.service-list {
  border-top: 1px solid var(--line);
}
.service-list article {
  display: grid;
  grid-template-columns: 3rem 1fr 0.85fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.service-number {
  color: var(--section-muted);
  font-size: 0.65rem;
  padding-top: 0.45rem;
}
.service-list h3 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 500;
}
.service-list p {
  color: #535b5c;
  line-height: 1.65;
  font-size: 0.91rem;
}
.service-meta {
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
}
.service-meta b {
  display: block;
  color: var(--seton);
  margin-bottom: 0.35rem;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.principle-grid article {
  grid-column: span 2;
  min-height: 230px;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.principle-grid article:nth-child(4),
.principle-grid article:nth-child(5) {
  grid-column: span 3;
}
.principle-grid h3 {
  margin: auto 0 0.5rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}
.principle-grid p {
  color: var(--section-muted);
  line-height: 1.55;
  font-size: 0.84rem;
}
.email-panel {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 7vw, 8rem);
  background: var(--ink);
  color: white;
}
.email-panel a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 970px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 5.5rem);
  letter-spacing: -0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 1rem;
}
.policy {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 8rem);
  display: grid;
  grid-template-columns: 280px minmax(0, 800px);
  gap: clamp(3rem, 9vw, 9rem);
}
.policy-index {
  position: sticky;
  top: 2rem;
  align-self: start;
  display: grid;
}
.policy-index a {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  color: var(--silver);
}
.policy-content article {
  padding: 0 0 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 2rem;
}
.policy-content article > span {
  color: var(--silver);
  font-size: 0.65rem;
}
.policy-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.policy-content p {
  line-height: 1.8;
  color: #4d5557;
}
.policy-content a {
  color: var(--seton);
  border-bottom: 1px solid var(--seton);
}

.site-footer {
  background: var(--nephrite);
  color: white;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 7vw, 8rem) 1.5rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 5rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
}
.footer-brand img {
  display: block;
  width: min(100%, 300px);
  height: auto;
}
.footer-main p {
  margin: 1.2rem 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.45;
}
.footer-email {
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 0.25rem;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.footer-links > div {
  display: grid;
  align-content: start;
}
.footer-links span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0.2rem;
}
.footer-links a {
  padding: 0.55rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer-links a:hover {
  color: white;
}
.footer-base {
  display: flex;
  justify-content: space-between;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.67rem;
}

.navigator-intro {
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 7vw, 8rem);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 8vw, 8rem);
  border-bottom: 1px solid var(--line);
}
.navigator-intro h2 {
  margin: 0;
  max-width: 680px;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.2vw, 4.6rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.navigator-intro > p {
  max-width: 680px;
  color: #4f5759;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.5;
}
.navigator-shell {
  padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 7vw, 8rem)
    clamp(5rem, 9vw, 9rem);
  background: var(--sage-wash);
}
.navigator-frame {
  max-width: 1180px;
  margin: 0 auto;
}
.navigator-progress {
  margin-bottom: 1.15rem;
}
.navigator-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  color: rgba(22, 22, 22, 0.72);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.navigator-progress-top p {
  margin: 0;
}
.navigator-progress-track {
  height: 4px;
  margin-top: 0.85rem;
  background: #dfe4e2;
  overflow: hidden;
}
.navigator-progress-track span {
  display: block;
  height: 100%;
  background: var(--seton);
  transition: width 0.28s ease;
}
.navigator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(255px, 0.58fr);
  align-items: stretch;
  gap: 1.15rem;
}
.navigator-step {
  padding: clamp(1.5rem, 4vw, 3.2rem);
  background: white;
  outline: none;
  scroll-margin-top: 1.5rem;
}
.navigator-step fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.navigator-step-label,
.navigator-summary > p {
  margin: 0 0 1.6rem;
  color: var(--seton);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.navigator-step legend {
  max-width: 790px;
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.042em;
}
.navigator-help {
  max-width: 690px;
  margin: 1rem 0 1.6rem;
  color: var(--silver);
  font-size: 0.9rem;
  line-height: 1.65;
}
.navigator-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.navigator-options label {
  position: relative;
  min-height: 156px;
  padding: 1.15rem 1.15rem 1.15rem 3.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  cursor: pointer;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
}
.navigator-options label:hover {
  background: #eef2f1;
}
.navigator-options label.selected {
  background: var(--nephrite);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}
.navigator-options input {
  position: absolute;
  top: 1.2rem;
  left: 1.15rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--seton);
}
.navigator-options strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.17;
}
.navigator-options span {
  margin-top: 0.55rem;
  color: var(--silver);
  font-size: 0.8rem;
  line-height: 1.52;
}
.navigator-options label.selected span {
  color: rgba(255, 255, 255, 0.72);
}
.navigator-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.35rem;
}
.navigator-controls button {
  min-width: 150px;
  padding: 1rem 1.15rem;
  display: inline-flex;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--nephrite);
  font: 750 0.75rem/1 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.navigator-back {
  background: white;
  color: var(--nephrite);
}
.navigator-back:disabled {
  border-color: transparent;
  color: #a5adaa;
  cursor: not-allowed;
}
.navigator-next {
  background: var(--nephrite);
  color: white;
}
.navigator-next:hover:not(:disabled) {
  background: var(--seton);
  border-color: var(--seton);
}
.navigator-next:disabled {
  border-color: var(--line);
  background: #e4e7e6;
  color: #7d8586;
  cursor: not-allowed;
}
.navigator-summary {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: white;
}
.navigator-summary > p {
  color: rgba(255, 255, 255, 0.58);
}
.navigator-summary > strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
}
.navigator-summary-list {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}
.navigator-summary-list div {
  padding: 0.95rem 0;
  display: grid;
  gap: 0.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navigator-summary-list span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.navigator-summary-list strong {
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.25;
}
.navigator-summary small {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
  line-height: 1.55;
}
.navigator-result {
  max-width: 1180px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--nephrite);
  color: white;
  outline: none;
}
.navigator-result .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}
.result-label {
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}
.navigator-result h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}
.result-intro {
  margin-top: 1.5rem;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.7);
}
.result-lead {
  margin-top: 1rem;
  max-width: 880px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.45;
}
.result-why {
  max-width: 880px;
  margin-top: 1.4rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid white;
  background: rgba(255, 255, 255, 0.08);
}
.result-why strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.result-why p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.65;
}
.result-pathway {
  max-width: 880px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
}
.perspective-line {
  max-width: 880px;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}
.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}
.result-grid > div {
  min-height: 210px;
  padding: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.result-grid h3 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}
.result-grid p,
.result-grid li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}
.result-grid ul {
  margin: 0;
  padding-left: 1.2rem;
}
.result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
.result-actions .button {
  min-width: 250px;
}
.copy-summary {
  margin-top: 1.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: white;
  font: 750 0.76rem/1.2 var(--sans);
  letter-spacing: 0.04em;
  cursor: pointer;
}
.copy-summary:hover {
  background: white;
  color: var(--nephrite);
}
.reset-link {
  margin-top: 1.5rem;
  padding: 0.4rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: white;
  font: 750 0.78rem/1 var(--sans);
  cursor: pointer;
}
.copy-notice {
  min-height: 1.4rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
}
.result-warning {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-aside {
    max-width: 560px;
  }
  .section {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
  .section-head {
    position: static;
    max-width: 720px;
  }
  .service-list article {
    grid-template-columns: 2rem 1fr;
  }
  .service-meta {
    grid-column: 2;
  }
  .navigator-intro {
    grid-template-columns: 1fr;
  }
  .navigator-layout {
    grid-template-columns: 1fr;
  }
  .navigator-summary {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 76px;
  }
  .brand img {
    width: 170px;
  }
  .page-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
    gap: 3rem;
  }
  .hero-copy h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }
  .hero-lead {
    font-size: 1.2rem;
  }
  .button {
    width: 100%;
    min-width: 0;
  }
  .section {
    padding-top: 4.3rem;
    padding-bottom: 4.3rem;
  }
  .section-head h2 {
    font-size: clamp(2.25rem, 10.2vw, 3.3rem);
  }
  .cta h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }
  .section-head .eyebrow {
    font-size: 0.76rem;
  }
  .two-column-copy,
  .outcome-grid,
  .moment-grid,
  .audience-grid,
  .check-list,
  .footer-main,
  .footer-links,
  .cta,
  .policy {
    grid-template-columns: 1fr;
  }
  .source-strip {
    grid-template-columns: 1fr 1fr;
  }
  .offer-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }
  .offer-grid article,
  .offer-grid article:nth-child(4),
  .offer-grid article:nth-child(5),
  .principle-grid article,
  .principle-grid article:nth-child(4),
  .principle-grid article:nth-child(5) {
    grid-column: auto;
  }
  .outcome-grid article {
    min-height: 205px;
  }
  .moment-grid article {
    min-height: 185px;
  }
  .audience-grid article {
    min-height: 330px;
  }
  .service-list article {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .service-meta {
    grid-column: auto;
    margin-top: 0.6rem;
  }
  .policy-index {
    display: none;
  }
  .email-panel a {
    font-size: clamp(1.8rem, 9vw, 3rem);
    overflow-wrap: anywhere;
  }
  .footer-main {
    padding-bottom: 3rem;
  }
  .footer-base {
    flex-direction: column;
    gap: 0.6rem;
  }
  .navigator-options,
  .result-grid {
    grid-template-columns: 1fr;
  }
  .navigator-options label {
    min-height: 125px;
  }
  .navigator-progress-top {
    font-size: 0.61rem;
  }
  .navigator-step {
    padding: 1.3rem;
  }
  .navigator-step legend {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .navigator-controls {
    align-items: stretch;
  }
  .navigator-controls button {
    min-width: 0;
    flex: 1;
  }
  .navigator-summary {
    min-height: 0;
  }
}

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

/* WordPress integration */
.navigator-result {
  scroll-margin-top: 1.25rem;
}
body.admin-bar .section-head {
  top: calc(2rem + 32px);
}
body.admin-bar .navigator-result {
  scroll-margin-top: calc(32px + 1.25rem);
}
.wp-fallback-content {
  max-width: 960px;
  min-height: 60vh;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 4rem);
}
.wp-fallback-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.wp-fallback-content a {
  color: var(--seton);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media screen and (max-width: 782px) {
  body.admin-bar .section-head {
    top: calc(2rem + 46px);
  }
  body.admin-bar .navigator-result {
    scroll-margin-top: calc(46px + 1.25rem);
  }
}
@media screen and (max-width: 480px) {
  .navigator-result--register h2 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    letter-spacing: -0.055em;
    line-height: 1.03;
  }
}

/* Controlled photographic placements */
.landscape-feature {
  margin: 0;
  background: var(--ink);
  border-bottom: 5px solid var(--seton);
}

.landscape-feature picture,
.landscape-feature img {
  display: block;
  width: 100%;
}

.landscape-feature img {
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

/* About Rory: approved field, water and ridgeline composition */
.founder-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.85fr);
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.founder-visual {
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--white);
  color: var(--ink);
}

.founder-visual picture {
  min-height: 0;
  display: block;
}

.founder-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: 50% 50%;
  border-bottom: 5px solid var(--seton);
}

.founder-visual figcaption {
  min-height: 58px;
  padding: 0.9rem clamp(1.25rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-visual figcaption span:last-child {
  color: var(--silver);
}

.founder-panel {
  min-width: 0;
  padding: clamp(3.5rem, 6vw, 7rem) clamp(2rem, 4.5vw, 5.5rem);
  display: flex;
  flex-direction: column;
  border-left: 5px solid var(--sand);
}

.founder-panel .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.founder-panel h2 {
  margin: 0 0 clamp(2.5rem, 5vw, 5rem);
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.founder-panel p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.75;
}

.founder-panel .founder-lead {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.48;
}

.founder-signature {
  margin-top: auto;
  padding-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.founder-signature strong,
.founder-signature span {
  display: block;
}

.founder-signature strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.founder-signature span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .founder-feature {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  }

  .founder-visual img {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .landscape-feature img {
    aspect-ratio: 4 / 3;
  }

  .founder-feature {
    grid-template-columns: 1fr;
  }

  .founder-visual img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .founder-visual figcaption {
    min-height: 54px;
    font-size: 0.57rem;
  }

  .founder-panel {
    min-height: 570px;
    padding: 3.8rem 1.25rem 3rem;
    border-top: 5px solid var(--sand);
    border-left: 0;
  }

  .founder-panel h2 {
    margin-bottom: 2.5rem;
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }
}
