  :root {
    /* LIGHT (paper) sections */
    --ink: #F7F5EF;
    --ink-2: #EFECE3;
    --ink-3: #E6E2D6;
    --cream: #0C221C;
    --cream-2: #16332B;
    --gold: #177A4B;
    --gold-bright: #1F9159;
    --gold-deep: #0F5A36;
    --river: #1F5C4C;
    --rust: #A04A2E;
    --muted: #5E6B62;
    --muted-2: #47544B;
    --line: rgba(12, 34, 28, 0.12);
    --line-strong: rgba(12, 34, 28, 0.26);
    --serif: 'Newsreader', Georgia, serif;
    --sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'Courier Prime', 'Courier New', monospace;
  }

  /* DARK river-ink sections — cascade the same token names to dark values */
  .topbar, .mobile-menu, .hero, .hero-stats, .credo-strip, .credo-quote, .crisis, .phases, .esg, .esg-glance, .coc-band, .closer, .page-head, footer {
    --ink: #0B1F1A;
    --ink-2: #081712;
    --ink-3: #123128;
    --ink-4: #1A4235;
    --cream: #F7F5EF;
    --cream-2: #E9E5D8;
    --gold: #3DA874;
    --gold-bright: #63D096;
    --gold-deep: #2E8A5C;
    --river: #3E8C74;
    --rust: #C06A48;
    --muted: #93A69B;
    --muted-2: #75897D;
    --line: rgba(247, 245, 239, 0.10);
    --line-strong: rgba(247, 245, 239, 0.22);
    color: var(--cream);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Film grain overlay */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 200;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.9 0 0 0 0 0.8 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }

  ::selection { background: var(--gold); color: #0B1F1A; }

  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

  /* ============ TYPO HELPERS ============ */
  .eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .eyebrow::before {
    content: "";
    width: 42px; height: 1px;
    background: var(--gold);
    opacity: 0.7;
  }
  .section-title {
    font-family: var(--serif);
    font-weight: 560;
    font-size: clamp(34px, 4.6vw, 62px);
    line-height: 1.06;
    letter-spacing: -0.015em;
    margin: 22px 0 0;
  }
  .section-title em {
    font-style: italic;
    font-weight: 480;
    color: var(--gold);
  }
  .lede {
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.7;
    color: var(--muted-2);
    max-width: 720px;
    margin-top: 22px;
  }
  .dark-lede { color: var(--muted); }

  /* ============ REVEAL ============ */
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
  }

  /* ============ TOPBAR ============ */
  .topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 1px solid transparent;
  }
  .topbar.scrolled {
    background: rgba(8, 23, 18, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
  }
  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px clamp(16px, 1.6vw, 28px);
    width: 100%;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--cream);
  }
  .brand-mark {
    height: 42px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .brand-mark img { height: 100%; width: auto; display: block; }
  .brand-text { line-height: 1.15; }
  .brand-text .b1 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.01em;
  }
  .brand-text .b2 {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: #2CD300;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }
  .nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
  }
  .nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #0B1F1A !important;
    border-radius: 999px;
    padding: 8px 20px 8px 8px;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em !important;
    text-transform: none !important;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  }
  .nav-phone .np-icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #0B1F1A;
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .nav-phone .np-icon svg { width: 15px; height: 15px; stroke: var(--gold-bright); }
  .nav-phone:hover {
    background: var(--gold-bright);
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(61, 168, 116, 0.28);
  }
  .nav-phone::after { display: none !important; }
  .nav-links a:not(.btn):hover { color: var(--gold-bright); }
  .nav-links a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -5px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:not(.btn):hover::after { width: 100%; }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 999px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--gold);
  }
  .btn-primary {
    background: var(--gold);
    color: #0B1F1A;
  }
  .btn-primary:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(61, 168, 116, 0.25);
  }
  .btn-ghost {
    background: transparent;
    color: var(--cream);
    border-color: var(--line-strong);
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
  .btn .arrow { transition: transform 0.3s; }
  .btn:hover .arrow { transform: translateX(4px); }

  .menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--cream);
    padding: 10px 18px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
  }
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--ink-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 32px;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu a {
    color: var(--cream);
    text-decoration: none;
    font-family: var(--serif);
    font-size: clamp(28px, 7vw, 40px);
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    transition: color 0.25s, padding-left 0.25s;
  }
  .mobile-menu a:hover { color: var(--gold-bright); padding-left: 10px; }

  /* ============ HERO (full-screen video) ============ */
  .hero {
    position: relative;
    min-height: 100svh;
    background: var(--ink-2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
  }
  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("images/hero-poster.jpg") center / cover no-repeat;
  }
  .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg,
      rgba(8, 23, 18, 0.55) 0%,
      rgba(8, 23, 18, 0.10) 22%,
      rgba(8, 23, 18, 0) 45%,
      rgba(8, 23, 18, 0.28) 100%);
  }
  .hero-foot {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 0 clamp(20px, 4vw, 56px) clamp(64px, 8vh, 88px);
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .hero-scroll {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 26px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cream-2);
    text-decoration: none;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    transition: color 0.25s;
  }
  .hero-scroll:hover { color: var(--gold-bright); }
  .hero-scroll svg {
    width: 15px; height: 15px;
    animation: scroll-bob 2.2s ease-in-out infinite;
  }
  @keyframes scroll-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
  }
  .hero-sound {
    position: absolute;
    right: clamp(20px, 4vw, 56px);
    bottom: 26px;
    z-index: 3;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(247, 245, 239, 0.45);
    background: rgba(8, 23, 18, 0.35);
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s, color 0.25s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .hero-sound:hover { border-color: var(--gold); color: var(--gold-bright); }
  .hero-sound svg { width: 18px; height: 18px; }
  .hero-sound .icon-on { display: none; }
  .hero-sound.unmuted .icon-on { display: block; }
  .hero-sound.unmuted .icon-off { display: none; }
  @media (max-width: 700px) {
    .hero-foot { justify-content: center; padding-bottom: 96px; }
    .hero-ctas { justify-content: center; }
  }

  /* Stats band under the video */
  .hero-stats {
    position: relative;
    background: var(--ink-2);
    border-top: 1px solid var(--line);
  }
  .hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .hstat {
    padding: 30px clamp(16px, 2.4vw, 40px) 40px 0;
    border-right: 1px solid var(--line);
  }
  .hstat:last-child { border-right: none; }
  .hstat + .hstat { padding-left: clamp(16px, 2.4vw, 40px); }
  .hstat-num {
    font-family: var(--serif);
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 560;
    color: var(--cream);
    line-height: 1;
  }
  .hstat-num span.g { color: var(--gold-bright); }
  .hstat-label {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-top: 12px;
  }
  @media (max-width: 860px) {
    .hero-stats-grid { grid-template-columns: 1fr 1fr; }
    .hstat { border-right: none; border-bottom: 1px solid var(--line); padding-left: 0 !important; }
    .hstat:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 20px; }
    .hstat:nth-child(even) { padding-left: 20px !important; }
    .hstat:nth-last-child(-n+2) { border-bottom: none; }
  }

  /* ============ CREDO STRIP (marquee) ============ */
  .credo-strip {
    background: var(--ink-3);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 22px 0;
  }
  .marquee {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
  }
  @keyframes marquee { to { transform: translateX(-50%); } }
  .marquee-set {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .marquee-item {
    font-family: var(--serif);
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--cream-2);
    padding: 0 28px;
    white-space: nowrap;
  }
  .marquee-item em { font-style: italic; color: var(--gold-bright); }
  .marquee-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.8;
  }
  @media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

  /* ============ SECTION SHELL ============ */
  section { position: relative; }
  .section-pad { padding: clamp(90px, 11vw, 150px) 0; }
  .section-head { max-width: 860px; }

  /* ============ ABOUT ============ */
  .about { background: var(--ink); color: var(--cream); }
  .about-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: clamp(40px, 5vw, 68px);
    border-bottom: 1px solid var(--line-strong);
  }
  .about-tab {
    appearance: none;
    background: none;
    border: none;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 14px 18px 16px;
    cursor: pointer;
    position: relative;
    transition: color 0.25s;
  }
  .about-tab::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .about-tab:hover { color: var(--cream); }
  .about-tab.active { color: var(--cream); }
  .about-tab.active::after { transform: scaleX(1); }
  .about-panels {
    margin-top: clamp(36px, 4.5vw, 60px);
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6vw, 80px);
  }
  .about-panel .ethos-grid { margin-top: 0; }
  .about-panel { display: none; }
  .about-panel.active {
    display: block;
    animation: panel-in 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes panel-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
  }
  .about-cols {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
  }
  .about-copy p {
    font-size: clamp(16px, 1.5vw, 18.5px);
    line-height: 1.78;
    color: var(--muted-2);
  }
  .about-copy p + p { margin-top: 20px; }
  .about-copy strong { color: var(--cream); font-weight: 700; }
  .about-figure { position: relative; }
  .about-figure img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.94);
  }
  .about-figure figcaption {
    margin-top: 18px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
  }
  .about-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .chip {
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 10px 18px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-2);
    transition: border-color 0.25s, color 0.25s;
  }
  .chip:hover { border-color: var(--gold); color: var(--gold-deep); }
  .about-banner {
    margin-top: clamp(32px, 4vw, 52px);
    position: relative;
    overflow: hidden;
  }
  .about-banner img {
    width: 100%;
    height: clamp(240px, 34vw, 430px);
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .about-banner:hover img { transform: scale(1.03); }
  .about-banner figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 40px 24px 16px;
    background: linear-gradient(to top, rgba(12, 34, 28, 0.82), transparent);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #F7F5EF;
  }
  .values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line-strong);
    border: 1px solid var(--line-strong);
  }
  .value-card {
    background: var(--ink);
    padding: clamp(30px, 3.4vw, 52px);
    transition: background 0.35s ease;
    position: relative;
    overflow: hidden;
  }
  .value-card:hover { background: var(--ink-2); }
  .value-card::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .value-card:hover::after { height: 100%; }
  .value-card .v-index {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(30px, 3vw, 42px);
    color: var(--gold);
    line-height: 1;
    opacity: 0.9;
  }
  .value-card h3 {
    font-family: var(--serif);
    font-size: clamp(20px, 1.9vw, 25px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 18px 0 12px;
  }
  .value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted-2);
  }
  .partner-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .partner-stack > img {
    height: 54px;
    width: auto;
    align-self: flex-start;
    margin-bottom: 8px;
  }
  .partner-card {
    border: 1px solid var(--line-strong);
    padding: 22px 26px;
    transition: border-color 0.3s, transform 0.3s;
    background: var(--ink);
  }
  .partner-card:hover { border-color: var(--gold); transform: translateX(4px); }
  .partner-card .pc-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .partner-card h4 {
    font-family: var(--serif);
    font-size: clamp(17px, 1.7vw, 21px);
    font-weight: 600;
    margin: 8px 0 6px;
    letter-spacing: -0.01em;
  }
  .partner-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted-2);
  }
  .partner-plus {
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    color: var(--gold-deep);
    line-height: 1;
  }
  @media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }
  .objectives {
    margin-top: clamp(48px, 5vw, 72px);
    padding-top: clamp(36px, 4vw, 52px);
    border-top: 1px solid var(--line-strong);
  }
  .objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2.6vw, 40px);
  }
  .objectives-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 26px;
  }
  .objectives-grid {
    gap: 1px;
    background: var(--line-strong);
    border: 1px solid var(--line-strong);
  }
  .objective-card {
    background: var(--ink);
    padding: clamp(28px, 2.8vw, 44px) clamp(24px, 2.4vw, 36px);
    position: relative;
    overflow: hidden;
    transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s ease, box-shadow 0.35s ease;
  }
  .objective-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .objective-card::after {
    content: attr(data-num);
    position: absolute;
    right: -8px; bottom: -34px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 130px;
    line-height: 1;
    color: var(--cream);
    opacity: 0.05;
    pointer-events: none;
    transition: opacity 0.5s, color 0.5s;
  }
  .objective-card:hover {
    background: #0B1F1A;
    transform: translateY(-6px);
    box-shadow: 0 26px 48px -24px rgba(12, 34, 28, 0.55);
  }
  .objective-card:hover::before { transform: scaleX(1); }
  .objective-card:hover::after { color: #63D096; opacity: 0.12; }
  .oc-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(26px, 2.4vw, 34px);
    color: var(--gold);
    line-height: 1;
    transition: color 0.4s;
  }
  .objective-card h4 {
    font-family: var(--serif);
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 16px 0 10px;
    color: var(--cream);
    transition: color 0.4s;
  }
  .objective-card p {
    font-size: 14.5px;
    line-height: 1.68;
    color: var(--muted-2);
    transition: color 0.4s;
  }
  .objective-card:hover .oc-num { color: #63D096; }
  .objective-card:hover h4 { color: #F7F5EF; }
  .objective-card:hover p { color: #93A69B; }
  /* staggered entrance */
  .objectives.reveal .objective-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  }
  .objectives.reveal.in .objective-card { opacity: 1; transform: none; }
  .objectives.reveal.in .objective-card:hover { transform: translateY(-6px); }
  .objectives.reveal.in .objective-card:nth-child(2) { transition-delay: 0.1s; }
  .objectives.reveal.in .objective-card:nth-child(3) { transition-delay: 0.2s; }
  .objectives.reveal.in .objective-card:nth-child(4) { transition-delay: 0.3s; }
  .objectives.reveal.in .objective-card:hover,
  .objectives.reveal.in .objective-card:hover * { transition-delay: 0s; }
  @media (max-width: 900px) {
    .about-cols { grid-template-columns: 1fr; }
    .about-figure { max-width: 480px; margin: 0 auto; }
    .objectives-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .objectives-grid { grid-template-columns: 1fr; }
  }

  /* ============ ETHOS (mission/vision/values, dark) ============ */
  .ethos { background: var(--ink-2); }
  .ethos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-top: clamp(48px, 6vw, 80px);
  }
  .ethos-panel {
    background: var(--ink-2);
    padding: clamp(34px, 4vw, 60px) clamp(26px, 3vw, 52px);
  }
  .ethos-kicker {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
  }
  .ethos-panel p {
    font-family: var(--serif);
    font-weight: 460;
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.5;
    color: var(--cream-2);
    letter-spacing: -0.005em;
  }
  .ethos-panel p em { font-style: italic; color: var(--gold-bright); }
  .values-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(22px, 3vw, 44px);
    margin-top: clamp(44px, 5vw, 64px);
  }
  .value h4 {
    font-family: var(--serif);
    font-size: clamp(17px, 1.6vw, 20px);
    font-weight: 600;
    color: var(--gold-bright);
    letter-spacing: -0.01em;
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .value h4 .v-num {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: var(--muted-2);
  }
  .value p {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.68;
    color: var(--muted);
  }
  @media (max-width: 860px) {
    .ethos-grid { grid-template-columns: 1fr; }
    .values-row { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) { .values-row { grid-template-columns: 1fr; } }

  /* ============ CRISIS (dark) ============ */
  .crisis { background: var(--ink); }
  .crisis-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: clamp(48px, 6vw, 80px);
  }
  .crisis-card {
    background: var(--ink-2);
    padding: clamp(30px, 3.6vw, 52px);
    transition: background 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .crisis-card:hover { background: var(--ink-3); }
  .crisis-card::after {
    content: "";
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 0;
    background: var(--rust);
    transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .crisis-card:hover::after { height: 100%; }
  .crisis-roman {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--rust);
    letter-spacing: 0.08em;
  }
  .crisis-card h3 {
    font-family: var(--serif);
    font-size: clamp(21px, 2vw, 26px);
    font-weight: 560;
    margin: 14px 0 14px;
    letter-spacing: -0.01em;
  }
  .crisis-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
  }
  @media (max-width: 760px) { .crisis-cards { grid-template-columns: 1fr; } }

  .challenge-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
    margin-top: clamp(48px, 5vw, 72px);
    padding-top: clamp(40px, 4vw, 56px);
    border-top: 1px solid var(--line);
  }
  .challenge h4 {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .challenge h4::before { content: "—"; color: var(--rust); }
  .challenge p {
    margin-top: 14px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--muted);
  }
  @media (max-width: 760px) { .challenge-row { grid-template-columns: 1fr; gap: 30px; } }

  .evidence {
    margin-top: clamp(48px, 5vw, 72px);
  }
  .evidence-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
  }
  .evidence-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
  }
  .evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .evidence-item {
    position: relative;
    background: var(--ink-3);
    overflow: hidden;
  }
  .evidence-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    filter: saturate(0.88) contrast(1.02);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
  }
  .evidence-item:hover img { transform: scale(1.045); filter: saturate(1) contrast(1.02); }
  .evidence-item figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 26px 16px 12px;
    background: linear-gradient(to top, rgba(8, 23, 18, 0.88), transparent);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-2);
  }
  @media (max-width: 900px) { .evidence-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .evidence-grid { grid-template-columns: 1fr; } .evidence-item img { height: 210px; } }

  /* ============ GOALS ============ */
  .goals { background: var(--ink); }
  .goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 1.8vw, 28px);
    margin-top: clamp(48px, 6vw, 84px);
  }
  .goal {
    background: var(--ink);
    border: 1px solid var(--line-strong);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.4s;
  }
  .goal:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 54px -28px rgba(12, 34, 28, 0.45);
    border-color: var(--gold);
  }
  .goal-media { position: relative; overflow: hidden; }
  .goal-media img {
    width: 100%;
    height: 195px;
    object-fit: cover;
    display: block;
    filter: saturate(0.88);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
  }
  .goal:hover .goal-media img { transform: scale(1.06); filter: saturate(1); }
  .goal-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--ink);
    border: 1px solid var(--gold);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 21px;
    color: var(--gold);
    margin: -29px auto 0;
    position: relative;
    z-index: 2;
    transition: background 0.4s, color 0.4s, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .goal:hover .goal-badge {
    background: var(--gold);
    color: var(--ink);
    transform: scale(1.1);
  }
  .goal-body {
    padding: clamp(22px, 2.2vw, 30px) clamp(20px, 2vw, 28px) clamp(26px, 2.6vw, 34px);
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
  }
  .goal h3 {
    font-family: var(--serif);
    font-size: clamp(20px, 1.9vw, 24px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--cream);
  }
  .goal h3::after {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    background: var(--gold);
    margin: 14px auto 18px;
    transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .goal:hover h3::after { width: 96px; }
  .goal ul { list-style: none; margin-top: auto; text-align: left; }
  .goal li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-2);
    padding: 7px 0 7px 20px;
    position: relative;
    border-top: 1px solid var(--line);
  }
  .goal li::before {
    content: "";
    position: absolute;
    left: 2px; top: 15px;
    width: 7px; height: 1px;
    background: var(--gold);
  }
  /* staggered entrance */
  .goals-grid.reveal .goal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.45s ease, border-color 0.4s;
  }
  .goals-grid.reveal.in .goal { opacity: 1; transform: none; }
  .goals-grid.reveal.in .goal:nth-child(2) { transition-delay: 0.1s; }
  .goals-grid.reveal.in .goal:nth-child(3) { transition-delay: 0.2s; }
  .goals-grid.reveal.in .goal:nth-child(4) { transition-delay: 0.3s; }
  .goals-grid.reveal.in .goal:hover { transform: translateY(-8px); transition-delay: 0s; }
  @media (max-width: 1000px) { .goals-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .goals-grid { grid-template-columns: 1fr; } }

  /* ============ IMPACT ============ */
  .impact { background: var(--ink-2); }
  .impact .eyebrow, .phases .eyebrow { color: var(--gold); }
  .impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(28px, 3.4vw, 52px);
    margin-top: clamp(48px, 6vw, 80px);
  }
  .impact-block {
    border-top: 2px solid var(--gold);
    padding-top: 26px;
  }
  .impact-kicker {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-2);
  }
  .impact-block h3 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 560;
    margin: 10px 0 6px;
    letter-spacing: -0.01em;
  }
  .impact-block .impact-sub {
    font-size: 14px;
    color: var(--river);
    font-style: italic;
    font-family: var(--serif);
  }
  .impact-block ul { list-style: none; margin-top: 20px; }
  .impact-block li {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted-2);
    padding: 9px 0 9px 26px;
    position: relative;
    border-bottom: 1px solid var(--line);
  }
  .impact-block li:last-child { border-bottom: none; }
  .impact-block li::before {
    content: "◆";
    position: absolute;
    left: 0; top: 10px;
    font-size: 8px;
    color: var(--gold);
  }
  @media (max-width: 760px) { .impact-grid { grid-template-columns: 1fr; } }

  /* Light variant of impact section */
  .impact { --ink: #F7F5EF; --ink-2: #EFECE3; background: var(--ink-2); color: var(--cream); }

  /* ============ PHASES (dark timeline) ============ */
  .phases { background: var(--ink-2); }
  .phase-list { margin-top: clamp(48px, 6vw, 84px); }
  .phase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(20px, 3vw, 56px);
    padding: clamp(30px, 3.4vw, 46px) 0;
    border-top: 1px solid var(--line);
    align-items: start;
    transition: background 0.3s ease;
  }
  .phase:last-child { border-bottom: 1px solid var(--line); }
  .phase:hover { background: rgba(247, 245, 239, 0.018); }
  .phase-index { display: flex; flex-direction: column; gap: 8px; }
  .phase-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(30px, 3vw, 42px);
    color: var(--gold);
    line-height: 1;
  }
  .phase-duration {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-2);
  }
  .phase h3 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.3vw, 30px);
    font-weight: 560;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .phase h3 .ph-tag {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--river);
    margin-top: 10px;
  }
  .phase ul { list-style: none; }
  .phase li {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
    padding: 8px 0 8px 24px;
    position: relative;
  }
  .phase li::before {
    content: "";
    position: absolute;
    left: 0; top: 17px;
    width: 10px; height: 1px;
    background: var(--gold);
  }
  @media (max-width: 820px) {
    .phase { grid-template-columns: 1fr; gap: 14px; }
  }

  /* ============ REVIVAL (light) ============ */
  .revival { background: var(--ink); }
  .revival-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: clamp(48px, 6vw, 80px);
  }
  .revival-card {
    background: var(--ink);
    padding: clamp(28px, 3vw, 44px) clamp(24px, 2.6vw, 38px);
    transition: background 0.35s ease;
  }
  .revival-card:hover { background: var(--ink-2); }
  .revival-icon {
    width: 46px; height: 46px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
  }
  .revival-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
  .revival-card h3 {
    font-family: var(--serif);
    font-size: clamp(19px, 1.8vw, 23px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
  }
  .revival-card ul { list-style: none; }
  .revival-card li {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted-2);
    padding: 6px 0 6px 18px;
    position: relative;
  }
  .revival-card li::before {
    content: "";
    position: absolute;
    left: 0; top: 14px;
    width: 8px; height: 1px;
    background: var(--gold);
  }
  @media (max-width: 980px) { .revival-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 640px) { .revival-grid { grid-template-columns: 1fr; } }

  /* ============ FINANCE ============ */
  .finance { background: var(--ink-2); --ink: #F7F5EF; --ink-2: #EFECE3; color: var(--cream); }
  .finance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(44px, 6vw, 100px);
    margin-top: clamp(48px, 6vw, 80px);
    align-items: start;
  }
  .finance-big {
    font-family: var(--serif);
    font-weight: 480;
    font-size: clamp(88px, 11vw, 168px);
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--cream);
  }
  .finance-big .unit {
    display: block;
    font-size: clamp(20px, 2.4vw, 30px);
    font-style: italic;
    font-weight: 480;
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-top: 14px;
  }
  .finance-note {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--line-strong);
    max-width: 420px;
  }
  .finance-note .fn-num {
    font-family: var(--serif);
    font-size: clamp(34px, 3.6vw, 48px);
    font-weight: 560;
    color: var(--river);
  }
  .finance-note p {
    font-size: 14.5px;
    color: var(--muted-2);
    line-height: 1.65;
    margin-top: 8px;
  }
  .funding-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .funding-source {
    display: flex;
    align-items: baseline;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line-strong);
  }
  .funding-source:last-child { border-bottom: none; }
  .fs-roman {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--gold);
    min-width: 36px;
  }
  .fs-name {
    font-family: var(--serif);
    font-size: clamp(18px, 1.8vw, 23px);
    font-weight: 560;
    letter-spacing: -0.01em;
  }
  @media (max-width: 860px) { .finance-grid { grid-template-columns: 1fr; } }

  /* ============ STAKEHOLDERS ============ */
  .stakeholders { background: var(--ink); }
  .stake-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 44px);
    margin-top: clamp(48px, 6vw, 80px);
  }
  .stake-col h3 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 6px;
  }
  .stake-col ul { list-style: none; }
  .stake-col li {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--muted-2);
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 500;
  }
  .csr-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: clamp(48px, 5vw, 72px);
  }
  .csr-item {
    background: var(--ink);
    padding: clamp(26px, 3vw, 40px);
    display: flex;
    gap: 20px;
    align-items: baseline;
    transition: background 0.35s;
  }
  .csr-item:hover { background: var(--ink-2); }
  .csr-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 30px;
    color: var(--gold);
    line-height: 1;
  }
  .csr-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--cream-2);
    font-weight: 500;
  }
  @media (max-width: 980px) { .stake-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 640px) { .stake-grid, .csr-row { grid-template-columns: 1fr; } }

  /* ============ ESG (dark) ============ */
  .esg { background: var(--ink-2); }
  .esg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: clamp(48px, 6vw, 80px);
  }
  .esg-card {
    background: var(--ink-2);
    padding: clamp(30px, 3.4vw, 48px) clamp(24px, 2.8vw, 40px);
    transition: background 0.4s ease;
  }
  .esg-card:hover { background: var(--ink-3); }
  .esg-letter {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(44px, 4.6vw, 64px);
    font-weight: 420;
    color: var(--gold);
    line-height: 1;
  }
  .esg-card h3 {
    font-family: var(--serif);
    font-size: clamp(20px, 1.9vw, 24px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 20px 0 16px;
  }
  .esg-challenge {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--muted);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .esg-challenge strong {
    display: block;
    font-family: var(--mono);
    font-weight: 400;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 10px;
  }
  .esg-solutions {
    list-style: none;
    margin-top: 20px;
  }
  .esg-solutions::before {
    content: "Our Solutions";
    display: block;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--river);
    margin-bottom: 12px;
  }
  .esg-solutions li {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--muted);
    padding: 8px 0 8px 20px;
    position: relative;
  }
  .esg-solutions li::before {
    content: "";
    position: absolute;
    left: 0; top: 17px;
    width: 8px; height: 1px;
    background: var(--gold);
  }
  .esg-solutions li strong { color: var(--cream-2); font-weight: 700; }
  @media (max-width: 900px) { .esg-grid { grid-template-columns: 1fr; } }

  /* ============ FAQ ============ */
  .faq { background: var(--ink); }
  .faq-list {
    margin-top: clamp(44px, 5vw, 72px);
    border-top: 1px solid var(--line-strong);
  }
  .faq-item {
    border-bottom: 1px solid var(--line-strong);
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    gap: clamp(18px, 2.4vw, 36px);
    padding: clamp(22px, 2.6vw, 34px) 0;
    transition: color 0.25s;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-num {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--gold);
    flex-shrink: 0;
    min-width: 34px;
  }
  .faq-q {
    font-family: var(--serif);
    font-size: clamp(17px, 1.8vw, 23px);
    font-weight: 560;
    letter-spacing: -0.01em;
    flex: 1;
  }
  .faq-toggle {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.35s ease;
    line-height: 1;
  }
  .faq-item[open] .faq-toggle { transform: rotate(45deg); }
  .faq-item summary:hover .faq-q { color: var(--gold-deep); }
  .faq-a {
    padding: 0 0 clamp(24px, 2.8vw, 36px) calc(34px + clamp(18px, 2.4vw, 36px));
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--muted-2);
    max-width: 820px;
  }
  @media (max-width: 560px) { .faq-a { padding-left: 0; } }

  /* ============ JOURNEY ============ */
  .journey-strip {
    background: var(--ink-2);
    --ink: #F7F5EF; --ink-2: #EFECE3; color: var(--cream);
    border-top: 1px solid var(--line);
  }
  .journey-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(44px, 5vw, 68px);
    border-left: 1px solid var(--line-strong);
  }
  .jt-item {
    padding: 6px clamp(18px, 2vw, 32px) 22px;
    border-right: 1px solid var(--line-strong);
    position: relative;
  }
  .jt-item::before {
    content: "";
    position: absolute;
    top: -30px; left: -5px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--gold);
  }
  .jt-date {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-2);
  }
  .jt-title {
    font-family: var(--serif);
    font-size: clamp(17px, 1.6vw, 21px);
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: -0.01em;
  }
  .journey-line {
    height: 1px;
    background: var(--line-strong);
    margin-top: clamp(44px, 5vw, 64px);
    margin-bottom: 30px;
    position: relative;
  }
  @media (max-width: 860px) {
    .journey-track { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  }
  @media (max-width: 520px) { .journey-track { grid-template-columns: 1fr; } }
  .journey-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(10px, 1.4vw, 18px);
    margin-top: clamp(48px, 5vw, 72px);
  }
  .journey-photos figure {
    position: relative;
    overflow: hidden;
  }
  .journey-photos img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: saturate(0.9);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .journey-photos figure:hover img { transform: scale(1.05); }
  .journey-photos figcaption {
    margin-top: 10px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-2);
  }
  @media (max-width: 860px) { .journey-photos { grid-template-columns: 1fr 1fr; } .journey-photos img { height: 180px; } }

  /* ============ CLOSER / CTA ============ */
  .closer {
    background: var(--ink-2);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(110px, 14vw, 190px) 0;
  }
  .closer-photo {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(8, 23, 18, 0.86), rgba(8, 23, 18, 0.93)), url("images/river-restored.jpg");
    background-size: cover;
    background-position: center;
    pointer-events: none;
  }
  .closer-glow {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 1100px; height: 1100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 168, 116, 0.09) 0%, transparent 55%);
    pointer-events: none;
  }
  .closer .wrap { position: relative; z-index: 2; }
  .closer-eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .closer-title {
    font-family: var(--serif);
    font-weight: 520;
    font-size: clamp(38px, 6.4vw, 88px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin: 28px auto 0;
    max-width: 1000px;
    position: relative;
  }
  .closer-title em { font-style: italic; color: var(--gold-bright); font-weight: 440; }
  .closer-sub {
    max-width: 620px;
    margin: 28px auto 0;
    font-size: clamp(15.5px, 1.5vw, 18px);
    line-height: 1.7;
    color: var(--muted);
    position: relative;
  }
  .closer-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 46px;
    flex-wrap: wrap;
    position: relative;
  }
  .closer-contact {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    gap: clamp(28px, 5vw, 72px);
    flex-wrap: wrap;
    position: relative;
  }
  .closer-contact a {
    color: var(--cream-2);
    text-decoration: none;
    font-family: var(--mono);
    font-size: 13.5px;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.25s;
  }
  .closer-contact a:hover { color: var(--gold-bright); }
  .closer-contact svg { width: 16px; height: 16px; stroke: var(--gold); }

  /* ============ FOOTER ============ */
  footer {
    background: var(--ink-2);
    border-top: 1px solid var(--line);
    padding: 56px 0 40px;
  }
  .footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .footer-brand { max-width: 380px; }
  .footer-brand .fb-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
  }
  .footer-brand p {
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--muted-2);
  }
  .footer-links { display: flex; gap: clamp(32px, 5vw, 80px); flex-wrap: wrap; }
  .footer-col h4 {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
  }
  .footer-col a, .footer-col span {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 13.5px;
    padding: 5px 0;
    transition: color 0.25s;
  }
  .footer-col a:hover { color: var(--gold-bright); }
  .footer-bottom {
    margin-top: 48px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--muted-2);
    text-transform: uppercase;
  }
