:root {
    --forest: #123d32;
    --forest-deep: #092b24;
    --leaf: #2f785f;
    --mint: #dcece3;
    --cream: #f6f4ed;
    --paper: #fffefa;
    --ink: #183129;
    --muted: #5e716a;
    --line: #d8e1dc;
    --gold: #c9a45a;
    --radius: 18px;
    --shadow: 0 20px 60px rgba(18, 61, 50, 0.12);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
}
a {
    color: inherit;
}
.site-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    padding: 0.7rem 1rem;
    color: #fff;
    background: var(--forest-deep);
    transform: translateY(-150%);
}
.skip-link:focus {
    transform: none;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(18, 61, 50, 0.1);
    background: rgba(246, 244, 237, 0.94);
    backdrop-filter: blur(14px);
}
.site-nav {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.site-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}
.site-brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--forest);
    font-family: Georgia, serif;
    font-size: 1.25rem;
}
.site-brand strong,
.site-brand small {
    display: block;
}
.site-brand strong {
    font-family: Georgia, serif;
    font-size: 1.05rem;
}
.site-brand small {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.main-navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.main-navigation a {
    position: relative;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}
.main-navigation a:not(.nav-action)::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 2px;
    background: var(--leaf);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s;
}
.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
    transform: scaleX(1);
}
.nav-action,
.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.1rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s,
        background-color 0.2s,
        color 0.2s,
        border-color 0.2s;
}
.nav-action,
.button-primary {
    color: #fff;
    background: var(--forest);
}
.nav-action:hover,
.button-primary:hover {
    color: #fff;
    background: var(--forest-deep);
    transform: translateY(-2px);
}
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--forest);
    background: var(--paper);
}
.nav-toggle svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 7vw, 7rem) 0 4rem;
    background: var(--forest-deep);
}
.hero::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        var(--forest-deep) 0%,
        rgba(9, 43, 36, 0.98) 38%,
        rgba(9, 43, 36, 0.62) 59%,
        rgba(9, 43, 36, 0.08) 88%
    );
    content: "";
    z-index: 1;
}
.hero::after {
    position: absolute;
    right: -9rem;
    bottom: -13rem;
    width: 32rem;
    height: 32rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.025),
        0 0 0 140px rgba(255, 255, 255, 0.02);
    content: "";
    z-index: 1;
}
.hero-photo {
    position: absolute;
    inset: 0 0 0 auto;
    width: 68%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    filter: saturate(0.9) contrast(1.02);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    color: #fff;
}
.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1.3rem;
    color: #d9c18d;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.eyebrow::before {
    width: 38px;
    height: 1px;
    background: currentColor;
    content: "";
}
.hero h1 {
    max-width: 650px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 6vw, 5.7rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}
