    :root {
      --forest-950: #082b18;
      --forest-900: #0b3c20;
      --forest-800: #0f5d2b;
      --forest-700: #168543;
      --forest-500: #36a85d;
      --gold-500: #c99a21;
      --gold-300: #e9c457;
      --clay-700: #604234;
      --ink: #142119;
      --muted: #59655b;
      --line: #e1e8e1;
      --paper: #ffffff;
      --wash: #f4f8f3;
      --shadow: 0 16px 45px rgba(8, 43, 24, 0.11);
      --radius: 8px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    section[id] { scroll-margin-top: 96px; }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: "Segoe UI", Arial, Helvetica, sans-serif;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }

    body.is-locked { overflow: hidden; }

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

    button, a { -webkit-tap-highlight-color: transparent; }

    button { font: inherit; }

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

    .svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

    .social-icon {
      width: 18px;
      height: 18px;
      display: block;
      color: #fff;
      fill: currentColor;
    }

    .container {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
    }

    .site-header > .container {
      width: calc(100% - 48px);
      max-width: none;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.96);
      border-bottom: 1px solid rgba(11, 60, 32, 0.09);
      backdrop-filter: blur(12px);
    }

    .nav-wrap {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      min-width: 235px;
      margin-right: auto;
    }

    .brand-mark {
      width: 42px;
      height: 48px;
      display: grid;
      place-items: center;
      flex: 0 0 42px;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .brand-copy strong,
    .brand-copy span { display: block; }

    .brand-copy strong {
      color: var(--forest-900);
      font-size: 17px;
      line-height: 1.05;
      letter-spacing: 0.01em;
    }

    .brand-copy span {
      margin-top: 4px;
      color: var(--muted);
      font-size: 11px;
      line-height: 1;
    }

    .site-header .brand-copy strong {
      color: #7b2d25;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0;
    }

    .site-header .brand-copy span { display: none; }

    .main-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 4px;
      font-size: 13px;
      font-weight: 600;
      color: #244530;
    }

    .main-nav a,
    .nav-dropdown > summary {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 11px;
      border-radius: 6px;
      transition: background 160ms ease, color 160ms ease;
    }

    .main-nav a:hover,
    .nav-dropdown > summary:hover,
    .main-nav a.active {
      color: var(--forest-800);
      background: #eef7ef;
    }

    .nav-dropdown { position: relative; }

    .nav-dropdown > summary { list-style: none; cursor: pointer; }

    .nav-dropdown.current > summary {
      color: var(--forest-800);
      background: #eef7ef;
    }

    .nav-dropdown > summary::-webkit-details-marker { display: none; }

    .nav-dropdown > summary::after {
      content: none;
    }

    .nav-chevron {
      width: 8px;
      height: 8px;
      display: inline-block;
      flex: 0 0 8px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      transition: transform 160ms ease;
    }

    .nav-dropdown[open] > summary .nav-chevron {
      transform: rotate(225deg);
    }

    .nav-dropdown > summary > a {
      min-height: auto;
      display: inline;
      padding: 0;
      border-radius: 0;
      color: inherit;
      background: transparent;
    }

    .nav-dropdown > summary > a:hover {
      color: inherit;
      background: transparent;
    }

    .nav-dropdown-menu {
      position: absolute;
      top: 43px;
      left: 0;
      min-width: 190px;
      padding: 8px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--paper);
      box-shadow: var(--shadow);
      z-index: 25;
    }

    .nav-dropdown-menu a { width: 100%; padding: 9px 10px; }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 6px;
    }

    .social-dot {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      font-size: 12px;
      font-weight: 800;
    }

    .social-dot.facebook { background: #2357a6; }
    .social-dot.instagram { background: #d62f67; }
    .social-dot.youtube { background: #ec2424; }

    .button {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 9px 18px;
      border: 1px solid transparent;
      border-radius: 6px;
      color: #fff;
      background: var(--forest-700);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.2;
      cursor: pointer;
      transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
    }

    .button:hover { transform: translateY(-2px); box-shadow: 0 9px 18px rgba(11, 60, 32, 0.16); }

    .button.gold { color: #fff; background: var(--gold-500); }
    .button.gold:hover { background: #b3830f; }
    .button.outline { color: var(--forest-900); border-color: var(--forest-700); background: transparent; }
    .button.outline:hover { color: #fff; background: var(--forest-700); }
    .button.light { color: var(--forest-900); background: #fff; }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 6px;
      color: var(--forest-900);
      background: #fff;
      cursor: pointer;
      font-size: 21px;
    }

    .hero {
      min-height: 590px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      color: #fff;
      background: #163e26;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: url("image/hero.png") center center / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(90deg, rgba(4, 29, 16, 0.88) 0%, rgba(4, 29, 16, 0.64) 35%, rgba(4, 29, 16, 0.08) 78%);
    }

    .hero-content { padding: 88px 0 96px; }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--gold-300);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .hero h1 {
      max-width: 570px;
      margin: 0;
      font-size: clamp(42px, 5vw, 76px);
      line-height: 0.98;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .hero h1 span { display: block; color: #d9e9d6; }

    .hero-lead {
      max-width: 500px;
      margin: 24px 0 28px;
      color: #eef7ed;
      font-size: 18px;
    }

    .hero-quote {
      max-width: 520px;
      margin: 0 0 28px;
      padding-left: 15px;
      border-left: 3px solid var(--gold-300);
      color: #f5f8f0;
      font-size: 14px;
      font-style: italic;
    }

    .hero-quote cite {
      display: block;
      margin-top: 7px;
      color: var(--gold-300);
      font-style: normal;
      font-weight: 700;
    }

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

    .hero-buttons .button { min-width: 150px; }

    .section { padding: 88px 0; }

    .section.compact { padding: 72px 0; }

    .section-heading { margin-bottom: 42px; text-align: center; }

    .section-heading .eyebrow { margin-bottom: 9px; color: var(--forest-700); }

    .section-heading h2 {
      margin: 0;
      color: var(--forest-900);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.1;
    }

    .section-heading h2::after {
      content: "";
      width: 60px;
      height: 3px;
      display: block;
      margin: 16px auto 0;
      background: var(--gold-500);
    }

    .section-heading p {
      max-width: 610px;
      margin: 16px auto 0;
      color: var(--muted);
    }

    .about { background: var(--wash); }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      align-items: center;
      gap: 70px;
    }

    .image-frame {
      position: relative;
      padding: 0 0 16px 16px;
    }

    .image-frame::before {
      content: "";
      position: absolute;
      inset: 16px 16px 0 0;
      border: 2px solid var(--gold-500);
      border-radius: var(--radius);
      transform: translate(-8px, 8px);
      pointer-events: none;
    }

    .image-frame img {
      width: 100%;
      aspect-ratio: 1.23;
      position: relative;
      z-index: 1;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .about-copy h3 {
      margin: 0 0 16px;
      color: var(--forest-900);
      font-size: 28px;
      line-height: 1.15;
    }

    .about-copy > p { margin: 0 0 24px; color: var(--muted); }

    .accordion { display: grid; gap: 9px; }

    .accordion details {
      border: 1px solid #d9e5d9;
      border-radius: 6px;
      background: #fff;
      overflow: hidden;
    }

    .accordion summary {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 15px 17px;
      color: var(--forest-900);
      font-weight: 750;
      cursor: pointer;
      list-style: none;
    }

    .accordion summary::-webkit-details-marker { display: none; }

    .accordion summary::before {
      content: "+";
      width: 22px;
      height: 22px;
      display: grid;
      flex: 0 0 22px;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--forest-700);
      font-weight: 800;
      line-height: 1;
    }

    .accordion details[open] summary::before { content: "-"; background: var(--gold-500); }

    .accordion details p {
      margin: 0;
      padding: 0 18px 17px 50px;
      color: var(--muted);
      font-size: 14px;
    }

    .projects { background: #fff; }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
    }

    .project-card {
      display: flex;
      flex-direction: column;
      min-width: 0;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
      box-shadow: 0 8px 26px rgba(8, 43, 24, 0.06);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

    .project-card img {
      width: 100%;
      aspect-ratio: 1.62;
      object-fit: cover;
    }

    .project-card-content { display: flex; flex: 1; flex-direction: column; padding: 18px; }

    .project-card h3 {
      margin: 0 0 7px;
      color: var(--forest-900);
      font-size: 18px;
      line-height: 1.2;
    }

    .project-card p { margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.45; }

    .project-card .button { align-self: flex-start; margin-top: auto; min-height: 35px; padding: 7px 13px; font-size: 12px; }

    .join { padding: 28px 0 82px; background: #fff; }

    .join-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .join-card {
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr);
      align-items: center;
      gap: 24px;
      min-height: 190px;
      padding: 28px;
      border-radius: var(--radius);
      color: #fff;
      background: var(--forest-900);
    }

    .join-card.clay { background: var(--clay-700); }

    .join-icon { color: var(--gold-300); font-size: 55px; line-height: 1; text-align: center; }

    .join-card h3 { margin: 0 0 7px; font-size: 22px; line-height: 1.15; }
    .join-card p { margin: 0 0 15px; color: #ecf3e9; font-size: 14px; line-height: 1.45; }
    .join-card .button { min-height: 34px; padding: 7px 13px; font-size: 12px; }

    .gallery { padding: 88px 0; background: #fff; }

    .gallery-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 25px;
    }

    .gallery-head .section-heading { flex: 1; margin-bottom: 0; text-align: left; }
    .gallery-head .section-heading h2::after { margin-left: 0; }
    .gallery-head .section-heading p { margin-left: 0; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }

    .gallery-item {
      position: relative;
      min-height: 0;
      aspect-ratio: 1.35;
      padding: 0;
      border: 0;
      border-radius: 6px;
      overflow: hidden;
      background: #dce7dd;
      cursor: pointer;
    }

    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 250ms ease; }

    .gallery-item::after {
      content: "View photo";
      position: absolute;
      inset: auto 10px 10px auto;
      padding: 4px 8px;
      border-radius: 4px;
      color: #fff;
      background: rgba(8, 43, 24, 0.78);
      font-size: 11px;
      opacity: 0;
      transform: translateY(5px);
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-item:hover::after { opacity: 1; transform: translateY(0); }

    .cta {
      position: relative;
      overflow: hidden;
      color: #fff;
      background: var(--forest-800);
    }

    .cta::after {
      content: "";
      position: absolute;
      inset: 0 0 0 52%;
      background: linear-gradient(90deg, var(--forest-800), rgba(15, 93, 43, 0.18)), url("image/hero.png") center / cover;
      opacity: 0.72;
      pointer-events: none;
    }

    .cta-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 25px; }

    .cta h2 { max-width: 650px; margin: 0 0 6px; font-size: clamp(27px, 4vw, 42px); line-height: 1.1; }
    .cta p { margin: 0; color: #dbead9; }

    .social { background: var(--wash); }

    .social-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .social-link {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      position: relative;
      gap: 14px;
      min-height: 84px;
      padding: 17px 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      transition: transform 160ms ease, box-shadow 160ms ease;
    }

    .social-link-top {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-right: 32px;
    }

    .social-link .social-brand { display: grid; }

    .social-preview {
      width: 100%;
      height: auto;
      border-radius: 6px;
      object-fit: cover;
    }

    .social-link:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(8, 43, 24, 0.08); }

    .social-brand {
      width: 38px;
      height: 38px;
      display: grid;
      flex: 0 0 38px;
      place-items: center;
      border-radius: 10px;
      color: #fff;
      font-weight: 800;
    }

    .social-brand .social-icon { width: 21px; height: 21px; }

    .social-brand.facebook { background: #2357a6; }
    .social-brand.instagram { background: #dc3c68; }
    .social-brand.youtube { background: #ed2424; }

    .social-link strong { display: block; color: var(--forest-900); font-size: 13px; }
    .social-link span { display: block; color: var(--muted); font-size: 12px; }
    .social-link .social-arrow { position: absolute; top: 28px; right: 20px; display: block; color: var(--forest-700); font-size: 22px; }

    .site-footer { color: #edf6e9; background: var(--forest-950); }

    .footer-main { padding: 66px 0 54px; }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr 1fr;
      gap: 42px;
    }

    .footer-brand .brand-copy strong { color: #fff; }
    .footer-brand .brand-copy span { color: #bcd1ba; }
    .footer-title { margin: 23px 0 10px; color: var(--gold-300); font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; }
    .footer-main p { margin: 4px 0; color: #c9ddc5; font-size: 13px; }
    .footer-main a:hover { color: var(--gold-300); }

    .footer-socials { display: flex; gap: 8px; margin-top: 22px; }

    .map-wrap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

    .map-card { min-width: 0; }
    .map-card strong { display: block; margin-bottom: 8px; color: #fff; font-size: 13px; }

    .map {
      width: 100%;
      height: 118px;
      display: block;
      border-radius: 6px;
      border: 0;
      background: #d3e0d1;
    }
    .map-card a { display: inline-block; margin-top: 6px; color: var(--gold-300); font-size: 11px; }

    .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.15); }

    .footer-bottom .container { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 15px; color: #bcd1ba; font-size: 12px; }

    .footer-links { display: flex; gap: 17px; }

    .lightbox {
      width: min(94vw, 1060px);
      padding: 0;
      border: 0;
      border-radius: var(--radius);
      background: #0a2113;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    }

    .lightbox::backdrop { background: rgba(3, 15, 8, 0.84); }

    .lightbox figure { margin: 0; position: relative; }
    .lightbox img { width: 100%; max-height: 80vh; object-fit: contain; }
    .lightbox figcaption { padding: 12px 18px 15px; color: #ecf4e9; font-size: 13px; }

    .lightbox-close {
      width: 36px;
      height: 36px;
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 1;
      border: 0;
      border-radius: 50%;
      color: #fff;
      background: rgba(8, 43, 24, 0.8);
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
    }

    @media (max-width: 1050px) {
      .main-nav { gap: 0; }
      .main-nav a, .nav-dropdown > summary { padding-inline: 8px; font-size: 12px; }
      .header-actions { gap: 5px; }
      .social-dot { width: 27px; height: 27px; font-size: 11px; }
      .brand { min-width: 212px; }
      .about-grid { gap: 44px; }
    }

    @media (max-width: 860px) {
      .container { width: min(100% - 36px, 680px); }
      .site-header > .container { width: min(100% - 36px, 680px); }

      .nav-wrap { min-height: 72px; }
      .menu-toggle { display: block; }
      .header-actions { margin-left: 0; }
      .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        padding: 12px 18px 18px;
        align-items: stretch;
        flex-direction: column;
        gap: 3px;
        border-bottom: 1px solid var(--line);
        background: #fff;
        box-shadow: var(--shadow);
      }

      .main-nav.is-open { display: flex; }
      .main-nav a, .nav-dropdown > summary { justify-content: space-between; padding: 12px 10px; font-size: 14px; }
      .nav-dropdown-menu { position: static; min-width: 0; margin: 0 10px 4px; box-shadow: none; background: var(--wash); }
      .header-actions .social-dot { display: none; }
      .header-actions .button { min-height: 38px; padding: 8px 13px; font-size: 12px; }

      .hero { min-height: 630px; }
      .hero::before { background-position: 62% center; }
      .hero::after { background: linear-gradient(90deg, rgba(4, 29, 16, 0.91), rgba(4, 29, 16, 0.46)); }
      .hero-content { padding: 76px 0; }
      .hero h1 { max-width: 480px; font-size: clamp(42px, 9vw, 62px); }
      .hero-lead { font-size: 16px; }

      .about-grid { grid-template-columns: 1fr; gap: 45px; }
      .home-page .about-grid .about-copy { display: contents; }
      .home-page .about-grid .home-about-intro { order: 1; }
      .home-page .about-grid .image-frame { order: 2; }
      .home-page .about-grid .accordion { order: 3; }
      .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .join-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 560px) {
      .container { width: min(100% - 28px, 440px); }
      .site-header > .container { width: min(100% - 28px, 440px); }
      .site-header .brand-copy strong { font-size: 16px; }
      .brand-copy span { font-size: 9px; }
      .brand-mark { width: 34px; height: 42px; flex-basis: 34px; }
      .brand { min-width: 0; gap: 5px; }
      .nav-wrap { gap: 8px; }
      .header-actions { gap: 3px; }
      .header-actions .social-dot { width: 22px; height: 22px; font-size: 9px; }
      .header-actions .button { min-height: 34px; padding: 7px 8px; font-size: 10px; }
      .menu-toggle { width: 36px; height: 36px; font-size: 18px; }
      .hero { min-height: 645px; }
      .hero::before { background-position: 66% center; }
      .hero h1 { font-size: 43px; }
      .hero-quote { font-size: 13px; }
      .section { padding: 65px 0; }
      .section.compact { padding: 56px 0; }
      .section-heading { margin-bottom: 30px; }
      .section-heading h2 { font-size: 32px; }
      .image-frame { padding-left: 10px; }
      .image-frame::before { inset: 12px 12px 0 0; }
      .project-grid, .social-grid { grid-template-columns: 1fr; }
      .join-card { grid-template-columns: 1fr; gap: 10px; padding: 24px; text-align: center; }
      .join-card .button { margin: 0 auto; }
      .gallery-head { display: block; }
      .gallery-head > .button { margin-top: 18px; }
      .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .gallery-item { aspect-ratio: 1.05; }
      .cta-content { display: block; }
      .cta .button { margin-top: 24px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-brand { grid-column: auto; }
      .map-wrap { grid-template-columns: 1fr 1fr; }
      .footer-bottom .container { min-height: 85px; align-items: flex-start; flex-direction: column; justify-content: center; }
    }

    .contact-hero {
      color: #fff;
      background: var(--clay-700);
    }

    .contact-hero-inner {
      min-height: 148px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .contact-hero h1 {
      margin: 0;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 500;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .contact-hero p {
      margin: 0;
      color: #fff;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 15px;
      font-style: italic;
    }

    .contact-section {
      padding: 54px 0 68px;
      background: #fff;
    }

    .contact-heading { margin-bottom: 30px; }
    .contact-heading h2 { font-size: clamp(30px, 4vw, 40px); }

    .contact-grid {
      max-width: 1000px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      margin: 0 auto;
    }

    .contact-card {
      min-height: 170px;
      display: grid;
      grid-template-columns: 62px minmax(0, 1fr);
      align-items: center;
      gap: 20px;
      padding: 24px 28px;
      border: 1px solid #dedede;
      border-radius: 4px;
      color: #222;
      background: #ebebeb;
    }

    .contact-card h3 {
      margin: 0 0 12px;
      color: var(--forest-900);
      font-size: 18px;
      line-height: 1.2;
    }

    .contact-card p {
      margin: 0 0 11px;
      color: #333;
      font-size: 14px;
      line-height: 1.45;
    }

    .contact-card p:last-child { margin-bottom: 0; }
    .contact-card a { color: var(--forest-800); text-decoration: underline; text-underline-offset: 3px; }

    .contact-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--forest-900);
      background: #fff;
      font-size: 29px;
      line-height: 1;
    }

    .contact-icon-svg { width: 30px; height: 30px; display: block; fill: currentColor; }

    .contact-socials { display: flex; flex-wrap: wrap; gap: 10px; }
    .contact-socials .social-dot { width: 44px; height: 44px; background: #303030; }

    .contact-cta {
      color: #fff;
      background: linear-gradient(90deg, rgba(4, 29, 16, 0.9), rgba(4, 29, 16, 0.45)), url("image/hero.png") center / cover;
    }

    .contact-cta-inner {
      min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .contact-cta p {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.04em;
    }

    .contact-cta .button { border: 1px solid #fff; }

    @media (max-width: 860px) {
      .contact-hero-inner { min-height: 140px; }
      .contact-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 560px) {
      .contact-hero-inner {
        min-height: 160px;
        display: block;
        padding: 42px 0;
      }

      .contact-hero h1 { font-size: 36px; }
      .contact-hero p { margin-top: 14px; font-size: 15px; }
      .contact-section { padding: 58px 0 68px; }
      .contact-card { grid-template-columns: 1fr; padding: 25px 20px; text-align: center; }
      .contact-icon { margin: 0 auto; }
      .contact-socials { justify-content: center; }
      .contact-cta-inner { min-height: 0; display: block; padding: 26px 0; }
      .contact-cta p { font-size: 13px; line-height: 1.45; }
      .contact-cta .button { margin-top: 16px; }
    }

    .about-hero {
      color: #fff;
      background: linear-gradient(90deg, rgba(16, 39, 25, 0.82), rgba(16, 39, 25, 0.46)), url("image/about.png") center 45% / cover;
    }

    .about-hero-inner {
      min-height: 184px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .about-hero h1 {
      margin: 0;
      font-size: clamp(34px, 4vw, 52px);
      font-weight: 500;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .about-hero p {
      margin: 0;
      color: #fff;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 16px;
      font-style: italic;
    }

    .about-page-content {
      padding: 60px 0 72px;
      background: #fff;
    }

    .about-page-copy {
      max-width: 1040px;
    }

    .about-page-copy .eyebrow { margin-bottom: 8px; color: var(--forest-700); }

    .about-page-copy h2 {
      margin: 0 0 22px;
      color: var(--forest-900);
      font-size: 28px;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .about-page-copy h2::after {
      content: "";
      width: 52px;
      height: 3px;
      display: block;
      margin-top: 12px;
      background: var(--gold-500);
    }

    .about-page-copy p:not(.eyebrow) {
      margin: 0 0 26px;
      color: #3f4c42;
      font-size: 16px;
      line-height: 1.85;
    }

    .about-page-copy p:last-child { margin-bottom: 0; }

    @media (max-width: 860px) {
      .about-hero-inner { min-height: 160px; }
      .about-page-content { padding: 52px 0 60px; }
    }

    @media (max-width: 560px) {
      .about-hero-inner {
        min-height: 170px;
        display: block;
        padding: 48px 0;
      }

      .about-hero h1 { font-size: 36px; }
      .about-hero p { margin-top: 14px; font-size: 15px; }
      .about-page-copy p:not(.eyebrow) { font-size: 15px; line-height: 1.7; }
    }

    .mission-page-content {
      padding: 58px 0 70px;
      background: #fff;
    }

    .mission-grid {
      max-width: 1040px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 68px;
      margin: 0 auto;
    }

    .mission-column h2 {
      margin: 0 0 18px;
      color: var(--forest-900);
      font-size: 22px;
      line-height: 1.2;
    }

    .mission-column h2::after {
      content: "";
      width: 48px;
      height: 3px;
      display: block;
      margin-top: 11px;
      background: var(--gold-500);
    }

    .mission-column p {
      margin: 0 0 29px;
      color: #3f4c42;
      font-size: 16px;
      line-height: 1.75;
    }

    .mission-column p:last-child { margin-bottom: 0; }

    @media (max-width: 860px) {
      .mission-grid { gap: 36px; }
    }

    @media (max-width: 560px) {
      .mission-page-content { padding: 50px 0 60px; }
      .mission-grid { grid-template-columns: 1fr; gap: 45px; }
      .mission-column p { font-size: 15px; line-height: 1.7; }
    }

    .policy-hero {
      padding: 46px 0 38px;
      text-align: center;
      background: #fff;
      border-bottom: 1px solid var(--line);
    }

    .policy-hero h1 {
      margin: 0;
      color: var(--forest-700);
      font-size: clamp(34px, 4.5vw, 54px);
      line-height: 1.05;
      text-transform: uppercase;
    }

    .policy-hero p {
      max-width: 850px;
      margin: 16px auto 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .policy-page-content {
      padding: 48px 0 78px;
      background: #fff;
    }

    .policy-copy {
      max-width: 820px;
      color: #5b685e;
      font-size: 14px;
      line-height: 1.75;
    }

    .policy-copy h2 {
      margin: 0 0 28px;
      color: var(--forest-900);
      font-size: 22px;
      line-height: 1.2;
    }

    .policy-copy p { margin: 0 0 27px; }
    .policy-copy p:last-child { margin-bottom: 0; }
    .policy-copy a { color: var(--forest-800); text-decoration: underline; text-underline-offset: 3px; }

    @media (max-width: 560px) {
      .policy-hero { padding: 38px 0 32px; }
      .policy-hero h1 { font-size: 34px; }
      .policy-hero p { font-size: 13px; }
      .policy-page-content { padding: 38px 0 60px; }
      .policy-copy { font-size: 14px; line-height: 1.7; }
    }

    .projects-page-content {
      padding: 54px 0 66px;
      background: #fff;
    }

    .projects-page-copy {
      max-width: 1040px;
      color: #263329;
      font-size: 17px;
      line-height: 1.85;
    }

    .projects-page-copy p {
      margin: 0 0 34px;
    }

    .projects-page-copy p:last-of-type {
      margin-bottom: 22px;
    }

    .projects-page-copy ul {
      margin: 0;
      padding-left: 20px;
    }

    .projects-page-copy li {
      margin: 0 0 16px;
      padding-left: 2px;
    }

    .projects-page-copy li:last-child { margin-bottom: 0; }
    .projects-page .projects-legacy { display: none; }

    @media (max-width: 560px) {
      .projects-page-content { padding: 42px 0 54px; }
      .projects-page-copy { font-size: 15px; line-height: 1.7; }
      .projects-page-copy p { margin-bottom: 27px; }
      .projects-page-copy li { margin-bottom: 13px; }
    }

    .team-page-content {
      padding: 20px 0 68px;
      background: #fff;
    }

    .team-page-copy {
      max-width: 1040px;
      color: #263329;
      font-size: 15px;
      line-height: 1.75;
    }

    .team-intro-title {
      margin: 0 0 16px;
      color: var(--forest-900);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .team-intro {
      margin: 0;
    }

    .team-members {
      margin-top: 36px;
    }

    .team-member {
      display: grid;
      grid-template-columns: 145px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
      margin-top: 28px;
    }

    .team-member:first-child { margin-top: 0; }

    .team-member-photo {
      min-height: 112px;
      display: grid;
      place-items: center;
      padding: 8px;
    }

    .team-member-photo img {
      width: 138px;
      height: 105px;
      object-fit: contain;
    }

    .team-member p {
      margin: 0 0 17px;
    }

    .team-member-name {
      color: var(--forest-900);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.4;
    }

    .team-page .team-legacy { display: none; }

    @media (max-width: 560px) {
      .team-page-content { padding: 38px 0 54px; }
      .team-page-copy { font-size: 15px; line-height: 1.7; }
      .team-member { grid-template-columns: 1fr; gap: 14px; margin-top: 38px; }
      .team-member-photo { min-height: 90px; }
      .team-member-photo img { width: 128px; height: 92px; }
      .team-member-name { font-size: 14px; }
    }

    .core-team-page-content {
      padding: 20px 0 68px;
      background: #fff;
    }

    .core-team-page-copy {
      max-width: 1040px;
      color: #263329;
      font-size: 15px;
      line-height: 1.75;
    }

    .core-team-intro-title {
      margin: 0 0 16px;
      color: var(--forest-900);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .core-team-intro { margin: 0; }

    .core-team-layout {
      display: grid;
      grid-template-columns: 220px minmax(0, 1fr);
      gap: 0;
      align-items: start;
      margin-top: 34px;
    }

    .core-team-belief {
      min-height: 132px;
      margin: 0;
      padding: 13px 10px;
      color: #46534a;
      background: #efefef;
      font-size: 13px;
      line-height: 1.65;
    }

    .core-team-list {
      margin: 0;
      padding: 10px 0 10px 25px;
      color: #263329;
      font-size: 14px;
    }

    .core-team-list li {
      margin: 0 0 8px;
      padding-left: 3px;
    }

    .core-team-list li:last-child { margin-bottom: 0; }
    .core-team-page .core-team-legacy,
    .core-team-page .team-legacy { display: none; }

    @media (max-width: 560px) {
      .core-team-page-content { padding: 38px 0 54px; }
      .core-team-page-copy { font-size: 15px; line-height: 1.7; }
      .core-team-layout { grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
      .core-team-belief { min-height: 0; padding: 16px; }
      .core-team-list { padding: 0 0 0 21px; font-size: 14px; }
    }

    .donation-page-content {
      padding: 34px 0 64px;
      background: #fff;
    }

    .donation-copy {
      max-width: 1040px;
      text-align: center;
    }

    .donation-copy h1 {
      margin: 0;
      color: #28c52d;
      font-size: clamp(28px, 3.3vw, 40px);
      line-height: 1.2;
    }

    .donation-message {
      max-width: 850px;
      margin: 12px auto 34px;
      color: #a43d00;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.45;
    }

    .donation-button {
      min-height: 62px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 12px 38px;
      border-radius: 4px;
      color: #fff;
      background: #11b52a;
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
      transition: background 160ms ease, transform 160ms ease;
    }

    .donation-button:hover { background: #078d1d; transform: translateY(-2px); }

    .donation-note {
      margin: 13px 0 11px;
      color: #e32d2d;
      font-size: 17px;
      font-weight: 700;
    }

    .donation-details {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 70px;
      align-items: start;
      max-width: 820px;
      margin: 0 auto;
    }

    .donation-details h2 {
      margin: 0 0 16px;
      color: #13ad2b;
      font-size: 27px;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .donation-qr-image {
      width: 220px;
      height: 220px;
      margin: 0 auto;
      border: 8px solid #fff;
      box-shadow: 0 0 0 1px #d6d6d6;
    }

    .bank-details { padding-top: 0; }

    .bank-details dl {
      margin: 52px 0 0;
      text-align: left;
    }

    .bank-details dl > div {
      display: flex;
      gap: 7px;
      margin-bottom: 20px;
      align-items: baseline;
    }

    .bank-details dt { color: #111; font-weight: 700; white-space: nowrap; }
    .bank-details dd { margin: 0; color: #6b7780; }
    .bank-details a { text-decoration: underline; text-underline-offset: 3px; }

    .donation-logo {
      width: min(330px, 72vw);
      height: auto;
      margin: 38px auto 0;
    }

    .donation-page .donation-legacy { display: none; }

    @media (max-width: 760px) {
      .donation-page-content { padding: 34px 0 54px; }
      .donation-message { font-size: 15px; }
      .donation-details { grid-template-columns: 1fr; gap: 42px; max-width: 430px; }
      .donation-details h2 { font-size: 24px; }
      .bank-details dl { margin-top: 22px; }
      .bank-details dl > div { justify-content: center; flex-wrap: wrap; text-align: center; }
    }

    @media (max-width: 560px) {
      .donation-copy h1 { font-size: 28px; }
      .donation-button { min-height: 54px; padding-inline: 26px; font-size: 24px; }
      .donation-note { font-size: 15px; }
      .donation-qr-image { width: 200px; height: 200px; }
    }

    .member-page-content {
      padding: 20px 0 68px;
      background: #fff;
    }

    .member-page-copy {
      max-width: 1040px;
      color: #263329;
    }

    .member-page-copy > h1 {
      margin: 0 0 12px;
      color: var(--forest-900);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .member-panel {
      padding: 12px 10px 14px;
      background: #f0f0f0;
      text-align: left;
    }

    .member-panel p {
      margin: 0 0 11px;
      color: #3f4c42;
      font-size: 14px;
      line-height: 1.6;
    }

    .member-panel .member-quote {
      color: #1e2d22;
      font-weight: 700;
    }

    .member-poster {
      width: min(780px, 100%);
      height: auto;
      margin: 38px auto 0;
    }

    .member-action-label {
      margin: 6px 0 4px !important;
      color: #3f3f3f !important;
      text-align: center;
      font-size: 12px !important;
    }

    .member-action {
      display: block;
      width: fit-content;
      margin: 0 auto;
      padding: 6px 20px;
      border-radius: 18px;
      color: #fff;
      background: #172d8a;
      font-size: 12px;
      font-weight: 700;
    }

    .member-action:hover { background: #0d1e65; }
    .member-page .member-legacy { display: none; }

    @media (max-width: 560px) {
      .member-page-content { padding: 38px 0 54px; }
      .member-page-copy > h1 { font-size: 17px; }
      .member-panel { padding: 14px 12px; }
      .member-panel p { font-size: 14px; line-height: 1.65; }
      .member-poster { margin-top: 28px; }
    }

    .volunteer-page-content {
      padding: 42px 0 68px;
      background: #fff;
    }

    .volunteer-page-copy {
      max-width: 1040px;
      color: #263329;
    }

    .volunteer-page-copy > h1 {
      margin: 0 0 12px;
      color: var(--forest-900);
      font-size: 18px;
      font-weight: 700;
    }

    .volunteer-panel {
      padding: 14px 12px 16px;
      background: #f0f0f0;
    }

    .volunteer-panel p {
      margin: 0 0 30px;
      color: #18241d;
      font-size: 17px;
      line-height: 1.7;
    }

    .volunteer-panel p:last-child { margin-bottom: 0; }
    .volunteer-panel a { color: var(--forest-800); text-decoration: underline; text-underline-offset: 3px; }
    .volunteer-page .volunteer-legacy { display: none; }

    @media (max-width: 560px) {
      .volunteer-page-content { padding: 38px 0 54px; }
      .volunteer-page-copy > h1 { font-size: 17px; }
      .volunteer-panel { padding: 14px 12px; }
      .volunteer-panel p { font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
    }

    .live-cases-page-content {
      padding: 24px 0 70px;
      background: #fff;
    }

    .live-cases-copy {
      max-width: 900px;
      color: #313931;
      text-align: center;
    }

    .live-cases-title {
      margin: 0 auto 12px;
      padding: 3px 12px 5px;
      border: 4px solid #f10c0c;
      border-radius: 6px;
      color: #16bd21;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(30px, 4.2vw, 48px);
      line-height: 1.1;
    }

    .live-cases-donate {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 26px;
      border-radius: 4px;
      color: #fff;
      background: #12a82a;
      font-size: 16px;
      font-weight: 700;
      transition: background 160ms ease, transform 160ms ease;
    }

    .live-cases-donate:hover { background: #07851d; transform: translateY(-2px); }

    .live-case { margin-top: 12px; }

    .live-cases-heading {
      margin: 0 0 10px;
      color: #0eaf1d;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.2;
    }

    .live-case-main-image {
      width: min(310px, 82vw);
      height: auto;
      margin: 0 auto;
    }

    .live-case h3 {
      margin: 10px 0 14px;
      color: #777;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 20px;
    }

    .live-case-details {
      max-width: 610px;
      margin: 0 auto;
      text-align: left;
      color: #707070;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 13px;
      line-height: 1.5;
    }

    .live-case-details p { margin: 0 0 14px; }
    .live-case-details strong { color: #5c5c5c; }

    .document-link {
      display: inline-grid;
      width: 24px;
      height: 28px;
      place-items: center;
      margin-left: 4px;
      color: #fff;
      background: #4d9abe;
      font-size: 17px;
      text-decoration: none;
    }

    .animal-care { margin-top: 22px; }

    .animal-gallery {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .animal-gallery img {
      width: 100%;
      aspect-ratio: 1.45;
      object-fit: cover;
    }

    .animal-care-title {
      margin: 13px auto 18px;
      color: #0f9c24;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 14px;
      line-height: 1.35;
    }

    .animal-care > p {
      margin: 0 0 16px;
      color: #737373;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 12px;
      line-height: 1.55;
      text-align: left;
    }

    .animal-care .animal-care-callout {
      color: #b4540e;
      font-size: 13px;
      font-weight: 700;
      text-align: center;
    }

    .live-camps { margin-top: 24px; }
    .camps-heading { color: #bd5e0a; }

    .camp-gallery {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .camp-gallery img { width: 100%; height: auto; }

    .support-section { margin-top: 26px; }

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

    .support-grid h2 {
      margin: 0;
      padding: 2px 10px;
      border: 3px solid #e3ed00;
      border-radius: 7px;
      color: #1bb72a;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 24px;
    }

    .support-grid p {
      margin: 0;
      color: #a9510b;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.35;
    }

    .hope-section { margin-top: 28px; }
    .hope-section > .live-cases-heading { color: #10ad21; font-size: 27px; }

    .hope-message,
    .privacy-message {
      margin: 0 auto 16px;
      padding: 10px 14px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.35;
    }

    .hope-message {
      border: 3px solid #e3ed00;
      color: #f00;
    }

    .privacy-message {
      border: 4px solid #16c229;
      color: #525252;
      font-size: 12px;
    }

    .case-contact,
    .thank-you-message,
    .affiliation-note {
      margin: 0 auto 16px;
      color: #5d5d5d;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 12px;
      line-height: 1.45;
    }

    .case-contact a { color: #a9510b; text-decoration: underline; text-underline-offset: 2px; }
    .thank-you-message { text-align: left; }
    .affiliation-note { margin-top: 16px; }

    .thank-you-title {
      margin: 28px 0 0;
      color: #36c52e;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 25px;
    }

    @media (max-width: 700px) {
      .live-cases-page-content { padding: 20px 0 54px; }
      .live-cases-title { font-size: 28px; }
      .live-cases-heading { font-size: 30px; }
      .animal-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .camp-gallery, .support-grid { grid-template-columns: 1fr; }
      .support-grid h2 { font-size: 22px; }
      .live-case-details { font-size: 13px; }
      .hope-message { font-size: 14px; }
    }

    @media (max-width: 560px) {
      .live-cases-copy { width: min(100%, calc(100% - 30px)); }
      .live-cases-title { border-width: 3px; font-size: 25px; }
      .live-cases-donate { font-size: 15px; }
      .animal-care-title { font-size: 13px; }
      .animal-care > p { font-size: 12px; }
      .thank-you-title { font-size: 21px; }
    }

    .live-cases-page .live-cases-legacy { display: none; }

    /* Live case pages use a calmer editorial layout while keeping the source content unchanged. */
    .live-cases-page-content {
      padding: 64px 0 88px;
      background: var(--wash);
    }

    .live-cases-copy {
      max-width: 1120px;
      color: var(--ink);
    }

    .live-cases-title {
      max-width: 900px;
      margin: 0 auto 18px;
      padding: 0 0 17px;
      border: 0;
      border-bottom: 4px solid var(--gold-500);
      border-radius: 0;
      color: var(--forest-900);
      font-family: inherit;
      font-size: clamp(34px, 5vw, 62px);
      font-weight: 800;
      letter-spacing: 0;
      line-height: 1.08;
    }

    .live-cases-donate {
      min-height: 44px;
      padding: 11px 22px;
      border-radius: 6px;
      background: var(--gold-500);
      box-shadow: 0 8px 20px rgba(8, 43, 24, 0.12);
      font-size: 14px;
    }

    .live-cases-donate:hover { background: #ad8316; }

    .live-case {
      margin-top: 54px;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 14px 34px rgba(8, 43, 24, 0.08);
    }

    .live-cases-heading {
      margin: 0 0 22px;
      color: var(--forest-900);
      font-family: inherit;
      font-size: clamp(28px, 3vw, 38px);
      font-weight: 800;
      line-height: 1.2;
    }

    .live-case-main-image {
      width: min(360px, 100%);
      aspect-ratio: 1 / 1;
      object-fit: cover;
      margin: 0 auto;
      border-radius: 8px;
    }

    .live-case h3 {
      margin: 18px 0 20px;
      color: var(--forest-900);
      font-family: inherit;
      font-size: 21px;
      font-weight: 700;
    }

    .live-case-details {
      max-width: 720px;
      padding-top: 12px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-family: inherit;
      font-size: 14px;
      line-height: 1.55;
    }

    .live-case-details p {
      margin: 0;
      padding: 9px 0;
      border-bottom: 1px solid #edf1ed;
    }

    .live-case-details strong { color: var(--ink); }

    .document-link {
      width: 29px;
      height: 29px;
      border-radius: 5px;
      color: #fff;
      background: var(--forest-700);
      text-decoration: none;
    }

    .animal-care,
    .live-camps,
    .support-section,
    .hope-section { margin-top: 68px; }

    .animal-gallery {
      gap: 14px;
    }

    .animal-gallery img,
    .camp-gallery img {
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(8, 43, 24, 0.1);
    }

    .animal-care-title {
      max-width: 890px;
      margin: 24px auto 20px;
      color: var(--forest-900);
      font-family: inherit;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.55;
    }

    .animal-care > p {
      max-width: 900px;
      margin-inline: auto;
      color: var(--muted);
      font-family: inherit;
      font-size: 14px;
      line-height: 1.7;
    }

    .animal-care .animal-care-callout {
      max-width: 900px;
      margin-top: 24px;
      padding: 18px 22px;
      border-radius: 8px;
      color: #fff;
      background: var(--forest-900);
      font-family: inherit;
      font-size: 15px;
      line-height: 1.55;
    }

    .camps-heading { color: var(--forest-900); }

    .camp-gallery {
      gap: 20px;
    }

    .support-section {
      padding: 30px 34px;
      border-radius: 8px;
      color: #fff;
      background: var(--forest-900);
    }

    .support-grid {
      gap: 34px;
    }

    .support-grid h2 {
      padding: 0;
      border: 0;
      color: var(--gold-300);
      font-family: inherit;
      font-size: 28px;
      line-height: 1.25;
    }

    .support-grid p {
      color: #eef7ef;
      font-family: inherit;
      font-size: 15px;
      line-height: 1.6;
    }

    .hope-section > .live-cases-heading {
      color: var(--forest-900);
      font-family: inherit;
      font-size: 32px;
    }

    .hope-message,
    .privacy-message {
      max-width: 900px;
      margin: 0 auto 18px;
      padding: 20px 22px;
      border: 0;
      border-left: 5px solid var(--gold-500);
      border-radius: 0 8px 8px 0;
      color: var(--ink);
      background: #fff8e9;
      font-family: inherit;
      font-size: 15px;
      font-weight: 600;
      line-height: 1.65;
    }

    .privacy-message {
      border-left-color: var(--forest-500);
      color: var(--muted);
      background: #eef7ef;
      font-size: 14px;
    }

    .case-contact,
    .thank-you-message,
    .affiliation-note {
      max-width: 900px;
      color: var(--muted);
      font-family: inherit;
      font-size: 14px;
      line-height: 1.65;
    }

    .case-contact a { color: var(--forest-800); }
    .thank-you-message { text-align: center; }
    .affiliation-note { margin-top: 22px; }

    .thank-you-title {
      margin-top: 36px;
      color: var(--forest-900);
      font-family: inherit;
      font-size: 27px;
      font-weight: 800;
    }

    @media (max-width: 700px) {
      .live-cases-page-content { padding: 48px 0 64px; }
      .live-cases-title { font-size: 34px; }
      .live-case { padding: 24px 18px; }
      .animal-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .camp-gallery, .support-grid { grid-template-columns: 1fr; }
      .support-section { padding: 24px 20px; }
      .support-grid h2 { font-size: 24px; }
      .hope-message, .privacy-message { padding: 16px 17px; }
    }

    @media (max-width: 560px) {
      .live-cases-copy { width: min(100%, calc(100% - 28px)); }
      .live-cases-title { font-size: 28px; }
      .live-case { margin-top: 38px; }
      .animal-care, .live-camps, .support-section, .hope-section { margin-top: 52px; }
    }

    .live-cases-title {
      max-width: 860px;
      padding-bottom: 12px;
      font-size: clamp(27px, 2.8vw, 44px);
    }

    .live-cases-heading { font-size: clamp(24px, 2.2vw, 32px); }
    .live-case h3 { font-size: 18px; }
    .animal-care-title { font-size: 15px; }
    .support-grid h2 { font-size: 23px; }
    .support-grid p { font-size: 14px; }
    .hope-section > .live-cases-heading { font-size: 27px; }
    .thank-you-title { font-size: 23px; }

    @media (max-width: 560px) {
      .live-cases-title { font-size: 27px; }
      .live-cases-heading { font-size: 25px; }
      .hope-section > .live-cases-heading { font-size: 24px; }
    }

    .donation-page-content {
      padding: 58px 0 84px;
      background: var(--wash);
    }

    .donation-copy {
      max-width: 1100px;
    }

    .donation-copy h1 {
      color: var(--forest-900);
      font-size: clamp(30px, 3.6vw, 46px);
      font-weight: 800;
      letter-spacing: 0;
    }

    .donation-message {
      max-width: 760px;
      margin: 16px auto 28px;
      color: var(--muted);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.65;
    }

    .donation-button {
      min-height: 48px;
      padding: 12px 26px;
      border-radius: 6px;
      background: var(--gold-500);
      box-shadow: 0 10px 24px rgba(8, 43, 24, 0.12);
      font-size: 19px;
    }

    .donation-button:hover { background: #ad8316; }

    .donation-note {
      margin: 12px 0 30px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
    }

    .donation-details {
      max-width: 930px;
      gap: 24px;
      align-items: stretch;
    }

    .donation-qr,
    .bank-details {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 12px 30px rgba(8, 43, 24, 0.07);
    }

    .donation-details h2 {
      margin: 0 0 22px;
      padding-bottom: 12px;
      border-bottom: 3px solid var(--gold-500);
      color: var(--forest-900);
      font-size: 20px;
      text-align: left;
    }

    .donation-qr-image {
      width: 210px;
      height: 210px;
      border: 7px solid #fff;
      box-shadow: 0 0 0 1px var(--line);
    }

    .bank-details dl {
      margin: 0;
      text-align: left;
    }

    .bank-details dl > div {
      display: block;
      margin: 0;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
    }

    .bank-details dl > div:last-child { border-bottom: 0; }
    .bank-details dt { display: block; margin-bottom: 4px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
    .bank-details dd { color: var(--forest-900); font-size: 17px; font-weight: 700; }
    .bank-details a { text-decoration: none; }

    .donation-logo {
      width: min(260px, 62vw);
      margin-top: 42px;
      opacity: 0.92;
    }

    @media (max-width: 760px) {
      .donation-page-content { padding: 46px 0 64px; }
      .donation-details { grid-template-columns: 1fr; max-width: 520px; }
      .donation-qr, .bank-details { padding: 22px; }
    }

    @media (max-width: 560px) {
      .donation-copy h1 { font-size: 30px; }
      .donation-message { font-size: 15px; }
      .donation-button { font-size: 17px; }
      .donation-details h2 { font-size: 18px; }
      .bank-details dd { font-size: 15px; }
    }

    .live-case {
      display: grid;
      grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
      column-gap: 44px;
      row-gap: 8px;
      align-items: center;
      text-align: left;
    }

    .live-case > .live-cases-heading {
      grid-column: 1 / -1;
      width: 100%;
      margin-bottom: 20px;
      text-align: left;
    }

    .live-case-main-image {
      grid-column: 1;
      grid-row: 2 / span 3;
      width: 100%;
      max-width: 360px;
      margin: 0;
    }

    .live-case h3 {
      grid-column: 2;
      grid-row: 2;
      align-self: end;
      margin: 0 0 4px;
      font-size: 20px;
      text-align: left;
    }

    .live-case-details {
      grid-column: 2;
      grid-row: 3;
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 6px 16px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #f7faf7;
      font-size: 13px;
    }

    .live-case-details p:first-child { border-top: 0; }

    @media (max-width: 760px) {
      .live-case {
        display: block;
        text-align: center;
      }

      .live-case > .live-cases-heading {
        margin-bottom: 18px;
        text-align: center;
      }

      .live-case-main-image {
        width: min(360px, 100%);
        margin: 0 auto;
      }

      .live-case h3 {
        margin: 18px 0 14px;
        text-align: center;
      }

      .live-case-details { text-align: left; }
    }

    /* Homepage copy follows the original page wording and section order. */
    .home-message {
      color: #fff;
      background: #193d10;
    }

    .home-message-copy {
      padding: 16px 0 10px;
      text-align: center;
    }

    .home-message-copy p {
      max-width: 920px;
      margin: 0 auto 8px;
      font-family: Georgia, serif;
      font-size: 14px;
      line-height: 1.5;
    }

    .home-message-copy cite {
      display: block;
      font-family: Georgia, serif;
      font-size: 12px;
    }

    .home-contact-bar { background: #75601b; }

    .home-contact-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      min-height: 54px;
    }

    .home-contact-inner p {
      margin: 0;
      color: #fff;
      font-size: 12px;
      line-height: 1.35;
    }

    .home-contact-inner .live-cases-button {
      border: 2px solid #ffea00;
      color: #ffea00;
      background: #f00000;
      font-size: 11px;
    }

    .home-page .hero {
      min-height: 430px;
      text-align: left;
    }

    .home-page .hero::after {
      background: rgba(4, 29, 16, 0.42);
    }

    .home-page .hero-content {
      width: 100%;
      padding: 80px 0;
    }

    .home-page .hero-message {
      max-width: 760px;
      margin: 32px 0 0;
      padding: 16px 22px;
      border-left: 4px solid var(--gold-300);
      border-radius: 0 8px 8px 0;
      color: #fff;
      background: rgba(4, 29, 16, 0.34);
      text-align: left;
    }

    .home-page .hero-message p {
      margin: 0 0 8px;
      font-family: Georgia, serif;
      font-size: 20px;
      font-style: italic;
      line-height: 1.55;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    }

    .home-page .hero-message cite {
      display: block;
      margin-bottom: 0;
      color: var(--gold-300);
      font-size: 15px;
      font-style: normal;
      font-weight: 700;
    }

    .home-page .hero-live-button {
      margin-top: 22px;
    }

    .home-page .hero-action-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 22px;
    }

    .home-page .hero-action-row .hero-live-button { margin-top: 0; }

    .home-page .hero-socials {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .home-page .hero-socials .social-dot {
      width: 38px;
      height: 38px;
      border: 2px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
    }

    .home-page .hero-message .live-cases-button {
      border: 2px solid #ffea00;
      color: #ffea00;
      background: #f00000;
      font-size: 12px;
    }

    .home-page .hero-live-button {
      border: 2px solid #ffea00;
      color: #ffea00;
      background: #f00000;
      font-size: 12px;
      animation: live-case-pulse 1.4s ease-in-out infinite;
    }

    @keyframes live-case-pulse {
      0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 234, 0, 0.35);
      }
      50% {
        opacity: 0.86;
        box-shadow: 0 0 0 6px rgba(255, 234, 0, 0);
      }
    }

    .home-page .hero h1 {
      max-width: 900px;
      margin: 0;
      font-size: clamp(34px, 5vw, 66px);
      text-align: left;
    }

    .home-page .hero h1 span { display: inline; color: #fff; }
    .home-page .hero-lead { margin: 18px 0 0; text-align: left; }
    .home-page .hero-quote,
    .home-page .hero-buttons { display: none; }

    @media (max-width: 560px) {
      .home-page .hero-action-row { gap: 10px; }
      .home-page .hero-socials { gap: 6px; }
      .home-page .hero-socials .social-dot { width: 34px; height: 34px; }
    }

    .home-page .about { background: #fff; }
    .home-page .section-heading { margin-bottom: 28px; }
    .home-page .section-heading h2 { font-size: clamp(26px, 3vw, 34px); }
    .home-page .section-heading h2::after { width: 44px; margin-top: 10px; }
    .home-page .about-copy > p:not(.home-about-intro),
    .home-page .about-copy > h3 { display: none; }
    .home-page .home-about-intro { margin: 0 0 18px; color: var(--muted); }
    .home-page .accordion details:not([open]) p,
    .home-page .accordion details:not([open]) .home-objective-list { display: none; }
    .home-page .home-objective-list { padding: 20px 28px 18px 50px; }
    .home-page .home-objective-list p {
      margin: 0 0 10px;
      padding: 0;
      color: #111;
      font-size: 18px;
      line-height: 1.35;
    }
    .home-page .home-objective-list p:last-child { margin-bottom: 0; }
    .home-page .accordion details .home-mission-copy {
      margin: 0;
      padding: 24px 28px;
      color: #111;
      font-size: 18px;
      line-height: 1.5;
    }

    .home-page .projects { padding-top: 55px; }
    .home-project-intro {
      max-width: 930px;
      margin: -5px auto 28px;
      color: var(--muted);
      line-height: 1.65;
    }

    .home-page .project-card .button,
    .home-page .gallery-head > .button { display: none; }
    .home-page .project-card p { min-height: 0; }
    .home-page .join { padding-top: 42px; }
    .home-page .join-card { display: block; text-align: center; }
    .home-page .join-icon { display: none; }
    .home-page .join-card p { max-width: 760px; margin-left: auto; margin-right: auto; }
    .home-page .gallery { padding-top: 42px; }
    .home-page .gallery-head { display: block; margin-bottom: 22px; }
    .home-page .gallery-head .section-heading { text-align: center; }
    .home-page .gallery-head .section-heading h2::after { margin-left: auto; }
    .home-page .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .home-page .cta h2 { max-width: none; font-size: clamp(16px, 2.2vw, 28px); }
    .home-page .cta p { display: none; }
    .home-page .cta .button { font-size: 0; }
    .home-page .cta .button::after { content: "Donate"; font-size: 13px; }
    .home-page .map-card strong { font-size: 0; }
    .home-page .map-card:first-child strong::after { content: "Registered Address:-"; font-size: 13px; }
    .home-page .map-card:last-child strong::after { content: "Head Office:-"; font-size: 13px; }
    .home-page .footer-bottom .container > span:first-child { font-size: 0; }
    .home-page .footer-bottom .container > span:first-child::after {
      content: "Copyright \00a92023 paropakaareefoundation.org All rights reserved.";
      font-size: 12px;
    }

    @media (max-width: 760px) {
      .home-contact-inner { padding: 8px 0; }
      .home-page .hero-message { padding: 13px 16px; }
      .home-page .hero-message p { font-size: 16px; }
      .home-page .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    .donation-qr-crop {
      position: relative;
      width: min(390px, 100%);
      aspect-ratio: 1;
      margin: 0 auto;
      overflow: hidden;
      background: #fff;
    }

    .donation-qr-crop .donation-qr-image {
      position: absolute;
      top: -60%;
      left: -22%;
      width: 145%;
      max-width: none;
      height: auto;
      border: 0;
      box-shadow: none;
    }

    .help-page-content {
      padding: 74px 0 82px;
      background: #fff;
    }

    .help-hero .contact-hero-inner { min-height: 186px; }

    .help-grid {
      display: grid;
      grid-template-columns: minmax(250px, 1fr) minmax(280px, 1.15fr) minmax(250px, 1fr);
      align-items: center;
      gap: 46px;
      max-width: 1160px;
    }

    .help-bank-details {
      color: #202020;
      font-size: 20px;
      line-height: 1.8;
    }

    .help-bank-details p { margin: 0; }
    .help-bank-details strong { font-weight: 700; }

    .help-logo-wrap,
    .help-qr-wrap {
      display: grid;
      place-items: center;
    }

    .help-logo {
      width: min(300px, 100%);
      height: auto;
    }

    .help-qr-crop {
      position: relative;
      width: min(270px, 100%);
      aspect-ratio: 1;
      overflow: hidden;
      background: #fff;
    }

    .help-qr-crop .help-qr {
      position: absolute;
      top: -60%;
      left: -22%;
      width: 145%;
      max-width: none;
      height: auto;
    }

    .help-qr-brand { padding-top: 14px; text-align: center; }

    .help-qr-brand p {
      margin: 0;
      color: #1d1d1d;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    @media (max-width: 900px) {
      .help-grid { gap: 28px; }
      .help-bank-details { font-size: 17px; }
    }

    @media (max-width: 760px) {
      .help-page-content { padding: 52px 0 64px; }
      .help-grid { grid-template-columns: 1fr; gap: 38px; max-width: 520px; }
      .help-bank-details { text-align: center; font-size: 17px; line-height: 1.75; }
      .help-logo { width: min(280px, 90%); }
      .help-qr-crop { width: min(250px, 85%); }
      .help-qr-brand p { font-size: 12px; }
    }