/* ============ NAV DROPDOWN ============ */
.nav-drop { position: relative; }
.nav-drop-btn {
  appearance: none;
  background: none;
  border: none;
  font-family: var(--sans);
  color: var(--cream);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  transition: color 0.25s;
}
.nav-drop-btn:hover { color: var(--gold-bright); }
.nav-drop-btn svg { width: 11px; height: 11px; transition: transform 0.3s; }
.nav-drop.open .nav-drop-btn svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 220px;
  background: rgba(8, 23, 18, 0.97);
  border: 1px solid rgba(247, 245, 239, 0.12);
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-drop.open .nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-drop-menu a {
  display: block;
  padding: 11px 22px;
  color: #E9E5D8;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.nav-drop-menu a:hover {
  color: #63D096;
  background: rgba(247, 245, 239, 0.05);
  padding-left: 27px;
}

/* ============ SUBPAGE HEADER ============ */
.page-head {
  background: var(--ink-2);
  padding: clamp(150px, 20vh, 200px) 0 clamp(60px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute;
  right: -180px; top: -180px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 140, 116, 0.14) 0%, transparent 62%);
  pointer-events: none;
}
.page-head { text-align: center; }
.page-head h1 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 22px auto 0;
  max-width: 850px;
}
.page-head .lede { margin-left: auto; margin-right: auto; }
.page-head h1 em { font-style: italic; color: var(--gold-bright); font-weight: 460; }
.page-head .lede { color: var(--muted); }
.page-crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 34px;
}
.page-crumb a { color: var(--muted-2); text-decoration: none; transition: color 0.2s; }
.page-crumb a:hover { color: var(--gold-bright); }
.page-crumb span { color: var(--gold); }
.page-body { background: var(--ink); }
.page-nav-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: clamp(44px, 5vw, 64px);
  padding-top: clamp(30px, 3.4vw, 44px);
  border-top: 1px solid var(--line-strong);
}
.page-nav-row .chip { text-decoration: none; }
.page-nav-row .chip.current { border-color: var(--gold); color: var(--gold-deep); }
a.about-tab { text-decoration: none; display: inline-block; }

