:root {
  --ink: #30343B;
  --ink-soft: #4B5058;
  --teal: #345985;
  --teal-deep: #345985;
  --blue: #7DA0C7;
  --blue-soft: #C6D4EC;
  --blue-pale: #F7F4EE;
  --clay: #7DA0C7;
  --clay-soft: #E7EDF5;
  --paper: #F7F4EE;
  --white: #ffffff;
  --line: rgba(52,89,133,.18);
  --shadow: 0 22px 55px rgba(22, 63, 66, 0.11);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1180px;
  --reading: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--teal);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--clay);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #7DA0C7;
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--teal-deep);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.72rem);
}

p {
  margin: 0 0 1.15rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.7rem;
}

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.reading-width {
  width: min(100%, var(--reading));
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.35rem;
  color: var(--white);
  background: var(--teal-deep);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lead {
  max-width: 45rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2.1vw, 1.72rem);
  line-height: 1.48;
}

.kicker {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(23, 76, 79, 0.12);
  background: rgba(252, 251, 248, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 5.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  min-width: 13rem;
  align-items: center;
  gap: 0.75rem;
  color: var(--teal-deep);
  text-decoration: none;
}

.brand:hover {
  color: var(--teal-deep);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(23, 76, 79, 0.38);
  border-radius: 50%;
}

.brand-mark::before {
  width: 1px;
  height: 1.5rem;
  background: var(--blue);
  content: "";
}

.brand-mark::after {
  position: absolute;
  top: 0.35rem;
  width: 0.48rem;
  height: 0.48rem;
  transform: rotate(45deg);
  background: var(--blue);
  content: "";
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.48rem;
  letter-spacing: 0.01em;
}

.brand-line {
  margin-top: 0.46rem;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 1.7rem);
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0.22rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--clay);
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 0.78rem 1rem;
  border-radius: 0.25rem;
  color: var(--white);
  background: var(--teal);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--clay);
}

.nav-toggle {
  display: none;
  min-width: 3rem;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal-deep);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.28rem auto;
  background: currentColor;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 16% 80%, rgba(102, 137, 186, 0.12), transparent 25rem),
    linear-gradient(130deg, var(--paper) 0%, #f8faf9 100%);
}

.home-hero::before {
  position: absolute;
  top: -15rem;
  left: -18rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(102, 137, 186, 0.17);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 6vw, 6.5rem);
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.78fr);
}

.hero-copy h1 {
  max-width: 13ch;
}

.hero-copy .lead {
  max-width: 38rem;
  margin-top: 1.75rem;
}

.hero-byline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
}

.hero-byline::before {
  width: 2.2rem;
  height: 1px;
  background: var(--clay);
  content: "";
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--teal);
  border-radius: 0.25rem;
  color: var(--white);
  background: var(--teal);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--clay);
  color: var(--white);
  background: var(--clay);
}

.button-secondary {
  color: var(--teal);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
}

.hero-art {
  position: relative;
  isolation: isolate;
}

.hero-art::before {
  position: absolute;
  z-index: -1;
  top: -2.25rem;
  right: -2.25rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(23, 76, 79, 0.28);
  border-radius: 50%;
  content: "";
}

.hero-art::after {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: -1.4rem;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50% 50% 12% 50%;
  background: rgba(168, 101, 85, 0.85);
  content: "";
  mix-blend-mode: multiply;
}

.hero-image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 11rem 11rem 0.5rem 0.5rem;
  box-shadow: var(--shadow);
  background: var(--blue-soft);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.statement-band {
  padding: 2.1rem 0;
  color: var(--white);
  background: var(--teal-deep);
}

.statement-band p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  line-height: 1.35;
  text-align: center;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.6rem) 0;
}

.section-tight {
  padding: clamp(3.5rem, 6vw, 5.4rem) 0;
}

.section-blue {
  background: var(--blue-pale);
}

.section-white {
  background: var(--white);
}

.section-clay {
  background: var(--clay-soft);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.25rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1.2fr);
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: clamp(1.7rem, 3vw, 2.5rem);
  border: 1px solid rgba(23, 76, 79, 0.14);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(22, 63, 66, 0.08);
}

.card-number {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1.4rem;
  place-items: center;
  border: 1px solid rgba(102, 137, 186, 0.45);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--serif);
}

.card h3 {
  margin-bottom: 1rem;
}

.card p:last-of-type {
  margin-bottom: 1.4rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(0.3rem);
}

.split {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
}

.split h2 {
  max-width: 11ch;
}

.principle-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  gap: 1.1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 2rem 1fr;
}

.principle span {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.principle p {
  margin: 0;
}

.callout {
  display: grid;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-left: 4px solid var(--blue);
  border-radius: 0.35rem;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(22, 63, 66, 0.07);
  grid-template-columns: 1fr auto;
}

.callout h2 {
  margin-bottom: 0.8rem;
}

.callout p:last-child {
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.25rem, 7vw, 7.25rem) 0 clamp(3.75rem, 6vw, 6rem);
  border-bottom: 1px solid rgba(23, 76, 79, 0.12);
  background:
    linear-gradient(115deg, rgba(230, 238, 246, 0.78), transparent 62%),
    var(--paper);
}

