    :root {
      --green: #7a8f6a;
      --green-dark: #5f755f;
      --mauve: #8a76a2;
      --bg: #f7e4ec;
      --text: #1e1e1e;
      --radius-lg: 1.25rem;
      --radius-sm: 0.75rem;
      --shadow: 0 24px 50px rgba(0,0,0,0.08);
    --font-family: 'Poppins', sans-serif;
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: var(--font-family);
      font-size: 1.05rem;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      scroll-behavior: smooth;
    }

    /* NAV */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(95, 117, 95, 0.9);
      backdrop-filter: blur(10px);
      color: #fff;
      z-index: 1000;
    }
    .nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.75rem 1rem;
    }
    .brand {
      font-weight: 900;
      font-size: 2.1rem;
      letter-spacing: 0.02em;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 1rem;
      margin: 0;
      padding: 0;
    }
    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      font-size: 1.3rem;
      padding: 0.6rem 0.9rem;
      border-radius: 999px;
      transition: background 0.2s;
    }
    nav a:hover,
    nav a:focus {
      background: rgba(244,244,244,0.12);
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.4rem;
      cursor: pointer;
    }

    /* WELCOME / PARALLAX-LIKE SECTION */
    .welcome {
      min-height: 100vh;
      background-image: url('images/bg-welcome.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6.5rem 1.5rem 4rem;
    }
    .welcome-content {
      background: rgba(255,255,255,0.9);
      max-width: 1100px;
      border-radius: 1.5rem;
      box-shadow: var(--shadow);
      padding: 2.5rem 2.5rem 2rem;
      display: grid;
      grid-template-columns: 1fr;
      grid-template-areas:
        "media"
        "text";
      gap: 2rem;
    }
    .welcome-content > div:first-child { grid-area: text; }
    .welcome h1 {
      margin-top: 0;
      color: var(--green-dark);
      font-size: clamp(1.2rem, 3vw, 2rem);
    }
    .welcome p { margin-bottom: 1rem; }
    .welcome-sub {
      color: #555;
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }

    .image-placeholder {
      background: rgba(138,118,162,0.12);
      border: 1px dashed rgba(122,143,106,0.3);
      border-radius: 1rem;
      min-height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 0.85rem;
      color: #4c4c4c;
    }
    .thumb-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 0.5rem;
      margin-top: 1rem;
    }
    .badge {
      display: inline-block;
      background: rgba(122,143,106,0.12);
      color: var(--green-dark);
      border-radius: 999px;
      padding: 0.35rem 0.8rem;
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 0.5rem;
    }

    /* SECTION WRAPPER */
    section.page {
      max-width: 1100px;
      margin: 0 auto;
      padding: 4rem 1.5rem 4rem;
    }
    section.page h2 {
      margin-top: 0;
      font-size: 2rem;
      color: var(--green-dark);
    }
    .two-col {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 2rem;
    }

    /* ABOUT */
    .card {
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 2rem;
    }
    .subhead {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    /* FAQS */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }
    .faq-header {
      margin-bottom: 1rem;
    }
    .faq-header h2 {
      margin-bottom: 0;
    }
    .faq-item {
      background: #fff;
      border-radius: 1rem;
      box-shadow: 0 12px 30px rgba(0,0,0,0.03);
      padding: 1.25rem 1.25rem 1rem;
      border-left: 4px solid rgba(122,143,106,0.08);
    }
    .faq-item h3 {
      margin-top: 0;
      font-size: 1rem;
      color: var(--green);
    }
    .faq-item p {
      font-size: 0.9rem;
      color: #444;
    }

    /* Global heading styles for a modern aesthetic */
    h3 {
      font-size: 1.25rem;
      color: var(--green);
      margin-top: 0;
    }

    /* CONTACT */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }
    .contact-card {
      overflow: hidden;
    }
    .contact-map {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .contact-image {
      width: 100%;
      border-radius: 1rem;
      object-fit: cover;
      display: block;
      aspect-ratio: 16 / 10;
    }
    .contact-image--portrait {
      aspect-ratio: 4 / 5;
    }
    .contact-card .map iframe {
      box-shadow: none;
    }
    .map iframe {
      width: 100%;
      border: 0;
      border-radius: 1rem;
      min-height: 280px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    }

    footer {
      background: var(--green-dark);
      color: #fff;
      text-align: center;
      padding: 1.5rem 1rem 3rem;
      margin-top: 3rem;
      font-size: 0.8rem;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .welcome-content {
        grid-template-columns: 1fr;
      }
      .two-col,
      .contact-grid {
        grid-template-columns: 1fr;
      }
      nav ul {
        display: none;
        flex-direction: column;
        background: rgba(95,117,95,0.98);
        position: absolute;
        top: 100%;
        right: 1rem;
        padding: 1rem;
        border-radius: 1rem;
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
      }
      nav ul.show {
        display: flex;
      }
      .menu-toggle {
        display: block;
      }
    }

    /* Layout tweaks / utilities (keeps HTML style-free) */
    .welcome-media {
      grid-area: media;
      align-self: stretch;
    }
    .welcome-image {
      width: 100%;
      height: 280px;
      border-radius: 1rem;
      object-fit: cover;
      display: block;
    }
    .about-image {
      width: 100%;
      border-radius: 1rem;
      margin-bottom: 1.5rem;
      display: block;
    }
    .cover-image {
      width: 100%;
      height: 100%;
      min-height: 140px;
      border-radius: 1rem;
      object-fit: cover;
      display: block;
    }
    .card--compact { padding: 1.5rem; }