/* ============ TARGET RIVERS ============ */
.rivers-block { margin-top: clamp(60px, 7vw, 100px); }
.rivers-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
}
.rivers-kicker::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.rivers-title {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-top: 18px;
}
.rivers-title em { font-style: italic; color: var(--gold); }
.rivers-lede {
  margin-top: 16px;
  max-width: 720px;
  font-size: clamp(15px, 1.4vw, 17.5px);
  line-height: 1.75;
  color: var(--muted-2);
}
.map-panel {
  margin-top: clamp(32px, 4vw, 52px);
  background: #0B1F1A;
  border: 1px solid rgba(247, 245, 239, 0.12);
  position: relative;
  overflow: hidden;
}
.map-panel svg { width: 100%; height: auto; display: block; }
.map-caption {
  padding: 14px 20px;
  border-top: 1px solid rgba(247, 245, 239, 0.1);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #75897D;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.river-flow {
  stroke-dasharray: 5 11;
  animation: river-flow 2.8s linear infinite;
}
@keyframes river-flow { to { stroke-dashoffset: -64; } }
.pilot-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: pilot-pulse 2.4s ease-out infinite;
}
@keyframes pilot-pulse {
  0% { transform: scale(0.4); opacity: 0.85; }
  75% { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .river-flow, .pilot-pulse { animation: none; }
}
.river-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(28px, 3.4vw, 44px);
}
.river-card {
  background: var(--ink);
  transition: background 0.35s ease;
  display: flex;
  flex-direction: column;
}
.river-card:hover { background: var(--ink-2); }
.river-card .rc-media { position: relative; overflow: hidden; }
.river-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.river-card:hover img { transform: scale(1.05); }
.river-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0B1F1A;
  background: var(--gold, #3DA874);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.river-tag.secondary { background: rgba(11, 31, 26, 0.75); color: #E9E5D8; border: 1px solid rgba(247,245,239,0.3); }
.rc-body { padding: 24px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.rc-body h4 {
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.rc-facts {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 14px 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.rc-fact { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.rc-fact span { display: block; color: var(--muted); margin-bottom: 3px; }
.rc-fact strong { color: var(--gold-deep); font-weight: 500; font-size: 11px; }
.rc-body p { font-size: 14.5px; line-height: 1.7; color: var(--muted-2); }
@media (max-width: 900px) { .river-cards { grid-template-columns: 1fr; } .river-card img { height: 220px; } }

/* Subpages: content covers the full page width */
.page-head .wrap,
.page-body .wrap {
  max-width: none;
}

/* ============ MISSION & VISION EDITORIAL ROWS ============ */
.mv-rows { display: flex; flex-direction: column; gap: clamp(48px, 6vw, 88px); }
.mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.mv-row.rev .mv-media { order: 2; }
.mv-media { overflow: hidden; position: relative; }
.mv-media img {
  width: 100%;
  height: clamp(320px, 34vw, 480px);
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
  filter: saturate(0.92);
}
.mv-media.contain img { object-fit: contain; height: clamp(320px, 32vw, 460px); }
.mv-row:hover .mv-media img { transform: scale(1.045); filter: saturate(1); }
.mv-media figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 36px 20px 14px;
  background: linear-gradient(to top, rgba(12, 34, 28, 0.78), transparent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F7F5EF;
}
.mv-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
}
.mv-kicker::before { content: ""; width: 42px; height: 1px; background: var(--gold); }
.mv-text h3 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 20px 0 18px;
}
.mv-text h3 em { font-style: italic; color: var(--gold); font-weight: 460; }
.mv-text p {
  font-size: clamp(15.5px, 1.5vw, 18px);
  line-height: 1.75;
  color: var(--muted-2);
  max-width: 560px;
}
@media (max-width: 860px) {
  .mv-row { grid-template-columns: 1fr; }
  .mv-row.rev .mv-media { order: 0; }
  .mv-media img { height: 280px; }
}

/* ============ VALUES PHOTO CARDS ============ */
.values-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(247, 245, 239, 0.14);
  border: 1px solid var(--line-strong);
}
.vp-card {
  position: relative;
  min-height: clamp(340px, 30vw, 430px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #0B1F1A;
}
.vp-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.6);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
.vp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 23, 18, 0.9) 0%, rgba(8, 23, 18, 0.32) 52%, rgba(8, 23, 18, 0.12) 100%);
  pointer-events: none;
}
.vp-card:hover img { transform: scale(1.07); filter: saturate(0.95) brightness(0.8); }
.vp-body {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 2.6vw, 36px);
  width: 100%;
}
.vp-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.17em;
  color: #63D096;
}
.vp-body h3 {
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #F7F5EF;
  margin: 10px 0 0;
}
.vp-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #C9D4CC;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.55s;
  margin-top: 0;
}
.vp-card:hover .vp-body p,
.vp-card:focus-within .vp-body p {
  max-height: 200px;
  opacity: 1;
  transform: none;
  margin-top: 12px;
}
.vp-bar {
  width: 40px; height: 2px;
  background: var(--gold, #3DA874);
  margin-top: 16px;
  transform-origin: left;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.vp-card:hover .vp-bar { width: 90px; }
@media (max-width: 980px) { .values-photo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .values-photo-grid { grid-template-columns: 1fr; } .vp-body p { max-height: none; opacity: 1; transform: none; margin-top: 12px; } }

/* ============ WHO WE ARE — INSTITUTIONS ============ */
.inst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 36px);
}
.inst-card {
  border: 1px solid var(--line-strong);
  background: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.inst-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 60px -30px rgba(12, 34, 28, 0.5);
  border-color: var(--gold);
}
.inst-head {
  background: #0B1F1A;
  padding: clamp(26px, 2.8vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}
.inst-head::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.inst-card:hover .inst-head::after { transform: scaleX(1); }
.inst-head img { height: clamp(40px, 4vw, 56px); width: auto; max-width: 62%; object-fit: contain; }
.inst-role {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0B1F1A;
  background: #3DA874;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 500;
}
.inst-body { padding: clamp(26px, 2.8vw, 40px); display: flex; flex-direction: column; flex: 1; }
.inst-body h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.inst-intro {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted-2);
}
.inst-facts {
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  flex-wrap: wrap;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.inst-fact { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.inst-fact span { display: block; color: var(--muted); margin-bottom: 3px; }
.inst-fact strong { color: var(--gold-deep); font-weight: 500; font-size: 11px; }
.inst-brings { list-style: none; margin-top: 2px; }
.inst-brings::before {
  content: "What they bring";
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--river);
  margin-bottom: 10px;
}
.inst-brings li {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted-2);
  padding: 7px 0 7px 22px;
  position: relative;
}
.inst-brings li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 1px;
  background: var(--gold);
}
.inst-brings li strong { color: var(--cream); font-weight: 700; }
@media (max-width: 900px) { .inst-grid { grid-template-columns: 1fr; } }

