  :root {
    --cream: #F2EDE1;
    --cream-deep: #E8E1D1;
    --ink: #1A2332;
    --ink-soft: #2D3A4D;
    --rust: #B8543A;
    --ochre: #C9A961;
    --sea: #3D5A6C;
    --line: #C7BFA8;
    --mute: #6B6857;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
      radial-gradient(circle at 15% 15%, rgba(184, 84, 58, 0.04) 0%, transparent 40%),
      radial-gradient(circle at 85% 85%, rgba(61, 90, 108, 0.05) 0%, transparent 40%);
  }

  /* Subtle noise texture */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.15 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
  }

  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
  }

  /* ===== HEADER ===== */
  header {
    padding: 32px 0 0;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
  }

  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute);
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .top-bar .meta { display: flex; gap: 32px; }

  /* ===== HERO ===== */
  .hero {
    padding: 96px 0 80px;
    position: relative;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rust);
    font-weight: 600;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--rust);
  }

  h1.hero-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(72px, 11vw, 168px);
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--ink);
    font-variation-settings: 'opsz' 144, 'SOFT' 30;
    margin-bottom: 40px;
  }

  h1.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--rust);
  }

  .hero-lead {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 28px;
    line-height: 1.35;
    max-width: 720px;
    color: var(--ink-soft);
    font-variation-settings: 'opsz' 48;
  }

  .hero-meta {
    display: flex;
    gap: 64px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }

  .hero-meta-item .label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 8px;
  }

  .hero-meta-item .value {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: var(--ink);
  }

  /* ===== STRUCTURE DIAGRAM ===== */
  .structure {
    padding: 80px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .section-label::before {
    content: '§';
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--rust);
  }

  .org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .parent-node {
    background: var(--ink);
    color: var(--cream);
    padding: 28px 56px;
    text-align: center;
    position: relative;
    min-width: 320px;
  }

  .parent-node .parent-label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 6px;
  }

  .parent-node .parent-name {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .connector {
    width: 1px;
    height: 56px;
    background: var(--line);
  }

  .children {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    position: relative;
  }

  .children::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: var(--line);
  }

  .child-node {
    text-align: center;
    padding: 40px 24px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .child-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 32px;
    background: var(--line);
  }

  .child-node .child-number {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--rust);
    margin-bottom: 8px;
  }

  .child-node .child-name {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
  }

  .child-node .child-tag {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 8px;
  }

  /* Grandchild (sub-subsidiary) */
  .grandchild-connector {
    width: 1px;
    height: 32px;
    background: var(--line);
    margin-top: 20px;
  }

  .grandchild-node {
    background: var(--cream-deep);
    border: 1px solid var(--line);
    padding: 18px 28px;
    text-align: center;
    min-width: 220px;
  }

  .grandchild-node .grandchild-label {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 4px;
  }

  .grandchild-node .grandchild-name {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
  }

  /* ===== DIVISIONS ===== */
  .divisions {
    padding: 96px 0 40px;
  }

  .division {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    gap: 48px;
    padding: 72px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
  }

  .division:last-child { border-bottom: none; }

  .division-number {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 96px;
    line-height: 1;
    font-style: italic;
    color: var(--rust);
    font-variation-settings: 'opsz' 144;
  }

  .division-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--ink);
  }

  .division-head .division-tag {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sea);
    font-weight: 600;
    margin-bottom: 24px;
  }

  .division-head .division-bullets {
    list-style: none;
    padding: 0;
    margin-top: 24px;
  }

  .division-head .division-bullets li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--ink-soft);
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .division-head .division-bullets li::before {
    content: '→';
    color: var(--rust);
    font-family: 'Fraunces', serif;
  }

  .division-body p {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin-bottom: 20px;
    font-variation-settings: 'opsz' 36;
  }

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

  .division-body p .highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(201, 169, 97, 0.3) 60%);
    padding: 0 2px;
  }

  /* ===== BANNER (aurora + Landegode silhouette) ===== */
  .banner {
    position: relative;
    width: 100%;
    margin: 40px 0 0;
    aspect-ratio: 1320 / 380;
    overflow: hidden;
    isolation: isolate;
    background:
      radial-gradient(ellipse 90% 100% at 50% 100%, #0f3038 0%, #0a1e28 45%, #05121c 100%);
    box-shadow: 0 30px 60px -30px rgba(5, 9, 20, 0.35);
  }

  /* Stars */
  .stars {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.9), transparent 60%),
      radial-gradient(1px 1px at 24% 32%, rgba(255,255,255,0.6), transparent 60%),
      radial-gradient(1.5px 1.5px at 38% 12%, rgba(255,255,255,1), transparent 60%),
      radial-gradient(1px 1px at 52% 24%, rgba(200,220,255,0.5), transparent 60%),
      radial-gradient(1px 1px at 66% 40%, rgba(255,255,255,0.7), transparent 60%),
      radial-gradient(1px 1px at 78% 16%, rgba(255,255,255,0.6), transparent 60%),
      radial-gradient(1.5px 1.5px at 88% 30%, rgba(255,255,255,0.9), transparent 60%),
      radial-gradient(1px 1px at 8% 44%, rgba(255,255,255,0.4), transparent 60%),
      radial-gradient(1px 1px at 46% 8%, rgba(255,255,255,0.6), transparent 60%),
      radial-gradient(1px 1px at 92% 52%, rgba(255,255,255,0.8), transparent 60%),
      radial-gradient(1px 1px at 64% 8%, rgba(255,255,255,0.7), transparent 60%);
    opacity: 0.75;
    animation: twinkle 5s ease-in-out infinite alternate;
  }
  @keyframes twinkle {
    from { opacity: 0.45; }
    to   { opacity: 0.9; }
  }

  /* Aurora ribbons: SVG wave-paths with drift + sway + shimmer */
  .aurora {
    position: absolute;
    left: -20%; right: -20%;
    top: 0; height: 85%;
    mix-blend-mode: screen;
    pointer-events: none;
    will-change: transform, opacity, filter;
  }
  .aurora svg { width: 100%; height: 100%; display: block; }

  .aurora-1 {
    --b: 36px;
    filter: blur(36px) brightness(1);
    opacity: 0.85;
    animation: drift-x-1 24s ease-in-out infinite alternate,
               shimmer    6s ease-in-out infinite alternate;
  }
  .aurora-2 {
    --b: 48px;
    top: 6%; height: 75%;
    filter: blur(48px) brightness(1);
    opacity: 0.8;
    animation: drift-x-2 32s ease-in-out infinite alternate,
               shimmer    7s ease-in-out infinite alternate;
  }
  .aurora-3 {
    --b: 60px;
    top: 12%; height: 65%;
    filter: blur(60px) brightness(1);
    opacity: 0.65;
    animation: drift-x-3 40s ease-in-out infinite alternate,
               shimmer    8s ease-in-out infinite alternate;
  }
  .aurora-4 {
    --b: 24px;
    top: 2%; height: 55%;
    filter: blur(24px) brightness(1);
    opacity: 0.55;
    animation: drift-x-4 28s ease-in-out infinite alternate,
               shimmer    5s ease-in-out infinite alternate;
  }

  @keyframes drift-x-1 {
    0%   { transform: translate3d(-8%, 0, 0) skewX(-4deg) scaleX(1.0); }
    100% { transform: translate3d( 8%, 0, 0) skewX( 3deg) scaleX(1.15); }
  }
  @keyframes drift-x-2 {
    0%   { transform: translate3d( 10%, 0, 0) skewX(5deg)  scaleX(1.1); }
    100% { transform: translate3d(-12%, 0, 0) skewX(-6deg) scaleX(0.95); }
  }
  @keyframes drift-x-3 {
    0%   { transform: translate3d(-6%, 0, 0) skewX(-3deg) scaleX(0.9); }
    100% { transform: translate3d(14%, 0, 0) skewX( 7deg) scaleX(1.2); }
  }
  @keyframes drift-x-4 {
    0%   { transform: translate3d( 6%, 0, 0) skewX(2deg)   scaleX(1.05); }
    100% { transform: translate3d(-10%, 0, 0) skewX(-5deg) scaleX(1.15); }
  }

  .aurora-1 svg { animation: sway-1 9s  ease-in-out infinite alternate; transform-origin: 50% 50%; }
  .aurora-2 svg { animation: sway-2 11s ease-in-out infinite alternate; transform-origin: 50% 50%; }
  .aurora-3 svg { animation: sway-3 13s ease-in-out infinite alternate; transform-origin: 50% 50%; }
  .aurora-4 svg { animation: sway-4 10s ease-in-out infinite alternate; transform-origin: 50% 50%; }
  @keyframes sway-1 { 0% { transform: scaleY(1.0)  translateY(0);   } 100% { transform: scaleY(1.18) translateY(-3%); } }
  @keyframes sway-2 { 0% { transform: scaleY(0.92) translateY(2%);  } 100% { transform: scaleY(1.12) translateY(-4%); } }
  @keyframes sway-3 { 0% { transform: scaleY(1.1)  translateY(-2%); } 100% { transform: scaleY(0.85) translateY(3%);  } }
  @keyframes sway-4 { 0% { transform: scaleY(0.95) translateY(1%);  } 100% { transform: scaleY(1.2)  translateY(-2%); } }

  @keyframes shimmer {
    0%   { filter: blur(var(--b)) brightness(0.8);  }
    50%  { filter: blur(var(--b)) brightness(1.25); }
    100% { filter: blur(var(--b)) brightness(0.9);  }
  }

  /* Horizon glow */
  .horizon-glow {
    position: absolute;
    left: -5%; right: -5%; bottom: 0; height: 50%;
    background:
      radial-gradient(ellipse 60% 100% at 30% 100%, rgba(80, 230, 190, 0.35) 0%, transparent 60%),
      radial-gradient(ellipse 70% 100% at 65% 100%, rgba(60, 200, 180, 0.28) 0%, transparent 55%),
      radial-gradient(ellipse 80% 100% at 50% 100%, rgba(120, 255, 210, 0.15) 0%, transparent 65%);
    mix-blend-mode: screen;
    filter: blur(20px);
    animation: horizon-pulse 7s ease-in-out infinite alternate;
  }
  @keyframes horizon-pulse {
    0%   { opacity: 0.7; transform: translateX(-2%); }
    100% { opacity: 1;   transform: translateX(2%); }
  }

  /* Mountain silhouette (transparent PNG) */
  .mountains {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%; pointer-events: none; z-index: 3;
  }
  .mountains img { display: block; width: 100%; height: auto; }

  /* Ground: hides bottom seam */
  .ground {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 6%; background: #05121c; z-index: 2;
  }

  /* Text overlay */
  .banner-overlay {
    position: absolute; inset: 0; z-index: 4;
    display: flex; flex-direction: column; justify-content: center;
    pointer-events: none;
  }

  .pull-quote-text {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--cream);
    max-width: 900px;
    margin: 0;
  }
  .pull-quote-text em {
    font-style: normal;
    color: var(--ochre);
  }
  .pull-quote-attr {
    margin-top: 40px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ochre);
  }

  @media (prefers-reduced-motion: reduce) {
    .aurora, .aurora svg, .stars, .horizon-glow { animation: none; }
  }
  @media (max-width: 900px) {
    .banner { aspect-ratio: 4 / 3; }
  }

  /* ===== FOOTER ===== */
  footer {
    padding: 64px 0 48px;
    border-top: 1px solid var(--line);
    margin-top: 96px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand .footer-name {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 12px;
  }

  .footer-brand p {
    color: var(--mute);
    font-size: 14px;
    max-width: 360px;
  }

  .footer-col h4 {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 16px;
    font-weight: 600;
  }

  .footer-col p,
  .footer-col a {
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    font-family: 'Fraunces', serif;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .container { padding: 0 24px; }
    .hero { padding: 64px 0 48px; }
    .hero-lead { font-size: 20px; }
    .hero-meta { flex-direction: column; gap: 24px; }
    .children { grid-template-columns: 1fr; }
    .children::before { display: none; }
    .child-node::before { display: none; }
    .child-node { border-top: 1px solid var(--line); padding-top: 24px; }
    .division { grid-template-columns: 1fr; gap: 24px; }
    .division-number { font-size: 64px; }
    .division-head h2 { font-size: 32px; }
    .division-body p { font-size: 18px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  }
