  /* ── Self-hosted Afacad (no Google CDN) ── */
  @font-face {
    font-family: 'Afacad';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('fonts/afacad-normal-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                   U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                   U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                   U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  @font-face {
    font-family: 'Afacad';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('fonts/afacad-normal-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
                   U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
                   U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                   U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: 'Afacad';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/afacad-italic-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                   U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                   U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                   U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  @font-face {
    font-family: 'Afacad';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/afacad-italic-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
                   U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
                   U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                   U+2212, U+2215, U+FEFF, U+FFFD;
  }

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

  :root {
    --green-deep: #1B5E20;
    --green-mid:  #2E7D32;
    --amber:      #B57500;
    --amber-light:#FFB74D;
    --bg:         #f9f1d8;
    --text:       #1a1a14;
    --text-muted: #5a5a44;
    --placeholder:#ede5c4;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Afacad', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ══════════════ HERO ══════════════ */
  #hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg);
    overflow: hidden;
  }

  /* subtle organic blobs */
  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 35% at 12% 88%, rgba(27,94,32,0.055) 0%, transparent 65%),
      radial-gradient(ellipse 45% 45% at 88% 8%,  rgba(255,165,0,0.055) 0%, transparent 65%);
    pointer-events: none;
  }

  /* ── Logo ── */
  .hero-logo {
    position: absolute;
    top: 38%; /* Moved higher */
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(220px, 28vw, 360px);
    height: auto;
    animation: sunRise 1.8s cubic-bezier(.22,1,.36,1) both;
  }

  /* ── Nav ── */
  .hero-nav {
    position: absolute;
    top: 72%; /* Moved lower */
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
  }

  .hero-nav a {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.6vw, 22px);
    letter-spacing: 0.08em;
    color: var(--green-deep);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.35s;
    animation: navFade 0.7s ease both;
  }

  .hero-nav a:nth-child(1) { animation-delay: 0.45s; }
  .hero-nav a:nth-child(2) { animation-delay: 0.58s; }
  .hero-nav a:nth-child(3) { animation-delay: 0.71s; }
  .hero-nav a:nth-child(4) { animation-delay: 0.84s; }

  /* Permanent underline — gentle at rest */
  .hero-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--green-deep);
    opacity: 0.22;
    border-radius: 2px;
    box-shadow: none;
    transition:
      opacity   0.35s ease,
      height    0.35s ease,
      box-shadow 0.35s ease,
      background 0.35s ease;
  }

  /* Hover: stronger, amber, drop shadow */
  .hero-nav a:hover { color: var(--amber); }
  .hero-nav a:hover::after {
    background:  var(--amber);
    opacity:     1;
    height:      2.5px;
    box-shadow:  0 3px 10px rgba(255,165,0,0.45),
                 0 1px  4px rgba(255,165,0,0.25);
  }

  /* ══════════════ STICKY TOP NAV (sections) ══════════════ */
  #topNav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(24px, 6vw, 80px);
    background: transparent;
    pointer-events: none;
    transition: background 0.4s, backdrop-filter 0.4s;
  }

  #topNav.scrolled {
    background: rgba(249,241,216,0.88);
    backdrop-filter: blur(12px);
    pointer-events: all;
    box-shadow: 0 1px 0 rgba(27,94,32,0.08);
  }

  .top-logo {
    height: 36px;
    width: auto;
    opacity: 0;
    transition: opacity 0.4s;
    cursor: pointer;
  }

  #topNav.scrolled .top-logo { opacity: 1; pointer-events: all; }

  .top-links {
    display: flex;
    gap: clamp(20px, 3vw, 48px);
    pointer-events: none;
    opacity: 0; /* Hidden initially */
    transition: opacity 0.4s;
  }

  #topNav.scrolled .top-links { 
    pointer-events: all; 
    opacity: 1; /* Appears only on scroll */
  }

  .top-links a {
    font-family: 'Afacad', sans-serif;
    font-size: clamp(13px, 1.1vw, 16px);
    letter-spacing: 0.07em;
    color: var(--green-deep);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
  }

  .top-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--green-deep);
    opacity: 0.18;
    border-radius: 2px;
    transition: opacity 0.3s, height 0.3s, box-shadow 0.3s, background 0.3s;
  }

  .top-links a:hover { color: var(--amber); }
  .top-links a:hover::after,
  .top-links a.active-nav::after {
    background:  var(--amber);
    opacity:     1;
    height:      2.5px;
    box-shadow:  0 3px 10px rgba(255,165,0,0.4), 0 1px 4px rgba(255,165,0,0.2);
  }
  .top-links a.active-nav { color: var(--amber); }

  /* ══════════════ SECTIONS ══════════════ */
  .section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(80px, 12vh, 140px) clamp(24px, 8vw, 120px);
    background: var(--bg);
    position: relative;
  }

  /* alternating tint */
  .section:nth-child(even) { background: rgba(255,255,255,0.22); }

  .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .section-inner.reverse { direction: rtl; }
  .section-inner.reverse > * { direction: ltr; }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .section-label::before {
    content: '';
    display: inline-block;
    width: 18px; height: 1px;
    background: var(--amber);
  }

  .section-heading {
    font-family: 'Afacad', sans-serif;
    font-weight: 600;
    font-size: clamp(30px, 3.8vw, 54px);
    line-height: 1.12;
    color: var(--green-deep);
    margin-bottom: 28px;
  }

  .section-heading em {
    font-style: italic;
    font-weight: 400;
    color: var(--green-mid);
  }

  .section-body {
    font-family: 'Afacad', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 500px;
  }

  /* image placeholder */
  .img-ph {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--placeholder);
    border: 1px solid rgba(27,94,32,0.1);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
  }

  .img-ph::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(27,94,32,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(27,94,32,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
  }

  .img-ph-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(27,94,32,0.35);
    position: relative;
  }
  
  .img-ph img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	  display: block;
	}
	
	.img-ph a {
	  display: block;
	  width: 100%;
	  height: 100%;
	}
	
	.img-ph:has(img)::before {
	  display: none;
	}

  /* ── Activities ── */
  .activities-wrap {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
  }

  .act-card { display: flex; flex-direction: column; gap: 24px; }
  .act-card .img-ph { aspect-ratio: 16/9; }

  .subheading {
    font-family: 'Afacad', sans-serif;
    font-size: clamp(17px, 1.6vw, 22px);
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  /* ── Contact ── */
  .contact-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .contact-item { display: flex; flex-direction: column; gap: 3px; }

  .contact-key {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 500;
  }

  .contact-val {
    font-size: clamp(14px, 1.1vw, 17px);
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* ── Footer ── */
  .section-foot {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(27,94,32,0.25);
    white-space: nowrap;
  }

  /* ══════════════ SCROLL REVEAL ══════════════ */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s cubic-bezier(.4,0,.2,1),
                transform 0.75s cubic-bezier(.4,0,.2,1);
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: 0.1s; }
  .reveal-d2 { transition-delay: 0.22s; }
  .reveal-d3 { transition-delay: 0.36s; }

  /* ══════════════ ANIMATIONS ══════════════ */
  @keyframes sunRise {
    0% { 
      opacity: 0; 
      transform: translate(-50%, 15vh) scale(0.85); 
      filter: drop-shadow(0 0 0px rgba(255,165,0,0));
    }
    100% { 
      opacity: 1; 
      transform: translate(-50%, -50%) scale(1); 
      filter: drop-shadow(0 0 25px rgba(255,165,0,0.15));
    }
  }

  @keyframes navFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
  }

  /* ══════════════ RESPONSIVE ══════════════ */
  @media (max-width: 820px) {
    .section-inner,
    .activities-grid { grid-template-columns: 1fr; }
    .section-inner.reverse { direction: ltr; }
    .hero-nav { gap: 20px; flex-wrap: wrap; justify-content: center; padding: 0 16px; }
    .hero-nav a { font-size: 15px; }
  }

  /* ══════════════ NEXT-SECTION ARROW ══════════════ */
  .section-next-arrow {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.35s ease;
  }

  .section-next-arrow.visible {
    opacity: 1;
  }

  .section-next-arrow:hover {
    transform: translateX(-50%) translateY(4px);
  }

  .section-next-arrow svg {
    width: 28px;
    height: 28px;
    stroke: rgba(27,94,32,0.30);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.35s ease;
  }

  .section-next-arrow:hover svg {
    stroke: var(--amber);
  }

  /* ── Site Footer ── */
  .site-footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 22px clamp(24px,8vw,120px);
    font-size: 12px;
    letter-spacing: 0.14em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .site-footer span { white-space: nowrap; }
  .site-footer a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 11px;
    transition: color 0.3s;
  }
  .site-footer a:hover { color: var(--amber-light); }
  .footer-links { display: flex; gap: 28px; }

  /* ── Modal overlay ── */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(27,50,20,0.72);
    backdrop-filter: blur(6px);
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px 60px;
    overflow-y: auto;
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: var(--bg);
    border-radius: 4px;
    max-width: 740px;
    width: 100%;
    padding: clamp(32px,6vw,64px) clamp(28px,5vw,56px);
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  }
  .modal-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none; border: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--green-deep);
    opacity: 0.45;
    line-height: 1;
    transition: opacity 0.2s;
  }
  .modal-close:hover { opacity: 1; }
  .modal-label {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
  }
  .modal-label::before {
    content: '';
    display: inline-block;
    width: 18px; height: 1px;
    background: var(--amber);
  }
  .modal-title {
    font-family: Afacad, sans-serif;
    font-weight: 600;
    font-size: clamp(26px,3vw,42px);
    color: var(--green-deep);
    line-height: 1.15;
    margin-bottom: 32px;
  }
  .modal-body { font-size: 15px; line-height: 1.85; color: var(--text-muted); }
  .modal-body h3 {
    font-family: Afacad, sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--green-deep);
    margin: 28px 0 8px;
    letter-spacing: 0.02em;
  }
  .modal-body h3:first-child { margin-top: 0; }
  .modal-body p { margin: 0 0 12px; }
  .modal-body a { color: var(--green-mid); }
  .modal-placeholder {
    display: inline-block;
    background: rgba(181,117,0,0.12);
    border: 1px dashed var(--amber);
    border-radius: 2px;
    padding: 1px 8px;
    color: var(--amber);
    font-size: 13px;
    letter-spacing: 0.04em;
  }


  /* obfuscated email link */
  .modal-body .obf-email {
    color: var(--green-mid);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