/* ============ SPV EQUATION ============ */
.spv-eq {
  margin-top: clamp(56px, 7vw, 90px);
  background: #0B1F1A;
  border: 1px solid rgba(247, 245, 239, 0.12);
  padding: clamp(32px, 4vw, 56px) clamp(22px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.4vw, 56px);
  flex-wrap: wrap;
}
.spv-eq img { height: clamp(34px, 3.6vw, 52px); width: auto; }
.spv-eq .eq-sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 38px);
  color: #3DA874;
  line-height: 1;
}
.spv-eq .eq-result {
  display: flex;
  align-items: center;
  gap: 14px;
}
.spv-eq .eq-result .er-text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 21px);
  color: #F7F5EF;
  line-height: 1.25;
}
.spv-eq .eq-result .er-text small {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #63D096;
  margin-top: 5px;
}

/* SPV importance list reuses .faq-item; heading spacing */
.spv-head { margin-top: clamp(64px, 8vw, 110px); }

/* ============ CRISIS PAGE — GALAMSEY INTRO ============ */
.g-intro { background: var(--ink); }
.g-def {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.g-word {
  font-family: var(--serif);
  font-weight: 540;
  font-size: clamp(40px, 5.4vw, 74px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.g-word em { font-style: italic; color: var(--gold); font-weight: 440; }
.g-phon {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 14px;
  text-transform: uppercase;
}
.g-meaning {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.9vw, 24px);
  color: var(--muted-2);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.g-def-copy p { font-size: clamp(15.5px, 1.5vw, 18px); line-height: 1.75; color: var(--muted-2); }
.g-def-copy p + p { margin-top: 18px; }
.g-def-copy strong { color: var(--cream); font-weight: 700; }
.g-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  margin-top: clamp(48px, 6vw, 76px);
}
.g-stat {
  background: var(--ink);
  padding: clamp(24px, 2.6vw, 40px) clamp(20px, 2.2vw, 32px);
  transition: background 0.35s;
}
.g-stat:hover { background: var(--ink-2); }
.g-stat .gs-num {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(30px, 3.4vw, 48px);
  color: var(--cream);
  line-height: 1;
}
.g-stat .gs-num span { color: var(--gold); }
.g-stat .gs-label {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 900px) { .g-def { grid-template-columns: 1fr; } .g-stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .g-stats { grid-template-columns: 1fr; } }

/* ============ HISTORY TIMELINE ============ */
.history { background: var(--ink-2); }
.hist-feature {
  position: relative;
  overflow: hidden;
  margin-top: clamp(40px, 5vw, 64px);
}
.hist-feature img {
  width: 100%;
  height: clamp(280px, 36vw, 460px);
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.75);
}
.hist-feature figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 50px clamp(20px, 3vw, 40px) 18px;
  background: linear-gradient(to top, rgba(8, 23, 18, 0.9), transparent);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.hist-rail-wrap { position: relative; margin-top: clamp(36px, 4vw, 56px); }
.hist-rail {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  background: var(--line);
  border: 1px solid var(--line);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.hist-card {
  min-width: clamp(270px, 30vw, 380px);
  scroll-snap-align: start;
  background: var(--ink);
  padding: clamp(26px, 2.8vw, 40px);
  transition: background 0.35s;
  position: relative;
}
.hist-card:hover { background: var(--ink-3); box-shadow: 0 18px 36px -22px rgba(12, 34, 28, 0.25); }
.hist-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hist-card:hover::before { transform: scaleX(1); }
.hist-year {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
}
.hist-card h4 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 12px 0 10px;
  color: var(--cream);
}
.hist-card p { font-size: 14px; line-height: 1.68; color: var(--muted); }
.hist-hint {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hist-hint::after { content: "\2192"; color: var(--gold); animation: hint-slide 2s ease-in-out infinite; }
@keyframes hint-slide { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }

/* ============ SOCIAL TOLL FEATURE ============ */
.toll-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
  margin: clamp(44px, 5.5vw, 72px) 0;
}
.toll-feature .tf-media { overflow: hidden; position: relative; }
.toll-feature .tf-media img {
  width: 100%;
  height: clamp(300px, 32vw, 440px);
  object-fit: cover;
  display: block;
  filter: saturate(0.88);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.toll-feature:hover .tf-media img { transform: scale(1.04); }
.toll-feature .tf-media figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 20px 14px;
  background: linear-gradient(to top, rgba(8, 23, 18, 0.85), transparent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.toll-feature .tf-text h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 560;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.toll-feature .tf-text h3 em { font-style: italic; color: var(--gold-bright); }
.toll-feature .tf-text p {
  margin-top: 16px;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.75;
  color: var(--muted);
}
@media (max-width: 860px) { .toll-feature { grid-template-columns: 1fr; } }

/* ============ FAILED INTERVENTIONS ============ */
.failures { background: var(--ink); }
.fail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 4.5vw, 72px);
  align-items: start;
  margin-top: clamp(44px, 5.5vw, 68px);
}
.fail-media { position: sticky; top: 110px; overflow: hidden; }
.fail-media img {
  width: 100%;
  height: clamp(300px, 38vw, 520px);
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
}
.fail-media figcaption {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.fail-item summary .faq-num { color: var(--rust); }
.lesson {
  margin-top: clamp(44px, 5vw, 64px);
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px clamp(22px, 2.6vw, 36px);
}
.lesson p {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 26px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
  max-width: 900px;
}
.lesson p strong { color: var(--gold-deep); font-weight: 600; font-style: normal; }
.lesson .lesson-cta { margin-top: 22px; }
@media (max-width: 900px) { .fail-grid { grid-template-columns: 1fr; } .fail-media { position: static; } }

/* ============ NEWSROOM ============ */
.newsroom { background: var(--ink-2); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(44px, 5.5vw, 68px);
}
.news-card {
  background: var(--ink);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
.nc-media { overflow: hidden; }
.nc-media img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
  filter: saturate(0.88) brightness(0.96);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
}
.news-card:hover .nc-media img { transform: scale(1.06); filter: saturate(1) brightness(1); }
.nc-body {
  padding: clamp(22px, 2.4vw, 32px) clamp(24px, 2.6vw, 38px) clamp(26px, 2.8vw, 38px);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card:hover { background: var(--ink-3); }
.news-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-card:hover::after { width: 100%; }
.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.news-meta .n-src { color: var(--gold-bright); }
.news-meta .n-date { color: var(--muted-2); }
.news-card h4 {
  font-family: var(--serif);
  font-size: clamp(17.5px, 1.7vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 14px 0 10px;
  color: var(--cream);
}
.news-card p { font-size: 13.5px; line-height: 1.65; color: var(--muted); }
.news-note {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
@media (max-width: 960px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .news-grid { grid-template-columns: 1fr; } }

/* Subpages: every section spans the full page width */
body.subpage .wrap { max-width: none; }

/* Crisis page: social-toll section flips to the light paper theme (homepage stays dark) */
body.subpage .crisis {
  --ink: #F7F5EF;
  --ink-2: #EFECE3;
  --ink-3: #E6E2D6;
  --ink-4: #D9D4C6;
  --cream: #0C221C;
  --cream-2: #16332B;
  --gold: #177A4B;
  --gold-bright: #1F9159;
  --gold-deep: #0F5A36;
  --river: #1F5C4C;
  --rust: #A04A2E;
  --muted: #5E6B62;
  --muted-2: #47544B;
  --line: rgba(12, 34, 28, 0.12);
  --line-strong: rgba(12, 34, 28, 0.26);
  color: var(--cream);
  background: var(--ink);
}

/* ============ PLAN — OUTCOMES SHOWCASE ============ */
.outcomes { background: var(--ink); }
.oc-show {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4.5vw, 72px);
  align-items: start;
  margin-top: clamp(44px, 5.5vw, 72px);
}
.oc-stage {
  position: sticky;
  top: 100px;
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  background: #0B1F1A;
}
.oc-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.oc-stage img.active { opacity: 1; transform: scale(1); }
.oc-stage figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 44px 20px 14px;
  background: linear-gradient(to top, rgba(8, 23, 18, 0.85), transparent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F7F5EF;
}
.oc-list { border-top: 1px solid var(--line-strong); }
.oc-item { border-bottom: 1px solid var(--line-strong); }
.oc-item button {
  appearance: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: clamp(18px, 2vw, 26px) 0;
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: inherit;
}
.oc-item .oc-title {
  font-family: var(--serif);
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 560;
  letter-spacing: -0.01em;
  color: var(--muted);
  transition: color 0.3s, transform 0.35s;
  flex: 1;
}
.oc-item .oc-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.35s;
}
.oc-item.active .oc-title { color: var(--cream); transform: translateX(6px); }
.oc-item.active .oc-mark { opacity: 1; transform: none; }
.oc-item:hover .oc-title { color: var(--cream); }
.oc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.oc-item.active .oc-body { max-height: 460px; }
.oc-body-inner { padding: 0 0 clamp(22px, 2.4vw, 30px); }
.oc-body p {
  font-size: clamp(14.5px, 1.35vw, 16.5px);
  line-height: 1.72;
  color: var(--muted-2);
  max-width: 600px;
}
.oc-aims {
  list-style: none;
  margin-top: 14px;
}
.oc-aims li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-2);
  padding: 5px 0 5px 24px;
  position: relative;
}
.oc-aims li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 5px;
  color: var(--gold);
  font-size: 13px;
}
.oc-aims li strong { color: var(--cream); font-weight: 700; }
@media (max-width: 900px) {
  .oc-show { grid-template-columns: 1fr; }
  .oc-stage { position: static; aspect-ratio: 16 / 10; }
}