.hero h1 em {
    color: #d9c18d;
    font-weight: 400;
}
.hero-copy {
    max-width: 590px;
    margin: 1.5rem 0 0;
    color: #e2ece7;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
.button-primary {
    color: var(--forest-deep);
    background: #e7cc92;
}
.button-primary:hover {
    color: var(--forest-deep);
    background: #f3dfaf;
}
.button-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
}
.button-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}
.hero-note {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    color: #c4d6cf;
    font-size: 0.78rem;
}
.hero-note svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: #d9c18d;
    stroke-width: 1.8;
}
.summary-strip {
    position: relative;
    z-index: 4;
    margin-top: -1.25rem;
}
.summary-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
}
.summary-intro,
.summary-item {
    padding: 1.4rem 1.5rem;
}
.summary-intro {
    color: #fff;
    background: var(--leaf);
}
.summary-intro span,
.summary-item span {
    display: block;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.summary-intro strong {
    display: block;
    margin-top: 0.25rem;
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
}
.summary-item {
    border-left: 1px solid var(--line);
}
.summary-item strong {
    display: block;
    margin-top: 0.2rem;
    color: var(--forest);
    font-family: Georgia, serif;
    font-size: 2rem;
    line-height: 1;
}
.summary-item span {
    color: var(--muted);
}
.section {
    padding: clamp(4.5rem, 8vw, 7rem) 0;
}
.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
    align-items: end;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.section-heading h2 {
    max-width: 620px;
    margin: 0.45rem 0 0;
    font-family: Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -0.04em;
}
.section-heading > p {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
}
.feature-stage {
    position: relative;
}
.feature-stage::before {
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: calc(50% - 1px);
    width: 1px;
    background: var(--line);
    content: "";
}
.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}
.feature {
    position: relative;
    padding: 2rem;
    background: var(--paper);
}
.feature-index {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--leaf);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}
.feature-index svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}
.feature h3 {
    margin: 3rem 0 0.6rem;
    font-family: Georgia, serif;
    font-size: 1.65rem;
    font-weight: 400;
}
.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}
.directory-section {
    background: #e8eee9;
}
.directory-panel {
    overflow: hidden;
    border: 1px solid #cbd8d1;
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 18px 50px rgba(18, 61, 50, 0.08);
}
.directory-toolbar {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 0.7fr);
    align-items: end;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 1px solid var(--line);
}
.directory-toolbar h2 {
    margin: 0.35rem 0 0;
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1;
}
.search-form {
    display: flex;
    gap: 0.5rem;
}
.search-form label {
    display: grid;
    flex: 1;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.search-control {
    display: flex;
    overflow: hidden;
    border: 1px solid #bdcdc5;
    border-radius: 999px;
    background: #fff;
}
.search-control:focus-within {
    outline: 3px solid rgba(47, 120, 95, 0.22);
    border-color: var(--leaf);
}
.search-control input {
  min-width: 0;
  flex: 1;
  padding: 0.8rem 1rem;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
}
.search-control button {
  min-width: 94px;
  border: 0;
  color: #fff;
  background: var(--forest);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
}
.street-block {
    padding: 2rem;
}
.street-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.street-header h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
}
.street-header span {
    color: var(--muted);
    font-size: 0.78rem;
}
.house-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}
.house-entry {
    min-height: 132px;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    transition:
        transform 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
}
.house-entry:hover {
    border-color: #9fb8ac;
    box-shadow: 0 10px 25px rgba(18, 61, 50, 0.08);
    transform: translateY(-3px);
}
.house-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--leaf);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.house-number strong {
    color: var(--forest);
    font-family: Georgia, serif;
    font-size: 1.45rem;
    letter-spacing: 0;
}
.house-person {
    display: grid;
    gap: 0.15rem;
    margin-top: 1.5rem;
}
.house-person strong {
    font-size: 0.86rem;
}
.house-person small {
    color: var(--muted);
    font-size: 0.75rem;
}
.empty-state {
    padding: 3rem;
    text-align: center;
    color: var(--muted);
}
.donation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.donation {
    display: grid;
    grid-template-columns: 1fr minmax(150px, 0.45fr);
    gap: 1.5rem;
    padding: 1.5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.donation h3 {
    margin: 0 0 0.5rem;
    font-family: Georgia, serif;
    font-size: 1.55rem;
    font-weight: 400;
}
.donation p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}
.donation img {
    width: 100%;
    max-height: 190px;
    object-fit: contain;
    background: #fff;
}
.closing {
    padding: clamp(4rem, 8vw, 7rem) 0;
    color: #fff;
    background: var(--forest);
}
.closing-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
}
.closing h2 {
    max-width: 760px;
    margin: 0.4rem 0 0;
    font-family: Georgia, serif;
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
}
.site-footer {
    padding: 2.5rem 0;
    color: #cbd9d3;
    background: var(--forest-deep);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
}
.footer-inner strong {
    color: #fff;
    font-family: Georgia, serif;
    font-size: 1.25rem;
}
.footer-inner p {
    max-width: 500px;
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
}
.footer-links {
    display: flex;
    gap: 1rem;
}
.footer-links a {
    font-size: 0.78rem;
    font-weight: 700;
}
.footer-inner > small {
    grid-column: 1/-1;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
:focus-visible {
    outline: 3px solid #d9c18d;
    outline-offset: 3px;
}
@media (max-width: 900px) {
    .summary-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .summary-intro {
        grid-column: 1/-1;
    }
    .summary-item:first-of-type {
        border-left: 0;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
    .feature h3 {
        margin-top: 1.5rem;
    }
    .directory-toolbar {
        grid-template-columns: 1fr;
    }
    .house-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .donation-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 720px) {
    .site-shell {
        width: min(100% - 28px, 1180px);
    }
    .site-nav {
        min-height: 68px;
    }
    .nav-toggle {
        display: flex;
    }
    .main-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 0.75rem 14px 1rem;
        border-bottom: 1px solid var(--line);
        background: var(--cream);
        box-shadow: 0 20px 35px rgba(18, 61, 50, 0.12);
    }
    .main-navigation.is-open {
        display: flex;
    }
    .main-navigation a {
        min-height: 46px;
        padding: 0.75rem;
    }
    .nav-action {
        margin-top: 0.35rem;
    }
    .hero {
        padding-top: 4rem;
    }
    .hero::before {
        background: linear-gradient(
            90deg,
            rgba(9, 43, 36, 0.95),
            rgba(9, 43, 36, 0.72)
        );
    }
    .hero-photo {
        width: 100%;
        object-position: 72% center;
    }
    .hero h1 {
        font-size: clamp(2.75rem, 13vw, 4.2rem);
    }
    .summary-grid {
        grid-template-columns: 1fr 1fr;
    }
    .summary-intro {
        grid-column: 1/-1;
    }
    .summary-item:last-child {
        grid-column: 1/-1;
        border-top: 1px solid var(--line);
        border-left: 0;
    }
    .section-heading {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .directory-toolbar,
    .street-block {
        padding: 1.25rem;
    }
    .house-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .closing-inner {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-inner > small {
        grid-column: auto;
    }
}
@media (max-width: 430px) {
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .button {
        width: 100%;
    }
    .summary-grid {
        grid-template-columns: 1fr;
    }
    .summary-item {
        border-top: 1px solid var(--line);
        border-left: 0;
    }
    .summary-item:last-child {
        grid-column: auto;
    }
  .house-entry {
    min-height: 142px;
    padding: 0.85rem;
  }
  .house-person {
    margin-top: 1rem;
  }
    .search-control {
        border-radius: 14px;
    }
    .directory-toolbar {
        padding: 1rem;
    }
    .street-block {
        padding: 1rem;
    }
    .donation {
        grid-template-columns: 1fr;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
@media (prefers-reduced-motion: no-preference) {
    .hero-content {
        animation: hero-enter 0.55s ease-out both;
    }
    .summary-grid {
        animation: hero-enter 0.55s 0.12s ease-out both;
    }
    @keyframes hero-enter {
        from {
            opacity: 0;
            transform: translateY(12px);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* Carta organisasi */
.organization-hero{padding:clamp(7rem,12vw,10rem) 0 3.5rem;background:linear-gradient(135deg,#0c3028,#185746);color:#fff}.organization-hero h1{font-size:clamp(2.7rem,7vw,5.7rem);letter-spacing:-.06em;margin:.2rem 0 1rem}.organization-hero p{max-width:680px;color:#d9e9e3;font-size:1.08rem}.organization-term{display:inline-flex;margin-top:1.2rem;padding:.55rem 1rem;border:1px solid rgba(232,190,91,.5);border-radius:99px;color:#f0ca72;font-weight:700}.organization-page{padding:clamp(3rem,7vw,6rem) 0;background:#f5f2e9;min-height:50vh}.organization-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.25rem}.organization-card{background:#fff;border:1px solid #ded8c9;border-radius:1.1rem;overflow:hidden;box-shadow:0 12px 35px rgba(18,61,50,.07)}.organization-card header{padding:1.25rem 1.4rem;background:#123d32;color:#f1cd78}.organization-card h2{margin:0;font-size:1.15rem;letter-spacing:.02em}.organization-positions{padding:.65rem 1.4rem 1rem}.organization-position{display:grid;grid-template-columns:minmax(110px,.7fr) 1.3fr;gap:1rem;padding:.85rem 0;border-bottom:1px solid #ece8de}.organization-position:last-child{border:0}.organization-position>strong{color:#173d33}.organization-people{display:grid;gap:.45rem}.organization-people span{display:flex;justify-content:space-between;gap:.7rem}.organization-people b{font-weight:650}.organization-people small{flex:none;padding:.12rem .48rem;border-radius:99px;background:#eef4f1;color:#28604f;font-weight:700}.organization-people em{color:#857f74}.organization-empty{padding:4rem;text-align:center;background:#fff;border:1px dashed #b9b3a6;border-radius:1rem}.organization-empty strong{font-size:1.35rem;color:#123d32}@media(max-width:760px){.organization-grid{grid-template-columns:1fr}.organization-position{grid-template-columns:1fr;gap:.35rem}.organization-hero{padding-top:6rem}.organization-people span{align-items:center}}