.page-hero::after {
  position: absolute;
  top: -15rem;
  right: -8rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(102, 137, 186, 0.27);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero .lead {
  margin-top: 1.6rem;
}

.content-grid {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 0.62fr) minmax(24rem, 1.38fr);
}

.section-label {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.section-label h2 {
  max-width: 10ch;
}

.prose > *:first-child {
  margin-top: 0;
}

.prose > *:last-child {
  margin-bottom: 0;
}

.prose h2 {
  margin: 3.4rem 0 1.25rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.prose h3 {
  margin: 2.3rem 0 0.9rem;
}

.prose ul {
  margin: 1.2rem 0 1.6rem;
}

.prose a {
  font-weight: 650;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid var(--blue);
  content: "";
}

.meaning-grid {
  display: grid;
  gap: 1px;
  margin-top: 2.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--line);
  grid-template-columns: 1fr 1fr;
}

.meaning-item {
  padding: clamp(1.7rem, 4vw, 3rem);
  background: var(--white);
}

.meaning-word {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 2.5rem;
}

.service-block {
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(23, 76, 79, 0.13);
  border-radius: 0.45rem;
  background: var(--white);
}

.service-block + .service-block {
  margin-top: 1.25rem;
}

.service-block h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.service-block .lead-small {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.55;
}

.service-block ul {
  margin: 1.5rem 0;
}

.fee-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.fee-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(23, 76, 79, 0.15);
  border-radius: 0.45rem;
  background: var(--white);
}

.fee-card.featured {
  border-top: 4px solid var(--blue);
}

.fee-card h2 {
  min-height: 2.4em;
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.fee-amount {
  display: block;
  margin-bottom: 1.35rem;
  color: var(--teal-deep);
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
}

.fee-details {
  display: grid;
  gap: 0.6rem;
  margin: 1.5rem 0;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fee-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.fee-row strong {
  color: var(--teal-deep);
}

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}

th,
td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--teal-deep);
  background: var(--blue-pale);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.contact-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.contact-item {
  min-height: 11rem;
  padding: 2rem;
  background: var(--white);
}

.contact-item span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item address {
  color: var(--teal-deep);
  font-family: var(--serif);
  font-size: clamp(1.22rem, 2vw, 1.6rem);
  font-style: normal;
  line-height: 1.35;
}

.urgent {
  padding: 1.5rem;
  border-left: 4px solid var(--clay);
  background: var(--clay-soft);
}

.urgent h2,
.urgent h3 {
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
}

.urgent p:last-child {
  margin-bottom: 0;
}

.legal-layout {
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
  grid-template-columns: 16rem minmax(0, var(--reading));
}

.legal-nav {
  position: sticky;
  top: 8rem;
  align-self: start;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: var(--white);
}

.legal-nav p {
  margin-bottom: 0.8rem;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-nav ul {
  list-style: none;
  padding: 0;
}

.legal-nav li + li {
  margin-top: 0.5rem;
}

.legal-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--clay);
}

.legal-copy h2 {
  margin: 3.7rem 0 1.15rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  scroll-margin-top: 8rem;
}

.legal-copy h2:first-of-type {
  margin-top: 0;
}

.legal-copy ul {
  margin: 1.2rem 0 1.6rem;
}

.updated {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.84);
  background: var(--teal-deep);
}

.footer-main {
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(3.8rem, 7vw, 6rem) 0 3rem;
  grid-template-columns: 1.1fr 0.75fr 1.15fr;
}

.footer-brand {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
}

