/* ── PAGE HERO ── */
    .page-hero {
      padding: 6rem 8vw 5rem;
      background: var(--ink);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .page-hero h1,
    .page-hero .wp-block-heading {
      color: var(--white) !important;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -10%;
      width: 60vw;
      height: 60vw;
      border-radius: 50%;
      background: rgba(28,107,74,0.12);
      pointer-events: none;
    }
    .page-hero-inner { max-width: 700px; position: relative; }

    .page-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.1rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 1.25rem;
    }
    .page-kicker::before {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: rgba(255,255,255,0.3);
    }

    .page-hero h1 {
      font-family: var(--serif);
      font-size: clamp(3rem, 6vw, 5.5rem);
      line-height: 1.06;
      letter-spacing: -0.02em;
      margin-bottom: 1.25rem;
    }
    .page-hero h1 em { font-style: italic; color: rgba(255,255,255,0.6); }

    .page-hero p {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      max-width: 52ch;
      line-height: 1.75;
    }

    /* ── WHY SECTION ── */
    .why-section {
      padding: 7rem 8vw;
      background: var(--white);
      color: var(--ink);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .why-left .section-kicker { color: var(--river); }

    .section-kicker {
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--river);
      margin-bottom: 0.75rem;
      display: block;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2.75rem, 4.5vw, 5rem);
      line-height: 1.06;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .why-body {
      font-size: 1rem;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.8;
      margin-top: 1.5rem;
      max-width: 42ch;
    }

    .why-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2.5rem;
      background: var(--river);
      color: var(--white);
      text-decoration: none;
      padding: 0.9rem 2rem;
      border-radius: 2rem;
      font-weight: 500;
      font-size: 0.9rem;
      transition: background 0.2s, transform 0.2s;
    }
    .why-cta:hover { background: var(--ink); transform: translateY(-1px); }

    /* ── PILLARS ── */
    .pillars {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .pillar {
      border: 1px solid var(--mist);
      border-radius: 0.75rem;
      padding: 1.5rem;
      background: var(--foam);
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .pillar:hover {
      border-color: rgba(28,107,74,0.3);
      box-shadow: 0 4px 16px rgba(28,107,74,0.08);
    }

    .pillar-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 0.6rem;
    }
    .pillar-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: rgba(28,107,74,0.1);
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .pillar-title {
      font-family: var(--serif);
      font-size: 1.1rem;
      color: var(--ink);
    }
    .pillar-body {
      font-size: 0.875rem;
      color: var(--mid);
      font-weight: 300;
      line-height: 1.65;
      padding-left: 3.5rem;
    }

    /* ── VALUES STRIP ── */
    .values-strip {
      padding: 5rem 8vw;
      background: var(--foam);
    }
    .values-strip .section-kicker { color: var(--river); margin-bottom: 0.75rem; }
    .values-strip .section-title { color: var(--ink); margin-bottom: 3rem; }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-items: stretch !important;
      gap: 2rem;
    }
    .value-card {
      height: 100%;
    }
    .value-card {
      padding: 2rem;
      background: var(--white);
      border-radius: 1rem;
      border: 1px solid var(--mist);
    }
    .value-num {
      font-family: var(--serif);
      font-size: 3rem;
      color: var(--river);
      opacity: 0.25;
      line-height: 1;
      margin-bottom: 0.75rem;
    }
    .value-title {
      font-family: var(--serif);
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }
    .value-body {
      font-size: 0.875rem;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.7;
    }

    /* ── PHOTO PLACEHOLDER ── */
    .about-photo-section {
      padding: 0 8vw 7rem;
      background: var(--foam);
    }
    .about-photo-placeholder {
      aspect-ratio: 21/9;
      background: var(--mist);
      border-radius: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      overflow: hidden;
      position: relative;
    }
    .about-photo-placeholder img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: var(--mist);
    }
    .about-photo-placeholder img ~ svg,
    .about-photo-placeholder img ~ span { display: none; }
    .about-photo-placeholder span {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid);
      opacity: 0.6;
    }

    /* ── CTA BAND ── */
    .cta-band {
      padding: 6rem 8vw;
      text-align: center;
      background: var(--river);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute;
      top: -60%; left: 50%;
      transform: translateX(-50%);
      width: 80vw; height: 80vw;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      pointer-events: none;
    }
    .cta-band h2 {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      position: relative;
    }
    .cta-band h2 em { font-style: italic; color: rgba(255,255,255,0.7); }
    .cta-band p {
      font-size: 1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      margin-bottom: 2.5rem;
      position: relative;
    }
    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      position: relative;
    }
    .btn-white {
      background: var(--white);
      color: var(--river);
      text-decoration: none;
      padding: 0.9rem 2rem;
      border-radius: 2rem;
      font-weight: 500;
      font-size: 0.9rem;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-block;
    }
    .btn-white:hover {
      background: var(--accent);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .btn-outline-white {
      background: transparent;
      color: var(--white);
      text-decoration: none;
      padding: 0.9rem 2rem;
      border-radius: 2rem;
      font-weight: 400;
      font-size: 0.9rem;
      border: 1px solid rgba(255,255,255,0.4);
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

    

    

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .why-grid { grid-template-columns: 1fr; gap: 3rem; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      /* .nav-links visibility is handled by the mobile hamburger toggle CSS in design-system.css, not hidden outright */
    }
    @media (max-width: 600px) {
      .values-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 1.5rem; text-align: center; }
      .cta-buttons { flex-direction: column; align-items: center; }
    }

/* Class-based emphasis highlight (replaces inline style on <em>,
   which Gutenberg doesn't reliably preserve inside heading RichText) */
.hl-river {
  color: var(--river);
  font-style: italic;
}