/* ============ PLAN — SUCCESS BAND ============ */
.success-band { background: var(--ink-2); }
.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(44px, 5.5vw, 68px);
}
.success-item {
  background: var(--ink);
  padding: clamp(26px, 2.8vw, 42px);
  transition: background 0.35s;
  position: relative;
  overflow: hidden;
}
.success-item:hover { background: var(--ink-3); }
.success-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.success-item:hover::before { height: 100%; }
.success-check {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-size: 16px;
  margin-bottom: 18px;
}
.success-item h4 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.75vw, 23px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 10px;
}
.success-item p { font-size: 14px; line-height: 1.66; color: var(--muted); }
@media (max-width: 960px) { .success-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .success-grid { grid-template-columns: 1fr; } }

/* ============ GOAL DETAIL MODAL ============ */
.goal { cursor: pointer; }
.goal-more {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.goal-more::after { content: "\2192"; transition: transform 0.3s; }
.goal:hover .goal-more::after { transform: translateX(5px); }

.goal-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 48px);
}
.goal-modal.open { display: flex; }
.gm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 23, 18, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: gm-fade 0.35s ease;
}
@keyframes gm-fade { from { opacity: 0; } to { opacity: 1; } }
.gm-dialog {
  position: relative;
  z-index: 2;
  background: #F7F5EF;
  color: #0C221C;
  width: min(1180px, 100%);
  max-height: min(88vh, 860px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  animation: gm-rise 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.6);
}
@keyframes gm-rise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
.gm-media { position: relative; min-height: 320px; }
.gm-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gm-media .gm-num {
  position: absolute;
  top: 22px; left: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(8, 23, 18, 0.6);
  border: 1px solid #63D096;
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: #63D096;
}
.gm-content {
  padding: clamp(28px, 3.4vw, 56px);
  overflow-y: auto;
}
.gm-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #177A4B;
}
.gm-content h3 {
  font-family: var(--serif);
  font-weight: 580;
  font-size: clamp(26px, 2.8vw, 40px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 14px 0 16px;
}
.gm-content h3 em { font-style: italic; color: #177A4B; }
.gm-content > p {
  font-size: clamp(15px, 1.35vw, 16.5px);
  line-height: 1.75;
  color: #47544B;
}
.gm-content > p + p { margin-top: 14px; }
.gm-aims {
  list-style: none;
  margin: 22px 0 0;
  border-top: 1px solid rgba(12, 34, 28, 0.14);
  padding-top: 18px;
}
.gm-aims::before {
  content: "What this goal commits us to";
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #177A4B;
  margin-bottom: 12px;
}
.gm-aims li {
  font-size: 14.5px;
  line-height: 1.62;
  color: #47544B;
  padding: 6px 0 6px 24px;
  position: relative;
}
.gm-aims li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 6px;
  color: #177A4B;
  font-size: 13px;
}
.gm-aims li strong { color: #0C221C; font-weight: 700; }
.gm-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}
.gm-pair figure { position: relative; overflow: hidden; }
.gm-pair img { width: 100%; height: 150px; object-fit: cover; display: block; }
.gm-pair figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 10px 8px;
  background: linear-gradient(to top, rgba(8, 23, 18, 0.85), transparent);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F7F5EF;
}
.gm-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(12, 34, 28, 0.25);
  background: #F7F5EF;
  color: #0C221C;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s, color 0.25s, transform 0.35s;
}
.gm-close:hover { background: #177A4B; color: #F7F5EF; transform: rotate(90deg); }
.gm-panel { display: none; }
.gm-panel.active { display: contents; }
@media (max-width: 860px) {
  .gm-dialog { grid-template-columns: 1fr; overflow-y: auto; max-height: 92vh; }
  .gm-media { min-height: 220px; height: 230px; position: relative; }
  .gm-content { overflow: visible; }
}

/* ============ PHASES — LIGHT JOURNEY TIMELINE (plan page) ============ */
.phases-lt { background: var(--ink); }
.ph-timeline {
  position: relative;
  margin-top: clamp(48px, 6vw, 84px);
  padding-left: clamp(64px, 7vw, 110px);
}
.ph-timeline::before {
  content: "";
  position: absolute;
  left: clamp(26px, 3vw, 46px);
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line-strong);
}
.ph-fill {
  position: absolute;
  left: clamp(26px, 3vw, 46px);
  top: 8px;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, #1F9159, #177A4B);
  transition: height 0.2s linear;
  z-index: 1;
}
.ph-row {
  position: relative;
  padding: 0 0 clamp(36px, 4.5vw, 60px);
}
.ph-row:last-child { padding-bottom: 0; }
.ph-node {
  position: absolute;
  left: calc(clamp(26px, 3vw, 46px) - clamp(64px, 7vw, 110px) - 27px + 1px);
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  z-index: 2;
  transition: border-color 0.5s, background 0.5s, color 0.5s, box-shadow 0.5s;
}
.ph-row.reveal.in .ph-node {
  border-color: #177A4B;
  background: #177A4B;
  color: #F7F5EF;
  box-shadow: 0 0 0 7px rgba(23, 122, 75, 0.14);
}
.ph-card {
  background: var(--ink);
  border: 1px solid var(--line-strong);
  padding: clamp(24px, 2.8vw, 42px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.35s;
}
.ph-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: #177A4B;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.ph-card:hover {
  transform: translateX(8px);
  box-shadow: 0 26px 50px -28px rgba(12, 34, 28, 0.35);
  border-color: #177A4B;
}
.ph-card:hover::before { transform: scaleY(1); }
.ph-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.ph-head h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 580;
  letter-spacing: -0.012em;
  line-height: 1.15;
  color: var(--cream);
}
.ph-pill {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0F5A36;
  border: 1px solid #177A4B;
  border-radius: 999px;
  padding: 7px 16px;
  white-space: nowrap;
}
.ph-tagline {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.ph-card ul {
  list-style: none;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px clamp(20px, 3vw, 44px);
}
.ph-card li {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted-2);
  padding: 6px 0 6px 22px;
  position: relative;
}
.ph-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 10px; height: 1px;
  background: #177A4B;
}
/* staggered rise */
.ph-row.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.ph-row.reveal.in { opacity: 1; transform: none; }
@media (max-width: 720px) {
  .ph-card ul { grid-template-columns: 1fr; }
  .ph-node { width: 44px; height: 44px; font-size: 14px; }
}

