:root {
    --green-deep: #0F2318;
    --green-primary: #1B3A2D;
    --green-mid: #2A5040;
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-pale: #F2E0A8;
    --cream: #F5F0E8;
    --cream-dark: #EDE5D5;
    --white: #FAFAF7;
    --text-dark: #0F1A13;
    --text-mid: #3A3A35;
    --text-light: #7A7A72;
  }

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

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
  }

  .page-wrapper {
    padding-top: 80px; /* Accounts for fixed nav height */
  }

  /* ─── TYPOGRAPHY ─── */
  h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
  h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 600; }
  h2 { font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 600; }
  h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 500; }

  .display-italic { font-family: 'Playfair Display', serif; font-style: italic; }
  .gold { color: var(--gold); }
  .cream-text { color: var(--cream); }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 4%;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
    background: rgba(15, 35, 24, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.4s ease;
  }
  nav.scrolled {
    height: 68px;
    background: rgba(15, 35, 24, 0.98);
    border-bottom-color: rgba(201, 168, 76, 0.35);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }
  .nav-logo-text {
    display: flex; flex-direction: column; line-height: 1;
  }
  .nav-logo-text span:first-child {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem; font-weight: 400;
    letter-spacing: 0.18em; color: var(--gold);
    text-transform: uppercase;
  }
  .nav-logo-text span:last-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 700;
    letter-spacing: 0.05em; color: var(--cream);
    text-transform: uppercase;
  }

  .nav-links {
    display: flex; align-items: center; gap: 20px;
    list-style: none;
  }
  .nav-links a {
    color: rgba(245, 240, 232, 0.75);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
    cursor: pointer;
  }
  .nav-links a:hover { color: var(--gold); }

  /* Dropdown Styles */
  .nav-dropdown {
    position: relative;
  }
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 35, 24, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.3);
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown-menu li {
    list-style: none;
  }
  .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.8);
  }
  .dropdown-menu a:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
  }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 9px 22px;
    font-size: 0.78rem !important;
    letter-spacing: 0.14em !important;
    transition: all 0.3s !important;
  }
  .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--green-deep) !important;
  }

  .hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 26px; height: 1.5px;
    background: var(--gold);
    transition: all 0.3s;
  }

  /* ─── SECTIONS / PAGE SYSTEM ─── */
  /* .page { display: none; } */
  /* .page.active { display: block; } */

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: var(--green-deep);
    position: relative;
    display: flex; flex-direction: column;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('../assets/hero_bg.png');
    background-size: cover; background-position: center top;
    opacity: 0.18;
  }

  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      135deg,
      rgba(15, 35, 24, 0.97) 0%,
      rgba(15, 35, 24, 0.7) 50%,
      rgba(15, 35, 24, 0.85) 100%
    );
  }

  .hero-texture {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .hero-content {
    position: relative; z-index: 2;
    flex: 1;
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 8% 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-eyebrow {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 28px;
    animation: fadeUp 1s ease 0.2s both;
  }
  .hero-eyebrow span {
    font-size: 0.72rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 400;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    display: block; height: 1px;
    background: var(--gold); opacity: 0.5;
  }
  .hero-eyebrow::before { width: 40px; }
  .hero-eyebrow::after { width: 20px; }

  .hero h1 {
    color: var(--cream);
    max-width: 780px;
    margin-bottom: 28px;
    animation: fadeUp 1s ease 0.4s both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
  }

  .hero-sub {
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.7);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 48px;
    font-weight: 300;
    animation: fadeUp 1s ease 0.6s both;
  }

  .hero-ctas {
    display: flex; gap: 18px; flex-wrap: wrap;
    animation: fadeUp 1s ease 0.8s both;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--green-deep);
    padding: 16px 36px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none; cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-primary:hover::after { transform: translateX(0); }

  .btn-outline {
    background: transparent;
    color: var(--cream);
    padding: 15px 36px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(245, 240, 232, 0.4);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
  }
  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  .hero-stats {
    position: relative; z-index: 2;
    display: flex; gap: 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    animation: fadeUp 1s ease 1s both;
  }
  .stat {
    flex: 1; padding: 30px 8%;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
  }
  .stat:last-child { border-right: none; }
  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 600;
    color: var(--gold); line-height: 1;
    display: block;
  }
  .stat-label {
    font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
    display: block; margin-top: 6px;
    font-weight: 300;
  }

  /* ─── EVENT BANNER ─── */
  .event-banner {
    background: var(--gold);
    padding: 14px 5%;
    display: flex; align-items: center; justify-content: center; gap: 20px;
    flex-wrap: wrap;
  }
  .event-banner p {
    font-size: 0.82rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--green-deep);
    font-weight: 600;
  }
  .event-banner .event-dot {
    width: 5px; height: 5px;
    background: var(--green-deep);
    border-radius: 50%; opacity: 0.5;
  }
  .event-banner .btn-event {
    background: var(--green-deep);
    color: var(--gold);
    padding: 8px 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
  }
  .event-banner .btn-event:hover { opacity: 0.85; }

  /* ─── SECTION BASE ─── */
  .section { padding: 100px 8%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-label {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
  }
  .section-label::before {
    content: '';
    display: block; width: 30px; height: 1px;
    background: var(--gold);
  }
  .section-label span {
    font-size: 0.72rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 400;
  }

  /* ─── REALITY SECTION ─── */
  .reality {
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .reality::before {
    content: '"';
    position: absolute; top: -60px; left: -20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 25rem; font-weight: 700;
    color: rgba(201, 168, 76, 0.07);
    line-height: 1;
    pointer-events: none;
  }

  .reality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .reality-left h2 {
    color: var(--green-deep);
    margin-bottom: 28px;
  }
  .reality-left p {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 24px;
  }

  .reality-cards {
    display: flex; flex-direction: column; gap: 16px;
  }
  .reality-card {
    background: var(--white);
    padding: 22px 28px;
    border-left: 3px solid var(--gold);
    position: relative;
  }
  .reality-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 6px;
  }
  .reality-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
  }

  .reality-visual {
    position: relative;
  }
  .reality-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
  }
  .reality-quote {
    position: absolute;
    bottom: -30px; left: -30px;
    background: var(--green-primary);
    padding: 28px 32px;
    max-width: 320px;
    border-top: 3px solid var(--gold);
  }
  .reality-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--cream);
    line-height: 1.5;
    font-style: italic;
  }
  .reality-quote cite {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 12px;
    font-style: normal;
  }

  /* ─── PILLARS ─── */
  .pillars {
    background: var(--green-deep);
    position: relative;
  }
  .pillars-header {
    text-align: center;
    margin-bottom: 70px;
  }
  .pillars-header h2 { color: var(--cream); }
  .pillars-header p {
    color: rgba(245, 240, 232, 0.6);
    font-size: 1rem;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.8;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .pillar-card {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    cursor: pointer;
  }

  .pillar-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.6s ease;
  }
  .pillar-card:hover .pillar-card-bg { transform: scale(1.05); }

  .pillar-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to top,
      rgba(15, 35, 24, 0.96) 0%,
      rgba(15, 35, 24, 0.5) 50%,
      rgba(15, 35, 24, 0.2) 100%
    );
    transition: background 0.4s ease;
  }
  .pillar-card:hover .pillar-card-overlay {
    background: linear-gradient(
      to top,
      rgba(15, 35, 24, 0.98) 0%,
      rgba(15, 35, 24, 0.7) 60%,
      rgba(15, 35, 24, 0.4) 100%
    );
  }

  .pillar-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 36px;
  }

  .pillar-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--gold); letter-spacing: 0.2em;
    margin-bottom: 12px; display: block;
    text-transform: uppercase;
  }

  .pillar-content h3 {
    color: var(--cream);
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 14px;
  }

  .pillar-content p {
    color: rgba(245, 240, 232, 0.65);
    font-size: 0.9rem;
    line-height: 1.75;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
    max-height: 0;
    overflow: hidden;
  }
  .pillar-card:hover .pillar-content p {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
  }

  .pillar-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold);
    font-size: 0.78rem; letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    background: none; border: none;
    text-decoration: none;
  }
  .pillar-link::after {
    content: '→';
    transition: transform 0.3s;
  }
  .pillar-link:hover::after { transform: translateX(4px); }
  .pillar-card:hover .pillar-link { opacity: 1; }

  /* ─── WHAT WE DO ─── */
  .what-we-do { background: var(--white); }
  .what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .what-visual {
    position: relative;
  }
  .what-img-stack {
    position: relative;
    height: 560px;
  }
  .what-img-main {
    position: absolute;
    width: 75%; height: 420px;
    object-fit: cover;
    right: 0; top: 0;
  }
  .what-img-secondary {
    position: absolute;
    width: 55%; height: 280px;
    object-fit: cover;
    left: 0; bottom: 0;
    border: 6px solid var(--white);
  }
  .what-img-accent {
    position: absolute;
    bottom: 60px; right: -20px;
    background: var(--gold);
    padding: 22px 26px;
  }
  .what-img-accent span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 700;
    color: var(--green-deep);
    display: block; line-height: 1;
  }
  .what-img-accent small {
    font-size: 0.7rem; letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-deep);
    font-weight: 600;
  }

  .what-text h2 {
    color: var(--green-deep);
    margin-bottom: 24px;
  }
  .what-text > p {
    color: var(--text-mid);
    font-size: 1rem; line-height: 1.85;
    margin-bottom: 36px;
  }
  .what-points { list-style: none; }
  .what-points li {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.6;
  }
  .what-points li::before {
    content: '';
    display: block;
    width: 22px; height: 22px;
    min-width: 22px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 2px;
  }

  /* ─── UPCOMING EVENT SECTION ─── */
  .upcoming-event {
    background: var(--green-primary);
    position: relative;
    overflow: hidden;
  }
  .upcoming-event::before {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 45%;
    background-image: url('../assets/pillar_parents.png');
    background-size: cover; background-position: center top;
    opacity: 0.25;
  }

  .event-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative; z-index: 1;
  }

  .event-info .event-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--green-deep);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 16px;
    margin-bottom: 24px;
  }

  .event-info h2 {
    color: var(--cream);
    margin-bottom: 12px;
  }
  .event-info .event-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    color: var(--gold);
    line-height: 1.2;
    display: block;
    margin-bottom: 8px;
  }
  .event-info .event-tagline {
    color: rgba(245, 240, 232, 0.6);
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .event-details {
    display: flex; flex-direction: column; gap: 16px;
    margin-bottom: 40px;
  }
  .event-detail {
    display: flex; align-items: center; gap: 16px;
  }
  .event-detail-icon {
    width: 44px; height: 44px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .event-detail-text strong {
    display: block;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  .event-detail-text span {
    color: var(--cream);
    font-size: 0.95rem;
  }

  .event-features {
    display: flex; gap: 24px; flex-wrap: wrap;
  }
  .event-feature {
    display: flex; align-items: center; gap: 8px;
    color: rgba(245, 240, 232, 0.65);
    font-size: 0.82rem;
  }
  .event-feature::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%;
    flex-shrink: 0;
  }

  .event-card {
    background: var(--white);
    padding: 44px 40px;
  }
  .event-card h3 {
    color: var(--green-deep);
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  .event-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .event-outcomes {
    list-style: none;
    margin-bottom: 32px;
  }
  .event-outcomes li {
    display: flex; gap: 12px;
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--text-mid);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    align-items: center;
  }
  .event-outcomes li::before {
    content: '✦';
    color: var(--gold); font-size: 0.65rem;
    flex-shrink: 0;
  }
  .event-hybrid-badge {
    display: flex; gap: 12px;
    margin-bottom: 28px;
  }
  .badge {
    flex: 1;
    background: var(--green-deep);
    color: var(--cream);
    text-align: center;
    padding: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .badge span {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
  }

  /* ─── WHY NUCLEUS ─── */
  .why {
    background: var(--cream);
    text-align: center;
  }
  .why h2 {
    color: var(--green-deep);
    max-width: 700px;
    margin: 0 auto 20px;
  }
  .why > .section-inner > p {
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 60px;
    line-height: 1.8;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
  }
  .why-item {
    text-align: left;
    padding: 32px 28px;
    background: var(--white);
    border-top: 3px solid var(--gold);
    transition: transform 0.3s;
  }
  .why-item:hover { transform: translateY(-4px); }
  .why-icon {
    font-size: 1.8rem; margin-bottom: 20px; display: block;
  }
  .why-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 10px;
  }
  .why-item p {
    font-size: 0.87rem;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* ─── TESTIMONIALS / QUOTE ─── */
  .testimonials {
    background: var(--green-deep);
    padding: 100px 8%;
  }
  .testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .testimonial-inner { position: relative; }
  .testimonial {
    display: none;
  }
  .testimonial.active { display: block; }

  .testimonial-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem; line-height: 0.8;
    color: var(--gold); opacity: 0.3;
    display: block; margin-bottom: -20px;
  }
  .testimonial blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--cream);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 32px;
  }
  .testimonial-author {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .testimonial-dots {
    display: flex; justify-content: center; gap: 10px;
    margin-top: 36px;
  }
  .t-dot {
    width: 8px; height: 8px;
    background: rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
  }
  .t-dot.active { background: var(--gold); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--green-deep);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 80px 8% 40px;
    color: rgba(245, 240, 232, 0.5);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
  }
  .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 20px 0 28px;
    max-width: 280px;
  }
  .footer-social {
    display: flex; gap: 14px;
  }
  .social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
  }
  .social-link:hover {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
  }

  .footer-col h5 {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li {
    margin-bottom: 10px;
  }
  .footer-col ul li a {
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
    cursor: pointer;
  }
  .footer-col ul li a:hover { color: var(--cream); }

  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 240, 232, 0.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: 0.8rem; }
  .footer-bottom a {
    color: var(--gold); text-decoration: none;
    font-size: 0.8rem;
  }

  /* ─── EXPERIENCES PAGE ─── */
  .experiences-hero {
    background: var(--green-deep);
    padding: 160px 8% 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .experiences-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('../assets/pillar_youth.png');
    background-size: cover; background-position: center;
    opacity: 0.1;
  }
  .experiences-hero .section-label { justify-content: center; }
  .experiences-hero h1 { color: var(--cream); position: relative; z-index: 1; }
  .experiences-hero p {
    color: rgba(245, 240, 232, 0.65);
    max-width: 580px; margin: 24px auto 0;
    font-size: 1rem; line-height: 1.8; position: relative; z-index: 1;
  }

  .exp-section {
    padding: 100px 8%;
  }
  .exp-section:nth-child(even) { background: var(--cream); }

  .exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px; margin: 0 auto;
  }
  .exp-grid.reverse { direction: rtl; }
  .exp-grid.reverse > * { direction: ltr; }

  .exp-visual {
    position: relative;
  }
  .exp-visual img {
    width: 100%; height: 440px;
    object-fit: cover; display: block;
  }
  .exp-visual-label {
    position: absolute; bottom: 0; right: 0;
    background: var(--gold);
    padding: 18px 24px;
  }
  .exp-visual-label span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--green-deep);
    display: block; line-height: 1;
  }
  .exp-visual-label small {
    font-size: 0.68rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--green-primary);
    font-weight: 600;
  }

  .exp-text { }
  .exp-text h2 { color: var(--green-deep); margin-bottom: 18px; }
  .exp-text p { color: var(--text-mid); font-size: 1rem; line-height: 1.8; margin-bottom: 28px; }
  .exp-list { list-style: none; margin-bottom: 36px; }
  .exp-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    display: flex; gap: 14px; align-items: center;
    font-size: 0.9rem; color: var(--text-mid);
  }
  .exp-list li::before {
    content: '✦';
    color: var(--gold); font-size: 0.65rem; flex-shrink: 0;
  }

  /* ─── ABOUT PAGE ─── */
  .about-hero {
    background: var(--cream);
    padding: 160px 8% 100px;
    position: relative;
    overflow: hidden;
  }
  .about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px; margin: 0 auto;
  }
  .about-hero h1 { color: var(--green-deep); }
  .about-hero p { color: var(--text-mid); font-size: 1.05rem; line-height: 1.85; margin-top: 28px; }
  .about-hero-visual {
    position: relative; height: 500px;
  }
  .about-hero-visual img {
    position: absolute;
    object-fit: cover;
  }
  .about-img-1 {
    width: 70%; height: 380px;
    right: 0; top: 0;
  }
  .about-img-2 {
    width: 55%; height: 260px;
    left: 0; bottom: 0;
    border: 5px solid var(--cream);
  }

  .values {
    background: var(--green-deep);
    padding: 100px 8%;
  }
  .values-header { text-align: center; margin-bottom: 60px; }
  .values-header h2 { color: var(--cream); }
  .values-header p { color: rgba(245, 240, 232, 0.55); max-width: 520px; margin: 20px auto 0; line-height: 1.8; }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px; margin: 0 auto;
  }
  .value-card {
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 40px 32px;
    transition: border-color 0.3s;
  }
  .value-card:hover { border-color: var(--gold); }
  .value-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 700;
    color: rgba(201, 168, 76, 0.2);
    line-height: 1; display: block; margin-bottom: 18px;
  }
  .value-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 600;
    color: var(--cream); margin-bottom: 12px;
  }
  .value-card p { font-size: 0.88rem; color: rgba(245, 240, 232, 0.55); line-height: 1.7; }

  /* ─── RESOURCES PAGE ─── */
  .resources-hero {
    background: var(--green-primary);
    padding: 160px 8% 80px;
    text-align: center;
  }
  .resources-hero h1 { color: var(--cream); }
  .resources-hero p { color: rgba(245, 240, 232, 0.6); max-width: 560px; margin: 20px auto 0; line-height: 1.8; }

  .resources-grid {
    padding: 80px 8%;
    max-width: 1200px; margin: 0 auto;
  }

  .resources-filter {
    display: flex; gap: 12px; margin-bottom: 50px; flex-wrap: wrap;
  }
  .filter-btn {
    padding: 9px 22px;
    font-size: 0.78rem; letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(0,0,0,0.15);
    background: transparent;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.3s;
  }
  .filter-btn.active, .filter-btn:hover {
    background: var(--green-primary);
    color: var(--cream);
    border-color: var(--green-primary);
  }

  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .article-card {
    cursor: pointer;
    transition: transform 0.3s;
  }
  .article-card:hover { transform: translateY(-5px); }
  .article-card img {
    width: 100%; height: 220px;
    object-fit: cover; display: block;
  }
  .article-meta {
    display: flex; gap: 14px; align-items: center;
    padding: 18px 0 10px;
  }
  .article-tag {
    font-size: 0.68rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 600;
  }
  .article-date {
    font-size: 0.78rem; color: var(--text-light);
  }
  .article-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 600;
    color: var(--green-deep); margin-bottom: 10px;
    line-height: 1.3;
  }
  .article-card p {
    font-size: 0.87rem; color: var(--text-light);
    line-height: 1.65;
  }

  /* ─── COMMUNITY PAGE ─── */
  .community-hero {
    background: var(--cream);
    padding: 160px 8% 100px;
    position: relative;
  }
  .community-hero::before {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: url('../assets/pillar_leaders.png') center/cover;
    opacity: 0.06;
  }
  .community-hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    position: relative; z-index: 1;
  }
  .community-hero h1 { color: var(--green-deep); }
  .community-hero p { color: var(--text-mid); font-size: 1rem; line-height: 1.85; margin: 24px 0 36px; }

  .community-features {
    padding: 80px 8%;
    background: var(--green-deep);
  }
  .community-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1200px; margin: 0 auto;
  }
  .com-feature {
    background: rgba(255,255,255,0.03);
    padding: 48px 36px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
  }
  .com-feature:hover {
    background: rgba(201, 168, 76, 0.05);
    border-bottom-color: var(--gold);
  }
  .com-feature-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
  .com-feature h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600;
    color: var(--cream); margin-bottom: 12px;
  }
  .com-feature p { font-size: 0.88rem; color: rgba(245, 240, 232, 0.5); line-height: 1.75; }

  /* ─── PARENTING WORKSHOP PAGE ─── */
  .workshop-hero {
    background: var(--green-deep);
    padding: 140px 8% 0;
    position: relative;
    overflow: hidden;
  }
  .workshop-hero::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: url('../assets/hero_bg.png') center/cover;
    opacity: 0.2;
  }
  .workshop-hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end;
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 1;
  }
  .workshop-hero h1 { color: var(--cream); }
  .workshop-hero h1 em {
    font-family: 'Playfair Display', serif;
    font-style: italic; color: var(--gold);
  }
  .workshop-hero p { color: rgba(245, 240, 232, 0.65); font-size: 1rem; line-height: 1.8; margin: 20px 0 36px; }

  .workshop-hero-img {
    align-self: flex-end;
    position: relative;
  }
  .workshop-hero-img img {
    width: 100%; height: 480px;
    object-fit: cover; object-position: top;
    display: block;
  }

  .workshop-details {
    background: var(--white);
    padding: 80px 8%;
  }
  .workshop-details-grid {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 70px;
    max-width: 1200px; margin: 0 auto;
  }

  .workshop-highlights {
    margin-bottom: 40px;
  }
  .workshop-highlights h3 {
    color: var(--green-deep); margin-bottom: 24px;
    font-size: 1.8rem;
  }
  .highlight-items {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .highlight-item {
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.08);
    border-top: 2px solid var(--gold);
  }
  .highlight-item h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 600;
    color: var(--green-deep); margin-bottom: 8px;
  }
  .highlight-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

  .workshop-sidebar {}
  .sidebar-card {
    background: var(--green-deep);
    padding: 36px 32px;
    position: sticky; top: 100px;
  }
  .sidebar-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 600;
    color: var(--cream); margin-bottom: 24px;
  }
  .sidebar-detail {
    display: flex; flex-direction: column; gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  }
  .sidebar-detail:last-of-type { border: none; }
  .sidebar-detail small {
    font-size: 0.68rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 600;
  }
  .sidebar-detail span { color: var(--cream); font-size: 0.92rem; }

  /* ─── FINAL CTA SECTION ─── */
  .final-cta {
    background: var(--green-primary);
    padding: 100px 8%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  }
  .final-cta h2 { color: var(--cream); position: relative; z-index: 1; max-width: 700px; margin: 0 auto 20px; }
  .final-cta p { color: rgba(245, 240, 232, 0.6); max-width: 520px; margin: 0 auto 44px; line-height: 1.8; position: relative; z-index: 1; }
  .final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-in {
    opacity: 0; transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible { opacity: 1; transform: none; }

  /* ─── MOBILE NAV ─── */
  .mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--green-deep);
    z-index: 999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start;
    padding: 80px 5% 40px;
    gap: 18px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
    overflow-y: auto;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    cursor: pointer;
    text-align: center;
    width: 100%;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-close {
    position: absolute; top: 24px; right: 5%;
    background: none; border: none;
    color: var(--gold); font-size: 1.8rem;
    cursor: pointer;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .workshop-details-grid { grid-template-columns: 1fr; }
    .sidebar-card { position: static; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-stats { flex-direction: column; }
    .stat { border-right: none; border-bottom: 1px solid rgba(201, 168, 76, 0.15); }
    .reality-grid, .what-grid, .event-grid, .exp-grid,
    .about-hero-grid, .community-hero-inner, .workshop-hero-grid {
      grid-template-columns: 1fr; gap: 40px;
    }
    .exp-grid.reverse { direction: ltr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .values-grid, .community-features-grid, .articles-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .highlight-items { grid-template-columns: 1fr; }
    .reality-quote { position: static; margin-top: 20px; }
    .what-img-stack { height: 450px; }
    .what-img-accent { right: 0; bottom: 40px; padding: 15px 20px; }
    .section { padding: 60px 6%; }
    .hero-content { padding: 120px 6% 60px; }
    .upcoming-event::before { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .event-banner { flex-direction: column; text-align: center; gap: 10px; }
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--green-deep); }
  ::-webkit-scrollbar-thumb { background: var(--gold); }

  /* Logo SVG */
  .logo-svg { width: 44px; height: 44px; }