.footer-label {
  margin-bottom: 1rem;
  color: #b9cde3;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-crisis {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.83rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

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

  .site-nav {
    position: fixed;
    inset: 5.75rem 0 auto;
    display: grid;
    max-height: calc(100vh - 5.75rem);
    padding: 1.5rem 1.25rem 2rem;
    transform: translateY(-140%);
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    transition: transform 200ms ease, opacity 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav a {
    width: 100%;
    padding: 0.85rem 0;
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .cards .card:last-child {
    grid-column: 1 / -1;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .legal-nav ul {
    columns: 2;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 2rem), var(--max));
  }

  .brand-line {
    display: none;
  }

  .brand-name {
    font-size: 1.32rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .home-hero {
    padding-top: 4rem;
  }

  .hero-grid,
  .section-heading,
  .split,
  .content-grid,
  .callout,
  .fee-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-art {
    width: min(100%, 30rem);
    margin-inline: auto;
  }

  .hero-image-wrap {
    aspect-ratio: 6 / 5;
    border-radius: 9rem 9rem 0.5rem 0.5rem;
  }

  .hero-image-wrap img {
    object-position: 70% center;
  }

  .section-heading {
    align-items: start;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cards .card:last-child {
    grid-column: auto;
  }

  .section-label {
    position: static;
  }

  .meaning-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .fee-card h2 {
    min-height: 0;
  }

  .footer-crisis {
    padding-top: 1.5rem;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .header-inner {
    min-height: 5.15rem;
  }

  .site-nav {
    inset-block-start: 5.15rem;
    max-height: calc(100vh - 5.15rem);
  }

  .button-row {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-art::after {
    right: -0.35rem;
    width: 5rem;
    height: 5rem;
  }

  .legal-nav ul {
    columns: 1;
  }

  th,
  td {
    padding: 0.85rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   NORTH OF WHY — 2026 identity / homepage redesign
   ========================================================= */
:root {
  --now-ink: #345985;
  --now-blue: #7DA0C7;
  --now-pale: #C6D4EC;
  --now-ivory: #F7F4EE;
  --now-charcoal: #30343B;
  --now-white: #FFFFFF;
  --now-line: rgba(52,89,133,.18);
  --serif: "Cormorant", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", "Avenir Next", Arial, sans-serif;
}
body.home-redesign { background: var(--now-ivory); color: var(--now-charcoal); font-family: var(--sans); }
.home-redesign h1,.home-redesign h2,.home-redesign h3 { color: var(--now-ink); font-family: var(--serif); font-weight:300; letter-spacing:-.018em; }
.home-redesign h1 { font-size:clamp(3.2rem,6.7vw,6.5rem); line-height:.96; }
.home-redesign h2 { font-size:clamp(2.6rem,4.8vw,4.6rem); line-height:1.02; }
.home-redesign h3 { font-size:clamp(1.6rem,2.2vw,2.25rem); line-height:1.12; }
.home-redesign .site-header { background:rgba(247,244,238,.94); border-bottom:1px solid var(--now-line); }
.now-brand { min-width:0; gap:.9rem; color:var(--now-ink); }
.now-brand:hover { color:var(--now-ink); }
.now-brand-emblem { width:2.75rem; height:2.75rem; object-fit:contain; }
.now-brand-name { font-family:var(--serif); font-size:1.18rem; font-weight:300; letter-spacing:.107em; white-space:nowrap; }
.home-redesign .site-nav a { color:var(--now-charcoal); font-weight:500; }
.home-redesign .site-nav a:not(.nav-cta)::after { background:var(--now-blue); }
.home-redesign .site-nav .nav-cta { background:var(--now-ink); color:white; border-radius:999px; padding:.82rem 1.15rem; }
.home-redesign .site-nav .nav-cta:hover { background:#28486e; }
.home-redesign a { color:var(--now-ink); }
.home-redesign a:hover { color:#24496f; }
.home-redesign :focus-visible { outline-color:var(--now-blue); }

.now-eyebrow,.now-descriptor { margin:0 0 1rem; color:var(--now-ink); font-family:var(--sans); font-size:.76rem; font-weight:300; letter-spacing:.20em; text-transform:uppercase; }
.now-lead { color:var(--now-charcoal); font-family:var(--sans); font-size:clamp(1.08rem,1.55vw,1.28rem); line-height:1.7; }
.now-text-link { display:inline-flex; align-items:center; gap:.55rem; font-size:.92rem; font-weight:500; text-decoration:none; border-bottom:1px solid rgba(52,89,133,.45); padding-bottom:.15rem; }
.now-text-link::after { content:"→"; transition:transform .18s ease; }
.now-text-link:hover::after { transform:translateX(.22rem); }
.home-redesign .button { border-radius:999px; background:var(--now-ink); color:white; border:1px solid var(--now-ink); padding:.9rem 1.25rem; }
.home-redesign .button:hover { background:#28486e; color:white; }

.now-hero { overflow:hidden; padding:clamp(4.5rem,8vw,8.5rem) 0 clamp(5rem,9vw,9rem); background:var(--now-ivory); }
.now-hero-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(22rem,.82fr); gap:clamp(3rem,7vw,7.5rem); align-items:center; }
.now-hero-copy h1 { max-width:10.2ch; }
.now-hero-copy .now-lead { max-width:35rem; margin:2rem 0 0; }
.now-botanical { position:relative; min-height:34rem; border-radius:48% 48% 3rem 3rem / 22% 22% 3rem 3rem; overflow:hidden; background:var(--now-pale); box-shadow:0 28px 70px rgba(52,89,133,.10); }
.now-botanical::after { position:absolute; inset:0; content:""; background:linear-gradient(150deg,rgba(198,212,236,.25),transparent 45%,rgba(247,244,238,.18)); pointer-events:none; }
.now-botanical img { width:100%; height:100%; min-height:34rem; object-fit:cover; filter:saturate(.68) contrast(.92) brightness(1.04); opacity:.82; }
.now-botanical-note { position:absolute; z-index:2; right:1.25rem; bottom:1.25rem; left:1.25rem; padding:.75rem 1rem; border-radius:999px; background:rgba(247,244,238,.86); color:var(--now-ink); font-size:.68rem; letter-spacing:.08em; text-align:center; text-transform:uppercase; backdrop-filter:blur(8px); }

.now-philosophy { position:relative; overflow:hidden; background:var(--now-pale); min-height:35rem; display:grid; place-items:center; }
.now-philosophy-inner { position:relative; min-height:35rem; display:grid; align-items:center; }
.now-philosophy p { position:relative; z-index:2; max-width:17ch; margin:0; color:var(--now-ink); font-family:var(--serif); font-size:clamp(2.7rem,5vw,5.25rem); font-weight:300; line-height:1.02; }
.now-philosophy p span { opacity:.78; }
.now-ghost-emblem { position:absolute; z-index:1; width:min(47rem,68vw); right:-7rem; top:50%; transform:translateY(-50%); opacity:.10; }

.now-section { padding:clamp(5rem,9vw,9rem) 0; }
.now-pathways { background:var(--now-ivory); }
.now-section-intro { max-width:48rem; margin-bottom:clamp(3.5rem,6vw,6rem); }
.now-section-intro h2 { max-width:13ch; }
.now-pathway-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0; border-top:1px solid var(--now-line); }
.now-pathway { min-height:27rem; padding:3rem clamp(1.5rem,3vw,3rem) 1.5rem; border-right:1px solid var(--now-line); display:flex; flex-direction:column; }
.now-pathway:first-child { padding-left:0; }
.now-pathway:last-child { border-right:0; padding-right:0; }
.now-pathway h3 { margin:0 0 1.4rem; }
.now-pathway p:not(.now-descriptor) { color:#4b5058; max-width:31rem; }
.now-pathway .now-text-link { margin-top:auto; align-self:flex-start; }

.now-story { background:#fff; }
.now-story-grid { display:grid; grid-template-columns:minmax(20rem,.9fr) minmax(0,1fr); gap:clamp(3rem,8vw,8rem); align-items:center; }
.now-story-visual { min-height:35rem; display:grid; place-items:center; }
.now-reflection-panel { width:100%; min-height:35rem; display:flex; flex-direction:column; justify-content:flex-end; padding:2.2rem; color:var(--now-ink); background:linear-gradient(145deg,rgba(125,160,199,.26),rgba(247,244,238,.86)), linear-gradient(45deg,var(--now-pale),#fff); border-radius:18rem 18rem 1.5rem 1.5rem; border:1px solid rgba(52,89,133,.10); box-shadow:inset -80px 0 110px rgba(255,255,255,.5); }
.now-reflection-panel span { font-family:var(--serif); font-size:2rem; font-weight:300; }
.now-reflection-panel small { max-width:24rem; margin-top:.5rem; font-size:.75rem; letter-spacing:.08em; line-height:1.6; text-transform:uppercase; }
.now-story-copy .now-lead { max-width:39rem; margin:1.8rem 0 2.4rem; }
.now-principles { margin:0 0 2.4rem; border-top:1px solid var(--now-line); }
.now-principles p { margin:0; padding:1.15rem 0; border-bottom:1px solid var(--now-line); color:var(--now-ink); font-size:1rem; }

.now-closing { position:relative; overflow:hidden; padding:clamp(5rem,8vw,8rem) 0; color:var(--now-ivory); background:var(--now-ink); }
.now-closing::after { position:absolute; width:30rem; height:30rem; right:-10rem; bottom:-17rem; border:1px solid rgba(198,212,236,.18); border-radius:50%; content:""; }
.now-closing-inner { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:4rem; align-items:end; }
.now-closing h2 { max-width:13ch; color:var(--now-ivory); }
.now-closing p { max-width:46rem; color:rgba(247,244,238,.83); }
.now-closing .now-eyebrow { color:var(--now-pale); }
.now-button-light { background:var(--now-ivory)!important; color:var(--now-ink)!important; border-color:var(--now-ivory)!important; }
.now-link-light { color:var(--now-ivory)!important; border-bottom-color:rgba(247,244,238,.55); }

.home-redesign .site-footer { background:#2d3540; color:rgba(247,244,238,.82); }
.home-redesign .site-footer a { color:var(--now-pale); }
.home-redesign .footer-brand { color:var(--now-ivory); font-family:var(--serif); font-weight:300; }

@media (max-width: 900px) {
  .now-hero-grid,.now-story-grid,.now-closing-inner { grid-template-columns:1fr; }
  .now-botanical { min-height:27rem; }
  .now-botanical img { min-height:27rem; }
  .now-pathway-grid { grid-template-columns:1fr; }
  .now-pathway,.now-pathway:first-child,.now-pathway:last-child { min-height:0; padding:2.2rem 0; border-right:0; border-bottom:1px solid var(--now-line); }
  .now-pathway .now-text-link { margin-top:1.25rem; }
  .now-closing-inner { align-items:start; }
}
@media (max-width: 640px) {
  .now-brand-name { font-size:1rem; letter-spacing:.09em; }
  .now-brand-emblem { width:2.35rem; height:2.35rem; }
  .now-hero { padding-top:3.5rem; }
  .now-hero h1 { font-size:clamp(3.1rem,16vw,4.8rem); }
  .now-botanical { min-height:22rem; border-radius:12rem 12rem 1.5rem 1.5rem; }
  .now-botanical img { min-height:22rem; }
  .now-philosophy,.now-philosophy-inner { min-height:29rem; }
  .now-ghost-emblem { width:32rem; right:-13rem; }
  .now-story-visual,.now-reflection-panel { min-height:26rem; }
}

/* =========================================================
   NORTH OF WHY — site-wide identity rollout
   ========================================================= */
:root {
  /* Legacy tokens remapped so no old teal/clay survives the rollout */
  --ink: #30343B;
  --ink-soft: #4B5058;
  --teal: #345985;
  --teal-deep: #345985;
  --blue: #7DA0C7;
  --blue-soft: #C6D4EC;
  --blue-pale: #F7F4EE;
  --clay: #7DA0C7;
  --clay-soft: #E7EDF5;
  --paper: #F7F4EE;
  --white: #FFFFFF;
  --line: rgba(52,89,133,.18);
}
body.site-redesign { background:var(--now-ivory); color:var(--now-charcoal); font-family:var(--sans); }
.site-redesign h1,.site-redesign h2,.site-redesign h3,.site-redesign .section-heading { font-family:var(--serif); font-weight:300; color:var(--now-ink); letter-spacing:-.018em; }
.site-redesign .site-header { background:rgba(247,244,238,.96); border-bottom:1px solid var(--now-line); }
.site-redesign .site-nav a { color:var(--now-charcoal); font-weight:500; }
.site-redesign .site-nav a:not(.nav-cta)::after { background:var(--now-blue); }
.site-redesign .site-nav .nav-cta { background:var(--now-ink); color:#fff; border-radius:999px; padding:.82rem 1.15rem; }
.site-redesign .site-nav .nav-cta:hover { background:#28486e; color:#fff; }
.site-redesign a { color:var(--now-ink); }
.site-redesign :focus-visible { outline-color:var(--now-blue); }
.site-redesign .page-hero { position:relative; overflow:hidden; background:var(--now-ivory); padding-top:clamp(5rem,8vw,8rem); padding-bottom:clamp(4rem,7vw,7rem); }
.site-redesign .page-hero::after { content:""; position:absolute; width:min(30rem,50vw); height:min(30rem,50vw); right:-8rem; top:50%; transform:translateY(-50%); background:url('/assets/now-emblem.svg') center/contain no-repeat; opacity:.045; pointer-events:none; }
.site-redesign .page-hero .container { position:relative; z-index:1; }
.site-redesign .page-hero h1 { font-size:clamp(3.1rem,6vw,5.8rem); line-height:.98; max-width:13ch; }
.site-redesign .page-hero .lead { max-width:48rem; color:var(--now-charcoal); font-family:var(--sans); line-height:1.7; }
.site-redesign .eyebrow,.site-redesign .section-label { color:var(--now-ink); font-family:var(--sans); font-size:.76rem; font-weight:300; letter-spacing:.20em; text-transform:uppercase; }
.site-redesign .section-white { background:#fff; }
.site-redesign .section-blue { background:var(--now-pale); }
.site-redesign .section-clay { background:#E7EDF5; }
.site-redesign .button { background:var(--now-ink); border-color:var(--now-ink); color:#fff; border-radius:999px; }
.site-redesign .button:hover { background:#28486e; color:#fff; }
.site-redesign .button-secondary { background:transparent; color:var(--now-ink); }
.site-redesign .button-secondary:hover { background:var(--now-pale); color:var(--now-ink); }
.site-redesign .callout,.site-redesign .urgent { border-left-color:var(--now-blue); background:#E7EDF5; }
.site-redesign .fee-card.featured { border-color:var(--now-blue); }
.site-redesign .fee-amount,.site-redesign .meaning-word { color:var(--now-ink); }
.site-redesign .contact-panel { background:var(--now-ink); }
.site-redesign .contact-panel,.site-redesign .contact-panel h2,.site-redesign .contact-panel a { color:var(--now-ivory); }
.site-redesign .site-footer { background:#2D3540; color:rgba(247,244,238,.82); }
.site-redesign .site-footer a { color:var(--now-pale); }
.site-redesign .footer-brand { color:var(--now-ivory); font-family:var(--serif); font-weight:300; }
.site-redesign .prose h2,.site-redesign .legal-copy h2 { font-size:clamp(2rem,3vw,3rem); }
.site-redesign .prose h3,.site-redesign .legal-copy h3 { font-family:var(--serif); font-weight:300; color:var(--now-ink); }

/* Homepage shares the same site-wide body token. */
body.home-redesign.site-redesign { background:var(--now-ivory); }


/* =========================================================
   NORTH OF WHY — v3 refinement pass
   ========================================================= */
/* Contact details: retain light cards but restore strong, readable type. */
.site-redesign .contact-panel { background:rgba(52,89,133,.18); }
.site-redesign .contact-item { background:#FFFFFF; }
.site-redesign .contact-item span { color:var(--now-blue); }
.site-redesign .contact-item a,
.site-redesign .contact-item address {
  color:var(--now-ink);
  font-family:var(--sans);
  font-weight:500;
}
.site-redesign .contact-item a:hover { color:#28486e; }

/* Helper/explanatory copy belongs to the Manrope system, not display serif. */
.site-redesign #request .section-heading > div:last-child p {
  font-family:var(--sans);
}

/* The closing invitation should feel intentional rather than like an empty image slot. */
.home-redesign .now-closing-inner {
  width:min(100%, 62rem);
  margin-inline:auto;
  grid-template-columns:minmax(0, 1fr) minmax(12rem, .42fr);
  gap:clamp(2.5rem, 6vw, 5rem);
}
.home-redesign .now-closing { padding:clamp(4.5rem,7vw,6.5rem) 0; }
.home-redesign .now-closing .button-row { justify-self:start; }
@media (max-width: 760px) {
  .home-redesign .now-closing-inner { grid-template-columns:1fr; }
}

/* v4: compact, coherent closing CTA on the homepage. */
.home-redesign .now-closing {
  padding: clamp(3.5rem, 5.5vw, 5rem) 0;
}
.home-redesign .now-closing-inner {
  width: min(100%, 68rem);
  grid-template-columns: minmax(0, 1.45fr) minmax(13rem, .55fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.home-redesign .now-closing h2 {
  margin: 0 0 1.35rem;
  max-width: 12ch;
  color: var(--now-ivory);
  font-size: clamp(2.7rem, 4.2vw, 4.25rem);
  line-height: .98;
}
.home-redesign .now-closing p:not(.now-eyebrow) {
  margin-bottom: 0;
  max-width: 42rem;
}
.home-redesign .now-closing .button-row {
  align-self: center;
}
@media (max-width: 760px) {
  .home-redesign .now-closing { padding: 3.5rem 0; }
  .home-redesign .now-closing-inner { grid-template-columns: 1fr; gap: 2rem; }
  .home-redesign .now-closing h2 { max-width: 10ch; }
}


/* v5: three-arm site architecture */
@media (min-width: 1001px) {
  .site-redesign .header-inner { gap: 1.5rem; }
  .site-redesign .site-nav { gap: clamp(.85rem, 1.4vw, 1.45rem); }
  .site-redesign .site-nav a { font-size: .91rem; }
  .site-redesign .site-nav .nav-cta { margin-left:.15rem; padding:.78rem 1rem; }
}
.pathway-page-grid { display:grid; grid-template-columns:minmax(0,1.6fr) minmax(18rem,.7fr); gap:clamp(3rem,7vw,7rem); align-items:start; }
.pathway-page-main h2 { font-size:clamp(2.7rem,4.5vw,4.6rem); line-height:1; max-width:12ch; margin-top:.3rem; }
.pathway-page-main .lead-small { font-size:1.15rem; line-height:1.75; max-width:46rem; }
.pathway-page-main > p:not(.eyebrow), .pathway-page-main li { max-width:48rem; }
.pathway-page-aside { padding:2rem; background:var(--now-pale); border-top:2px solid var(--now-blue); }
.pathway-page-aside h3 { font-size:clamp(2rem,3vw,2.8rem); line-height:1.04; margin:.25rem 0 1rem; }
.pathway-page-aside p { line-height:1.7; }
@media (max-width: 900px) { .pathway-page-grid { grid-template-columns:1fr; } .pathway-page-aside { max-width:42rem; } }


/* v6: pathway content rhythm */
.site-redesign .pathway-page-main h2 { margin-bottom: 1.65rem; }
.site-redesign .pathway-page-main .check-list { margin-bottom: 2.25rem; }
.site-redesign .pathway-page-main .check-list + p { margin-top: 2.25rem; }
.site-redesign .content-grid .section-label h2 { margin-bottom: 1.75rem; }
.site-redesign .content-grid .prose { padding-top: .45rem; }
.site-redesign .experience-topics { margin-top: 3rem; padding-top: 2.25rem; border-top: 1px solid rgba(52,89,133,.22); }
.site-redesign .experience-topics .eyebrow { margin-bottom: 1rem; }
.site-redesign .experience-topics > p:not(.eyebrow) { margin-bottom: 1rem; }

/* v7: workplaces pathway */
.now-workplaces-strip { background:var(--now-pale); padding:clamp(3.6rem,6vw,6rem) 0; }
.now-workplaces-strip-inner { display:grid; grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr); gap:clamp(2rem,7vw,7rem); align-items:center; }
.now-workplaces-strip h2 { font-size:clamp(2.8rem,5vw,5rem); line-height:.98; margin:.3rem 0 0; }
.now-workplaces-strip-inner > div:last-child { max-width:42rem; }
.now-workplaces-strip-inner > div:last-child p { font-size:1.08rem; line-height:1.75; margin:0 0 1.2rem; }
.workplace-problem-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--now-line); margin-top:2.5rem; }
.workplace-problem-grid article { padding:2rem 1.6rem 2.2rem 0; border-bottom:1px solid var(--now-line); }
.workplace-problem-grid article:not(:nth-child(3n+1)) { padding-left:1.6rem; border-left:1px solid var(--now-line); }
.workplace-problem-grid h3 { font-size:clamp(1.65rem,2.4vw,2.2rem); line-height:1.08; margin:0; }
.workplace-two-col { display:grid; grid-template-columns:repeat(2,1fr); gap:0; margin-top:2.5rem; border-top:1px solid rgba(52,89,133,.22); }
.workplace-two-col article { padding:2.5rem 3rem 1rem 0; }
.workplace-two-col article + article { border-left:1px solid rgba(52,89,133,.22); padding-left:3rem; }
.workplace-two-col h3 { font-size:clamp(2rem,3.2vw,3rem); line-height:1.03; margin:.65rem 0 1.2rem; }
.workplace-two-col p:not(.now-descriptor) { line-height:1.75; }
@media (max-width: 1100px) and (min-width: 901px) {
  .site-redesign .site-nav { gap:.72rem; }
  .site-redesign .site-nav a { font-size:.84rem; }
  .site-redesign .site-nav .nav-cta { padding:.7rem .82rem; }
}
@media (max-width: 800px) {
  .now-workplaces-strip-inner, .workplace-two-col { grid-template-columns:1fr; }
  .workplace-problem-grid { grid-template-columns:1fr; }
  .workplace-problem-grid article, .workplace-problem-grid article:not(:nth-child(3n+1)) { padding:1.6rem 0; border-left:0; }
  .workplace-two-col article, .workplace-two-col article + article { padding:2rem 0; border-left:0; }
  .workplace-two-col article + article { border-top:1px solid rgba(52,89,133,.22); }
}

/* v8 About principles and education expertise refinement */
.about-principles { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; margin-top:2.5rem; background:rgba(52,89,133,.18); border:1px solid rgba(52,89,133,.18); }
.about-principles article { background:var(--now-ivory); padding:clamp(1.8rem,3.5vw,3rem); }
.about-principles h3 { margin:0 0 1rem; font-size:clamp(2rem,3vw,2.8rem); line-height:1.04; color:var(--now-ink); }
.about-principles p { margin:0; line-height:1.75; }
@media (min-width: 760px) { .experience-topics .check-list { columns:2; column-gap:3rem; } .experience-topics .check-list li { break-inside:avoid; } }
@media (max-width: 820px) { .about-principles { grid-template-columns:1fr; } }


/* =========================================================
   NORTH OF WHY — v9 Fees & Contact refinement
   ========================================================= */
.site-redesign .enquiry-paths {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1.25rem;
  margin:2.25rem 0 1.5rem;
}
.site-redesign .enquiry-path {
  padding:clamp(1.5rem,3vw,2.25rem);
  background:#fff;
  border:1px solid rgba(52,89,133,.16);
  border-radius:.5rem;
}
.site-redesign .enquiry-path h3 {
  margin:.35rem 0 .9rem;
  font-family:var(--serif);
  font-size:clamp(1.65rem,2.5vw,2.25rem);
  font-weight:300;
  color:var(--now-ink);
}
.site-redesign .enquiry-path p:not(.eyebrow) { max-width:40rem; }
.site-redesign .enquiry-path .button-row { margin-top:1.5rem; }
.site-redesign .contact-panel-spaced { margin-top:1.5rem; }
@media (max-width:760px) {
  .site-redesign .enquiry-paths { grid-template-columns:1fr; }
}

/* v10 imagery system */
.now-botanical img { filter:saturate(.82) contrast(.96) brightness(1.02); opacity:1; }
.now-fleur-panel { background:linear-gradient(145deg,var(--now-ivory),#fff); border:1px solid rgba(125,160,199,.24); display:grid; place-items:center; }
.now-fleur-panel img { width:min(17rem,58%); height:auto; opacity:.72; }
.editorial-image-section { background:#fff; padding:0 0 clamp(4.5rem,8vw,8rem); }
.editorial-wide { margin:0; height:clamp(22rem,42vw,36rem); overflow:hidden; border-radius:2.5rem 2.5rem .8rem .8rem; box-shadow:0 24px 60px rgba(52,89,133,.08); }
.editorial-wide img { width:100%; height:100%; object-fit:cover; display:block; }
.editorial-wide-work img { object-position:center 45%; }
.editorial-wide-education img { object-position:center 58%; }
.about-with-portrait { display:grid; grid-template-columns:minmax(14rem,.72fr) minmax(0,1.28fr); column-gap:clamp(2rem,5vw,4rem); align-items:start; }
.about-with-portrait .editorial-portrait { grid-row:1 / span 4; margin:0; overflow:hidden; border-radius:11rem 11rem 1.4rem 1.4rem; box-shadow:0 20px 50px rgba(32,48,64,.12); }
.about-with-portrait .editorial-portrait img { width:100%; aspect-ratio:4/5; object-fit:cover; object-position:center 18%; display:block; }
.fleur-divider { display:block; width:min(100%,54rem); height:auto; margin:1rem auto 3.25rem; opacity:.82; }
@media (max-width:760px){
 .about-with-portrait { grid-template-columns:1fr; }
 .about-with-portrait .editorial-portrait { grid-row:auto; max-width:22rem; margin:0 auto 2.25rem; }
 .editorial-wide { height:24rem; border-radius:1.5rem 1.5rem .6rem .6rem; }
 .fleur-divider { margin-bottom:2.3rem; }
}

/* =========================================================
   NORTH OF WHY — v11 visual polish
   ========================================================= */
/* Give the philosophy turn a quiet visual shift rather than equal emphasis. */
.now-philosophy p span { color:#6486ad; opacity:1; }

/* Smooth watermark: polished fleur inside a CSS-drawn compass circle. */
.now-ghost-mark { position:absolute; z-index:1; width:min(47rem,68vw); aspect-ratio:1; right:-7rem; top:50%; transform:translateY(-50%); border:clamp(10px,1.25vw,18px) solid rgba(52,89,133,.09); border-radius:50%; display:grid; place-items:center; pointer-events:none; }
.now-ghost-mark img { width:67%; height:auto; opacity:.10; }
.now-ghost-emblem { display:none; }

/* Home story fleur: make the approved polished asset reliably visible. */
.now-fleur-panel { justify-content:center; align-items:center; }
.now-fleur-panel img { display:block; width:min(18rem,58%); height:auto; opacity:.78; }

/* Psychology: editorial image now belongs to the Approach column. */
.pathway-aside-stack { display:flex; flex-direction:column; gap:1.4rem; min-width:0; }
.pathway-aside-stack .pathway-page-aside { width:100%; }
.pathway-aside-image { margin:0; width:100%; overflow:hidden; border-radius:1.4rem 1.4rem .55rem .55rem; box-shadow:0 18px 42px rgba(52,89,133,.09); }
.pathway-aside-image img { display:block; width:100%; aspect-ratio:4/5; object-fit:cover; object-position:center 48%; }

/* Ensure first content section clears the sticky header comfortably. */
.psychology-page .page-hero + .section { scroll-margin-top:7rem; }

/* One quiet piece of punctuation per secondary page. */
.section-fleur-divider { background:#fff; padding:.3rem max(1.25rem,5vw) 2.5rem; }
.section-fleur-divider img { display:block; width:min(46rem,72vw); height:auto; margin:0 auto; opacity:.72; }
@media (max-width:760px){
  .now-ghost-mark { right:-12rem; width:35rem; }
  .pathway-aside-image img { aspect-ratio:5/4; }
  .section-fleur-divider { padding-bottom:1.75rem; }
  .section-fleur-divider img { width:min(34rem,88vw); }
}
/* Secondary-page watermark uses the polished fleur geometry, eliminating enlarged trace jaggies. */
.site-redesign .page-hero::after { background-image:url('/assets/now-fleur-polished.svg'); background-position:center; background-size:contain; background-repeat:no-repeat; opacity:.065; }
html { scroll-padding-top:6.5rem; }


/* =========================================================
   NORTH OF WHY — v12 surgical polish
   ========================================================= */
/* Restore the original solid compass/fleur watermark language, now from a smoothed vector. */
.site-redesign .page-hero::after {
  background-image:url('/assets/now-emblem-watermark-smooth.svg');
  background-position:center;
  background-size:contain;
  background-repeat:no-repeat;
  opacity:.045;
}
.now-ghost-mark { border:0; width:min(47rem,68vw); }
.now-ghost-mark img { display:none; }
.now-ghost-mark::before { content:""; position:absolute; inset:0; background:url('/assets/now-emblem-watermark-smooth.svg') center/contain no-repeat; opacity:.10; }

/* Home: the standalone polished fleur finally gets one real job. */
.now-fleur-panel img { width:min(18rem,58%); opacity:.72; }

/* Divider is punctuation, not a section stripe: centre it in generous white space. */
.section-fleur-divider-breathe { padding:clamp(3.4rem,6vw,5.4rem) max(1.25rem,5vw); }
.section-fleur-divider-breathe img { margin:0 auto; }

/* Education: use the otherwise-empty right column for the photograph. */
.education-aside-stack { display:flex; flex-direction:column; gap:clamp(2rem,4vw,3rem); min-width:0; }
.education-aside-image { margin:0; width:100%; overflow:hidden; border-radius:1.4rem 1.4rem .55rem .55rem; box-shadow:0 18px 42px rgba(52,89,133,.09); }
.education-aside-image img { display:block; width:100%; aspect-ratio:4/5; object-fit:cover; object-position:center 55%; }
@media (max-width:760px){
  .section-fleur-divider-breathe { padding:2.6rem 1.25rem; }
  .education-aside-image img { aspect-ratio:5/4; }
}