/* ============ INSIGHTS & PRESS ============ */
.press-head {
  position: relative;
  overflow: hidden;
}
.press-head .ph-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(8, 23, 18, 0.82), rgba(8, 23, 18, 0.94)), url("images/news-estuary.jpg");
  background-size: cover;
  background-position: center;
}
.press-head .wrap { position: relative; z-index: 2; }

/* featured story */
.feat-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: #0B1F1A;
  border: 1px solid rgba(247, 245, 239, 0.12);
  overflow: hidden;
  color: #F7F5EF;
}
.feat-media { position: relative; min-height: 340px; overflow: hidden; }
.feat-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.feat-story:hover .feat-media img { transform: scale(1.045); }
.feat-body {
  padding: clamp(28px, 3.4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #63D096;
  display: flex;
  align-items: center;
  gap: 12px;
}
.feat-tag::before { content: ""; width: 34px; height: 1px; background: #3DA874; }
.feat-body h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(26px, 2.9vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 16px 0 14px;
}
.feat-body p { font-size: clamp(14.5px, 1.35vw, 16.5px); line-height: 1.72; color: #93A69B; }
.feat-meta {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #75897D;
}
@media (max-width: 860px) { .feat-story { grid-template-columns: 1fr; } .feat-media { min-height: 230px; } }

/* filter bar */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 64px);
}
.filter-btn {
  appearance: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 11px 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-btn.active {
  background: #177A4B;
  border-color: #177A4B;
  color: #F7F5EF;
}
.ins-grid { margin-top: clamp(28px, 3vw, 44px); }
.news-card.filtered-out { display: none; }
.news-card.filter-in { animation: card-in 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes card-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.news-card .nc-cat {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(8, 23, 18, 0.72);
  color: #E9E5D8;
  border: 1px solid rgba(247, 245, 239, 0.25);
  backdrop-filter: blur(3px);
}
.news-card .nc-cat.restoration { color: #63D096; border-color: rgba(99, 208, 150, 0.5); }
.news-card .nc-cat.press { background: #177A4B; color: #F7F5EF; border-color: #177A4B; }

/* perspectives */
.perspectives { background: var(--ink-2); }
.persp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.2vw, 32px);
  margin-top: clamp(44px, 5.5vw, 68px);
}
.persp-card {
  background: var(--ink);
  border: 1px solid var(--line-strong);
  padding: clamp(28px, 3vw, 46px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.35s;
}
.persp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px -28px rgba(12, 34, 28, 0.38);
  border-color: var(--gold);
}
.persp-card::before {
  content: "\201C";
  position: absolute;
  top: -26px; right: 10px;
  font-family: var(--serif);
  font-size: 150px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.10;
  pointer-events: none;
}
.persp-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.persp-card h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 580;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 12px 0 12px;
}
.persp-card h3 em { font-style: italic; color: var(--gold); }
.persp-card p { font-size: 14.5px; line-height: 1.7; color: var(--muted-2); }
.persp-src {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 760px) { .persp-grid { grid-template-columns: 1fr; } }

/* press office */
.press-office { background: var(--ink); }
.po-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 3.6vw, 60px);
  margin-top: clamp(44px, 5.5vw, 68px);
  align-items: start;
}
.po-card {
  background: #0B1F1A;
  color: #F7F5EF;
  padding: clamp(30px, 3.4vw, 52px);
  border: 1px solid rgba(247, 245, 239, 0.12);
}
.po-card h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 580;
  letter-spacing: -0.012em;
}
.po-card h3 em { font-style: italic; color: #63D096; }
.po-card > p { margin-top: 12px; font-size: 15px; line-height: 1.7; color: #93A69B; }
.po-rows { margin-top: 24px; }
.po-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid rgba(247, 245, 239, 0.1);
  text-decoration: none;
  color: #E9E5D8;
  font-size: 15px;
  transition: color 0.25s, padding-left 0.25s;
}
a.po-row:hover { color: #63D096; padding-left: 8px; }
.po-row svg { width: 17px; height: 17px; stroke: #3DA874; flex-shrink: 0; }
.po-row .po-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #75897D;
  display: block;
}
.kit-card {
  border: 1px solid var(--line-strong);
  background: var(--ink);
  padding: clamp(28px, 3vw, 44px);
}
.kit-card h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.kit-card > p { margin-top: 10px; font-size: 14.5px; line-height: 1.68; color: var(--muted-2); }
.kit-items { margin-top: 20px; }
.kit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: var(--cream);
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.25s;
}
.kit-item:hover { color: var(--gold-deep); }
.kit-item span.k-type {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.kit-item::after { content: "\2193"; color: var(--gold); }
@media (max-width: 860px) { .po-grid { grid-template-columns: 1fr; } }

/* ============ CLICKABLE NEWS CARDS ============ */
a.news-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.nc-read {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nc-read::after { content: "\2192"; transition: transform 0.3s; }
.nc-read.ext::after { content: "\2197"; }
a.news-card:hover .nc-read::after { transform: translateX(5px); }
a.news-card:hover h4 { color: var(--gold-deep); }
.news-card h4 { transition: color 0.3s; }
a.feat-link { text-decoration: none; color: inherit; display: block; }

/* ============ PERSPECTIVES — LINKED EDITORIAL ROWS ============ */
.plist { margin-top: clamp(44px, 5.5vw, 68px); border-top: 1px solid var(--line-strong); }
.plist-row {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(26px, 3vw, 42px) clamp(8px, 1vw, 18px);
  border-bottom: 1px solid var(--line-strong);
  text-decoration: none;
  color: inherit;
  transition: background 0.35s ease, padding-left 0.35s ease;
  position: relative;
}
.plist-row:hover { background: var(--ink); padding-left: clamp(16px, 1.6vw, 30px); }
.plist-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  line-height: 1.7;
}
.plist-main h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 29px);
  font-weight: 580;
  letter-spacing: -0.01em;
  line-height: 1.18;
  transition: color 0.3s;
}
.plist-main h3 em { font-style: italic; color: var(--gold); }
.plist-row:hover .plist-main h3 { color: var(--gold-deep); }
.plist-main p {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--muted-2);
  max-width: 700px;
}
.plist-src {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.plist-go {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.plist-go::after { content: "\2197"; font-size: 14px; transition: transform 0.3s; }
.plist-row:hover .plist-go::after { transform: translate(3px, -3px); }
@media (max-width: 820px) {
  .plist-row { grid-template-columns: 1fr; gap: 10px; }
  .plist-go { margin-top: 4px; }
}

/* ============ ARTICLE PAGES ============ */
.article-head {
  background: var(--ink-2);
  padding: clamp(150px, 20vh, 200px) 0 clamp(50px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.article-head .wrap, .article-body-wrap { max-width: 900px !important; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.article-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.article-kicker::before, .article-kicker::after { content: ""; width: 36px; height: 1px; background: var(--gold); opacity: 0.6; }
.article-head h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  text-align: center;
  margin: 20px auto 0;
}
.article-head h1 em { font-style: italic; color: var(--gold-bright); }
.article-meta-line {
  margin-top: 22px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-hero { max-width: 1240px; margin: clamp(-30px, -3vw, -40px) auto 0; padding: 0 clamp(20px, 4vw, 56px); position: relative; z-index: 2; }
.article-hero img {
  width: 100%;
  height: clamp(280px, 40vw, 520px);
  object-fit: cover;
  display: block;
  box-shadow: 0 40px 80px -40px rgba(12, 34, 28, 0.5);
}
.article-hero figcaption {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.article-body { background: var(--ink); padding: clamp(50px, 6vw, 90px) 0 clamp(70px, 9vw, 120px); }
.article-body-wrap p {
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.85;
  color: #35423A;
}
.article-body-wrap p + p { margin-top: 24px; }
.article-body-wrap p strong { color: var(--cream); font-weight: 700; }
.article-body-wrap p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.1em;
  line-height: 0.82;
  float: left;
  padding: 8px 12px 0 0;
  color: #177A4B;
}
.article-quote {
  margin: clamp(34px, 4vw, 54px) 0;
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px clamp(22px, 2.6vw, 36px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--cream);
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(40px, 5vw, 60px);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 13px 26px;
  transition: all 0.3s;
}
.article-back:hover { background: #177A4B; border-color: #177A4B; color: #F7F5EF; }
.article-back::before { content: "\2190"; }

/* Article pages: topbar always solid over the light banner */
.topbar.solid {
  background: rgba(8, 23, 18, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(247, 245, 239, 0.1);
}

/* ============ NEWSROOM — ARCHIVE STYLE ============ */
.newsroom-arch { background: #FFFFFF; }
.arch-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(32px, 4vw, 64px);
  margin-top: clamp(32px, 4vw, 52px);
  align-items: start;
}
.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 44px) clamp(22px, 2.4vw, 36px);
}
.arch-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.arch-card .nc-media { overflow: hidden; }
.arch-card .nc-media img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.arch-card:hover .nc-media img { transform: scale(1.05); }
.arch-card h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #2E3A33;
  margin-top: 14px;
  transition: color 0.25s;
}
.arch-card:hover h4 { color: #177A4B; }
.arch-meta {
  margin-top: 8px;
  font-size: 12.5px;
  color: #7A857E;
}
.arch-meta strong { font-weight: 700; color: #5E6B62; }
.arch-card.filtered-out { display: none; }

/* sidebar */
.arch-side { position: sticky; top: 100px; }
.side-widget + .side-widget { margin-top: 38px; }
.side-widget h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 19px;
  color: #22302A;
  margin-bottom: 14px;
}
.side-search { display: flex; }
.side-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid #C9CFC9;
  background: #FFFFFF;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: #22302A;
  outline: none;
}
.side-search input:focus { border-color: #177A4B; }
.side-search button {
  border: none;
  background: #177A4B;
  color: #FFFFFF;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.25s;
}
.side-search button:hover { background: #1F9159; }
.recent-list { list-style: none; }
.recent-list li { border-bottom: 1px solid #EDEEEA; }
.recent-list a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1F9159;
  transition: color 0.25s;
}
.recent-list a:hover { color: #0F5A36; }

/* pagination */
.pager {
  display: flex;
  gap: 8px;
  margin-top: clamp(34px, 4vw, 52px);
  flex-wrap: wrap;
}
.pager button {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #C9CFC9;
  background: #FFFFFF;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: #4A564E;
  cursor: pointer;
  transition: all 0.25s;
}
.pager button:hover { border-color: #177A4B; color: #177A4B; }
.pager button.current {
  background: #177A4B;
  border-color: #177A4B;
  color: #FFFFFF;
}
.pager button:disabled { opacity: 0.4; cursor: default; }
.arch-empty {
  padding: 40px 0;
  font-size: 15px;
  color: #7A857E;
  font-style: italic;
  display: none;
}
@media (max-width: 1020px) { .arch-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .arch-layout { grid-template-columns: 1fr; } .arch-side { position: static; } }
@media (max-width: 560px) { .arch-grid { grid-template-columns: 1fr; } .arch-card .nc-media img { height: 200px; } }

/* Perspectives in archive style */
.arch-grid.cols4 { grid-template-columns: repeat(4, 1fr); }
.arch-src {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9AA59D;
}
@media (max-width: 1020px) { .arch-grid.cols4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .arch-grid.cols4 { grid-template-columns: 1fr; } }

/* ============ ESG PAGE (Denzel-pattern) ============ */
.esg-glance { background: var(--ink-2); }
.esg-glance .g-stat { background: var(--ink); }
.esg-glance .g-stat:hover { background: var(--ink-3); }

.pillars { background: var(--ink); }
.pillar-panel h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 580;
  letter-spacing: -0.012em;
}
.pillar-panel h3 em { font-style: italic; color: var(--gold); }
.pillar-cols {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 4vw, 64px);
  align-items: start;
  margin-top: 8px;
}
.pillar-copy p { margin-top: 14px; font-size: 15.5px; line-height: 1.74; color: var(--muted-2); }
.pillar-media { overflow: hidden; }
.pillar-media img {
  width: 100%;
  height: clamp(240px, 26vw, 360px);
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}
.pillar-list { list-style: none; margin-top: 20px; }
.pillar-list li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted-2);
  padding: 9px 0 9px 26px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.pillar-list li:last-child { border-bottom: none; }
.pillar-list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 9px;
  color: var(--gold);
  font-size: 13px;
}
.pillar-list li strong { color: var(--cream); font-weight: 700; }
@media (max-width: 860px) { .pillar-cols { grid-template-columns: 1fr; } }

/* code of conduct */
.coc-band { background: var(--ink-2); }
.coc {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: clamp(24px, 3vw, 48px);
  background: var(--ink);
  border: 1px solid var(--line-strong);
  padding: clamp(28px, 3.2vw, 50px);
  margin-top: clamp(40px, 5vw, 64px);
  align-items: start;
}
.coc-thumb {
  aspect-ratio: 3 / 4;
  background: #0B1F1A;
  border: 1px solid rgba(247, 245, 239, 0.15);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #63D096;
  position: relative;
}
.coc-thumb::after {
  content: "";
  position: absolute;
  top: 10px; left: 10px; right: 10px;
  height: 3px;
  background: #177A4B;
}
.coc-info h3 {
  font-family: var(--serif);
  font-size: clamp(21px, 2.1vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.coc-info > p { margin-top: 10px; font-size: 15px; line-height: 1.7; color: var(--muted-2); max-width: 720px; }
.coc-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.coc-topics {
  list-style: none;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px clamp(20px, 3vw, 44px);
}
.coc-topics li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-2);
  padding: 6px 0 6px 22px;
  position: relative;
}
.coc-topics li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 10px; height: 1px;
  background: var(--gold);
}
@media (max-width: 720px) { .coc { grid-template-columns: 1fr; } .coc-thumb { max-width: 150px; } .coc-topics { grid-template-columns: 1fr; } }

/* find out more */
.findmore { background: var(--ink); }
.fm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
}
.fm-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  overflow: hidden;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.35s;
}
.fm-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 52px -28px rgba(12, 34, 28, 0.4);
  border-color: var(--gold);
}
.fm-media { overflow: hidden; }
.fm-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fm-card:hover .fm-media img { transform: scale(1.05); }
.fm-body { padding: 22px 24px 28px; }
.fm-body h3 {
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.fm-card:hover .fm-body h3 { color: var(--gold-deep); }
.fm-body p { margin-top: 8px; font-size: 14px; line-height: 1.65; color: var(--muted-2); }
.fm-go {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fm-go::after { content: "\2192"; transition: transform 0.3s; }
.fm-card:hover .fm-go::after { transform: translateX(5px); }
@media (max-width: 900px) { .fm-cards { grid-template-columns: 1fr; } .fm-media img { height: 210px; } }

/* ============ PERMITS & LICENCES ============ */
.permits { background: var(--ink-2); }
.permits-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 4.5vw, 72px);
  margin-top: clamp(44px, 5.5vw, 68px);
  align-items: start;
}
.permit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.6vw, 22px);
}
.permit-card {
  background: var(--ink);
  border: 1px solid var(--line-strong);
  padding: clamp(22px, 2.4vw, 32px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.4s;
  cursor: pointer;
}
.permit-card:hover, .permit-card.selected {
  transform: translateY(-5px);
  border-color: #177A4B;
  box-shadow: 0 22px 44px -26px rgba(12, 34, 28, 0.35);
}
.permit-card.selected { background: #F0F6F1; }
.permit-icon {
  width: 44px; height: 44px;
  border: 1px solid #177A4B;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.permit-icon svg { width: 20px; height: 20px; stroke: #177A4B; }
.permit-card h3 {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.permit-card p { margin-top: 8px; font-size: 13.5px; line-height: 1.6; color: var(--muted-2); }
.permit-note {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.8;
  padding-top: 10px;
}
@media (max-width: 560px) { .permit-cards { grid-template-columns: 1fr; } }

/* request form */
.req-form {
  background: #0B1F1A;
  color: #F7F5EF;
  border: 1px solid rgba(247, 245, 239, 0.12);
  padding: clamp(26px, 3vw, 44px);
}
.req-form h3 {
  font-family: var(--serif);
  font-size: clamp(21px, 2.1vw, 27px);
  font-weight: 580;
  letter-spacing: -0.01em;
}
.req-form h3 em { font-style: italic; color: #63D096; }
.req-form > p { margin-top: 8px; font-size: 14px; line-height: 1.65; color: #93A69B; }
.req-fields { margin-top: 22px; display: grid; gap: 14px; }
.req-field label {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #75897D;
  margin-bottom: 7px;
}
.req-field input,
.req-field select,
.req-field textarea {
  width: 100%;
  background: rgba(247, 245, 239, 0.05);
  border: 1px solid rgba(247, 245, 239, 0.18);
  color: #F7F5EF;
  font-family: var(--sans);
  font-size: 14.5px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s;
}
.req-field input:focus, .req-field select:focus, .req-field textarea:focus { border-color: #3DA874; }
.req-field select { appearance: none; cursor: pointer; }
.req-field select option { background: #0B1F1A; color: #F7F5EF; }
.req-field textarea { min-height: 110px; resize: vertical; }
.req-submit { margin-top: 20px; width: 100%; justify-content: center; border: none; }
.req-hint {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #75897D;
  text-align: center;
  line-height: 1.8;
}
@media (max-width: 900px) { .permits-grid { grid-template-columns: 1fr; } }

/* ============ CAREERS ============ */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  margin-top: clamp(44px, 5.5vw, 68px);
}
@media (max-width: 900px) { .careers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .careers-grid { grid-template-columns: 1fr; } }
.openings-empty {
  border: 1px solid var(--line-strong);
  background: var(--ink);
  padding: clamp(40px, 5vw, 72px);
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
}
.openings-empty h3 {
  font-family: var(--serif);
  font-weight: 580;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.012em;
}
.openings-empty h3 em { font-style: italic; color: var(--gold); }
.openings-empty p {
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--muted-2);
}
.openings-empty .btn { margin-top: 26px; }

/* ============ HOMEPAGE (Denzel-pattern) ============ */
/* founder-style credo */
.credo-quote {
  background: var(--ink-2);
  padding: clamp(70px, 9vw, 120px) 0 clamp(40px, 5vw, 60px);
}
.credo-quote blockquote {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-weight: 480;
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.credo-quote blockquote em { color: var(--gold-bright); }
.credo-quote .cq-attr {
  margin-top: 18px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* stat row (light, with bars) */
.stat-row { background: var(--ink); padding: clamp(64px, 8vw, 110px) 0; }
.stat-row__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3.4vw, 56px);
}
.sr-num {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(34px, 3.8vw, 54px);
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
}
.sr-num span { color: var(--gold); }
.sr-label {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted-2);
}
.sr-bar {
  margin-top: 18px;
  height: 3px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.sr-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #177A4B;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.sr.reveal.in .sr-bar::after { transform: scaleX(1); }
@media (max-width: 900px) { .stat-row__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .stat-row__grid { grid-template-columns: 1fr; } }

/* leadership message */
.lead-msg { background: var(--ink-2); }
.lm-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 84px);
  margin-top: clamp(40px, 5vw, 64px);
  align-items: start;
}
.lm-side { position: sticky; top: 110px; }
.lm-side .lm-media { overflow: hidden; }
.lm-side img {
  width: 100%;
  height: clamp(280px, 30vw, 420px);
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}
.lm-side .lm-cap {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.lm-body p {
  font-size: clamp(15.5px, 1.45vw, 18px);
  line-height: 1.8;
  color: var(--muted-2);
}
.lm-body p + p { margin-top: 20px; }
.lm-body p strong { color: var(--cream); font-weight: 700; }
.lm-quote {
  margin: clamp(28px, 3.4vw, 44px) 0;
  border-left: 3px solid var(--gold);
  padding-left: clamp(20px, 2.4vw, 32px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.4;
  color: var(--cream);
}
.lm-sig {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  line-height: 1.9;
}
@media (max-width: 880px) { .lm-grid { grid-template-columns: 1fr; } .lm-side { position: static; } }

/* newsroom (feature + column) */
.home-news { background: var(--ink); }
.hn-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.hn-all {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 12px 24px;
  transition: all 0.3s;
  white-space: nowrap;
}
.hn-all:hover { background: #177A4B; border-color: #177A4B; color: #F7F5EF; }
.news2 {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(40px, 5vw, 64px);
}
.nf {
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.35s;
}
.nf:hover { transform: translateY(-6px); box-shadow: 0 30px 54px -30px rgba(12, 34, 28, 0.4); border-color: var(--gold); }
.nf-media { overflow: hidden; }
.nf-media img {
  width: 100%;
  height: clamp(260px, 26vw, 380px);
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.nf:hover .nf-media img { transform: scale(1.045); }
.nf-body { padding: clamp(22px, 2.6vw, 38px); }
.nf-meta, .n2-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.nf-body h3 {
  font-family: var(--serif);
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 580;
  letter-spacing: -0.012em;
  line-height: 1.2;
  margin-top: 12px;
  transition: color 0.3s;
}
.nf:hover .nf-body h3 { color: var(--gold-deep); }
.nf-body p { margin-top: 10px; font-size: 14.5px; line-height: 1.68; color: var(--muted-2); }
.news2-col { display: flex; flex-direction: column; gap: clamp(14px, 1.6vw, 20px); }
.n2 {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}
.n2:hover { transform: translateX(6px); border-color: var(--gold); }
.n2-media { height: 100%; min-height: 92px; overflow: hidden; }
.n2-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.n2-body { padding: 14px 16px 14px 0; }
.n2-body h4 {
  font-family: var(--serif);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin-top: 6px;
  transition: color 0.3s;
}
.n2:hover .n2-body h4 { color: var(--gold-deep); }
@media (max-width: 880px) { .news2 { grid-template-columns: 1fr; } }

/* what we do */
.wwd { background: var(--ink-2); }
.wwd-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.wwd-left { position: sticky; top: 110px; }
.wwd-left .wwd-rule { width: 60px; height: 3px; background: #177A4B; margin: 22px 0; }
.wwd-left p { font-size: clamp(15px, 1.4vw, 17px); line-height: 1.75; color: var(--muted-2); max-width: 460px; }
.wwd-left .btn { margin-top: 26px; }
.wwd-cards { display: grid; gap: clamp(14px, 1.6vw, 20px); }
.wwd-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: clamp(16px, 2vw, 28px);
  background: var(--ink);
  border: 1px solid var(--line-strong);
  padding: clamp(22px, 2.4vw, 34px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.4s;
}
.wwd-card:hover {
  transform: translateX(8px);
  border-color: #177A4B;
  box-shadow: 0 22px 44px -28px rgba(12, 34, 28, 0.35);
}
.wwd-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--gold);
  line-height: 1;
}
.wwd-card h3 {
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.wwd-card .wwd-tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.wwd-card p { margin-top: 10px; font-size: 14.5px; line-height: 1.66; color: var(--muted-2); }
@media (max-width: 880px) { .wwd-grid { grid-template-columns: 1fr; } .wwd-left { position: static; } }

/* basins section reuses .map-panel styles */
.basins { background: var(--ink); }

/* careers banner */
.careers-banner {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) 0;
}
.cb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}
.cb-inner h2 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(26px, 3.2vw, 44px);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.cb-inner h2 em { font-style: italic; color: var(--gold); }
.cb-actions { display: flex; gap: 14px; flex-wrap: wrap; }
