    :root {
      --cream: #faf8f4;
      --warm: #f2ede4;
      --sand: #c9a96e;
      --sand-lt: #e8d5b0;
      --sand-dk: #9a7440;
      --charcoal: #1c1a16;
      --mid: #4e4840;
      --soft: #9a9088;
      --border: #e4ddd3;
      --nav-h: 62px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--cream);
      color: var(--charcoal);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    /* ── NAV ── */
    #topnav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      height: var(--nav-h);
      background: rgba(250, 248, 244, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 56px;
      transition: box-shadow 0.3s;
    }

    #topnav.scrolled {
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--sand);
      letter-spacing: -0.5px;
      cursor: pointer;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 4px;
    }

    .nav-links li a {
      display: block;
      padding: 7px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 400;
      color: var(--mid);
      letter-spacing: 0.2px;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .nav-links li a:hover {
      color: var(--charcoal);
      background: var(--warm);
    }

    .nav-links li a.active {
      color: var(--charcoal);
      font-weight: 600;
      background: var(--warm);
    }

    .nav-cta {
      background: var(--charcoal) !important;
      color: var(--cream) !important;
      font-weight: 500 !important;
    }

    .nav-cta:hover {
      background: var(--sand-dk) !important;
      color: #fff !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--charcoal);
      border-radius: 2px;
      transition: all 0.3s;
    }

    #mob-nav {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0;
      right: 0;
      background: var(--cream);
      border-bottom: 1px solid var(--border);
      z-index: 199;
      padding: 16px 24px 24px;
      flex-direction: column;
      gap: 4px;
    }

    #mob-nav a {
      display: block;
      padding: 11px 16px;
      font-size: 15px;
      color: var(--mid);
      border-radius: 8px;
      transition: background 0.2s;
    }

    #mob-nav a:hover,
    #mob-nav a.active {
      background: var(--warm);
      color: var(--charcoal);
      font-weight: 500;
    }

    /* ── PAGE SYSTEM ── */
    .page {
      display: block;
      padding-top: var(--nav-h);
      min-height: 100vh;
      animation: fadeUp 0.5s ease both;
    }

    .page.active {
      display: block;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ── SHARED ── */
    .eyebrow {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--sand);
      font-weight: 500;
      margin-bottom: 12px;
    }

    .big-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 5vw, 64px);
      line-height: 1.08;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .big-title em {
      font-style: italic;
      color: var(--sand);
    }

    .body-text {
      font-size: 16px;
      color: var(--mid);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .section {
      padding: 80px;
    }

    .btn {
      display: inline-block;
      padding: 13px 28px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.2px;
      transition: all 0.25s;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-dark {
      background: var(--charcoal);
      color: var(--cream);
      border: 2px solid var(--charcoal);
    }

    .btn-dark:hover {
      background: transparent;
      color: var(--charcoal);
    }

    .btn-outline {
      background: transparent;
      color: var(--charcoal);
      border: 2px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--sand);
      color: var(--sand-dk);
    }

    .btn-sand {
      background: var(--sand);
      color: var(--charcoal);
      border: 2px solid var(--sand);
    }

    .btn-sand:hover {
      background: var(--sand-dk);
      border-color: var(--sand-dk);
      color: #fff;
    }

    .divider {
      height: 1px;
      background: var(--border);
      margin: 0 80px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── HERO ── */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: calc(100vh - var(--nav-h));
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 60px 80px 80px;
    }

    .hero-right {
      position: relative;
      overflow: hidden;
    }

    .hero-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }

    .hero-right::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--cream) 0%, transparent 25%);
    }

    .hero-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .tag {
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 500;
      padding: 5px 14px;
      border-radius: 50px;
      border: 1px solid var(--border);
      color: var(--soft);
    }

    .tag.highlight {
      border-color: var(--sand);
      color: var(--sand-dk);
      background: rgba(201, 169, 110, 0.08);
    }

    .hero-sub {
      font-size: 19px;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: var(--soft);
      margin-bottom: 26px;
    }

    .hero-desc {
      font-size: 16px;
      color: var(--mid);
      line-height: 1.8;
      max-width: 430px;
      margin-bottom: 38px;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero-float {
      position: absolute;
      bottom: 36px;
      left: 36px;
      z-index: 10;
      background: rgba(250, 248, 244, 0.95);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px 22px;
    }

    .hero-float .fl {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--soft);
      margin-bottom: 3px;
    }

    .hero-float .fv {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--charcoal);
    }

    /* ── NEWSLETTER STRIP ── */
    .nl-strip {
      background: var(--charcoal);
      padding: 50px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    .nl-strip-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: var(--cream);
      margin-bottom: 6px;
    }

    .nl-strip-left p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* KIT FORM OVERRIDES — keep our fonts/style */
    .kit-wrap {
      max-width: 500px;
    }

    .kit-wrap .formkit-form {
      box-shadow: none !important;
      background: transparent !important;
      border-radius: 0 !important;
      max-width: 100% !important;
    }

    .kit-wrap .formkit-form [data-style="full"] {
      display: flex !important;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .kit-wrap .formkit-form .formkit-column {
      padding: 0 !important;
      background: transparent !important;
      border: none !important;
    }

    .kit-wrap .formkit-form .formkit-column:nth-child(2) {
      border-top: none !important;
    }

    .kit-wrap .formkit-form .formkit-header,
    .kit-wrap .formkit-form .formkit-subheader,
    .kit-wrap .formkit-form .formkit-image {
      display: none !important;
    }

    .kit-wrap .formkit-form .formkit-field {
      margin: 0 !important;
    }

    .kit-wrap .formkit-form .formkit-input {
      padding: 13px 22px !important;
      border-radius: 50px !important;
      border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
      background: rgba(255, 255, 255, 0.07) !important;
      color: #fff !important;
      font-family: 'DM Sans', sans-serif !important;
      font-size: 14px !important;
      min-width: 220px !important;
    }

    .kit-wrap .formkit-form .formkit-input::placeholder {
      color: rgba(255, 255, 255, 0.4) !important;
    }

    .kit-wrap .formkit-form .formkit-submit {
      padding: 0 !important;
      border-radius: 50px !important;
      background: var(--sand) !important;
      font-family: 'DM Sans', sans-serif !important;
      font-size: 14px !important;
      font-weight: 600 !important;
      border: none !important;
      cursor: pointer !important;
    }

    .kit-wrap .formkit-form .formkit-submit>span {
      padding: 13px 26px !important;
    }

    .kit-wrap .formkit-form .formkit-submit:hover>span {
      background: rgba(0, 0, 0, 0.15) !important;
    }

    .kit-wrap .formkit-form .formkit-guarantee {
      display: none !important;
    }

    .kit-wrap .formkit-form .formkit-powered-by-convertkit-container {
      display: none !important;
    }

    .kit-wrap .formkit-form .formkit-alert {
      margin: 8px 0 0 !important;
      background: rgba(255, 255, 255, 0.1) !important;
      border-color: rgba(255, 255, 255, 0.2) !important;
      color: rgba(255, 255, 255, 0.8) !important;
    }

    /* Newsletter page big form */
    .nl-big-wrap {
      max-width: 420px;
      margin-top: 32px;
    }

    .nl-big-wrap .formkit-form {
      box-shadow: none !important;
      background: transparent !important;
      border-radius: 0 !important;
      max-width: 100% !important;
    }

    .nl-big-wrap .formkit-form [data-style="full"] {
      display: block !important;
    }

    .nl-big-wrap .formkit-form .formkit-column {
      padding: 0 !important;
      background: transparent !important;
      border: none !important;
    }

    .nl-big-wrap .formkit-form .formkit-column:nth-child(2) {
      border-top: none !important;
    }

    .nl-big-wrap .formkit-form .formkit-header,
    .nl-big-wrap .formkit-form .formkit-subheader,
    .nl-big-wrap .formkit-form .formkit-image {
      display: none !important;
    }

    .nl-big-wrap .formkit-form .formkit-field {
      margin-bottom: 12px !important;
    }

    .nl-big-wrap .formkit-form .formkit-input {
      width: 100% !important;
      padding: 14px 22px !important;
      border-radius: 50px !important;
      border: 2px solid var(--border) !important;
      background: var(--warm) !important;
      font-family: 'DM Sans', sans-serif !important;
      font-size: 15px !important;
      color: var(--charcoal) !important;
      outline: none !important;
    }

    .nl-big-wrap .formkit-form .formkit-submit {
      width: 100% !important;
      border-radius: 50px !important;
      border: none !important;
      background: var(--sand) !important;
      color: var(--charcoal) !important;
      font-family: 'DM Sans', sans-serif !important;
      font-size: 15px !important;
      font-weight: 600 !important;
      cursor: pointer !important;
    }

    .nl-big-wrap .formkit-form .formkit-submit>span {
      padding: 14px !important;
    }

    .nl-big-wrap .formkit-form .formkit-submit:hover>span {
      background: rgba(0, 0, 0, 0.12) !important;
    }

    .nl-big-wrap .formkit-form .formkit-guarantee {
      color: var(--soft) !important;
      font-size: 12px !important;
      text-align: center !important;
      margin-top: 8px !important;
      font-family: 'DM Sans', sans-serif !important;
    }

    .nl-big-wrap .formkit-form .formkit-powered-by-convertkit-container {
      display: none !important;
    }

    /* ── WHAT GRID ── */
    .what-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .what-card {
      background: var(--warm);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 28px;
      transition: all 0.3s;
    }

    .what-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.07);
      border-color: var(--sand-lt);
    }

    .what-card .ico {
      font-size: 34px;
      margin-bottom: 16px;
    }

    .what-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      margin-bottom: 8px;
    }

    .what-card p {
      font-size: 14px;
      color: var(--soft);
      line-height: 1.7;
    }

    /* ── POSTS GRID ── */
    .posts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }

    .post-card {
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      background: #fff;
      transition: all 0.3s;
      cursor: pointer;
    }

    .post-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
      border-color: var(--sand-lt);
    }

    .post-card-img {
      width: 100%;
      height: 170px;
      overflow: hidden;
      background: var(--warm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 44px;
    }

    .post-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    .post-card-body {
      padding: 20px;
    }

    .post-tag {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sand);
      margin-bottom: 8px;
      font-weight: 500;
    }

    .post-card-body h4 {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      line-height: 1.3;
      margin-bottom: 8px;
    }

    .post-card-body p {
      font-size: 13px;
      color: var(--soft);
      line-height: 1.6;
    }

    .post-card-foot {
      padding: 12px 20px;
      border-top: 1px solid var(--border);
      font-size: 11px;
      color: var(--soft);
      display: flex;
      justify-content: space-between;
    }

    /* ── ABOUT ── */
    .about-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 80px;
    }

    .about-photo-main {
      border-radius: 20px;
      overflow: hidden;
      height: 560px;
      position: relative;
    }

    .about-photo-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    .about-quick {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 36px 0;
    }

    .aq-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 13px 18px;
      background: var(--warm);
      border-radius: 10px;
      border-left: 3px solid var(--sand);
    }

    .aq-item .aq-ico {
      font-size: 20px;
    }

    .aq-item .aq-txt {
      font-size: 14px;
      color: var(--charcoal);
    }

    .dual-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .dual-col {
      padding: 80px;
    }

    .dual-col:first-child {
      border-right: 1px solid var(--border);
    }

    .dual-col h2 {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      margin-bottom: 16px;
    }

    .dual-col p {
      font-size: 15px;
      color: var(--mid);
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .skill-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }

    .pill {
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 500;
      background: var(--warm);
      border: 1px solid var(--border);
      color: var(--mid);
    }

    .pill.active {
      background: var(--sand);
      border-color: var(--sand);
      color: var(--charcoal);
    }

    /* ── TIMELINE ── */
    .timeline-section {
      background: var(--warm);
      padding: 80px;
    }

    .tl-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      margin-bottom: 60px;
    }

    .tl-short-version h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      margin-bottom: 14px;
      color: var(--charcoal);
    }

    .tl-short-version p {
      font-size: 15px;
      color: var(--mid);
      line-height: 1.8;
      margin-bottom: 10px;
    }

    .timeline {
      position: relative;
      padding-left: 40px;
      margin-top: 20px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 11px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--border);
    }

    .tl-item {
      position: relative;
      margin-bottom: 48px;
    }

    .tl-dot {
      position: absolute;
      left: -40px;
      top: 4px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--cream);
      border: 2px solid var(--sand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }

    .tl-item h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      margin-bottom: 6px;
      color: var(--charcoal);
    }

    .tl-item .tl-date {
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sand);
      margin-bottom: 8px;
      font-weight: 500;
    }

    .tl-item p {
      font-size: 14px;
      color: var(--mid);
      line-height: 1.75;
    }

    .tl-photo {
      margin: 24px 0;
      border-radius: 14px;
      overflow: hidden;
      height: 280px;
    }

    .tl-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    /* ── PHOTO CARD ── */
    .photo-card {
      margin: 36px 0 16px;
      border-radius: 24px;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .photo-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
    }

    .photo-card-img {
      width: 100%;
      height: 460px;
      overflow: hidden;
    }

    .photo-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
      transition: transform 0.5s ease;
    }

    .photo-card:hover .photo-card-img img {
      transform: scale(1.03);
    }

    .photo-card-caption {
      padding: 20px 26px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--border);
    }

    .photo-card-caption .cap-icon {
      font-size: 15px;
      flex-shrink: 0;
    }

    .photo-card-caption .cap-year {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sand);
      font-weight: 600;
      margin-right: 4px;
      flex-shrink: 0;
    }

    .photo-card-caption .cap-text {
      font-size: 13px;
      color: var(--soft);
      font-style: italic;
      line-height: 1.5;
    }

    /* ── ARTICLES ── */
    .articles-hero {
      background: var(--charcoal);
      padding: 80px;
      color: var(--cream);
    }

    .articles-hero .big-title {
      color: var(--cream);
    }

    .articles-hero .big-title em {
      color: var(--sand);
    }

    .articles-hero p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.55);
      max-width: 520px;
    }

    .article-cats {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      padding: 30px 80px;
      border-bottom: 1px solid var(--border);
    }

    .cat-btn {
      padding: 7px 18px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 500;
      border: 1.5px solid var(--border);
      color: var(--soft);
      cursor: pointer;
      transition: all 0.2s;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
    }

    .cat-btn:hover,
    .cat-btn.active {
      border-color: var(--sand);
      color: var(--charcoal);
      background: rgba(201, 169, 110, 0.1);
    }

    .articles-list {
      padding: 48px 80px 80px;
    }

    .article-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 24px;
      align-items: start;
      padding: 26px 0;
      border-bottom: 1px solid var(--border);
      transition: all 0.2s;
      cursor: pointer;
      border-radius: 8px;
    }

    .article-row:hover {
      background: var(--warm);
      padding: 26px 16px;
      margin: 0 -16px;
    }

    .article-num {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--border);
      min-width: 48px;
      text-align: center;
      padding-top: 4px;
    }

    .article-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      margin-bottom: 6px;
    }

    .article-body .article-excerpt {
      font-size: 13px;
      color: var(--soft);
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .article-body .article-content {
      font-size: 14px;
      color: var(--mid);
      line-height: 1.75;
      display: none;
      padding-top: 10px;
      border-top: 1px solid var(--border);
      margin-top: 10px;
    }

    .article-body .read-more-btn {
      font-size: 12px;
      color: var(--sand-dk);
      cursor: pointer;
      font-weight: 500;
      border: none;
      background: none;
      font-family: 'DM Sans', sans-serif;
      padding: 0;
    }

    .article-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
      min-width: 110px;
    }

    .article-cat-tag {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sand);
      font-weight: 500;
    }

    .article-time {
      font-size: 12px;
      color: var(--soft);
    }

    /* ── NEWSLETTER PAGE ── */
    .nl-page-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 80px;
    }

    .nl-photo {
      border-radius: 20px;
      overflow: hidden;
      height: 500px;
    }

    .nl-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    .nl-posts-section {
      background: var(--warm);
      padding: 80px;
    }

    .nl-posts {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .nl-post-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: start;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      cursor: pointer;
    }

    .nl-post-row:hover h4 {
      color: var(--sand-dk);
    }

    .nl-post-row h4 {
      font-family: 'Playfair Display', serif;
      font-size: 19px;
      margin-bottom: 8px;
      transition: color 0.2s;
    }

    .nl-post-row p {
      font-size: 13px;
      color: var(--mid);
      line-height: 1.7;
    }

    .nl-post-row .arrow {
      font-size: 20px;
      color: var(--border);
      padding-top: 4px;
    }

    .nl-post-content {
      font-size: 14px;
      color: var(--mid);
      line-height: 1.75;
      display: none;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      margin-top: 12px;
    }

    .nl-read-btn {
      font-size: 12px;
      color: var(--sand-dk);
      cursor: pointer;
      font-weight: 500;
      border: none;
      background: none;
      font-family: 'DM Sans', sans-serif;
      padding: 4px 0 0;
      display: block;
    }

    /* ── TOOLKIT ── */
    .toolkit-hero {
      background: var(--charcoal);
      padding: 80px;
      color: var(--cream);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .toolkit-hero .big-title {
      color: var(--cream);
    }

    .toolkit-hero .big-title em {
      color: var(--sand);
    }

    .toolkit-hero p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.8;
    }

    .tools-section {
      padding: 60px 80px 80px;
    }

    .tools-cat-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--sand);
      display: inline-block;
    }

    .tools-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 60px;
    }

    .tool-card {
      background: var(--warm);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
      transition: all 0.3s;
    }

    .tool-card:hover {
      border-color: var(--sand);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    .tool-card .t-ico {
      font-size: 28px;
      margin-bottom: 12px;
    }

    .tool-card h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .tool-card p {
      font-size: 13px;
      color: var(--soft);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .tool-card a {
      font-size: 12px;
      color: var(--sand-dk);
      font-weight: 500;
      border-bottom: 1px solid var(--sand-lt);
    }

    .notion-cta {
      background: var(--warm);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 48px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      margin: 0 80px 80px;
    }

    .notion-cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      margin-bottom: 10px;
    }

    .notion-cta p {
      font-size: 15px;
      color: var(--mid);
    }

    /* ── DONATE ── */
    .donate-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: calc(100vh - var(--nav-h));
    }

    .donate-left {
      padding: 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .donate-quote {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-style: italic;
      color: var(--charcoal);
      border-left: 4px solid var(--sand);
      padding-left: 24px;
      margin: 28px 0;
      line-height: 1.55;
    }

    .donate-body {
      font-size: 15px;
      color: var(--mid);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .donate-stats {
      display: flex;
      gap: 20px;
      margin: 28px 0;
      flex-wrap: wrap;
    }

    .d-stat {
      background: var(--warm);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px 22px;
      text-align: center;
    }

    .d-stat .dv {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--sand-dk);
    }

    .d-stat .dl {
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--soft);
      margin-top: 3px;
    }

    .donate-right {
      position: relative;
      overflow: hidden;
    }

    .donate-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .donate-right::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--charcoal);
      color: var(--cream);
      padding: 60px 80px 36px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 28px;
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      font-weight: 700;
      color: var(--sand);
      margin-bottom: 10px;
    }

    .footer-tagline {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.7;
      max-width: 220px;
    }

    .footer-socials {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }

    .soc {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
      transition: all 0.2s;
    }

    .soc:hover {
      background: var(--sand);
      color: var(--charcoal);
      border-color: var(--sand);
    }

    .footer-col h4 {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sand);
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 10px;
    }

    .footer-col a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--sand-lt);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.28);
    }

    /* ── PHOTOS GRID ── */
    .photos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      padding: 0 80px 80px;
    }

    .photos-grid img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 14px;
    }

    .photos-grid img:first-child {
      grid-column: 1/3;
      height: 360px;
    }

    /* ── MOBILE ── */
    @media(max-width:960px) {
      #topnav {
        padding: 0 20px;
      }

      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .section {
        padding: 50px 24px;
      }

      .divider {
        margin: 0 24px;
      }

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

      .hero-left {
        padding: 60px 24px 40px;
      }

      .hero-right {
        height: 360px;
      }

      .nl-strip {
        padding: 40px 24px;
        flex-direction: column;
        align-items: flex-start;
      }

      .what-grid,
      .posts-grid {
        grid-template-columns: 1fr;
      }

      .about-hero {
        grid-template-columns: 1fr;
        padding: 50px 24px;
        gap: 40px;
      }

      .dual-section {
        grid-template-columns: 1fr;
      }

      .dual-col {
        padding: 50px 24px;
      }

      .dual-col:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .timeline-section {
        padding: 50px 24px;
      }

      .tl-intro {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .photos-grid {
        padding: 0 24px 60px;
        grid-template-columns: 1fr 1fr;
      }

      .photos-grid img:first-child {
        grid-column: 1/-1;
      }

      .articles-hero,
      .articles-list,
      .article-cats {
        padding: 50px 24px;
      }

      .article-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .article-num {
        font-size: 24px;
      }

      .nl-page-hero {
        grid-template-columns: 1fr;
        padding: 50px 24px;
        gap: 40px;
      }

      .nl-posts-section {
        padding: 50px 24px;
      }

      .toolkit-hero {
        grid-template-columns: 1fr;
        padding: 50px 24px;
        gap: 30px;
      }

      .tools-section {
        padding: 40px 24px 60px;
      }

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

      .notion-cta {
        grid-template-columns: 1fr;
        margin: 0 24px 60px;
        padding: 32px;
      }

      .donate-hero {
        grid-template-columns: 1fr;
      }

      .donate-left {
        padding: 50px 24px;
      }

      .donate-right {
        height: 340px;
      }

      .donate-right::after {
        background: linear-gradient(to top, var(--cream) 0%, transparent 30%);
      }

      footer {
        padding: 50px 24px 28px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
      }
    }
    /* ── CALENDAR ── */
    .cal-page-hero {
      background: var(--charcoal);
      padding: 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .cal-page-hero h1 { color: var(--cream); }
    .cal-page-hero h1 em { color: var(--sand); }
    .cal-page-hero p { color: rgba(255,255,255,0.55); font-size:16px; line-height:1.8; margin-top:16px; }
    .cal-hero-right { display:flex; flex-direction:column; gap:14px; }
    .cal-stat {
      display:flex; align-items:center; gap:14px;
      background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08);
      border-radius:12px; padding:16px 20px;
    }
    .cal-stat .cs-ico { font-size:24px; }
    .cal-stat .cs-lbl { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:3px; }
    .cal-stat .cs-val { font-family:"Playfair Display",serif; font-size:17px; color:var(--cream); }
    .cal-section { padding: 60px 80px 80px; background: var(--cream); }
    .cal-controls {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border);
      flex-wrap: wrap; gap: 16px;
    }
    .cal-month-title { font-family: "Playfair Display", serif; font-size: 36px; font-weight: 700; color: var(--charcoal); }
    .cal-month-title em { font-style: italic; color: var(--sand); }
    .cal-month-sub { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--soft); margin-top:4px; }
    .cal-nav-group { display:flex; gap:8px; align-items:center; }
    .cal-nav-btn {
      width:40px; height:40px; border-radius:50%;
      border:1.5px solid var(--border); background:transparent;
      cursor:pointer; font-size:17px; color:var(--sand);
      display:flex; align-items:center; justify-content:center;
      transition:all 0.2s; font-family:inherit;
    }
    .cal-nav-btn:hover { border-color:var(--sand); background:rgba(201,169,110,0.08); }
    .cal-today-btn {
      padding:0 20px; height:40px; border-radius:50px;
      border:1.5px solid var(--border); background:transparent;
      cursor:pointer; font-size:13px; font-weight:500; color:var(--mid);
      transition:all 0.2s; font-family:"DM Sans",sans-serif; letter-spacing:0.2px;
    }
    .cal-today-btn:hover { border-color:var(--sand); color:var(--sand-dk); background:rgba(201,169,110,0.06); }
    .cal-add-row { display:flex; gap:10px; margin-bottom:28px; align-items:center; flex-wrap:wrap; }
    .cal-add-row input {
      flex:1; min-width:200px; padding:11px 18px; border-radius:50px;
      border:1.5px solid var(--border); background:var(--warm);
      font-family:"DM Sans",sans-serif; font-size:14px; color:var(--charcoal);
      outline:none; transition:border-color 0.2s;
    }
    .cal-add-row input:focus { border-color:var(--sand); }
    .cal-add-row input::placeholder { color:var(--soft); font-style:italic; }
    .cal-color-pick { display:flex; gap:6px; align-items:center; }
    .cal-cp { width:18px; height:18px; border-radius:50%; cursor:pointer; border:2.5px solid transparent; transition:border-color 0.15s; }
    .cal-cp.active { border-color:var(--charcoal); }
    .cal-cp.g1 { background:#c9a96e; }
    .cal-cp.g2 { background:#6e9e8a; }
    .cal-cp.g3 { background:#9a7ab4; }
    .cal-add-submit {
      padding:11px 22px; border-radius:50px;
      border:1.5px solid var(--border); background:transparent;
      cursor:pointer; font-size:13px; font-weight:500; color:var(--mid);
      transition:all 0.2s; font-family:"DM Sans",sans-serif; white-space:nowrap;
    }
    .cal-add-submit:hover { border-color:var(--sand); background:var(--sand); color:var(--charcoal); }
    .cal-weekdays-row { display:grid; grid-template-columns:repeat(7,1fr); gap:1px; margin-bottom:2px; }
    .cal-wd { text-align:center; font-size:10px; letter-spacing:2.5px; text-transform:uppercase; font-weight:600; color:var(--soft); padding:6px 0 12px; }
    .cal-wd.wknd { color:var(--sand-dk); }
    .cal-grid {
      display:grid; grid-template-columns:repeat(7,1fr); gap:1px;
      background:var(--border); border:1px solid var(--border); border-radius:16px; overflow:hidden;
    }
    .cal-cell { background:var(--cream); min-height:96px; padding:10px 10px 8px; cursor:pointer; position:relative; transition:background 0.15s; display:flex; flex-direction:column; gap:4px; }
    .cal-cell:hover { background:rgba(201,169,110,0.07); }
    .cal-cell.other { background:var(--warm); }
    .cal-cell.other .cal-day-n { color:rgba(78,72,64,0.25); }
    .cal-cell.is-today { background:var(--charcoal); }
    .cal-cell.is-today .cal-day-n { color:var(--cream); }
    .cal-cell.is-today:hover { background:#252118; }
    .cal-cell.wknd:not(.is-today) { background:rgba(201,169,110,0.04); }
    .cal-cell.is-selected:not(.is-today) { outline:2px solid var(--sand); outline-offset:-2px; }
    .cal-day-n { font-family:"Playfair Display",serif; font-size:16px; font-weight:700; color:var(--charcoal); line-height:1; margin-bottom:2px; }
    .cal-cell.is-today .cal-day-n::after { content:""; display:block; width:16px; height:2px; background:var(--sand); border-radius:2px; margin-top:4px; }
    .cal-event { font-size:11px; font-weight:500; line-height:1.35; padding:3px 7px; border-radius:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
    .cal-event.c1 { background:rgba(201,169,110,0.15); color:#7a5f28; border-left:2px solid #c9a96e; }
    .cal-event.c2 { background:rgba(110,158,138,0.15); color:#2e6e58; border-left:2px solid #6e9e8a; }
    .cal-event.c3 { background:rgba(154,122,180,0.15); color:#5c3a8a; border-left:2px solid #9a7ab4; }
    .cal-legend { display:flex; gap:20px; flex-wrap:wrap; margin-top:24px; padding-top:18px; border-top:1px solid var(--border); }
    .cal-leg-item { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--soft); }
    .cal-leg-dot { width:14px; height:3px; border-radius:2px; }
    @media(max-width:768px) {
      .cal-page-hero { grid-template-columns:1fr; padding:50px 24px; }
      .cal-section { padding:40px 24px 60px; }
      .cal-cell { min-height:64px; padding:6px 5px; }
      .cal-day-n { font-size:13px; }
      .cal-event { font-size:10px; }
      .cal-month-title { font-size:26px; }
    }
